'use client'; import { X } from 'lucide-react'; interface ConfirmModalProps { isOpen: boolean; title: string; message: string; onConfirm: () => void; onCancel: () => void; } export default function ConfirmModal({ isOpen, onCancel, onConfirm, message, title }: ConfirmModalProps) { if (!isOpen) return null; return (
{/* Header */}

{title}

{/* Body */}

{message}

{/* Footer Buttons */}
); }