UNPKG

@adyen/kyc-components

Version:

`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar

13 lines (12 loc) 389 B
import type { DocumentType } from '../../core/models/api/document'; import type { Translatable } from '../../language/types'; import type { SvgName } from '../ui/atoms/Svg/Svg'; export interface DocumentGuidanceProps { type?: DocumentType; className?: string; } export interface DocumentGuidanceItem { svgName: SvgName; translationKey: Translatable; valid?: boolean; }