UNPKG

react-cm-ui

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