16 lines
416 B
JavaScript
16 lines
416 B
JavaScript
// ==============================|| OVERRIDES - TABLE CELL ||============================== //
|
|
|
|
export default function TableFooter(theme) {
|
|
return {
|
|
MuiTableFooter: {
|
|
styleOverrides: {
|
|
root: {
|
|
backgroundColor: theme.palette.grey[50],
|
|
borderTop: `2px solid ${theme.palette.divider}`,
|
|
borderBottom: `1px solid ${theme.palette.divider}`
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|