/** * Maps equipment type strings to Material Design icon names. */ const DEVICE_ICON_MAP = { ONT: 'settings_input_hdmi', Modem: 'router', Routeur: 'router', 'Décodeur TV': 'connected_tv', 'Téléphone IP': 'phone_in_talk', Switch: 'hub', Amplificateur: 'cell_tower', 'AP WiFi': 'wifi', 'Câble/Connecteur': 'cable', } export function deviceLucideIcon (type) { return DEVICE_ICON_MAP[type] || 'devices_other' }