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.

15 lines (14 loc) 563 B
import type { ExtendedChain } from '@lifi/sdk'; interface ChainListItemProps { chain: ExtendedChain; onSelect: (chain: ExtendedChain) => void; selected?: boolean; itemsSize: 'small' | 'medium'; size: number; start: number; isPinned: boolean; onPin: (chainId: number) => void; withPin: boolean; } export declare const ChainListItem: import("react").MemoExoticComponent<({ chain, onSelect, selected, itemsSize, size, start, isPinned, onPin, withPin, }: ChainListItemProps) => import("react/jsx-runtime").JSX.Element>; export {};