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/bellmuted.svg b/public/icons/bellmuted.svg new file mode 100644 index 00000000..fba79a9c --- /dev/null +++ b/public/icons/bellmuted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/bellsnooze.svg b/public/icons/bellsnooze.svg new file mode 100644 index 00000000..be799dfb --- /dev/null +++ b/public/icons/bellsnooze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/dollar.svg b/public/icons/dollar.svg new file mode 100644 index 00000000..cab36c69 --- /dev/null +++ b/public/icons/dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/search.svg b/public/icons/search.svg new file mode 100644 index 00000000..e8809728 --- /dev/null +++ b/public/icons/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/searchdocument.svg b/public/icons/searchdocument.svg new file mode 100644 index 00000000..2ec8c275 --- /dev/null +++ b/public/icons/searchdocument.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..5e7dacc1 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -670,4 +670,72 @@ 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'], + }, + { + name: 'Bell Off', + filename: 'bellmuted.svg', + searchTerms: ['bell', 'mute', 'silent', 'sound', 'off'], + categories: ['IT'], + }, + { + name: 'Bell snooze', + filename: 'bellsnooze.svg', + searchTerms: ['bell', 'snooze', 'sleep', 'pause', 'nap'], + categories: ['IT'], + }, + { + name: 'Search', + filename: 'search.svg', + searchTerms: ['search', 'find', 'lookup', 'query', 'magnifier'], + categories: ['IT'], + }, + { + name: 'Search Document', + filename: 'searchdocument.svg', + searchTerms: ['search', 'document', 'find', 'lookup'], + categories: ['IT'], + }, + { + name: 'Dollar', + filename: 'dollar.svg', + searchTerms: [ + 'dollar', + 'money', + 'cash', + 'currency', + 'usd', + 'finance', + 'economy', + ], + categories: ['IT'], + }, ];