import Container from '@mui/material/Container'; import {useTheme} from '@mui/material/styles'; const MasonryContainer = ({children}) => { const theme = useTheme(); return ( *': { cursor: 'default', }, [theme.breakpoints.down('md')]: { marginBottom: `calc(${theme.spacing(10)} + 56px)`, }, }} > {children} ); }; export default MasonryContainer;