19 lines
447 B
JavaScript
19 lines
447 B
JavaScript
// ==============================|| OVERRIDES - LIST ITEM ICON ||============================== //
|
|
|
|
export default function ListItemButton(theme) {
|
|
return {
|
|
MuiListItemButton: {
|
|
styleOverrides: {
|
|
root: {
|
|
'&.Mui-selected': {
|
|
color: theme.palette.primary.main,
|
|
'& .MuiListItemIcon-root': {
|
|
color: theme.palette.primary.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|