import { TableRow } from '@mui/material'; import type { ReactNode } from 'react'; import Cell from '../Cell'; interface EmptyRowProps { children: ReactNode; } const EmptyRow = ({ children }: EmptyRowProps): JSX.Element => { return ( false} isRowHovered={false} > {children} ); }; export { EmptyRow };