Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahmat Hidayat committed Mar 22, 2019
1 parent d9eb341 commit 640378b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/src/pages/demos/badges/BadgeMax.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ import { withStyles, Theme, createStyles, WithStyles } from '@material-ui/core/s
import Badge from '@material-ui/core/Badge';
import MailIcon from '@material-ui/icons/Mail';

const styles = (theme: Theme) => createStyles({
margin: {
margin: theme.spacing(2),
marginRight: theme.spacing(3),
},
});
const styles = (theme: Theme) =>
createStyles({
margin: {
margin: theme.spacing(2),
marginRight: theme.spacing(3),
},
});

function BadgeMax(props: WithStyles<typeof styles>) {
const { classes } = props;
Expand Down

0 comments on commit 640378b

Please sign in to comment.