@atlaskit/profilecard
Version:
A React component to display a card with user information.
14 lines (13 loc) • 532 B
TypeScript
import React from 'react';
import { type AgentActionsType, type Flag, type ProfileClient, type TriggerType } from '../../types';
export type AgentProfileCardResourcedProps = {
accountId: string;
cloudId: string;
resourceClient: ProfileClient;
trigger?: TriggerType;
children?: React.ReactNode;
viewingUserId?: string;
product?: string;
addFlag?: (flag: Flag) => void;
} & AgentActionsType;
export declare const AgentProfileCardResourced: (props: AgentProfileCardResourcedProps) => React.JSX.Element;