UNPKG
@mtg-rio/mui-mentions
Version:
latest (0.1.11)
0.1.11
0.1.10
0.1.9
0.1.8
@mention people in a MUI TextField
@mtg-rio/mui-mentions
/
dist
/
esm
/
Mention.d.ts
10 lines
(9 loc)
•
251 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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;