@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
13 lines (12 loc) • 456 B
TypeScript
/// <reference types="react" />
type WalletDetailsCardProps = {
/** String representation of a wallet address */
address: string;
/** Whether the overview should be open or closed */
open: boolean;
/** Callback when the overlay is closed */
onClose: VoidFunction;
};
/** Component for wallet detail overlays */
export declare const WalletDetailsCard: ({ address, open, onClose, }: WalletDetailsCardProps) => JSX.Element;
export {};