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

23 lines 608 B
import React from "react"; export interface Card { children?: any; scale?: number; gap?: number; padding?: number; style?: any; addOn?: React.ReactNode | { children: React.ReactNode; position?: number | string | { top?: number | string; left?: number | string; right?: number | string; bottom?: number | string; }; style?: any; fix?: boolean; }; onHover?: Function; onClick?: Function; } export default function Card(props: Card): React.JSX.Element; //# sourceMappingURL=Card.d.ts.map