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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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