diff --git a/homeassistant/components/flume/binary_sensor.py b/homeassistant/components/flume/binary_sensor.py index fd6fcc5f4b9..a31fecf305e 100644 --- a/homeassistant/components/flume/binary_sensor.py +++ b/homeassistant/components/flume/binary_sensor.py @@ -59,14 +59,12 @@ FLUME_BINARY_NOTIFICATION_SENSORS: tuple[FlumeBinarySensorEntityDescription, ... translation_key="leak", entity_category=EntityCategory.DIAGNOSTIC, event_rule=NOTIFICATION_LEAK_DETECTED, - icon="mdi:pipe-leak", ), FlumeBinarySensorEntityDescription( key="flow", translation_key="flow", entity_category=EntityCategory.DIAGNOSTIC, event_rule=NOTIFICATION_HIGH_FLOW, - icon="mdi:waves", ), FlumeBinarySensorEntityDescription( key="low_battery", diff --git a/homeassistant/components/flume/icons.json b/homeassistant/components/flume/icons.json new file mode 100644 index 00000000000..631c0645ed3 --- /dev/null +++ b/homeassistant/components/flume/icons.json @@ -0,0 +1,15 @@ +{ + "entity": { + "binary_sensor": { + "leak": { + "default": "mdi:pipe-leak" + }, + "flow": { + "default": "mdi:waves" + } + } + }, + "services": { + "list_notifications": "mdi:bell" + } +}