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
/
src
/
StatusChip
/
types.ts
9 lines
(8 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
type
StatusChipSize
=
"md"
|
"lg"
;
export
interface
StatusChipProps
{
children
?:
null
;
className
?:
string
;
label
:
string
;
size
?:
StatusChipSize
;
variant
:
"success"
|
"warning"
|
"neutral"
|
"error"
; }