41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
|
|
import _extends from 'babel-runtime/helpers/extends';
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
|
|
export const styles = theme => ({
|
|
root: _extends({}, theme.typography.subheading, {
|
|
color: theme.palette.text.secondary,
|
|
margin: 0
|
|
})
|
|
});
|
|
|
|
function DialogContentText(props) {
|
|
const { children, classes, className } = props,
|
|
other = _objectWithoutProperties(props, ['children', 'classes', 'className']);
|
|
|
|
return React.createElement(
|
|
'p',
|
|
_extends({ className: classNames(classes.root, className) }, other),
|
|
children
|
|
);
|
|
}
|
|
|
|
DialogContentText.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
/**
|
|
* 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); |