UNPKG
cookie-test-app
Version:
latest (1.0.0)
1.0.0
testing
cookie-test-app
/
build
/
components
/
checkbox
/
Checkbox.d.ts
10 lines
(9 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
'./Checkbox.scss'
;
interface
CheckboxProps
{
disabled
?:
boolean
|
'disabled'
;
handleChange
:
(
[]:
any
[]
) =>
void
;
label
:
string
; }
export
declare
const
Checkbox
:
React
.
FC
<
CheckboxProps
>;
export
{};