uiinfinity-components
Version:
Beautiful UI components with smooth animations and 3D effects
13 lines • 328 B
TypeScript
import React from 'react';
interface ModalProps {
isOpen: boolean;
onClose: () => void;
title?: string;
children: React.ReactNode;
className?: string;
showCloseButton?: boolean;
}
declare const Modal: React.FC<ModalProps>;
export { Modal };
export type { ModalProps };
//# sourceMappingURL=Modal.d.ts.map