material ui spacing code example
Example 1: spacing material ui makestyles
const theme = createMuiTheme({
spacing: [0, 4, 8, 16, 32, 64],
});
theme.spacing(2); // = 8
Example 2: spacing material ui
const theme = {
spacing: [0, 2, 3, 5, 8],
}
// margin: -3px;
// margin: 0px;
// margin: 3px;