UNPKG

@a1rman/ui

Version:

A simple UI components library with Tailwind CSS and TypeScript.

5 lines (4 loc) 207 B
import React from 'react'; import { ModalProps } from './interfaces/ModalProps'; declare const Modal: ({ children, isOpen, close, portalPath }: ModalProps) => React.ReactPortal | null; export default Modal;