synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
15 lines (14 loc) • 423 B
TypeScript
/// <reference types="react" />
import { UserProfile } from '../utils/synapseTypes/';
declare type UserCardLargeProps = {
userProfile: UserProfile;
isCertified?: boolean;
};
/**
* UserCardLarge wraps around UserCardMedium
*
* @export UserCardLarge
* @param {UserCardLargeProps} { userProfile }
*/
export declare function UserCardLarge({ userProfile, isCertified }: UserCardLargeProps): JSX.Element;
export {};