@turnkey/react-wallet-kit
Version:
The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.
16 lines • 486 B
TypeScript
import { ReactNode } from "react";
import type { Chain } from "@turnkey/core";
interface WalletButtonProps {
icon: string | ReactNode;
name: string;
chains: Array<{
namespace: Chain;
isConnected: boolean;
}>;
onClick: () => void;
shouldShowDisconnect?: boolean;
isMobile?: boolean;
}
export declare function WalletButton(props: WalletButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=WalletButton.d.ts.map