From ee127ef7aba7f23bafdfebed339db9af7ecac8b9 Mon Sep 17 00:00:00 2001
From: Guste Gaubaite <219.guste@gmail.com>
Date: Mon, 14 Apr 2025 11:13:57 +0200
Subject: [PATCH] Add new set of icons (excel, word, powerpoint, teams)
---
public/icons/excel.svg | 1 +
public/icons/powerpoint.svg | 1 +
public/icons/teams.svg | 1 +
public/icons/word.svg | 1 +
.../components/icon-selector/modal/icons.ts | 24 +++++++++++++++++++
5 files changed, 28 insertions(+)
create mode 100644 public/icons/excel.svg
create mode 100644 public/icons/powerpoint.svg
create mode 100644 public/icons/teams.svg
create mode 100644 public/icons/word.svg
diff --git a/public/icons/excel.svg b/public/icons/excel.svg
new file mode 100644
index 00000000..0aaf8c3f
--- /dev/null
+++ b/public/icons/excel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/icons/powerpoint.svg b/public/icons/powerpoint.svg
new file mode 100644
index 00000000..c667fbe2
--- /dev/null
+++ b/public/icons/powerpoint.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/icons/teams.svg b/public/icons/teams.svg
new file mode 100644
index 00000000..9a46b171
--- /dev/null
+++ b/public/icons/teams.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/icons/word.svg b/public/icons/word.svg
new file mode 100644
index 00000000..41959c5d
--- /dev/null
+++ b/public/icons/word.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 b6005ad6..a8759991 100644
--- a/src/pods/properties/components/icon-selector/modal/icons.ts
+++ b/src/pods/properties/components/icon-selector/modal/icons.ts
@@ -2398,4 +2398,28 @@ export const iconCollection: IconInfo[] = [
searchTerms: ['filter', 'query', 'search', 'find', 'lookup', 'funnel'],
categories: ['IT'],
},
+ {
+ name: 'Excel',
+ filename: 'excel.svg',
+ searchTerms: ['excel', 'office', 'microsoft'],
+ categories: ['IT'],
+ },
+ {
+ name: 'Word',
+ filename: 'word.svg',
+ searchTerms: ['word', 'office', 'microsoft'],
+ categories: ['IT'],
+ },
+ {
+ name: 'Powerpoint',
+ filename: 'powerpoint.svg',
+ searchTerms: ['powerpoint', 'office', 'microsoft'],
+ categories: ['IT'],
+ },
+ {
+ name: 'Teams',
+ filename: 'teams.svg',
+ searchTerms: ['teams', 'office', 'microsoft'],
+ categories: ['IT'],
+ },
];