From d361a73bad6bd904d8ad55fe0eee794e8a61e830 Mon Sep 17 00:00:00 2001 From: Panos Christophides <96468003+christophidesp@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:29:44 +0300 Subject: [PATCH] add colored and monochrome version of ilert icon (#533) Co-authored-by: Panos Christophides --- src/components/icon/assets/integrations/ilert.svg | 10 ++++++++++ .../icon/assets/integrations/ilert_colored.svg | 10 ++++++++++ src/components/icon/iconsList.js | 4 ++++ 3 files changed, 24 insertions(+) create mode 100644 src/components/icon/assets/integrations/ilert.svg create mode 100644 src/components/icon/assets/integrations/ilert_colored.svg diff --git a/src/components/icon/assets/integrations/ilert.svg b/src/components/icon/assets/integrations/ilert.svg new file mode 100644 index 00000000..b82d74d1 --- /dev/null +++ b/src/components/icon/assets/integrations/ilert.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/icon/assets/integrations/ilert_colored.svg b/src/components/icon/assets/integrations/ilert_colored.svg new file mode 100644 index 00000000..e325b81a --- /dev/null +++ b/src/components/icon/assets/integrations/ilert_colored.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/icon/iconsList.js b/src/components/icon/iconsList.js index a6838b99..dcdfcd86 100644 --- a/src/components/icon/iconsList.js +++ b/src/components/icon/iconsList.js @@ -131,6 +131,8 @@ import integrationDiscord from "./assets/integrations/discord.svg" import integrationDiscordColored from "./assets/integrations/discord_colored.svg" import integrationEmail from "./assets/integrations/email.svg" import integrationEmailColored from "./assets/integrations/email_colored.svg" +import integrationIlert from "./assets/integrations/ilert.svg" +import integrationIlertColored from "./assets/integrations/ilert_colored.svg" import integrationMattermost from "./assets/integrations/mattermost.svg" import integrationMattermostColored from "./assets/integrations/mattermost_colored.svg" import integrationMobileAppColored from "./assets/integrations/mobile_app_colored.svg" @@ -526,6 +528,8 @@ export const iconsList = { integrationDiscordColored, integrationEmail, integrationEmailColored, + integrationIlert, + integrationIlertColored, integrationMattermost, integrationMattermostColored, integrationMobileAppColored,