Add missing domain icons (#3836)

`persistent_notification` and `zone` were both missing domain icons.
This commit is contained in:
Sean Mooney 2019-10-01 04:11:44 -04:00 committed by Bram Kragten
parent 7d09e29d60
commit 313b984a53

View File

@ -30,6 +30,7 @@ const fixedIcons = {
light: "hass:lightbulb",
mailbox: "hass:mailbox",
notify: "hass:comment-alert",
persistent_notification: "hass:bell",
person: "hass:account",
plant: "hass:flower",
proximity: "hass:apple-safari",
@ -46,6 +47,7 @@ const fixedIcons = {
water_heater: "hass:thermometer",
weather: "hass:weather-cloudy",
weblink: "hass:open-in-new",
zone: "hass:map-marker",
};
export const domainIcon = (domain: string, state?: string): string => {