Files
lettersoup-online/002_source/cms/src/styles/theme/components/card-header.tsx
louiscklaw 6c931c1fe8 build ok,
2025-04-14 09:26:24 +08:00

20 lines
684 B
TypeScript

import { avatarClasses } from '@mui/material/Avatar';
import type { Components } from '@mui/material/styles';
import type { Theme } from '../types';
export const MuiCardHeader = {
defaultProps: { titleTypographyProps: { variant: 'h6' }, subheaderTypographyProps: { variant: 'body2' } },
styleOverrides: {
root: { padding: '32px 24px 16px' },
avatar: {
[`& .${avatarClasses.root}`]: {
'--Icon-fontSize': 'var(--icon-fontSize-lg)',
backgroundColor: 'var(--mui-palette-background-paper)',
boxShadow: 'var(--mui-shadows-8)',
color: 'var(--mui-palette-text-primary)',
},
},
},
} satisfies Components<Theme>['MuiCardHeader'];