Modified icons of binary sensors: gas, problem, safety, smoke (#7403)

This commit is contained in:
Jaroslav Hanslík
2020-10-20 17:43:01 +02:00
committed by GitHub
parent 41b59e6e11
commit 5065901196

View File

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