diff --git a/src/components/table/RowDropdownOptions.tsx b/src/components/table/RowDropdownOptions.tsx new file mode 100644 index 00000000..1f1bc81b --- /dev/null +++ b/src/components/table/RowDropdownOptions.tsx @@ -0,0 +1,33 @@ +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;