// @mui import { useTheme } from '@mui/material/styles'; import { Box, BoxProps } from '@mui/material'; // ---------------------------------------------------------------------- export default function DocIllustration({ ...other }: BoxProps) { const theme = useTheme(); const PRIMARY_MAIN = theme.palette.primary.main; return ( ); }