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) 707 B
import type { ExtendedChain } from '@lifi/sdk'; import type { RefObject } from 'react'; import type { FormType } from '../../stores/form/types.js'; interface VirtualizedChainListProps { scrollElementRef: RefObject<HTMLDivElement | null>; formType: FormType; chains: ExtendedChain[]; onSelect: (chain: ExtendedChain) => void; selectedChainId?: number; itemsSize: 'small' | 'medium'; hasSearchQuery: boolean; withPinnedChains: boolean; } export declare const VirtualizedChainList: ({ formType, chains, hasSearchQuery, onSelect, selectedChainId, itemsSize, scrollElementRef, withPinnedChains, }: VirtualizedChainListProps) => import("react/jsx-runtime").JSX.Element; export {};