File size: 468 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import type { Components } from '@mui/material/styles';
import { tableCellClasses } from '@mui/material/TableCell';
import type { Theme } from '../types';
export const MuiTableHead = {
styleOverrides: {
root: {
[`& .${tableCellClasses.root}`]: {
backgroundColor: 'var(--mui-palette-background-level1)',
color: 'var(--mui-palette-text-secondary)',
lineHeight: 1,
},
},
},
} satisfies Components<Theme>['MuiTableHead'];
|