From 694059837d7a35c03d7669230908797422a531e8 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 30 Jan 2024 13:22:55 +0100 Subject: [PATCH] Add input boolean icon translations (#109108) Co-authored-by: Franck Nijhof --- .../components/input_boolean/icons.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 homeassistant/components/input_boolean/icons.json diff --git a/homeassistant/components/input_boolean/icons.json b/homeassistant/components/input_boolean/icons.json new file mode 100644 index 00000000000..dc595a60fba --- /dev/null +++ b/homeassistant/components/input_boolean/icons.json @@ -0,0 +1,16 @@ +{ + "entity_component": { + "_": { + "default": "mdi:check-circle-outline", + "state": { + "off": "mdi:close-circle-outline" + } + } + }, + "services": { + "toggle": "mdi:toggle-switch", + "turn_off": "mdi:toggle-switch-off", + "turn_on": "mdi:toggle-switch", + "reload": "mdi:reload" + } +}