funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
27 lines (26 loc) • 806 B
TypeScript
import * as React from 'react';
interface ModalProps {
children: React.ReactNode;
funcss?: string;
animation?: string;
duration?: number;
open: boolean;
maxWidth?: string;
maxHeight?: string;
height?: string;
width?: string;
backdrop?: boolean;
body?: React.ReactNode;
bodycss?: string;
title?: React.ReactNode;
titlecss?: string;
footer?: React.ReactNode;
footercss?: string;
close?: React.ReactNode;
closecss?: string;
id?: string;
position?: string;
flat?: boolean;
}
export default function Modal({ children, funcss, animation, duration, open, maxWidth, maxHeight, height, width, backdrop, title, titlecss, body, bodycss, footer, footercss, close, closecss, position, id, flat, ...rest }: ModalProps): any;
export {};