// @mui import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; import Stack, { StackProps } from '@mui/material/Stack'; // ---------------------------------------------------------------------- type EmptyContentProps = StackProps & { title?: string; imgUrl?: string; filled?: boolean; description?: string; action?: React.ReactNode; }; export default function EmptyContent({ title, imgUrl, action, filled, description, sx, ...other }: EmptyContentProps) { return ( alpha(theme.palette.grey[500], 0.04), border: (theme) => `dashed 1px ${alpha(theme.palette.grey[500], 0.08)}`, }), ...sx, }} {...other} > {title && ( {title} )} {description && ( {description} )} {action && action} ); }