From 4b517fb164ad4e26411faaaa9d520bc0ec848d09 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 29 May 2026 11:17:00 +0200 Subject: [PATCH] Use state-based icon for Hue grouped light (#172535) --- homeassistant/components/hue/icons.json | 6 ++++++ homeassistant/components/hue/v2/group.py | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/hue/icons.json b/homeassistant/components/hue/icons.json index 33a129a1aa46..92079afce589 100644 --- a/homeassistant/components/hue/icons.json +++ b/homeassistant/components/hue/icons.json @@ -1,6 +1,12 @@ { "entity": { "light": { + "hue_grouped_light": { + "default": "mdi:lightbulb-group", + "state": { + "off": "mdi:lightbulb-group-off" + } + }, "hue_light": { "state_attributes": { "effect": { diff --git a/homeassistant/components/hue/v2/group.py b/homeassistant/components/hue/v2/group.py index 2471db9df64e..797fab8fd14c 100644 --- a/homeassistant/components/hue/v2/group.py +++ b/homeassistant/components/hue/v2/group.py @@ -85,7 +85,6 @@ class GroupedHueLight(HueBaseEntity, LightEntity): entity_description = LightEntityDescription( key="hue_grouped_light", - icon="mdi:lightbulb-group", has_entity_name=True, name=None, )