UNPKG
cookie-test-app
Version:
latest (1.0.0)
1.0.0
testing
cookie-test-app
/
build
/
components
/
badge
/
Badge.d.ts
10 lines
(9 loc)
•
207 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
'./Badge.scss'
;
interface
BadgeProps
{
icon
:
string
;
secondary
?:
boolean
;
value
:
number
; }
export
declare
const
Badge
:
React
.
FC
<
BadgeProps
>;
export
{};