@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).
9 lines • 384 B
TypeScript
import type { Button } from "../../../components/controls/button/Button";
import type { Numberpad as Pad } from "../../../parts/numberpads/Numberpad";
export interface CurrencyPad extends Pad {
step?: number;
button?: Button;
max?: string | number;
}
export default function Currency(props: CurrencyPad): import("react").JSX.Element;
//# sourceMappingURL=Currency.d.ts.map