UNPKG

@lifi/widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

24 lines (23 loc) 641 B
/// <reference types="react" /> import type { Chain, StaticToken } from '@lifi/sdk'; import type { SxProps, Theme } from '@mui/material'; export declare const TokenAvatarFallback: React.FC<{ token?: StaticToken; isLoading?: boolean; sx?: SxProps<Theme>; }>; export declare const TokenAvatarBase: React.FC<{ token?: StaticToken; chain?: Chain; isLoading?: boolean; sx?: SxProps<Theme>; }>; export declare const TokenAvatar: React.FC<{ token?: StaticToken; chain?: Chain; isLoading?: boolean; sx?: SxProps<Theme>; }>; export declare const TokenAvatarDefault: React.FC<{ sx?: SxProps<Theme>; }>;