UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

61 lines (55 loc) 1.81 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'; import '../Button'; // So we don't have any override priority issue. export var styles = { /* Styles applied to the root element. */ root: { display: 'flex', alignItems: 'center', padding: 8, justifyContent: 'flex-end' }, /* Styles applied to the root element if `disableSpacing={false}`. */ spacing: { '& > * + *': { marginLeft: 8 } } }; var ExpansionPanelActions = React.forwardRef(function ExpansionPanelActions(props, ref) { var classes = props.classes, className = props.className, _props$disableSpacing = props.disableSpacing, disableSpacing = _props$disableSpacing === void 0 ? false : _props$disableSpacing, other = _objectWithoutProperties(props, ["classes", "className", "disableSpacing"]); return React.createElement("div", _extends({ className: clsx(classes.root, className, !disableSpacing && classes.spacing), ref: ref }, other)); }); process.env.NODE_ENV !== "production" ? ExpansionPanelActions.propTypes = { /** * The content of the component. */ children: PropTypes.node.isRequired, /** * 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, /** * If `true`, the actions do not have additional margin. */ disableSpacing: PropTypes.bool } : void 0; export default withStyles(styles, { name: 'MuiExpansionPanelActions' })(ExpansionPanelActions);