UNPKG
acres-ui-test2
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
Acres React component library
acres-ui-test2
/
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
{};