11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
import {tableCellClasses} from '@mui/material/TableCell';
|
|
import {tableRowClasses} from '@mui/material/TableRow';
|
|
|
|
export const MuiTableBody = {
|
|
styleOverrides: {
|
|
root: {
|
|
[`& .${tableRowClasses.root}:last-child`]: {[`& .${tableCellClasses.root}`]: {'--TableCell-borderWidth': 0}},
|
|
},
|
|
},
|
|
};
|