From b2ba80877945df9c3c8b75321254d42e581073bb Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 20 Jan 2024 11:39:13 +0100 Subject: [PATCH] Add camera icon translations (#108419) Co-authored-by: Paulus Schoutsen --- homeassistant/components/camera/icons.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 homeassistant/components/camera/icons.json diff --git a/homeassistant/components/camera/icons.json b/homeassistant/components/camera/icons.json new file mode 100644 index 00000000000..37e71c80a67 --- /dev/null +++ b/homeassistant/components/camera/icons.json @@ -0,0 +1,19 @@ +{ + "entity_component": { + "_": { + "default": "mdi:video", + "state": { + "off": "mdi:video-off" + } + } + }, + "services": { + "disable_motion_detection": "mdi:motion-sensor-off", + "enable_motion_detection": "mdi:motion-sensor", + "play_stream": "mdi:play", + "record": "mdi:record-rec", + "snapshot": "mdi:camera", + "turn_off": "mdi:video-off", + "turn_on": "mdi:video" + } +}