@activelylearn/material-ui
Version:
Material-UI's workspace package
44 lines (38 loc) • 1.13 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import withStyles from '../styles/withStyles';
export const styles = theme => ({
root: {
marginRight: theme.spacing.unit * 2,
color: theme.palette.action.active,
flexShrink: 0,
},
});
/**
* A simple wrapper to apply `List` styles to an `Icon` or `SvgIcon`.
*/
function ListItemIcon(props) {
const { children, classes, className: classNameProp, ...other } = props;
return React.cloneElement(children, {
className: classNames(classes.root, classNameProp, children.props.className),
...other,
});
}
ListItemIcon.propTypes = {
/**
* The content of the component, normally `Icon`, `SvgIcon`,
* or a `@material-ui/icons` SVG icon element.
*/
children: PropTypes.element.isRequired,
/**
* 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: 'MuiListItemIcon' })(ListItemIcon);