From 091932cb4d2be9fbe7c852f428b8bae8fdbe133d Mon Sep 17 00:00:00 2001 From: IonutGabi Date: Wed, 12 Feb 2025 11:42:24 +0100 Subject: [PATCH] Add 6 new icons of the set of icons --- public/icons/close.svg | 1 + public/icons/paperplane.svg | 1 + public/icons/plus.svg | 1 + public/icons/translate.svg | 1 + public/icons/xcircle.svg | 1 + public/icons/xclosesquare.svg | 1 + .../components/icon-selector/modal/icons.ts | 36 +++++++++++++++++++ 7 files changed, 42 insertions(+) create mode 100644 public/icons/close.svg create mode 100644 public/icons/paperplane.svg create mode 100644 public/icons/plus.svg create mode 100644 public/icons/translate.svg create mode 100644 public/icons/xcircle.svg create mode 100644 public/icons/xclosesquare.svg diff --git a/public/icons/close.svg b/public/icons/close.svg new file mode 100644 index 00000000..afb3d968 --- /dev/null +++ b/public/icons/close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/paperplane.svg b/public/icons/paperplane.svg new file mode 100644 index 00000000..c3462240 --- /dev/null +++ b/public/icons/paperplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/plus.svg b/public/icons/plus.svg new file mode 100644 index 00000000..3a316674 --- /dev/null +++ b/public/icons/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/translate.svg b/public/icons/translate.svg new file mode 100644 index 00000000..96120cb5 --- /dev/null +++ b/public/icons/translate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/xcircle.svg b/public/icons/xcircle.svg new file mode 100644 index 00000000..5a3c4f51 --- /dev/null +++ b/public/icons/xcircle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/xclosesquare.svg b/public/icons/xclosesquare.svg new file mode 100644 index 00000000..b78e789a --- /dev/null +++ b/public/icons/xclosesquare.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 4fee72bf..f04f6c85 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -2368,4 +2368,40 @@ export const iconCollection: IconInfo[] = [ searchTerms: ['calendar', 'plus', 'add', 'create', 'new'], categories: ['IT'], }, + { + name: 'Paper plane', + filename: 'paperplane.svg', + searchTerms: ['paper', 'plane', 'send', 'message'], + categories: ['IT'], + }, + { + name: 'Close circle', + filename: 'xcircle.svg', + searchTerms: ['close', 'cross', 'dialog', 'delete'], + categories: ['IT'], + }, + { + name: 'Close', + filename: 'close.svg', + searchTerms: ['close', 'cross', 'dialog', 'delete'], + categories: ['IT'], + }, + { + name: 'Close square', + filename: 'xclosesquare.svg', + searchTerms: ['close', 'cross', 'dialog', 'delete'], + categories: ['IT'], + }, + { + name: 'Plus', + filename: 'plus.svg', + searchTerms: ['plus', 'add', 'create', 'new', 'more'], + categories: ['IT'], + }, + { + name: 'Translate', + filename: 'translate.svg', + searchTerms: ['translate', 'multilanguage', 'language', 'translator'], + categories: ['IT'], + }, ];