@atlaskit/profilecard
Version:
A React component to display a card with user information.
10 lines (9 loc) • 332 B
TypeScript
import React from 'react';
import { type ProfileCardTriggerProps } from './types';
export interface ProfileCardHandle {
hideProfilecard: () => void;
}
declare const ProfileCardTrigger: <T>(props: ProfileCardTriggerProps<T> & {
ref?: React.Ref<ProfileCardHandle>;
}) => React.ReactElement;
export default ProfileCardTrigger;