UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

18 lines (17 loc) 552 B
import React from 'react'; import { AvatarSize } from './Avatar'; import { UserProfile } from '../utils/synapseTypes/'; export declare type UserCardSmallProps = { userProfile: UserProfile; showCardOnHover?: boolean; disableLink?: boolean; link?: string; showAccountLevelIcon?: boolean; openLinkInNewTab?: boolean; withAvatar?: boolean; avatarSize?: AvatarSize; imageURL?: string; className?: string; showFullName?: boolean; }; export declare const UserCardSmall: React.FunctionComponent<UserCardSmallProps>;