Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
35 lines
783 B
TypeScript
35 lines
783 B
TypeScript
import Box from '@mui/system/Box';
|
|
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 AutoGrid() {
|
|
return (
|
|
<Box sx={{ flexGrow: 1 }}>
|
|
<Grid container spacing={3}>
|
|
<Grid size="grow">
|
|
<Item>size=grow</Item>
|
|
</Grid>
|
|
<Grid size={6}>
|
|
<Item>size=6</Item>
|
|
</Grid>
|
|
<Grid size="grow">
|
|
<Item>size=grow</Item>
|
|
</Grid>
|
|
</Grid>
|
|
</Box>
|
|
);
|
|
}
|