import Grid from '@mui/system/Grid'; import styled from '@mui/system/styled'; const Item = styled('div')(({ theme }) => ({ backgroundColor: '#fff', border: '1px solid', borderColor: '#ced7e0', padding: theme.spacing(1), borderRadius: '4px', textAlign: 'center', ...theme.applyStyles('dark', { backgroundColor: '#1A2027', borderColor: '#444d58', }), })); export default function OffsetGrid() { return ( 1 2 3 4 ); }