@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
11 lines (10 loc) • 397 B
TypeScript
import { FeeData } from '../interface';
export interface PriceContainerProps {
serviceFee: FeeData;
creatorFee: FeeData;
totalPrice?: FeeData;
ethIcon?: string;
tooltipTitle?: string;
}
declare const PriceContainer: ({ creatorFee, serviceFee, totalPrice, ethIcon, tooltipTitle, }: PriceContainerProps) => import("react/jsx-runtime").JSX.Element;
export default PriceContainer;