zucchetti-sa5/themes/onepirate/modules/components/Toolbar.tsx

12 lines
248 B
TypeScript
Raw Normal View History

2022-10-28 11:41:58 +02:00
import { styled } from '@mui/material/styles';
import MuiToolbar from '@mui/material/Toolbar';
const Toolbar = styled(MuiToolbar)(({ theme }) => ({
height: 64,
[theme.breakpoints.up('sm')]: {
height: 70,
},
}));
export default Toolbar;