From ec1dc1853cfa5c5f466869e89e33d38472bda459 Mon Sep 17 00:00:00 2001 From: IonutGabi Date: Wed, 21 Aug 2024 12:27:26 +0200 Subject: [PATCH 1/2] Adding more new icons to the set of icons --- public/icons/creditcard.svg | 1 + public/icons/linkedin.svg | 1 + public/icons/tiktok.svg | 1 + public/icons/twitch.svg | 1 + public/icons/youtube.svg | 1 + .../components/icon-selector/modal/icons.ts | 100 ++++++++++++++++++ 6 files changed, 105 insertions(+) create mode 100644 public/icons/creditcard.svg create mode 100644 public/icons/linkedin.svg create mode 100644 public/icons/tiktok.svg create mode 100644 public/icons/twitch.svg create mode 100644 public/icons/youtube.svg diff --git a/public/icons/creditcard.svg b/public/icons/creditcard.svg new file mode 100644 index 00000000..abd55aed --- /dev/null +++ b/public/icons/creditcard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/linkedin.svg b/public/icons/linkedin.svg new file mode 100644 index 00000000..8d7e1d3b --- /dev/null +++ b/public/icons/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/tiktok.svg b/public/icons/tiktok.svg new file mode 100644 index 00000000..178c0242 --- /dev/null +++ b/public/icons/tiktok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/twitch.svg b/public/icons/twitch.svg new file mode 100644 index 00000000..34626625 --- /dev/null +++ b/public/icons/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/youtube.svg b/public/icons/youtube.svg new file mode 100644 index 00000000..ab38ec8f --- /dev/null +++ b/public/icons/youtube.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 2f3dccf9..ecfa1f02 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -395,6 +395,7 @@ export const iconCollection: IconInfo[] = [ 'media', 'tweet', 'post', + 'profile', 'message', 'chat', 'follow', @@ -431,6 +432,7 @@ export const iconCollection: IconInfo[] = [ 'social', 'media', 'post', + 'profile', 'message', 'chat', 'follow', @@ -454,6 +456,7 @@ export const iconCollection: IconInfo[] = [ 'social', 'media', 'post', + 'profile', 'message', 'chat', 'follow', @@ -468,4 +471,101 @@ export const iconCollection: IconInfo[] = [ ], categories: ['IT'], }, + { + name: 'Youtube', + filename: 'youtube.svg', + searchTerms: [ + 'youtube', + 'videos', + 'stream', + 'channel', + 'subscribe', + 'like', + 'comment', + 'share', + 'notification', + 'feed', + 'shorts', + 'membership', + 'playlists', + ], + categories: ['IT'], + }, + { + name: 'Twitch', + filename: 'twitch.svg', + searchTerms: [ + 'twitch', + 'stream', + 'live', + 'broadcast', + 'channel', + 'subscribe', + 'follow', + 'chat', + 'emotes', + 'bits', + 'donate', + 'clip', + 'bots', + ], + categories: ['IT'], + }, + { + name: 'Tiktok', + filename: 'tiktok.svg', + searchTerms: [ + 'tiktok', + 'stream', + 'profile', + 'follow', + 'like', + 'comment', + 'share', + 'notification', + 'feed', + 'shorts', + ], + categories: ['IT'], + }, + { + name: 'Linkedin', + filename: 'linkedin.svg', + searchTerms: [ + 'linkedin', + 'social', + 'media', + 'profile', + 'network', + 'job', + 'work', + 'business', + 'professional', + 'resume', + 'cv', + 'employment', + 'recruitment', + ], + categories: ['IT'], + }, + { + name: 'Credit card', + filename: 'creditcard.svg', + searchTerms: [ + 'credit card', + 'payment', + 'buy', + 'purchase', + 'pay', + 'money', + 'bank', + 'finance', + 'transaction', + 'visa', + 'mastercard', + 'american express', + 'paypal', + ], + categories: ['Ecommerce'], + }, ]; From 3911f7934fdf265d9047a0aed753d2a6e20ba7e8 Mon Sep 17 00:00:00 2001 From: IonutGabi Date: Wed, 21 Aug 2024 13:24:53 +0200 Subject: [PATCH 2/2] Update the set of icons with more icons --- public/icons/android.svg | 1 + public/icons/apple.svg | 1 + public/icons/arrowdown.svg | 1 + public/icons/arrowleft.svg | 1 + public/icons/arrowright.svg | 1 + .../components/icon-selector/modal/icons.ts | 74 +++++++++++++++++++ 6 files changed, 79 insertions(+) create mode 100644 public/icons/android.svg create mode 100644 public/icons/apple.svg create mode 100644 public/icons/arrowdown.svg create mode 100644 public/icons/arrowleft.svg create mode 100644 public/icons/arrowright.svg diff --git a/public/icons/android.svg b/public/icons/android.svg new file mode 100644 index 00000000..3f8d9627 --- /dev/null +++ b/public/icons/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/apple.svg b/public/icons/apple.svg new file mode 100644 index 00000000..a86215a8 --- /dev/null +++ b/public/icons/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/arrowdown.svg b/public/icons/arrowdown.svg new file mode 100644 index 00000000..25965955 --- /dev/null +++ b/public/icons/arrowdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/arrowleft.svg b/public/icons/arrowleft.svg new file mode 100644 index 00000000..4dad5ac6 --- /dev/null +++ b/public/icons/arrowleft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/arrowright.svg b/public/icons/arrowright.svg new file mode 100644 index 00000000..b0932ffb --- /dev/null +++ b/public/icons/arrowright.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 ecfa1f02..0244a3bc 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -568,4 +568,78 @@ export const iconCollection: IconInfo[] = [ ], categories: ['Ecommerce'], }, + { + name: 'Android', + filename: 'android.svg', + searchTerms: [ + 'android', + 'system', + 'mobile', + 'phone', + 'device', + 'smartphone', + 'tablet', + 'application', + 'play store', + 'google play', + ], + categories: ['IT'], + }, + { + name: 'Apple', + filename: 'apple.svg', + searchTerms: [ + 'apple', + 'system', + 'mobile', + 'phone', + 'device', + 'smartphone', + 'tablet', + 'application', + 'app store', + ], + categories: ['IT'], + }, + { + name: 'Arrow down', + filename: 'arrowdown.svg', + searchTerms: [ + 'arrow down', + 'down', + 'move down', + 'go down', + 'download', + 'decrease', + 'reduce', + ], + categories: ['IT'], + }, + { + name: 'Arrow left', + filename: 'arrowleft.svg', + searchTerms: [ + 'arrow left', + 'left', + 'move left', + 'go left', + 'back', + 'previous', + 'return', + ], + categories: ['IT'], + }, + { + name: 'Arrow right', + filename: 'arrowright.svg', + searchTerms: [ + 'arrow right', + 'right', + 'move right', + 'go right', + 'forward', + 'next', + ], + categories: ['IT'], + }, ];