UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

12 lines 524 B
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