@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
19 lines (18 loc) • 1.08 kB
JavaScript
try {
let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "75680866-bf49-4206-bbb9-89f3eb636db8", e._sentryDebugIdIdentifier = "sentry-dbid-75680866-bf49-4206-bbb9-89f3eb636db8");
} catch (e) {}
import { r as useTranslation } from "./translation-BYvhW5zA.js";
import { S as AlertIcon, k as Header } from "./resolveEnvironment-DNmu53Rr.js";
import { jsx, jsxs } from "preact/jsx-runtime";
//#region src/components/Shared/AccountSetupRejected/AccountSetupRejected.tsx
function AccountSetupRejected() {
const { t } = useTranslation("common");
return /* @__PURE__ */ jsxs("div", { children: [
/* @__PURE__ */ jsx(AlertIcon, { variant: "error" }),
/* @__PURE__ */ jsx(Header, { title: t(($) => $["cantSetUpAcccount"]) }),
/* @__PURE__ */ jsx("span", { children: t(($) => $["accountCantBeSetUp"]) })
] });
}
//#endregion
export { AccountSetupRejected };