@atlaskit/profilecard
Version:
A React component to display a card with user information.
19 lines (18 loc) • 677 B
TypeScript
/// <reference types="react" />
import { type AvatarProps } from '@atlaskit/avatar-group';
interface TeamProfileCardProps {
containerId: string;
teamId: string;
displayName: string;
description: string;
avatarImageUrl: string;
headerImageUrl: string;
memberAvatars: AvatarProps[];
memberCount: number;
cloudId: string;
userId: string;
isVerified?: boolean;
teamProfileUrl?: string;
}
export declare const TeamProfileCard: ({ containerId, teamId, displayName, description, avatarImageUrl, headerImageUrl, memberAvatars, memberCount, cloudId, userId, isVerified, teamProfileUrl, }: TeamProfileCardProps) => JSX.Element;
export {};