@seontechnologies/seon-id-verification
Version:
An advanced SDK featuring web components for natural person identification through document scanning, facial recognition, hand gesture, and face turning detection, designed for secure and efficient user verification.
13 lines (12 loc) • 405 B
TypeScript
import React from 'react';
interface CheckboxProps {
label: React.ReactNode;
value: boolean;
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
className?: string;
alt?: string;
name?: string;
id: string;
}
declare const Checkbox: ({ label, onChange, className, alt, id, value }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
export default Checkbox;