UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

10 lines (9 loc) 384 B
import React from 'react'; import { type AnalyticsEventPayload } from '@atlaskit/analytics-next'; import { type ProfileType } from '../../types'; interface AnalyticsProps { fireAnalytics?: (payload: AnalyticsEventPayload) => void; profileType: ProfileType; } export declare const LoadingState: ({ fireAnalytics, profileType }: AnalyticsProps) => React.JSX.Element; export {};