import React from "react"; const CustomModal = ({ show, setShow, children, title, className }) => { return ( <>

{title}

setShow(!show)}>
{children}
setShow(!show)} className={`duration-500 ease-in-out min-h-[100dvh] w-screen flex ${ show ? "bg-black/50 backdrop-blur-sm pointer-events-auto" : "bg-black/0 backdrop-blur-none pointer-events-none" } fixed inset-0 z-[200]`} >
); }; export default CustomModal;