UNPKG

@surveycake/rc

Version:

react component of surveycake

12 lines (11 loc) 350 B
/// <reference types="react" /> export interface SwitchProps { checked?: boolean; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; disabled?: boolean; innerCheckedNode?: React.ReactNode; innerUnCheckedNode?: React.ReactNode; readOnly?: boolean; required?: boolean; icon?: React.ReactNode; }