From 55d429926910536cddf6c9750b1fc2f36fb3b0c6 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Mon, 4 Mar 2024 20:04:13 +0100 Subject: [PATCH] Add icon translations to Steamist (#112246) --- homeassistant/components/steamist/icons.json | 9 +++++++++ homeassistant/components/steamist/switch.py | 1 - 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 homeassistant/components/steamist/icons.json diff --git a/homeassistant/components/steamist/icons.json b/homeassistant/components/steamist/icons.json new file mode 100644 index 00000000000..7baeade8bcd --- /dev/null +++ b/homeassistant/components/steamist/icons.json @@ -0,0 +1,9 @@ +{ + "entity": { + "switch": { + "steam_active": { + "default": "mdi:pot-steam" + } + } + } +} diff --git a/homeassistant/components/steamist/switch.py b/homeassistant/components/steamist/switch.py index a9a7526c560..2161af4df92 100644 --- a/homeassistant/components/steamist/switch.py +++ b/homeassistant/components/steamist/switch.py @@ -14,7 +14,6 @@ from .entity import SteamistEntity ACTIVE_SWITCH = SwitchEntityDescription( key="active", - icon="mdi:pot-steam", translation_key="steam_active", )