import React from 'react'; import { AlertTriangle, X } from 'lucide-react'; export default function DeleteConfirmationModal({ isOpen, onClose, onConfirm, branchName, loading }) { if (!isOpen) return null; return (

Delete Branch?

Are you sure you want to delete "{branchName}"? This action cannot be undone.

); }