38 lines
757 B
TypeScript
Executable File
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,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|