import type { TableRowProps } from '@mui/material/TableRow'; import Box from '@mui/material/Box'; import TableRow from '@mui/material/TableRow'; import TableCell from '@mui/material/TableCell'; import Typography from '@mui/material/Typography'; // ---------------------------------------------------------------------- type TableNoDataProps = TableRowProps & { searchQuery: string; }; export function TableNoData({ searchQuery, ...other }: TableNoDataProps) { return ( Not found No results found for   "{searchQuery}".
Try checking for typos or using complete words.
); }