'use client'; interface Props { open: boolean; title: string; message: string; onConfirm: () => void; onCancel: () => void; confirmText?: string; } export default function ModalConfirmacion({ open, title, message, onConfirm, onCancel, confirmText = 'Aceptar' }: Props) { if (!open) return null; return (
{message}