UNPKG

@atlaskit/mention

Version:

A React component used to display user profiles in a list for 'Mention' functionality

9 lines (8 loc) 283 B
import React from 'react'; import { type MentionDescription } from '../../types'; type MentionAvatarProps = { mention: MentionDescription; selected?: boolean; }; export declare const MentionAvatar: ({ mention, selected }: MentionAvatarProps) => React.JSX.Element; export {};