From 5065901196db3dc860780593bfee8048b5427bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Hansl=C3=ADk?= Date: Tue, 20 Oct 2020 17:43:01 +0200 Subject: [PATCH] Modified icons of binary sensors: gas, problem, safety, smoke (#7403) --- 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 1e0c5c5c7a..1ae025a2df 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":