File size: 275 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 | import type { Components } from '@mui/material/styles';
import type { Theme } from '../types';
export const MuiCardContent = {
styleOverrides: { root: { padding: '32px 24px', '&:last-child': { paddingBottom: '32px' } } },
} satisfies Components<Theme>['MuiCardContent'];
|