'use client' import { useEffect } from "react" import { X } from 'lucide-react' import { cn } from "@/lib/utils" interface ModalProps { isOpen: boolean onClose: () => void title?: string children: React.ReactNode className?: string } export default function Modal({ isOpen, onClose, title, children, className }: ModalProps) { useEffect(() => { const handleEscape = (e: KeyboardEvent) => { if (e.key === "Escape") onClose() } if (isOpen) { document.addEventListener("keydown", handleEscape) document.body.style.overflow = "hidden" } return () => { document.removeEventListener("keydown", handleEscape) document.body.style.overflow = "" } }, [isOpen, onClose]) if (!isOpen) return null return (
) }