import React, { forwardRef } from 'react'; import { default as MaterialUIAvatar, AvatarProps } from '@material-ui/core/Avatar'; // The default element type of MUI's Avatar is 'div' and we don't allow the change of this prop type AvatarRef = HTMLDivElement; const Avatar = forwardRef(function Avatar(props, ref) { return ; }); export default Avatar;