'use client' import { useEffect, useCallback } 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) { const handleEscape = useCallback((e: KeyboardEvent) => { if (e.key === "Escape") onClose() }, [onClose]) useEffect(() => { if (isOpen) { document.addEventListener("keydown", handleEscape) document.body.style.overflow = "hidden" } return () => { document.removeEventListener("keydown", handleEscape) document.body.style.overflow = "unset" } }, [isOpen, handleEscape]) if (!isOpen) return null return (
) }