@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 476 B
TypeScript
import { ReactElement } from 'react';
import { WalletConnector } from '@dynamic-labs/wallet-connector-core';
export type QrCodeWrapperProps = {
uri: string;
desktopUri?: string;
icon: ReactElement;
accentColor: string;
showCopyToClipboardButton?: boolean;
walletConnector?: WalletConnector;
};
export declare const QrCodeWrapper: ({ uri, desktopUri, icon, accentColor, showCopyToClipboardButton, walletConnector, }: QrCodeWrapperProps) => JSX.Element;