UNPKG

react-cm-ui

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