synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
12 lines • 524 B
TypeScript
import { UserProfile } from '@sage-bionetworks/synapse-types';
export type AvatarSize = 'SMALL' | 'MEDIUM' | 'LARGE';
export type AvatarProps = {
userProfile: UserProfile;
avatarSize?: AvatarSize;
imageURL?: string;
showCardOnHover?: boolean;
isLoadingAvatar?: boolean;
className?: string;
};
export declare function Avatar({ userProfile, avatarSize, imageURL, showCardOnHover, isLoadingAvatar, className, }: AvatarProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Avatar.d.ts.map