UNPKG

@atlaskit/mention

Version:

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

8 lines (7 loc) 381 B
import { MentionType } from '../../types'; import { type HTMLAttributes } from 'react'; export interface PrimitiveMentionProps extends HTMLAttributes<HTMLSpanElement> { mentionType: MentionType; } declare const PrimitiveMention: import("react").ForwardRefExoticComponent<PrimitiveMentionProps & import("react").RefAttributes<HTMLSpanElement>>; export default PrimitiveMention;