From ccb69dbdfa94cfd806ee6fa8e78e4b5bd2c83a12 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 26 Oct 2020 20:43:22 -0500 Subject: [PATCH] Add icons for shade device class (#7493) 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 5723ee2d34..7c9bc5ed53 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";