I am struggling to change the border color of a table cell. Despite numerous attempts, I have been unsuccessful in my efforts. Can someone please assist me with this?
const customTheme = createTheme({
overrides: {
MuiTableCell: {
root: {
borderBottom: '1px solid #ff0000',
},
},
},
})
I applied the above theme to my table, but unfortunately, it did not work as expected.