mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
17 lines
265 B
TypeScript
17 lines
265 B
TypeScript
![]() |
// ** MUI Imports
|
||
|
import { Theme } from '@mui/material/styles'
|
||
|
|
||
|
const Divider = (theme: Theme) => {
|
||
|
return {
|
||
|
MuiDivider: {
|
||
|
styleOverrides: {
|
||
|
root: {
|
||
|
margin: `${theme.spacing(2)} 0`
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Divider
|