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

14 lines 359 B
export interface Asset { list: AssetData[]; filter?: string; } export interface AssetData { symbol?: string; name?: string; logo?: string; balance?: number | string; using?: number | string; value?: number | string; } export default function Asset(props: Asset): import("react").JSX.Element; //# sourceMappingURL=Asset.d.ts.map