react-cm-ui
Version:
React UI for Healthy Church
18 lines (14 loc) • 366 B
JSX
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;