@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.
10 lines (9 loc) • 451 B
TypeScript
import { TOption } from '../select/SelectInput';
type RadioOptionsProps<ValueType extends string | number> = {
option: TOption<ValueType>;
onClick: (option: TOption<ValueType>) => void;
isSelected: boolean;
idPrefix: string;
};
declare function RadioOption<ValueType extends string | number>({ option, onClick, isSelected, idPrefix }: RadioOptionsProps<ValueType>): import("react/jsx-runtime").JSX.Element;
export default RadioOption;