import { AlertTriangle, X } from 'lucide-react'; export function RestoreModal({ snapshot, vmName, confirmText, onCancel, onConfirm, onTextChange, busy }) { if (!snapshot) return null; const canConfirm = confirmText === vmName && !busy; return (
Warning: The VM will be stopped and its current disk will be irreversibly overwritten with snapshot {snapshot.id.slice(0, 8)}. Incus config, profiles, devices, and metadata are not restored by this action.