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":