We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e67ac87 commit 648b54dCopy full SHA for 648b54d
src/interface/hosted-buttons.js
@@ -7,6 +7,7 @@ import {
7
getCardFormComponent,
8
type CardFormComponent,
9
} from "../zoid/card-form";
10
+import { getQRCodeComponent, type QRCodeComponent } from "../zoid/qr-code";
11
import { getCheckoutComponent, type CheckoutComponent } from "../zoid/checkout";
12
import type { LazyExport, LazyProtectedExport } from "../types";
13
import { protectedExport } from "../lib";
@@ -23,6 +24,10 @@ export const CardForm: LazyProtectedExport<CardFormComponent> = {
23
24
__get__: () => protectedExport(getCardFormComponent()),
25
};
26
27
+export const QRCode: LazyProtectedExport<QRCodeComponent> = {
28
+ __get__: () => protectedExport(getQRCodeComponent()),
29
+};
30
+
31
export function setup() {
32
getButtonsComponent();
33
getCheckoutComponent();
0 commit comments