synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
18 lines (17 loc) • 552 B
TypeScript
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>;