From dd01aeece648b08712040b27f6409e726bd0ed4b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 26 Oct 2020 13:18:44 -1000 Subject: [PATCH] Add icons for shade device class The blinds material icon looks more like a shade then a blind but since its already being used blind its still better than having it look like a window. --- src/common/entity/cover_icon.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/entity/cover_icon.ts b/src/common/entity/cover_icon.ts index 5723ee2d34af..7c9bc5ed53d1 100644 --- a/src/common/entity/cover_icon.ts +++ b/src/common/entity/cover_icon.ts @@ -43,6 +43,7 @@ export const coverIcon = (state?: string, stateObj?: HassEntity): string => { } case "blind": case "curtain": + case "shade": switch (state) { case "opening": return "hass:arrow-up-box";