From 17ce5b1dfbe4fd9899f14dd6ec9573993bbdbe51 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Mon, 13 Apr 2026 03:54:39 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20swap=20switch=20icon=20from=20Layers=20?= =?UTF-8?q?=E2=86=92=20Network=20(Lucide)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/components/network/nodes/deviceRegistry.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/network/nodes/deviceRegistry.ts b/frontend/src/components/network/nodes/deviceRegistry.ts index df3d2f33..672b528a 100644 --- a/frontend/src/components/network/nodes/deviceRegistry.ts +++ b/frontend/src/components/network/nodes/deviceRegistry.ts @@ -1,6 +1,6 @@ import type { LucideIcon } from 'lucide-react' import { - Router, Layers, ShieldAlert, Wifi, Server, Monitor, Boxes, Package, Cloud, + Router, Network, ShieldAlert, Wifi, Server, Monitor, Boxes, Package, Cloud, Printer, Smartphone, HardDrive, Gauge, Database, CloudCog, Cpu, Tablet, Laptop, BatteryCharging, RectangleVertical, Cable, Camera, KeyRound, Globe, Video, PlugZap, Radio, @@ -30,7 +30,7 @@ export const INFRA_COLOR = '#94a3b8' const SYSTEM_DEVICE_ICONS: Record = { // Network layer 'router': { icon: Router, color: NETWORK_COLOR }, - 'switch': { icon: Layers, color: NETWORK_COLOR }, + 'switch': { icon: Network, color: NETWORK_COLOR }, 'access-point': { icon: Wifi, color: NETWORK_COLOR }, 'load-balancer': { icon: Gauge, color: NETWORK_COLOR },