UNPKG

@guardian/threads

Version:
10 lines (9 loc) 284 B
import { FunctionComponent } from 'react'; export declare type CheckboxProps = { id?: string; disabled?: boolean; checked?: boolean; indeterminate?: boolean; onChange?: (status: boolean) => void; }; export declare const Checkbox: FunctionComponent<CheckboxProps>;