Files
aso/frontend/dashboard/src/theme/overrides/List.ts
2022-11-03 09:51:22 +07:00

38 lines
757 B
TypeScript
Executable File

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function List(theme: Theme) {
return {
MuiListItemIcon: {
styleOverrides: {
root: {
color: 'inherit',
minWidth: 'auto',
marginRight: theme.spacing(2),
},
},
},
MuiListItemAvatar: {
styleOverrides: {
root: {
minWidth: 'auto',
marginRight: theme.spacing(2),
},
},
},
MuiListItemText: {
styleOverrides: {
root: {
marginTop: 0,
marginBottom: 0,
},
multiline: {
marginTop: 0,
marginBottom: 0,
},
},
},
};
}