UNPKG

react-cm-ui

Version:
18 lines (14 loc) 356 B
import MUIListItemIcon from '@material-ui/core/ListItemIcon'; import React from 'react'; function ListItemIcon(props) { const { ...otherProps } = props; return ( <MUIListItemIcon // eslint-disable-next-line react/jsx-props-no-spreading {...otherProps} /> ); } export default ListItemIcon;