UNPKG

@tantainnovative/ndpr-toolkit

Version:

Nigerian Data Protection Compliance Toolkit for implementing NDPR and DPA compliant features

13 lines 468 B
import React from 'react'; interface CheckboxFieldProps { id: string; name: string; label: string; checked: boolean; onChange: (e: React.ChangeEvent<HTMLInputElement>) => void; className?: string; description?: string; } export default function CheckboxField({ id, name, label, checked, onChange, className, description, }: CheckboxFieldProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=CheckboxField.d.ts.map