chitchatter/src/components/Shell/DrawerHeader.tsx
2022-09-15 21:16:41 -05:00

11 lines
290 B
TypeScript

import { styled } from '@mui/material/styles'
export const DrawerHeader = styled('div')(({ theme }) => ({
display: 'flex',
alignItems: 'center',
padding: theme.spacing(0, 1),
// necessary for content to be below app bar
...theme.mixins.toolbar,
justifyContent: 'flex-end',
}))