Files
Doormilexpress_app/src/themes/overrides/TableFooter.js
Malai Raja 7113ac0681 first
2023-11-27 17:09:27 +05:30

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}`
}
}
}
};
}