@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
10 lines (9 loc) • 475 B
TypeScript
import './FieldWrapper.scss';
import type { FieldContainerProps } from './types';
/**
* USAGE: Specifically defined as a util to provide a wrapper for fields created within the Address component
*
* NOT TO BE USED: if you just want to add a Country or State dropdown outside of an Address component
* - then you should implement <CountryField> or <StateField> directly
*/
export declare function FieldContainer(props: FieldContainerProps): import("preact").JSX.Element;