UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

46 lines (41 loc) 1.29 kB
import _extends from "@babel/runtime/helpers/builtin/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/builtin/objectWithoutProperties"; import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; export const styles = theme => ({ root: { display: 'flex', padding: `${theme.spacing.unit}px ${theme.spacing.unit * 3}px ${theme.spacing.unit * 3}px` } }); function ExpansionPanelDetails(props) { const { classes, children, className } = props, other = _objectWithoutProperties(props, ["classes", "children", "className"]); return React.createElement("div", _extends({ className: classNames(classes.root, className) }, other), children); } ExpansionPanelDetails.propTypes = process.env.NODE_ENV !== "production" ? { /** * The content of the expansion panel details. */ children: PropTypes.node.isRequired, /** * Override or extend the styles applied to the component. * See [CSS API](#css-api) below for more details. */ classes: PropTypes.object.isRequired, /** * @ignore */ className: PropTypes.string } : {}; export default withStyles(styles, { name: 'MuiExpansionPanelDetails' })(ExpansionPanelDetails);