@enclavemoney/enclave-wallet-playground
Version:
A simple playground for enclave wallet SDK
24 lines (23 loc) • 678 B
TypeScript
import React from "react";
import { SwapParams } from "../types/swap";
import { ThemeMode, CornerRadius } from "../types/theme";
interface WalletModalProps {
isOpen: boolean;
onClose: () => void;
walletSDKKey: string;
swapParams?: SwapParams;
showMessagePopup?: boolean;
messageType?: "success" | "error";
transactionId?: string;
theme?: ThemeMode;
cornerRadius?: CornerRadius;
primaryColor?: string;
brandLogo?: string;
isGoogleAuth?: boolean;
isTwitterAuth?: boolean;
isPasskeyAuth?: boolean;
fontFamily?: string;
showEnclave?: boolean;
}
export declare const WalletModal: React.FC<WalletModalProps>;
export {};