chop-logic-components
Version:
React UI components library for Chop Logic project
9 lines (8 loc) • 308 B
TypeScript
import { ChangeEventHandler } from 'react';
import { ChopLogicInputProps } from './_common';
export interface ChopLogicCheckboxProps extends ChopLogicInputProps {
noLabel?: boolean;
iconPosition?: 'left' | 'right';
onChange?: ChangeEventHandler<HTMLInputElement>;
defaultChecked?: boolean;
}