import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; export const styles = theme => ({ root: { ...theme.typography.subheading, color: theme.palette.text.secondary, margin: 0, }, }); function DialogContentText(props) { const { children, classes, className, ...other } = props; return (

{children}

); } DialogContentText.propTypes = { /** * The content of the component. */ children: PropTypes.node, /** * Useful to extend the style applied to components. */ classes: PropTypes.object.isRequired, /** * @ignore */ className: PropTypes.string, }; export default withStyles(styles, { name: 'MuiDialogContentText' })(DialogContentText);