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