UNPKG

react-standalone-form-mui

Version:

The Material UI suite for react-standalone-form library.

21 lines (16 loc) 443 B
import React from 'react' import withStyles from '@material-ui/core/styles/withStyles' const FormActions = ({ children, classes }) => <div className={classes.root}>{children}</div> export default withStyles(theme => ({ root: { display: 'flex', justifyContent: 'flex-end', flexWrap: 'wrap', alignItems: 'center', margin: -theme.spacing(2), '& > *': { margin: theme.spacing(2), }, }, }))(FormActions)