@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).
16 lines • 565 B
TypeScript
import type { BottomSheet as Sheet } from "../../../containers/bottomsheets/BottomSheet";
import type { CurrencyPad } from "../../../parts/numberpads/currency/Currency";
export interface OrderPad extends CurrencyPad, Sheet {
label?: string;
placeholder?: number | string;
sub?: {
color?: string;
value?: number | string;
unit?: string;
};
unit?: string;
padding?: number;
onChange?: Function;
}
export default function OrderPad(props: OrderPad): import("react").JSX.Element;
//# sourceMappingURL=OrderPad.d.ts.map