diff --git a/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx b/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx new file mode 100644 index 00000000..537f3fc2 --- /dev/null +++ b/apps/portal/src/components/resumes/comments/ResumeCommentListItem.tsx @@ -0,0 +1,77 @@ +import { + ArrowDownCircleIcon, + ArrowUpCircleIcon, +} from '@heroicons/react/20/solid'; +import { FaceSmileIcon } from '@heroicons/react/24/outline'; + +import ResumeExpandableText from '../shared/ResumeExpandableText'; + +import type { ResumeComment } from '~/types/resume-comments'; + +type ResumeCommentListItemProps = { + comment: ResumeComment; + userId?: string; +}; + +export default function ResumeCommentListItem({ + comment, + userId, +}: ResumeCommentListItemProps) { + const isCommentOwner = userId === comment.user.userId; + + return ( +