export const WidthMdSize = () => {
const styles = useStyles();
return (
<Section backgroundColor={paddingColor} size="md">
<Box backgroundColor={innerBoxColor} p={'050'}>
<Typography>Section avec background et size md ({styles.sectionContainerMD.maxWidth}px)</Typography>
</Box>
</Section>
);
};