materialuiupgraded
Version:
Material-UI's workspace package
45 lines (38 loc) • 1.18 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import withStyles from '../styles/withStyles';
export const styles = theme => ({
/* Styles applied to the root element. */
root: theme.mixins.gutters({
paddingTop: 16,
paddingBottom: 16,
'&:last-child': {
paddingBottom: 24,
},
}),
});
function CardContent(props) {
const { classes, className, component: Component, ...other } = props;
return <Component className={classNames(classes.root, className)} {...other} />;
}
CardContent.propTypes = {
/**
* 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,
/**
* The component used for the root node.
* Either a string to use a DOM element or a component.
*/
component: PropTypes.oneOfType([PropTypes.string, PropTypes.func, PropTypes.object]),
};
CardContent.defaultProps = {
component: 'div',
};
export default withStyles(styles, { name: 'MuiCardContent' })(CardContent);