import { ReactNode } from 'react'; import { Icon } from '@iconify/react'; import Button from '@/components/Button'; import { cn } from '@/lib/helper'; interface RowDropdownOptionsProps { children?: ReactNode; isLast2Rows: boolean; } const RowDropdownOptions = ({ children, isLast2Rows, }: RowDropdownOptionsProps) => { return (
{children}
); }; export default RowDropdownOptions;