@harvest-profit/npk
Version:
NPK UI Design System
14 lines • 385 B
TypeScript
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