blob: 396af232399c2cda9798dbf78a2439d21529ef81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { makeStyles } from '@mui/styles';
export default makeStyles((theme) => ({
table: {
marginBottom: theme.spacing(10),
},
columnAction: {
width: '1%',
paddingRight: theme.spacing(1),
},
}));
|