diff --git a/public/icons/arrowsout.svg b/public/icons/arrowsout.svg new file mode 100644 index 00000000..f6f10eb4 --- /dev/null +++ b/public/icons/arrowsout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/arrowup.svg b/public/icons/arrowup.svg new file mode 100644 index 00000000..5782d895 --- /dev/null +++ b/public/icons/arrowup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/batteryfull.svg b/public/icons/batteryfull.svg new file mode 100644 index 00000000..195367e4 --- /dev/null +++ b/public/icons/batteryfull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/batterylow.svg b/public/icons/batterylow.svg new file mode 100644 index 00000000..239d0482 --- /dev/null +++ b/public/icons/batterylow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/batterymid.svg b/public/icons/batterymid.svg new file mode 100644 index 00000000..f79fed0a --- /dev/null +++ b/public/icons/batterymid.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 0244a3bc..11408235 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -604,15 +604,7 @@ export const iconCollection: IconInfo[] = [ { name: 'Arrow down', filename: 'arrowdown.svg', - searchTerms: [ - 'arrow down', - 'down', - 'move down', - 'go down', - 'download', - 'decrease', - 'reduce', - ], + searchTerms: ['arrow down', 'down', 'move down', 'go down'], categories: ['IT'], }, { @@ -642,4 +634,40 @@ export const iconCollection: IconInfo[] = [ ], categories: ['IT'], }, + { + name: 'Arrow up', + filename: 'arrowup.svg', + searchTerms: ['arrow up', 'up', 'move up', 'go up'], + categories: ['IT'], + }, + { + name: 'Battery full', + filename: 'batteryfull.svg', + searchTerms: [ + 'battery full', + 'full', + 'charged', + 'power complete', + 'energy', + ], + categories: ['IT'], + }, + { + name: 'Battery mid', + filename: 'batterymid.svg', + searchTerms: ['battery mid', 'mid', 'half', 'power half', 'energy'], + categories: ['IT'], + }, + { + name: 'Battery low', + filename: 'batterylow.svg', + searchTerms: ['battery low', 'low', 'power low', 'energy'], + categories: ['IT'], + }, + { + name: 'Arrows out', + filename: 'arrowsout.svg', + searchTerms: ['arrows out', 'directions', 'spread', 'expand'], + categories: ['IT'], + }, ];