import * as React from 'react';
import Grid from '@mui/material/Grid';
import Box from '@mui/material/Box';
export default function App() {
return (
<Grid container>
<Box
sx={{
boxShadow: 0,
width: '140px',
height: '140px',
p: 1,
m: 1,
textAlign: 'center',
fontSize: '14px',
}}
>
boxShadow: 0
</Box>
<Box
sx={{
boxShadow: 1,
width: '140px',
height: '140px',
p: 1,
m: 1,
textAlign: 'center',
fontSize: '14px',
}}
>
boxShadow: 1
</Box>
<Box
sx={{
boxShadow: 2,
width: '140px',
height: '140px',
p: 1,
m: 1,
textAlign: 'center',
fontSize: '14px',
}}
>
boxShadow: 2
</Box>
<Box
sx={{
boxShadow: 3,
width: '140px',
height: '140px',
p: 1,
m: 1,
textAlign: 'center',
fontSize: '14px',
}}
>
boxShadow: 3
</Box>
</Grid>
);
}