forked from sombochea/verdaccio-ui
fix: fixed imports & func's name (#182)
This commit is contained in:
committed by
Juan Picado @jotadeveloper
parent
752e2b963d
commit
3888736e45
@@ -2,7 +2,7 @@ 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 = HTMLElementTagNameMap['div'];
|
||||
type AvatarRef = HTMLDivElement;
|
||||
|
||||
const Avatar = forwardRef<AvatarRef, AvatarProps>(function Avatar(props, ref) {
|
||||
return <MaterialUIAvatar {...props} ref={ref} />;
|
||||
|
||||
Reference in New Issue
Block a user