UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

20 lines (19 loc) 648 B
import React from 'react'; export declare const CardTriggerWrapper: () => React.JSX.Element; export declare const CardWrapper: ({ testId, children, }: { testId?: string; children: React.ReactNode; }) => React.JSX.Element; export declare const CardHeader: ({ image, isLoading, label, isDisabled, }: { image?: string; isLoading?: boolean; label?: string; isDisabled?: boolean; }) => React.JSX.Element; export declare const CardContent: (props: { children: React.ReactNode; }) => React.JSX.Element; export declare const LoadingWrapper: (props: { testId?: string; children: React.ReactNode; }) => React.JSX.Element;