UNPKG

@vojtechportes/react-query-builder

Version:
9 lines (8 loc) 232 B
import React from 'react'; export interface SwitchProps { switched: boolean; onChange?: (value: boolean) => void; disabled?: boolean; className?: string; } export declare const Switch: React.FC<SwitchProps>;