@atlaskit/mention
Version:
A React component used to display user profiles in a list for 'Mention' functionality
8 lines (7 loc) • 401 B
TypeScript
import { MentionType } from '../../types';
import { type ForwardRefExoticComponent, type HTMLAttributes, type RefAttributes } from 'react';
export interface PrimitiveMentionProps extends HTMLAttributes<HTMLSpanElement> {
mentionType: MentionType;
}
declare const PrimitiveMention: ForwardRefExoticComponent<PrimitiveMentionProps & RefAttributes<HTMLSpanElement>>;
export default PrimitiveMention;