diff --git a/src/components/table/RowCollapseOptions.tsx b/src/components/table/RowCollapseOptions.tsx new file mode 100644 index 00000000..42f9720a --- /dev/null +++ b/src/components/table/RowCollapseOptions.tsx @@ -0,0 +1,27 @@ +import { ReactNode } from 'react'; + +import { Icon } from '@iconify/react'; +import Collapse from '@/components/Collapse'; +import Button from '@/components/Button'; + +interface RowCollapseOptionsProps { + children?: ReactNode; +} + +const RowCollapseOptions = ({ children }: RowCollapseOptionsProps) => { + return ( + + + + } + className='w-fit' + titleClassName='p-0! justify-self-end' + > + {children} + + ); +}; + +export default RowCollapseOptions;