const useRowStyles = makeStyles({
root: ({ open }) => ({
backgroundColor: open ? "#F5F6FF" : "white",
backgroundOrigin: "border-box",
spacing: 8,
"& > *": {
height: "64px",
borderSpacing: "10px 10px ",
borderCollapse: "separate",
},
}),
});
<TableRow className={classes.root}>
cell content will be placed here
<TableRow>
this is the code snippet I am using with TableRow
Material-UI, but unfortunately, it doesn't seem to work as expected
Is there anyone who can guide me on how to insert space between rows in Material-UI TableRows?
I have encountered several similar questions, however, none of them have resolved my issue
For reference, I have created a reproducible example of this problem here