import { Activity, LayoutDashboard, Router, Server, Settings, Shield, } from "lucide-react"; type OpenVpnStatus = "online" | "degraded" | "offline" | "checking"; type Props = { page: string; onPageChange: (page: string) => void; openVpnStatus?: OpenVpnStatus; }; export function Sidebar({ page, onPageChange, openVpnStatus = "checking", }: Props) { const statusLabel = { online: "Online", degraded: "Degradado", offline: "Offline", checking: "A verificar...", }[openVpnStatus]; return ( ); }