import Grid from '@mui/material/Grid'; import Box from '@mui/material/Box'; export default function ShadowsDemo() { return ( ({ boxShadow: 0, width: '8rem', height: '5rem', bgcolor: '#fff', color: 'grey.800', p: 1, m: 1, borderRadius: 2, textAlign: 'center', fontSize: '0.875rem', fontWeight: '700', ...theme.applyStyles('dark', { bgcolor: '#101010', color: 'grey.300', }), })} > boxShadow: 0 ({ boxShadow: 1, width: '8rem', height: '5rem', bgcolor: '#fff', color: 'grey.800', p: 1, m: 1, borderRadius: 2, textAlign: 'center', fontSize: '0.875rem', fontWeight: '700', ...theme.applyStyles('dark', { bgcolor: '#101010', color: 'grey.300', }), })} > boxShadow: 1 ({ boxShadow: 2, width: '8rem', height: '5rem', bgcolor: '#fff', color: 'grey.800', p: 1, m: 1, borderRadius: 2, textAlign: 'center', fontSize: '0.875rem', fontWeight: '700', ...theme.applyStyles('dark', { bgcolor: '#101010', color: 'grey.300', }), })} > boxShadow: 2 ({ boxShadow: 3, width: '8rem', height: '5rem', bgcolor: '#fff', color: 'grey.800', p: 1, m: 1, borderRadius: 2, textAlign: 'center', fontSize: '0.875rem', fontWeight: '700', ...theme.applyStyles('dark', { bgcolor: '#101010', color: 'grey.300', }), })} > boxShadow: 3 ); }