zucchetti-sa5/themes/onepirate/modules/components/Toolbar.js
Arnaud Fauconnet 328a760eb8 added theme
2022-10-28 11:41:58 +02:00

12 lines
248 B
JavaScript

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;