@material-ui/core
Version:
React components that implement Google's Material Design.
63 lines (57 loc) • 1.64 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import withStyles from '../styles/withStyles';
export const 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.
*/
const FormGroup = React.forwardRef(function FormGroup(props, ref) {
const {
classes,
className,
row = false
} = props,
other = _objectWithoutPropertiesLoose(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);