@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 • 370 B
TypeScript
import type { Order as O } from "../../../../types/order";
export interface Confirmation {
mode?: boolean;
color?: {
deposit?: string;
withdraw?: string;
};
order: O;
onProcess: Function;
onClose: Function;
}
export default function Confirmation(props: any): import("react").JSX.Element;
//# sourceMappingURL=Confirmation.d.ts.map