40 lines
952 B
Plaintext
40 lines
952 B
Plaintext
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
|
|
export const styles = theme => ({
|
|
root: {
|
|
display: 'flex',
|
|
flexGrow: 1,
|
|
padding: `${theme.spacing.unit}px ${theme.spacing.unit * 3}px ${theme.spacing.unit * 3}px`,
|
|
},
|
|
});
|
|
|
|
function ExpansionPanelDetails(props) {
|
|
const { classes, children, className, ...other } = props;
|
|
|
|
return (
|
|
<div className={classNames(classes.root, className)} {...other}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ExpansionPanelDetails.propTypes = {
|
|
/**
|
|
* The content of the expansion panel details.
|
|
*/
|
|
children: PropTypes.node.isRequired,
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes: PropTypes.object.isRequired,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default withStyles(styles, { name: 'MuiExpansionPanelDetails' })(ExpansionPanelDetails);
|