Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
456 Bytes
import type { Components } from '@mui/material/styles';
import { tableCellClasses } from '@mui/material/TableCell';
import { tableRowClasses } from '@mui/material/TableRow';
import type { Theme } from '../types';
export const MuiTableBody = {
styleOverrides: {
root: {
[`& .${tableRowClasses.root}:last-child`]: { [`& .${tableCellClasses.root}`]: { '--TableCell-borderWidth': 0 } },
},
},
} satisfies Components<Theme>['MuiTableBody'];