UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

62 lines (56 loc) 1.71 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; import React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import withStyles from '../styles/withStyles'; export var styles = { /* Styles applied to the root element. */ root: { display: 'flex', flexDirection: 'column', flexWrap: 'wrap' }, /* Styles applied to the root element if `row={true}`. */ row: { flexDirection: 'row' } }; /** * `FormGroup` wraps controls such as `Checkbox` and `Switch`. * It provides compact row layout. * For the `Radio`, you should be using the `RadioGroup` component instead of this one. */ var FormGroup = React.forwardRef(function FormGroup(props, ref) { var classes = props.classes, className = props.className, _props$row = props.row, row = _props$row === void 0 ? false : _props$row, other = _objectWithoutProperties(props, ["classes", "className", "row"]); return React.createElement("div", _extends({ className: clsx(classes.root, className, row && classes.row), ref: ref }, other)); }); process.env.NODE_ENV !== "production" ? FormGroup.propTypes = { /** * The content of the component. */ children: PropTypes.node, /** * Override or extend the styles applied to the component. * See [CSS API](#css) below for more details. */ classes: PropTypes.object.isRequired, /** * @ignore */ className: PropTypes.string, /** * Display group of elements in a compact row. */ row: PropTypes.bool } : void 0; export default withStyles(styles, { name: 'MuiFormGroup' })(FormGroup);