diff --git a/src/common/entity/binary_sensor_icon.ts b/src/common/entity/binary_sensor_icon.ts index ef90cd64ff..da18e0d01f 100644 --- a/src/common/entity/binary_sensor_icon.ts +++ b/src/common/entity/binary_sensor_icon.ts @@ -22,8 +22,9 @@ export const binarySensorIcon = (state?: string, stateObj?: HassEntity) => { case "gas": case "problem": case "safety": - case "smoke": return is_off ? "hass:check-circle" : "hass:alert-circle"; + case "smoke": + return is_off ? "hass:check-circle" : "hass:smoke"; case "heat": return is_off ? "hass:thermometer" : "hass:fire"; case "light":