@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).
11 lines • 350 B
TypeScript
export interface Tick {
price: number | string;
balance: number | string;
}
export interface TickProps extends Tick {
max: number;
onClick?: Function;
onMouseEnter?: Function;
}
export declare function Tick({ price, balance, max, onClick, onMouseEnter }: TickProps): import("react").JSX.Element;
//# sourceMappingURL=Tick.d.ts.map