// @mui import { Theme, SxProps } from '@mui/material/styles'; import TableRow from '@mui/material/TableRow'; import TableCell from '@mui/material/TableCell'; // import EmptyContent from '../empty-content'; // ---------------------------------------------------------------------- type Props = { notFound: boolean; sx?: SxProps; }; export default function TableNoData({ notFound, sx }: Props) { return ( {notFound ? ( ) : ( )} ); }