export interface AvatarProps extends React.HTMLAttributes<HTMLDivElement> {
    showName?: boolean;
    avatar?: string;
    name?: string;
}
