diff --git a/front/src/modules/comments/components/comment-thread/CommentThreadCreateButton.tsx b/front/src/modules/comments/components/comment-thread/CommentThreadCreateButton.tsx new file mode 100644 index 0000000000..8d13759685 --- /dev/null +++ b/front/src/modules/comments/components/comment-thread/CommentThreadCreateButton.tsx @@ -0,0 +1,40 @@ +import { useTheme } from '@emotion/react'; + +import { Button } from '@/ui/components/buttons/Button'; +import { ButtonGroup } from '@/ui/components/buttons/ButtonGroup'; +import { IconCheckbox, IconNotes, IconTimelineEvent } from '@/ui/icons/index'; + +type CommentThreadCreateButtonProps = { + onNoteClick?: () => void; + onTaskClick?: () => void; + onActivityClick?: () => void; +}; + +export function CommentThreadCreateButton({ + onNoteClick, + onTaskClick, + onActivityClick, +}: CommentThreadCreateButtonProps) { + const theme = useTheme(); + return ( + +