UNPKG

@dynamic-labs/sdk-react-core

Version:

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

9 lines (8 loc) 302 B
import { FC, ReactElement } from 'react'; export type DynamicBridgeWalletCardBodyProps = { walletKey: string; walletAddress: string; walletBalance?: ReactElement; onDisconnectClick?: () => void; }; export declare const DynamicBridgeWalletCardBody: FC<DynamicBridgeWalletCardBodyProps>;