From d7fad15d6ac347276422bf10bcd7891a0c5b327a Mon Sep 17 00:00:00 2001 From: IonutGabi Date: Fri, 20 Dec 2024 12:46:44 +0100 Subject: [PATCH] Add new 5 icons of the set of icons --- public/icons/clip.svg | 1 + public/icons/horizontalpaperclip.svg | 1 + public/icons/rocketlaunch.svg | 1 + public/icons/speedometer.svg | 1 + .../components/icon-selector/modal/icons.ts | 24 +++++++++++++++++++ 5 files changed, 28 insertions(+) create mode 100644 public/icons/clip.svg create mode 100644 public/icons/horizontalpaperclip.svg create mode 100644 public/icons/rocketlaunch.svg create mode 100644 public/icons/speedometer.svg diff --git a/public/icons/clip.svg b/public/icons/clip.svg new file mode 100644 index 00000000..6b923eb8 --- /dev/null +++ b/public/icons/clip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/horizontalpaperclip.svg b/public/icons/horizontalpaperclip.svg new file mode 100644 index 00000000..a530796e --- /dev/null +++ b/public/icons/horizontalpaperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/rocketlaunch.svg b/public/icons/rocketlaunch.svg new file mode 100644 index 00000000..1051a074 --- /dev/null +++ b/public/icons/rocketlaunch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/speedometer.svg b/public/icons/speedometer.svg new file mode 100644 index 00000000..b2297fc7 --- /dev/null +++ b/public/icons/speedometer.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 324d08b7..d5ef5652 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -2278,4 +2278,28 @@ export const iconCollection: IconInfo[] = [ searchTerms: ['watch', 'time', 'clock', 'wrist'], categories: ['IT'], }, + { + name: 'Horizontal paper clip', + filename: 'horizontalpaperclip.svg', + searchTerms: ['paperclip', 'clip', 'horizontal', 'attach', 'fasten'], + categories: ['IT'], + }, + { + name: 'Clip', + filename: 'clip.svg', + searchTerms: ['clip', 'attach', 'fix', 'hold', 'fasten'], + categories: ['IT'], + }, + { + name: 'Speedometer', + filename: 'speedometer.svg', + searchTerms: ['speedometer', 'speed', 'gauge', 'velocity', 'metrics'], + categories: ['IT'], + }, + { + name: 'Rocket launch', + filename: 'rocketlaunch.svg', + searchTerms: ['rocket', 'launch', 'space', 'fly'], + categories: ['IT'], + }, ];