mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
45 lines
875 B
TypeScript
45 lines
875 B
TypeScript
![]() |
// ** MUI Imports
|
||
|
import { Theme } from '@mui/material/styles'
|
||
|
|
||
|
const List = (theme: Theme) => {
|
||
|
return {
|
||
|
MuiListItemIcon: {
|
||
|
styleOverrides: {
|
||
|
root: {
|
||
|
minWidth: 0,
|
||
|
marginRight: theme.spacing(2.25),
|
||
|
color: theme.palette.text.secondary
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
MuiListItemAvatar: {
|
||
|
styleOverrides: {
|
||
|
root: {
|
||
|
minWidth: 0,
|
||
|
marginRight: theme.spacing(4)
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
MuiListItemText: {
|
||
|
styleOverrides: {
|
||
|
dense: {
|
||
|
'& .MuiListItemText-primary': {
|
||
|
color: theme.palette.text.primary
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
MuiListSubheader: {
|
||
|
styleOverrides: {
|
||
|
root: {
|
||
|
fontWeight: 600,
|
||
|
textTransform: 'uppercase',
|
||
|
color: theme.palette.text.primary
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default List
|