import React from 'react'; import { X, AlertTriangle, Loader2 } from 'lucide-react'; export default function DeleteConfirmationModal({ isOpen, onClose, onConfirm, title, message, isDeleting }) { if (!isOpen) return null; return (
{message || 'This action cannot be undone. All data associated with this item will be permanently removed.'}