UNPKG

@multiversx/sdk-dapp-swap

Version:

A library to hold the main logic for swapping between tokens on the MultiversX blockchain

13 lines 437 B
import React from 'react'; import { EsdtType } from 'types'; interface SelectOptionType { label: string; value: string; token: EsdtType; isDisabled: boolean; inDropdown?: boolean; handleDisabledOptionClick?: any; } export declare const SelectOption: ({ value, token, isDisabled, inDropdown, handleDisabledOptionClick }: SelectOptionType) => React.JSX.Element; export {}; //# sourceMappingURL=SelectOption.d.ts.map