import { Box, Typography } from '@mui/material'; import InboxOutlinedIcon from '@mui/icons-material/InboxOutlined'; // ==============================|| EMPTY STATE ||============================== // export default function EmptyState({ icon: Icon = InboxOutlinedIcon, title = 'No records found', caption, sx }) { return ( {title} {caption && ( {caption} )} ); }