UNPKG

@brizy/ui

Version:
10 lines (9 loc) 267 B
import { ReactElement } from "react"; export interface Props { checked: boolean; onChange?: (a: boolean) => void; size?: "default" | "small"; onClick?: () => void; disabled?: boolean; } export declare const Switch: (props: Props) => ReactElement;