UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

49 lines (44 loc) 1.3 kB
import _extends from "@babel/runtime/helpers/builtin/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/builtin/objectWithoutProperties"; // @inheritedComponent Typography import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; import Typography from '../Typography'; export const styles = theme => ({ root: { color: theme.palette.text.secondary } }); function DialogContentText(props) { const { children, classes, className } = props, other = _objectWithoutProperties(props, ["children", "classes", "className"]); return React.createElement(Typography, _extends({ component: "p", variant: "subheading", className: classNames(classes.root, className) }, other), children); } DialogContentText.propTypes = process.env.NODE_ENV !== "production" ? { /** * The content of the component. */ children: PropTypes.node, /** * 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: 'MuiDialogContentText' })(DialogContentText);