@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
14 lines (13 loc) • 509 B
TypeScript
import { Currency } from '../interface';
export interface TotalOfferPriceProps {
wethValue: string;
listPrice: string;
priceUSD: number;
ethIcon?: string;
toolTipTitle: string;
isError?: boolean;
fiatCurrency?: Currency;
title?: string;
}
declare const TotalOfferPriceContainer: ({ ethIcon, wethValue, listPrice, priceUSD, toolTipTitle, isError, fiatCurrency, title, }: TotalOfferPriceProps) => import("react/jsx-runtime").JSX.Element;
export default TotalOfferPriceContainer;