import { useClickOutsideElement } from "#/hooks/use-click-outside-element"; import { cn } from "#/utils/utils"; import { ContextMenu } from "../context-menu/context-menu"; import { ContextMenuListItem } from "../context-menu/context-menu-list-item"; interface ConversationCardContextMenuProps { onClose: () => void; onDelete?: (event: React.MouseEvent) => void; onEdit?: (event: React.MouseEvent) => void; onDownload?: (event: React.MouseEvent) => void; position?: "top" | "bottom"; } export function ConversationCardContextMenu({ onClose, onDelete, onEdit, onDownload, position = "bottom", }: ConversationCardContextMenuProps) { const ref = useClickOutsideElement(onClose); return ( {onDelete && ( Delete )} {onEdit && ( Edit Title )} {onDownload && ( Download Workspace )} ); }