Files
aso/frontend/hospital-portal/src/theme/overrides/Avatar.ts
2023-07-03 11:39:08 +07:00

30 lines
719 B
TypeScript

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Avatar(theme: Theme) {
return {
MuiAvatar: {
styleOverrides: {
colorDefault: {
color: theme.palette.text.secondary,
backgroundColor: theme.palette.grey[400]
}
}
},
MuiAvatarGroup: {
styleOverrides: {
avatar: {
fontSize: 16,
fontWeight: theme.typography.fontWeightMedium,
'&:first-of-type': {
fontSize: 14,
color: theme.palette.primary.main,
backgroundColor: theme.palette.primary.lighter
}
}
}
}
};
}