From 7aa2ec78f292b57dd11c10a21ba8e4116a8a6ced Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Tue, 17 Aug 2021 01:31:29 +0200 Subject: [PATCH] Add icons for the device_class 'update' (#9711) --- src/common/entity/binary_sensor_icon.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/entity/binary_sensor_icon.ts b/src/common/entity/binary_sensor_icon.ts index 1ae025a2df..ef90cd64ff 100644 --- a/src/common/entity/binary_sensor_icon.ts +++ b/src/common/entity/binary_sensor_icon.ts @@ -44,6 +44,8 @@ export const binarySensorIcon = (state?: string, stateObj?: HassEntity) => { return is_off ? "hass:home-outline" : "hass:home"; case "sound": return is_off ? "hass:music-note-off" : "hass:music-note"; + case "update": + return is_off ? "mdi:package" : "mdi:package-up"; case "vibration": return is_off ? "hass:crop-portrait" : "hass:vibrate"; case "window":