UNPKG

@harvest-profit/npk

Version:
14 lines 385 B
import { FC } from 'react'; interface CheckboxProps { label?: String; labelDescription?: String; className?: string; value: boolean | 'mixed'; disabled?: boolean; toggleOnLabelClick?: boolean; [key: string]: any; } declare const Checkbox: FC<CheckboxProps> & {}; export default Checkbox; export type { CheckboxProps }; //# sourceMappingURL=Checkbox.d.ts.map