import { Icon } from '@iconify/react'; import Button from '../Button'; import { cn } from '@/lib/helper'; interface TableRowOptionsProps { type?: 'dropdown' | 'collapse'; recordId: string | number; basePath: string; onDelete?: () => void; } export const TableRowOptions = ({ type = 'dropdown', recordId, basePath, onDelete, }: TableRowOptionsProps) => (