29 lines
580 B
JavaScript
29 lines
580 B
JavaScript
|
|
import Box from '@mui/material/Box';
|
||
|
|
|
||
|
|
export default function Hiding() {
|
||
|
|
return (
|
||
|
|
<div style={{ width: '100%' }}>
|
||
|
|
<Box
|
||
|
|
sx={{
|
||
|
|
display: { xs: 'block', md: 'none' },
|
||
|
|
m: 1,
|
||
|
|
fontSize: '0.875rem',
|
||
|
|
fontWeight: '700',
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
hide on screens wider than md
|
||
|
|
</Box>
|
||
|
|
<Box
|
||
|
|
sx={{
|
||
|
|
display: { xs: 'none', md: 'block' },
|
||
|
|
m: 1,
|
||
|
|
fontSize: '0.875rem',
|
||
|
|
fontWeight: '700',
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
hide on screens smaller than md
|
||
|
|
</Box>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|