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) 315 B
interface TabOptions<T> { name: T; label: string; disabled?: boolean; } export interface TabsProps<T> { tabs: TabOptions<T>[]; activeTab: T; onChange: (tab: T) => void; } export declare const Tabs: <T>({ tabs, activeTab, onChange }: TabsProps<T>) => import("preact").JSX.Element; export {};