MUI: removes deprecated theme.spacing.unit

master
Andrew P Maney 2020-02-28 21:59:32 -08:00 committed by Tom Hacohen
parent 059abe4807
commit 41029c1da9
1 changed files with 2 additions and 2 deletions

View File

@ -115,10 +115,10 @@ type CollectionRoutesPropsType = RouteComponentProps<{}> & {
const styles = (theme: any) => ({
button: {
marginLeft: theme.spacing.unit,
marginLeft: theme.spacing(1),
},
leftIcon: {
marginRight: theme.spacing.unit,
marginRight: theme.spacing(1),
},
});