UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

8 lines (7 loc) 410 B
import React from 'react'; import { type TriggerProps } from '@atlaskit/popup'; import { type ProfileCardTriggerProps } from './types'; export declare const PopupTrigger: <T>(props: Partial<TriggerProps> & { showProfilecard: () => void; hideProfilecard: () => void; } & Pick<ProfileCardTriggerProps<T>, 'ariaLabelledBy' | 'trigger' | 'children'> & React.RefAttributes<HTMLSpanElement>) => JSX.Element;