UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

19 lines (18 loc) 579 B
import { ComponentProps } from 'react'; export declare const getChainIcon: (chainId: string) => string | undefined; export type Token = { logoUrl: string; name?: string; }; type TokenIconSize = '12' | '24' | '32' | '40' | '48' | '80'; interface TokenIconProps extends ComponentProps<'div'> { token: Token; chain: string; size?: TokenIconSize; showChainIcon?: boolean; } export declare const TokenIcon: { ({ token, chain, size, showChainIcon, ...props }: TokenIconProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};