From 72a28d68d3c3fb58df339bc55501f2a6ea7b4eae Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 30 Jan 2024 13:22:27 +0100 Subject: [PATCH] Add script icon translations (#109107) Co-authored-by: Franck Nijhof --- homeassistant/components/script/icons.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 homeassistant/components/script/icons.json diff --git a/homeassistant/components/script/icons.json b/homeassistant/components/script/icons.json new file mode 100644 index 00000000000..d253d0fd829 --- /dev/null +++ b/homeassistant/components/script/icons.json @@ -0,0 +1,16 @@ +{ + "entity_component": { + "_": { + "default": "mdi:script-text", + "state": { + "on": "mdi:script-text-play" + } + } + }, + "services": { + "reload": "mdi:reload", + "turn_on": "mdi:script-text-play", + "turn_off": "mdi:script-text", + "toggle": "mdi:script-text" + } +}