@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
10 lines (9 loc) • 351 B
TypeScript
import React from 'react';
import { type BoxProps } from '../../../components/Box/Box';
interface LightningInvoiceQrCodeProps {
isCashApp?: boolean;
bolt11?: string;
marginY?: BoxProps['marginY'];
}
export declare function LightningInvoiceQrCode({ isCashApp, bolt11, marginY, }: LightningInvoiceQrCodeProps): React.JSX.Element;
export {};