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

20 lines 467 B
export interface Modal { active?: boolean; title?: any; message?: any; children?: any; content?: any; buttonArea?: any; width?: number | { min?: number; max?: number; }; style?: object; close?: boolean; onClose: Function; outsideClose?: boolean; scroll?: boolean; fullsize?: boolean; } export default function Modal(props: Modal): import("react").JSX.Element; //# sourceMappingURL=Modal.d.ts.map