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

16 lines
412 B
JavaScript

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