synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
19 lines (18 loc) • 613 B
TypeScript
import React from 'react';
import { UserProfile } from '../utils/synapseTypes/';
import { MenuAction } from './UserCardContextMenu';
export declare type UserCardMediumProps = {
userProfile: UserProfile;
menuActions?: MenuAction[];
imageURL?: string;
hideEmail?: boolean;
isLarge?: boolean;
link?: string;
openLinkInNewTab?: boolean;
disableLink?: boolean;
isCertified?: boolean;
isValidated?: boolean;
};
export declare const UserCardMedium: React.FC<UserCardMediumProps>;
export declare const LoadingUserCardMedium: React.FunctionComponent;
export default UserCardMedium;