UNPKG

@mtg-rio/mui-mentions

Version:

@mention people in a MUI TextField

10 lines (9 loc) 251 B
import React from 'react'; interface MentionProps { /** The display string of the mention. */ display: string; /** The color of the highlight. */ color?: string; } declare const Mention: React.FC<MentionProps>; export default Mention;