UNPKG
@tarojsx/ui
Version:
latest (0.31.1)
0.31.1
0.31.0
0.30.1
0.15.0
0.14.4
0.14.3
0.14.2
0.14.1
0.14.0
0.11.0
0.10.2
0.10.1
0.10.0
0.6.1
0.6.0
0.5.0
0.4.0
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
We reinvents the UI for Taro3+
github.com/tarojsx/ui
tarojsx/ui
@tarojsx/ui
/
dist
/
Badge.d.ts
11 lines
(10 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
'../style/Badge.scss'
;
export
interface
BadgeProps
{
className
?:
string
;
style
?:
React
.
CSSProperties
;
dot
?:
boolean
;
value
?:
number
|
string
;
maxValue
?:
number
; }
export
declare
const
Badge
:
React
.
FC
<
BadgeProps
>;