UNPKG

@bottledbrains/ui

Version:

A React UI library based on Tailwind CSS

9 lines (8 loc) 258 B
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;