From 13a2db03486d402baab3ce681c25200415b5c229 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Thu, 14 Mar 2024 13:12:03 +0100 Subject: [PATCH] Add service icons to Telegram bot (#113357) --- .../components/telegram_bot/icons.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 homeassistant/components/telegram_bot/icons.json diff --git a/homeassistant/components/telegram_bot/icons.json b/homeassistant/components/telegram_bot/icons.json new file mode 100644 index 00000000000..f410d387435 --- /dev/null +++ b/homeassistant/components/telegram_bot/icons.json @@ -0,0 +1,18 @@ +{ + "services": { + "send_message": "mdi:send", + "send_photo": "mdi:camera", + "send_sticker": "mdi:sticker", + "send_animation": "mdi:animation", + "send_video": "mdi:video", + "send_voice": "mdi:microphone", + "send_document": "mdi:file-document", + "send_location": "mdi:map-marker", + "send_poll": "mdi:poll", + "edit_message": "mdi:pencil", + "edit_caption": "mdi:pencil", + "edit_replymarkup": "mdi:pencil", + "answer_callback_query": "mdi:check", + "delete_message": "mdi:delete" + } +}