UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

90 lines (81 loc) 2.77 kB
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; import _extends from "@babel/runtime/helpers/esm/extends"; import React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import withStyles from '../styles/withStyles'; import useTheme from '../styles/useTheme'; export var styles = function styles(theme) { var elevations = {}; theme.shadows.forEach(function (shadow, index) { elevations["elevation".concat(index)] = { boxShadow: shadow }; }); return _extends({ /* Styles applied to the root element. */ root: { backgroundColor: theme.palette.background.paper, color: theme.palette.text.primary, transition: theme.transitions.create('box-shadow') }, /* Styles applied to the root element if `square={false}`. */ rounded: { borderRadius: theme.shape.borderRadius } }, elevations); }; var Paper = React.forwardRef(function Paper(props, ref) { var classes = props.classes, className = props.className, _props$component = props.component, Component = _props$component === void 0 ? 'div' : _props$component, _props$square = props.square, square = _props$square === void 0 ? false : _props$square, _props$elevation = props.elevation, elevation = _props$elevation === void 0 ? 1 : _props$elevation, other = _objectWithoutProperties(props, ["classes", "className", "component", "square", "elevation"]); if (process.env.NODE_ENV !== 'production') { // eslint-disable-next-line react-hooks/rules-of-hooks var theme = useTheme(); if (!theme.shadows[elevation]) { console.error("Material-UI: this elevation `".concat(elevation, "` is not implemented.")); } } return React.createElement(Component, _extends({ className: clsx(classes.root, classes["elevation".concat(elevation)], className, !square && classes.rounded), ref: ref }, other)); }); process.env.NODE_ENV !== "production" ? Paper.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, /** * The component used for the root node. * Either a string to use a DOM element or a component. */ component: PropTypes.elementType, /** * Shadow depth, corresponds to `dp` in the spec. * It accepts values between 0 and 24 inclusive. */ elevation: PropTypes.number, /** * If `true`, rounded corners are disabled. */ square: PropTypes.bool } : void 0; export default withStyles(styles, { name: 'MuiPaper' })(Paper);