UNPKG

@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.

8 lines (7 loc) 352 B
import { TOption } from './SelectInput'; type OptionProps<ValueType extends string | number> = { option: TOption<ValueType>; onClick: (option: TOption<ValueType>) => void; }; declare function Option<ValueType extends string | number>({ option, onClick }: OptionProps<ValueType>): import("react/jsx-runtime").JSX.Element; export default Option;