UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

17 lines (16 loc) 595 B
import { ReactElement } from 'react'; import { QRCodeErrorCorrectionLevel } from 'qrcode'; import { ClassStyleProps } from '../../utils/types'; type QRCodeProps = ClassStyleProps & { Icon: ReactElement; accentColor?: string; ecl?: QRCodeErrorCorrectionLevel; logoMargin?: number; logoSize?: number; size?: number; value: string; walletKey?: string; showQrCodeImage?: boolean; }; export declare const QRCode: ({ ecl, Icon, logoMargin, logoSize, size, value, accentColor, walletKey, showQrCodeImage, className, style, }: QRCodeProps) => JSX.Element; export {};