@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
11 lines (10 loc) • 387 B
TypeScript
export interface FeeContainerProps {
title: string;
cryptoPrice: string;
usdPrice: string;
ethIcon?: string;
isTotalPrice?: boolean;
totalPriceFontSize?: number;
}
declare const FeeContainer: ({ title, cryptoPrice, usdPrice, ethIcon, isTotalPrice, totalPriceFontSize, }: FeeContainerProps) => import("react/jsx-runtime").JSX.Element;
export default FeeContainer;