UNPKG

infinity-forge

Version:
15 lines (14 loc) 352 B
import { InputProps } from '../interfaces.js'; export type IInputSwitch = { color?: string; design?: 'checkbox'; defaultActive?: boolean; inputSwitchCheckbox?: { valueIsTrue: { Icon: () => React.ReactNode; }; valueIsFalse: { Icon: () => React.ReactNode; }; }; } & InputProps;