import { useTheme } from '@emotion/react'; import { Button } from '@/ui/button/components/Button'; import { ButtonGroup } from '@/ui/button/components/ButtonGroup'; import { IconCheckbox, IconNotes, IconTimelineEvent } from '@/ui/icon/index'; type ActivityCreateButtonProps = { onNoteClick?: () => void; onTaskClick?: () => void; onActivityClick?: () => void; }; export function ActivityCreateButton({ onNoteClick, onTaskClick, onActivityClick, }: ActivityCreateButtonProps) { const theme = useTheme(); return (