UNPKG

@dynamic-labs/sdk-react-core

Version:

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

11 lines (10 loc) 340 B
/// <reference types="react" /> import { Wallet } from '../../../../..'; type Props = { wallet: Wallet; className?: string; network: number | string | undefined; variant?: 'body_normal' | 'numbers_display'; }; export declare const Balance: ({ wallet, network, className, variant, }: Props) => JSX.Element | null; export {};