@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
13 lines (12 loc) • 365 B
TypeScript
import { FC, ReactElement, ReactNode } from 'react';
import { CopyKey } from '../../shared';
type WalletInformationCardProps = {
address: string;
ens?: string;
icon?: ReactElement;
network?: ReactNode;
balance?: ReactNode;
menu?: ReactNode;
} & CopyKey;
export declare const WalletInformationCard: FC<WalletInformationCardProps>;
export {};