"use client"; interface ConfirmModalProps { isOpen: boolean; onClose: () => void; onConfirm: () => void; title: string; message: string; confirmText?: string; cancelText?: string; loading?: boolean; } export default function ConfirmModal({ isOpen, onClose, onConfirm, title, message, confirmText = "Confirmar", cancelText = "Cancelar", loading = false, }: ConfirmModalProps) { if (!isOpen) return null; return (
{/* Header */}

{title}

{/* Message */}

{message}

{/* Actions */}
); }