From 1eb9d8a49fd478c74c821e116705fff841c1cffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Hansl=C3=ADk?= Date: Tue, 20 Oct 2020 16:06:58 +0200 Subject: [PATCH] Modified icons for binary sensors: gas, problem, safety, smoke --- src/common/entity/binary_sensor_icon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/entity/binary_sensor_icon.ts b/src/common/entity/binary_sensor_icon.ts index 1e0c5c5c7a22..1ae025a2dfea 100644 --- a/src/common/entity/binary_sensor_icon.ts +++ b/src/common/entity/binary_sensor_icon.ts @@ -23,7 +23,7 @@ export const binarySensorIcon = (state?: string, stateObj?: HassEntity) => { case "problem": case "safety": case "smoke": - return is_off ? "hass:shield-check" : "hass:alert"; + return is_off ? "hass:check-circle" : "hass:alert-circle"; case "heat": return is_off ? "hass:thermometer" : "hass:fire"; case "light":