@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
13 lines • 392 B
TypeScript
import { Token } from "../../../../types/web3";
export interface TradeControl {
base: Token;
quote: Token;
price: number | string;
fee: number;
option?: "market" | "limit";
onClickBuy?: Function;
onClickSell?: Function;
responsive?: boolean;
}
export default function Trade(props: TradeControl): import("react").JSX.Element;
//# sourceMappingURL=Trade.d.ts.map