UNPKG
@bottledbrains/ui
Version:
latest (0.23.0)
0.23.0
0.22.5
0.22.3
0.22.2
0.22.0
0.21.0
0.20.5
0.20.4
0.20.3
0.20.2
0.20.1
0.20.0
0.19.1
0.18.5
0.18.4
0.18.3
0.18.2
0.18.1
0.18.0
0.17.3
0.17.2
0.17.1
0.16.1
0.15.4
0.15.3
0.15.2
0.15.1
0.14.4
0.14.3
0.14.2
0.14.1
0.0.14
A React UI library based on Tailwind CSS
bottledbrains-ui.vercel.app
SouthpawGoblin/bottledbrains-ui
@bottledbrains/ui
/
lib
/
components
/
Switch
/
index.d.ts
9 lines
(8 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
FC
}
from
"react"
;
import
{
CommonControlProps
}
from
"../../types"
;
export
interface
SwitchProps
extends
CommonControlProps
{
value
:
boolean
;
onChange
:
(
val
:
boolean
) =>
void
; }
declare
const
Switch
:
FC
<
SwitchProps
>;
export
default
Switch
;