UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

9 lines (8 loc) 308 B
import { ChangeEventHandler } from 'react'; import { ChopLogicInputProps } from './_common'; export interface ChopLogicCheckboxProps extends ChopLogicInputProps { noLabel?: boolean; iconPosition?: 'left' | 'right'; onChange?: ChangeEventHandler<HTMLInputElement>; defaultChecked?: boolean; }