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.

16 lines (15 loc) 501 B
import type { LiFiStep, TokenAmount } from '@lifi/sdk'; import type { BoxProps } from '@mui/material'; import type { FC } from 'react'; interface TokenProps { token: TokenAmount; impactToken?: TokenAmount; enableImpactTokenTooltip?: boolean; step?: LiFiStep; stepVisible?: boolean; disableDescription?: boolean; isLoading?: boolean; } export declare const Token: FC<TokenProps & BoxProps>; export declare const TokenSkeleton: FC<Partial<TokenProps> & BoxProps>; export {};