UNPKG

@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).

17 lines 462 B
import type { Asset } from "../../../../types"; export interface OrderControl { mode: boolean; assets: Asset[]; price: number | string; limit?: number | string; fee: number; option?: "market" | "limit"; onChange?: Function; color?: { buy?: string; sell?: string; }; responsive?: boolean; } export default function Order(props: OrderControl): import("react").JSX.Element; //# sourceMappingURL=Order.d.ts.map