UNPKG
@bytebeans/macaw-ui
Version:
latest (0.3.4)
0.3.4
0.3.3
0.3.2
0.3.1
Saleor's UI component library
macaw-ui.vercel.app
bytebeans/macaw-ui
@bytebeans/macaw-ui
/
dist
/
types
/
UserChipMenu
/
UserChipMenu.d.ts
10 lines
(9 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
"react"
;
export
interface
UserChipProps
{
avatar
:
string
|
null
;
initials
:
string
;
name
:
string
;
subtext
?:
string
;
open
?:
boolean
; }
export
declare
const
UserChipMenu
:
React
.
FC
<
UserChipProps
>;