UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

13 lines (12 loc) 289 B
import * as React from "react"; interface CheckboxProps { type: string; id: string; nameLabel: string; nameAttribute: string; data?: null | boolean; required?: boolean; defaultValue?: string; } export declare const Checkbox: React.FC<CheckboxProps>; export {};