import { X } from "lucide-react"; import { useState } from "react"; export function DownloadMonitor() { const [isVisible, setIsVisible] = useState(true); if (!isVisible) return null; return (
{/* Header */}
Downloads
{/* Content */}
{/* Download Item */}
Minecraft 1.20.4 65%
142 MB / 218 MB 2.1 MB/s • 36s remaining
{/* Download Item */}
Java 17 100%
Completed
); }