UNPKG
cookie12-test-ui
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
React component library
cookie12-test-ui
/
build
/
components
/
switch
/
Switch.d.ts
10 lines
(9 loc)
•
236 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
'./Switch.scss'
;
interface
SwitchProps
{
checked
?:
boolean
;
disabled
?:
boolean
;
handleChange
:
(
e
:
boolean
) =>
void
; }
export
declare
const
Switch
:
React
.
FC
<
SwitchProps
>;
export
{};