From aea0ff45cadcccf2bc50c3aeac838d667860b561 Mon Sep 17 00:00:00 2001 From: IonutGabi Date: Thu, 22 Aug 2024 10:39:29 +0200 Subject: [PATCH] Update the set of icons with new icons --- public/icons/bell.svg | 1 + public/icons/volume.svg | 1 + public/icons/volumehigh.svg | 1 + public/icons/volumelow.svg | 1 + public/icons/volumemuted.svg | 1 + .../components/icon-selector/modal/icons.ts | 30 +++++++++++++++++++ 6 files changed, 35 insertions(+) create mode 100644 public/icons/bell.svg create mode 100644 public/icons/volume.svg create mode 100644 public/icons/volumehigh.svg create mode 100644 public/icons/volumelow.svg create mode 100644 public/icons/volumemuted.svg diff --git a/public/icons/bell.svg b/public/icons/bell.svg new file mode 100644 index 00000000..2c344753 --- /dev/null +++ b/public/icons/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/volume.svg b/public/icons/volume.svg new file mode 100644 index 00000000..94c64d7a --- /dev/null +++ b/public/icons/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/volumehigh.svg b/public/icons/volumehigh.svg new file mode 100644 index 00000000..eff728a4 --- /dev/null +++ b/public/icons/volumehigh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/volumelow.svg b/public/icons/volumelow.svg new file mode 100644 index 00000000..8a36cb90 --- /dev/null +++ b/public/icons/volumelow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/volumemuted.svg b/public/icons/volumemuted.svg new file mode 100644 index 00000000..e53a7009 --- /dev/null +++ b/public/icons/volumemuted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pods/properties/components/icon-selector/modal/icons.ts b/src/pods/properties/components/icon-selector/modal/icons.ts index 11408235..8b10ed7c 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -670,4 +670,34 @@ export const iconCollection: IconInfo[] = [ searchTerms: ['arrows out', 'directions', 'spread', 'expand'], categories: ['IT'], }, + { + name: 'Volume High', + filename: 'volumehigh.svg', + searchTerms: ['volume high', 'high', 'loud', 'sound', 'audio'], + categories: ['IT'], + }, + { + name: 'Volume', + filename: 'volume.svg', + searchTerms: ['volume', 'sound', 'audio'], + categories: ['IT'], + }, + { + name: 'Volume Low', + filename: 'volumelow.svg', + searchTerms: ['volume low', 'low', 'quiet', 'sound', 'audio'], + categories: ['IT'], + }, + { + name: 'Volume Mute', + filename: 'volumemuted.svg', + searchTerms: ['volume muted', 'mute', 'silent', 'sound', 'audio', 'off'], + categories: ['IT'], + }, + { + name: 'Bell', + filename: 'bell.svg', + searchTerms: ['bell', 'ring', 'sound', 'campane'], + categories: ['IT'], + }, ];