From d65ca1e970f1d406f9e0be4b4d78f49f4315c5f5 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Wed, 21 Aug 2024 12:44:31 +0400 Subject: [PATCH 01/15] Test the publish pipeline --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a3f4193..5141d60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@geneui/icons", - "version": "1.0.0", + "version": "1.0.1", "description": "Gene UI icons distributed as SVG React components.", "author": "SoftConstruct", "main": "index.js", From 7bc827e31744391b125d6cbf51fed57bd0b15871 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Wed, 21 Aug 2024 12:48:01 +0400 Subject: [PATCH 02/15] Test the publish pipeline --- package.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/package.json b/package.json index 5141d60..cbc2b5e 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,9 @@ { "name": "@geneui/icons", - "version": "1.0.1", + "version": "1.0.2", "description": "Gene UI icons distributed as SVG React components.", "author": "SoftConstruct", "main": "index.js", - "module": "index.js", "types": "index.d.ts", "contributors": [ "Hamik Hambardzumyan (https://github.com/hamikhambardzumyan)" @@ -18,9 +17,6 @@ "mark-as-deprecated": "", "bump-up-commit": "babel-node --config-file ./configs/.babelrc ./scripts/postPublish.js" }, - "files": [ - "dist/*" - ], "devDependencies": { "@babel/cli": "^7.18.9", "@babel/core": "^7.18.9", From cceb5e43e01da5c8252102124912fc7091dcfb02 Mon Sep 17 00:00:00 2001 From: Emmagevv Date: Thu, 22 Aug 2024 16:37:06 +0400 Subject: [PATCH 03/15] Add 16 new icons --- icons/ArrowLeft.json | 10 ++++++++ .../ArrowLeft.svg | 0 icons/ArrowRight.json | 10 ++++++++ .../ArrowRight.svg | 0 icons/CaretDown.json | 10 ++++++++ .../CaretDown.svg | 0 icons/CaretUp.json | 10 ++++++++ .../CaretUp.svg | 0 icons/Check.json | 10 -------- icons/CheckMark.json | 10 ++++++++ icons/{Check.svg => CheckMark.svg} | 0 icons/ChevronDown.json | 20 ++++++++++++++++ .../ChevronDown.svg | 0 icons/ChevronLeft.json | 20 ++++++++++++++++ .../ChevronLeft.svg | 0 icons/ChevronRight.json | 24 +++++++++++++++++++ .../ChevronRight.svg | 0 icons/ChevronUp.json | 19 +++++++++++++++ .../ChevronUp.svg | 0 icons/Close.json | 21 ++++++++++++++++ .../Close.svg | 0 icons/Copy.json | 20 ++++++++++++++++ .../Global-Copy-Outline.svg => icons/Copy.svg | 0 icons/Currency.json | 20 ++++++++++++++++ .../Currency.svg | 0 icons/Dot.json | 21 ++++++++++++++++ svgs/Global-Dot-Fill.svg => icons/Dot.svg | 0 icons/Globe.json | 20 ++++++++++++++++ .../Globe.svg | 0 icons/HorizontalDots.json | 22 +++++++++++++++++ .../HorizontalDots.svg | 0 icons/Square.json | 4 ++-- 32 files changed, 259 insertions(+), 12 deletions(-) create mode 100644 icons/ArrowLeft.json rename svgs/Global-Arrow-Backward-Outline.svg => icons/ArrowLeft.svg (100%) create mode 100644 icons/ArrowRight.json rename svgs/Global-Arrow-Forward-Outline.svg => icons/ArrowRight.svg (100%) create mode 100644 icons/CaretDown.json rename svgs/Global-Caret-Down-Fill.svg => icons/CaretDown.svg (100%) create mode 100644 icons/CaretUp.json rename svgs/Global-Caret-Up-Fill.svg => icons/CaretUp.svg (100%) delete mode 100644 icons/Check.json create mode 100644 icons/CheckMark.json rename icons/{Check.svg => CheckMark.svg} (100%) create mode 100644 icons/ChevronDown.json rename svgs/Global-Chevron-Down-Outline.svg => icons/ChevronDown.svg (100%) create mode 100644 icons/ChevronLeft.json rename svgs/Global-Chevron-Left-Outline.svg => icons/ChevronLeft.svg (100%) create mode 100644 icons/ChevronRight.json rename svgs/Global-Chevron-Right-Outline.svg => icons/ChevronRight.svg (100%) create mode 100644 icons/ChevronUp.json rename svgs/Global-Chevron-Up-Outline.svg => icons/ChevronUp.svg (100%) create mode 100644 icons/Close.json rename svgs/Global-Dismiss-Outline.svg => icons/Close.svg (100%) create mode 100644 icons/Copy.json rename svgs/Global-Copy-Outline.svg => icons/Copy.svg (100%) create mode 100644 icons/Currency.json rename svgs/Global-Currency-Outline.svg => icons/Currency.svg (100%) create mode 100644 icons/Dot.json rename svgs/Global-Dot-Fill.svg => icons/Dot.svg (100%) create mode 100644 icons/Globe.json rename svgs/Global-Globe-Outline.svg => icons/Globe.svg (100%) create mode 100644 icons/HorizontalDots.json rename svgs/Global-More-Outline.svg => icons/HorizontalDots.svg (100%) diff --git a/icons/ArrowLeft.json b/icons/ArrowLeft.json new file mode 100644 index 0000000..0d918aa --- /dev/null +++ b/icons/ArrowLeft.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowLeftMajor", + "name": "ArrowLeft", + "set": "Major", + "keywords": ["arrow", "left", "back", "return", "navigate", "move", "direction"], + "aliases": [""], + "description": "A left-pointing arrow icon typically used for navigation purposes, such as returning to a previous page or section.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 2:42:50 PM" +} diff --git a/svgs/Global-Arrow-Backward-Outline.svg b/icons/ArrowLeft.svg similarity index 100% rename from svgs/Global-Arrow-Backward-Outline.svg rename to icons/ArrowLeft.svg diff --git a/icons/ArrowRight.json b/icons/ArrowRight.json new file mode 100644 index 0000000..9ad2cb6 --- /dev/null +++ b/icons/ArrowRight.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowRightMajor", + "name": "ArrowRight", + "set": "Major", + "keywords": ["arrow", "right", "forward", "next", "navigate", "direction", "move", "forward"], + "aliases": [""], + "description": "A right-pointing arrow icon typically used for navigation purposes, such as moving to the next page or section.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 2:43:59 PM" +} diff --git a/svgs/Global-Arrow-Forward-Outline.svg b/icons/ArrowRight.svg similarity index 100% rename from svgs/Global-Arrow-Forward-Outline.svg rename to icons/ArrowRight.svg diff --git a/icons/CaretDown.json b/icons/CaretDown.json new file mode 100644 index 0000000..3c70a88 --- /dev/null +++ b/icons/CaretDown.json @@ -0,0 +1,10 @@ +{ + "id": "CaretDownMajor", + "name": "CaretDown", + "set": "Major", + "keywords": ["caret", "down", "dropdown", "expand", "open", "triangle", "unfold", "reveal"], + "aliases": [""], + "description": "A downward-pointing caret icon commonly used to indicate a dropdown menu, expandable content, or additional options. It serves as a visual cue for users to click and reveal hidden content or navigate to submenus. Often found in forms, navigation bars, and selection lists.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 3:54:38 PM" +} diff --git a/svgs/Global-Caret-Down-Fill.svg b/icons/CaretDown.svg similarity index 100% rename from svgs/Global-Caret-Down-Fill.svg rename to icons/CaretDown.svg diff --git a/icons/CaretUp.json b/icons/CaretUp.json new file mode 100644 index 0000000..69fff1c --- /dev/null +++ b/icons/CaretUp.json @@ -0,0 +1,10 @@ +{ + "id": "CaretUpMajor", + "name": "CaretUp", + "set": "Major", + "keywords": ["caret", "up", "arrow", "collapse", "close", "fold", "hide", "collapsemenu"], + "aliases": [""], + "description": "An upward-pointing caret icon typically used to indicate the collapse or closing of a dropdown menu, hidden content, or additional options. It signals that content can be hidden or retracted. Often used in forms, navigation bars, and expandable lists.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 3:55:48 PM" +} diff --git a/svgs/Global-Caret-Up-Fill.svg b/icons/CaretUp.svg similarity index 100% rename from svgs/Global-Caret-Up-Fill.svg rename to icons/CaretUp.svg diff --git a/icons/Check.json b/icons/Check.json deleted file mode 100644 index 17afc96..0000000 --- a/icons/Check.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "id": "CheckMajor", - "name": "Check", - "set": "Major", - "keywords": ["checkmark", "selected"], - "aliases": [""], - "description": "The icon should be use to mention check sign in order to mention selection or some aggrement", - "sizes": [16, 20, 24, 28, 32, 48], - "creation_date": "7/31/2024, 2:10:56 PM" -} diff --git a/icons/CheckMark.json b/icons/CheckMark.json new file mode 100644 index 0000000..ac16c51 --- /dev/null +++ b/icons/CheckMark.json @@ -0,0 +1,10 @@ +{ + "id": "CheckMajor", + "name": "CheckMark", + "set": "Major", + "keywords": ["checkmark", "selected", "check", "tick", "valid", "accept", "success", "complete", "verified"], + "aliases": [""], + "description": "A check mark icon commonly used to indicate confirmation, approval, or successful completion of an action. It signifies that something is correct, validated, or selected. Often found in forms, checkboxes, lists, and status indicators.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "7/31/2024, 2:10:56 PM" +} diff --git a/icons/Check.svg b/icons/CheckMark.svg similarity index 100% rename from icons/Check.svg rename to icons/CheckMark.svg diff --git a/icons/ChevronDown.json b/icons/ChevronDown.json new file mode 100644 index 0000000..7d98059 --- /dev/null +++ b/icons/ChevronDown.json @@ -0,0 +1,20 @@ +{ + "id": "ChevronDownMajor", + "name": "ChevronDown", + "set": "Major", + "keywords": [ + "chevron", + "expand", + "down", + "dropdown", + "unfold", + "expandmore", + "accordion", + "collapse", + "breadcrumb" + ], + "aliases": [""], + "description": "Indicates navigation between sections, such as moving forward or backward. For example, a right-pointing chevron in a breadcrumb trail indicates a sub-page or category.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 3:59:06 PM" +} diff --git a/svgs/Global-Chevron-Down-Outline.svg b/icons/ChevronDown.svg similarity index 100% rename from svgs/Global-Chevron-Down-Outline.svg rename to icons/ChevronDown.svg diff --git a/icons/ChevronLeft.json b/icons/ChevronLeft.json new file mode 100644 index 0000000..792785b --- /dev/null +++ b/icons/ChevronLeft.json @@ -0,0 +1,20 @@ +{ + "id": "ChevronLeftMajor", + "name": "ChevronLeft", + "set": "Major", + "keywords": [ + "left", + "chevron", + "previous", + "back", + "move left", + "navigate left", + "previous page", + "left arrow", + "slide left" + ], + "aliases": [""], + "description": "The ChevronLeft Component is a key element in providing intuitive navigation, ensuring that users can easily retrace their steps or move to prior content within an application or website.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:03:17 PM" +} diff --git a/svgs/Global-Chevron-Left-Outline.svg b/icons/ChevronLeft.svg similarity index 100% rename from svgs/Global-Chevron-Left-Outline.svg rename to icons/ChevronLeft.svg diff --git a/icons/ChevronRight.json b/icons/ChevronRight.json new file mode 100644 index 0000000..1a493f6 --- /dev/null +++ b/icons/ChevronRight.json @@ -0,0 +1,24 @@ +{ + "id": "ChevronRightMajor", + "name": "ChevronRight", + "set": "Major", + "keywords": [ + "chevron right", + "right", + "chevron", + "next", + "navigate right", + "right arrow", + "next step", + "forward", + "move right", + "next page", + "slide right", + "proceed", + "" + ], + "aliases": [""], + "description": "It is primarily used to facilitate forward navigation, guiding users to move to the next page, screen, or step within an interface. This component is commonly employed in scenarios such as multi-step forms, carousels, and breadcrumb trails, where advancing to subsequent content is necessary.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:07:34 PM" +} diff --git a/svgs/Global-Chevron-Right-Outline.svg b/icons/ChevronRight.svg similarity index 100% rename from svgs/Global-Chevron-Right-Outline.svg rename to icons/ChevronRight.svg diff --git a/icons/ChevronUp.json b/icons/ChevronUp.json new file mode 100644 index 0000000..9127310 --- /dev/null +++ b/icons/ChevronUp.json @@ -0,0 +1,19 @@ +{ + "id": "ChevronUpMajor", + "name": "ChevronUp", + "set": "Major", + "keywords": [ + "collapse", + "chevron", + "up", + "close", + "hide", + "slide up", + "upward arrow", + "navigate up" + ], + "aliases": [""], + "description": "It is primarily used to indicate actions related to collapsing or hiding content. This component is commonly found in interfaces where users need to close or collapse sections, such as accordions, dropdowns, or expandable lists. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:10:53 PM" +} diff --git a/svgs/Global-Chevron-Up-Outline.svg b/icons/ChevronUp.svg similarity index 100% rename from svgs/Global-Chevron-Up-Outline.svg rename to icons/ChevronUp.svg diff --git a/icons/Close.json b/icons/Close.json new file mode 100644 index 0000000..16ec0d3 --- /dev/null +++ b/icons/Close.json @@ -0,0 +1,21 @@ +{ + "id": "CloseMajor", + "name": "Close", + "set": "Major", + "keywords": [ + "x", + "exit", + "dismiss", + "close", + "cancel", + "hide", + "remove", + "close window", + "close button", + "" + ], + "aliases": [""], + "description": "It allows users to close or hide UI elements like modals, notifications, or alerts with a simple action, enhancing user control over content visibility.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:21:14 PM" +} diff --git a/svgs/Global-Dismiss-Outline.svg b/icons/Close.svg similarity index 100% rename from svgs/Global-Dismiss-Outline.svg rename to icons/Close.svg diff --git a/icons/Copy.json b/icons/Copy.json new file mode 100644 index 0000000..f24c1c5 --- /dev/null +++ b/icons/Copy.json @@ -0,0 +1,20 @@ +{ + "id": "CopyMajor", + "name": "Copy", + "set": "Major", + "keywords": [ + "copy", + "duplicate", + "copy text", + "clipboard", + "clone", + "copy button", + "copy action", + "replicate", + "" + ], + "aliases": [""], + "description": "The Copy Component allows users to quickly duplicate content to their clipboard with a single click, commonly used in forms, text fields, and code snippets for efficient data replication.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:12:38 PM" +} diff --git a/svgs/Global-Copy-Outline.svg b/icons/Copy.svg similarity index 100% rename from svgs/Global-Copy-Outline.svg rename to icons/Copy.svg diff --git a/icons/Currency.json b/icons/Currency.json new file mode 100644 index 0000000..4684ad0 --- /dev/null +++ b/icons/Currency.json @@ -0,0 +1,20 @@ +{ + "id": "CurrencyMajor", + "name": "Currency", + "set": "Major", + "keywords": [ + "currency", + "money", + "amount", + "currency symbol", + "price", + "cost", + "financial", + "conversion", + "" + ], + "aliases": [""], + "description": "It is a UI element designed to handle and display monetary values in the appropriate format and currency symbol. It is commonly used in forms, pricing tables, and financial dashboards to ensure that currency data is presented accurately and consistently. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:15:08 PM" +} diff --git a/svgs/Global-Currency-Outline.svg b/icons/Currency.svg similarity index 100% rename from svgs/Global-Currency-Outline.svg rename to icons/Currency.svg diff --git a/icons/Dot.json b/icons/Dot.json new file mode 100644 index 0000000..5cd1b9c --- /dev/null +++ b/icons/Dot.json @@ -0,0 +1,21 @@ +{ + "id": "DotMajor", + "name": "Dot", + "set": "Major", + "keywords": [ + "dot", + "indicator", + "marker", + "bullet", + "visual cue", + "separator", + "circle", + "status icon", + "notification", + "tag" + ], + "aliases": [""], + "description": " A small circular element used to represent status, serve as a visual indicator, or provide decorative separation in user interfaces.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:25:36 PM" +} diff --git a/svgs/Global-Dot-Fill.svg b/icons/Dot.svg similarity index 100% rename from svgs/Global-Dot-Fill.svg rename to icons/Dot.svg diff --git a/icons/Globe.json b/icons/Globe.json new file mode 100644 index 0000000..54baa45 --- /dev/null +++ b/icons/Globe.json @@ -0,0 +1,20 @@ +{ + "id": "GlobeMajor", + "name": "Globe", + "set": "Major", + "keywords": [ + "globe", + "world", + "planet", + "geography", + "earth", + "map", + "international", + "geo", + "network" + ], + "aliases": [""], + "description": "An icon representing the globe or Earth, commonly used to signify global reach, international settings, or geographical features in user interfaces.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:28:13 PM" +} diff --git a/svgs/Global-Globe-Outline.svg b/icons/Globe.svg similarity index 100% rename from svgs/Global-Globe-Outline.svg rename to icons/Globe.svg diff --git a/icons/HorizontalDots.json b/icons/HorizontalDots.json new file mode 100644 index 0000000..5aab3d0 --- /dev/null +++ b/icons/HorizontalDots.json @@ -0,0 +1,22 @@ +{ + "id": "HorizontalDotsMajor", + "name": "HorizontalDots", + "set": "Major", + "keywords": [ + "three dots", + "dots", + "horizontal", + "more", + "ellipsis", + "overflow", + "extended", + "settings", + "actions", + "expandable", + "context menu" + ], + "aliases": [""], + "description": "An icon commonly represented by three dots or an ellipsis, used to indicate the presence of additional options, settings, or actions within a user interface.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 4:32:15 PM" +} diff --git a/svgs/Global-More-Outline.svg b/icons/HorizontalDots.svg similarity index 100% rename from svgs/Global-More-Outline.svg rename to icons/HorizontalDots.svg diff --git a/icons/Square.json b/icons/Square.json index 5329e8e..4a6818a 100644 --- a/icons/Square.json +++ b/icons/Square.json @@ -2,9 +2,9 @@ "id": "SquareMajor", "name": "Square", "set": "Major", - "keywords": [""], + "keywords": ["square", "shape","select", "frame", "border" ], "aliases": [""], - "description": "", + "description": "A square icon that serves as a basic geometric shape, often used as a placeholder, container, or outline for various UI elements.", "sizes": [16, 20, 24, 28, 32, 48], "creation_date": "8/16/2024, 1:50:18 PM" } From a324292206f1e58dc0d82a1b7babadfe705fc522 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Thu, 22 Aug 2024 17:04:12 +0400 Subject: [PATCH 04/15] Bump up library version to 1.0.3 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e2f7c1b..8890b7d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@geneui/icons", - "version": "1.0.0", + "version": "1.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@geneui/icons", - "version": "1.0.0", + "version": "1.0.3", "license": "MIT", "devDependencies": { "@babel/cli": "^7.18.9", diff --git a/package.json b/package.json index cbc2b5e..5123fa0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@geneui/icons", - "version": "1.0.2", + "version": "1.0.3", "description": "Gene UI icons distributed as SVG React components.", "author": "SoftConstruct", "main": "index.js", From f866e3fe2c3a951645a00c27a67b9b231964921c Mon Sep 17 00:00:00 2001 From: Emmagevv Date: Fri, 23 Aug 2024 15:03:06 +0400 Subject: [PATCH 05/15] created 15 icons --- svgs/Global-Open-Outline.svg | 4 ---- svgs/Global-Search-Outline.svg | 3 --- svgs/Global-Status-Error-Fill.svg | 3 --- svgs/Global-Status-Error-Outline.svg | 5 ----- svgs/Global-Status-Informative-Fill.svg | 3 --- svgs/Global-Status-Informative-Outline.svg | 5 ----- svgs/Global-Status-Recommendation-Fill.svg | 4 ---- svgs/Global-Status-Success-Fill.svg | 3 --- svgs/Global-Status-Success-Outline.svg | 4 ---- svgs/Global-Status-Unavailable-Fill.svg | 3 --- svgs/Global-Status-Unavailable-Outline.svg | 4 ---- svgs/Global-Status-Warning-Fill.svg | 3 --- svgs/Global-Status-Warning-Outline.svg | 5 ----- svgs/Global-Subtract-Outline.svg | 3 --- svgs/Global-Tag-Outline.svg | 4 ---- 15 files changed, 56 deletions(-) delete mode 100644 svgs/Global-Open-Outline.svg delete mode 100644 svgs/Global-Search-Outline.svg delete mode 100644 svgs/Global-Status-Error-Fill.svg delete mode 100644 svgs/Global-Status-Error-Outline.svg delete mode 100644 svgs/Global-Status-Informative-Fill.svg delete mode 100644 svgs/Global-Status-Informative-Outline.svg delete mode 100644 svgs/Global-Status-Recommendation-Fill.svg delete mode 100644 svgs/Global-Status-Success-Fill.svg delete mode 100644 svgs/Global-Status-Success-Outline.svg delete mode 100644 svgs/Global-Status-Unavailable-Fill.svg delete mode 100644 svgs/Global-Status-Unavailable-Outline.svg delete mode 100644 svgs/Global-Status-Warning-Fill.svg delete mode 100644 svgs/Global-Status-Warning-Outline.svg delete mode 100644 svgs/Global-Subtract-Outline.svg delete mode 100644 svgs/Global-Tag-Outline.svg diff --git a/svgs/Global-Open-Outline.svg b/svgs/Global-Open-Outline.svg deleted file mode 100644 index 20d0421..0000000 --- a/svgs/Global-Open-Outline.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/svgs/Global-Search-Outline.svg b/svgs/Global-Search-Outline.svg deleted file mode 100644 index 8218706..0000000 --- a/svgs/Global-Search-Outline.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Status-Error-Fill.svg b/svgs/Global-Status-Error-Fill.svg deleted file mode 100644 index 8307ecd..0000000 --- a/svgs/Global-Status-Error-Fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Status-Error-Outline.svg b/svgs/Global-Status-Error-Outline.svg deleted file mode 100644 index ace1903..0000000 --- a/svgs/Global-Status-Error-Outline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/svgs/Global-Status-Informative-Fill.svg b/svgs/Global-Status-Informative-Fill.svg deleted file mode 100644 index 00f9802..0000000 --- a/svgs/Global-Status-Informative-Fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Status-Informative-Outline.svg b/svgs/Global-Status-Informative-Outline.svg deleted file mode 100644 index b92d816..0000000 --- a/svgs/Global-Status-Informative-Outline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/svgs/Global-Status-Recommendation-Fill.svg b/svgs/Global-Status-Recommendation-Fill.svg deleted file mode 100644 index b9e9ae9..0000000 --- a/svgs/Global-Status-Recommendation-Fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/svgs/Global-Status-Success-Fill.svg b/svgs/Global-Status-Success-Fill.svg deleted file mode 100644 index 6a5459d..0000000 --- a/svgs/Global-Status-Success-Fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Status-Success-Outline.svg b/svgs/Global-Status-Success-Outline.svg deleted file mode 100644 index c30ab3d..0000000 --- a/svgs/Global-Status-Success-Outline.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/svgs/Global-Status-Unavailable-Fill.svg b/svgs/Global-Status-Unavailable-Fill.svg deleted file mode 100644 index 2e24358..0000000 --- a/svgs/Global-Status-Unavailable-Fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Status-Unavailable-Outline.svg b/svgs/Global-Status-Unavailable-Outline.svg deleted file mode 100644 index 007730e..0000000 --- a/svgs/Global-Status-Unavailable-Outline.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/svgs/Global-Status-Warning-Fill.svg b/svgs/Global-Status-Warning-Fill.svg deleted file mode 100644 index f5b30cf..0000000 --- a/svgs/Global-Status-Warning-Fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Status-Warning-Outline.svg b/svgs/Global-Status-Warning-Outline.svg deleted file mode 100644 index 61894cd..0000000 --- a/svgs/Global-Status-Warning-Outline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/svgs/Global-Subtract-Outline.svg b/svgs/Global-Subtract-Outline.svg deleted file mode 100644 index 7f1d3bc..0000000 --- a/svgs/Global-Subtract-Outline.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/svgs/Global-Tag-Outline.svg b/svgs/Global-Tag-Outline.svg deleted file mode 100644 index 425e11e..0000000 --- a/svgs/Global-Tag-Outline.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - From def5e91ab83fd3399871ad5fce4aab2fc70659f7 Mon Sep 17 00:00:00 2001 From: Emmagevv Date: Fri, 23 Aug 2024 15:08:04 +0400 Subject: [PATCH 06/15] created 15 icons --- icons/ErrorAlertFill.json | 22 ++++++++++++++++++++++ icons/ErrorAlertFill.svg | 3 +++ icons/ErrorAlertOutline.json | 23 +++++++++++++++++++++++ icons/ErrorAlertOutline.svg | 5 +++++ icons/InfoFill.json | 20 ++++++++++++++++++++ icons/InfoFill.svg | 3 +++ icons/InfoOutline.json | 21 +++++++++++++++++++++ icons/InfoOutline.svg | 5 +++++ icons/LightBulb.svg | 4 ++++ icons/LightBulbFill.json | 23 +++++++++++++++++++++++ icons/MinusOutline.json | 19 +++++++++++++++++++ icons/MinusOutline.svg | 3 +++ icons/NewWindow.json | 10 ++++++++++ icons/NewWindow.svg | 4 ++++ icons/Search.json | 20 ++++++++++++++++++++ icons/Search.svg | 3 +++ icons/SuccessFill.json | 23 +++++++++++++++++++++++ icons/SuccessFill.svg | 3 +++ icons/SuccessOutline.json | 24 ++++++++++++++++++++++++ icons/SuccessOutline.svg | 4 ++++ icons/TagOutline.json | 22 ++++++++++++++++++++++ icons/TagOutline.svg | 4 ++++ icons/UnavailableFill.json | 10 ++++++++++ icons/UnavailableFill.svg | 3 +++ icons/UnavailableOutline.json | 22 ++++++++++++++++++++++ icons/UnavailableOutline.svg | 4 ++++ icons/WarningFill.json | 21 +++++++++++++++++++++ icons/WarningFill.svg | 3 +++ icons/WarningOutline.json | 21 +++++++++++++++++++++ icons/WarningOutline.svg | 5 +++++ 30 files changed, 357 insertions(+) create mode 100644 icons/ErrorAlertFill.json create mode 100644 icons/ErrorAlertFill.svg create mode 100644 icons/ErrorAlertOutline.json create mode 100644 icons/ErrorAlertOutline.svg create mode 100644 icons/InfoFill.json create mode 100644 icons/InfoFill.svg create mode 100644 icons/InfoOutline.json create mode 100644 icons/InfoOutline.svg create mode 100644 icons/LightBulb.svg create mode 100644 icons/LightBulbFill.json create mode 100644 icons/MinusOutline.json create mode 100644 icons/MinusOutline.svg create mode 100644 icons/NewWindow.json create mode 100644 icons/NewWindow.svg create mode 100644 icons/Search.json create mode 100644 icons/Search.svg create mode 100644 icons/SuccessFill.json create mode 100644 icons/SuccessFill.svg create mode 100644 icons/SuccessOutline.json create mode 100644 icons/SuccessOutline.svg create mode 100644 icons/TagOutline.json create mode 100644 icons/TagOutline.svg create mode 100644 icons/UnavailableFill.json create mode 100644 icons/UnavailableFill.svg create mode 100644 icons/UnavailableOutline.json create mode 100644 icons/UnavailableOutline.svg create mode 100644 icons/WarningFill.json create mode 100644 icons/WarningFill.svg create mode 100644 icons/WarningOutline.json create mode 100644 icons/WarningOutline.svg diff --git a/icons/ErrorAlertFill.json b/icons/ErrorAlertFill.json new file mode 100644 index 0000000..0347924 --- /dev/null +++ b/icons/ErrorAlertFill.json @@ -0,0 +1,22 @@ +{ + "id": "ErrorAlertFillMajor", + "name": "ErrorAlertFill", + "set": "Major", + "keywords": [ + "error", + "status", + "error filled", + "filled", + "problem", + "critical", + "alert", + "danger", + "failure", + "attention", + "caution" + ], + "aliases": [""], + "description": " Icon indicating an error or critical status, usually filled with a color to emphasize the severity of the issue.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 1:47:58 PM" +} diff --git a/icons/ErrorAlertFill.svg b/icons/ErrorAlertFill.svg new file mode 100644 index 0000000..8307ecd --- /dev/null +++ b/icons/ErrorAlertFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ErrorAlertOutline.json b/icons/ErrorAlertOutline.json new file mode 100644 index 0000000..8abc26e --- /dev/null +++ b/icons/ErrorAlertOutline.json @@ -0,0 +1,23 @@ +{ + "id": "ErrorAlertOutlineMajor", + "name": "ErrorAlertOutline", + "set": "Major", + "keywords": [ + "error", + "outline", + "alert", + "warning", + "problem", + "issue", + "failure", + "attention", + "critical", + "danger", + "caution", + "outlined" + ], + "aliases": [""], + "description": " Icon indicating an error or critical status, outlined to signify a problem or issue that needs attention.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 1:50:20 PM" +} diff --git a/icons/ErrorAlertOutline.svg b/icons/ErrorAlertOutline.svg new file mode 100644 index 0000000..ace1903 --- /dev/null +++ b/icons/ErrorAlertOutline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/InfoFill.json b/icons/InfoFill.json new file mode 100644 index 0000000..b89f085 --- /dev/null +++ b/icons/InfoFill.json @@ -0,0 +1,20 @@ +{ + "id": "InfoFillMajor", + "name": "InfoFill", + "set": "Major", + "keywords": [ + "information", + "informative", + "info", + "notification", + "help", + "support", + "guidance", + "filled info", + "" + ], + "aliases": [""], + "description": "Icon representing informational content or guidance, filled to emphasize the importance of the information provided.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 1:55:16 PM" +} diff --git a/icons/InfoFill.svg b/icons/InfoFill.svg new file mode 100644 index 0000000..00f9802 --- /dev/null +++ b/icons/InfoFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/InfoOutline.json b/icons/InfoOutline.json new file mode 100644 index 0000000..9d782bd --- /dev/null +++ b/icons/InfoOutline.json @@ -0,0 +1,21 @@ +{ + "id": "InfoOutlineMajor", + "name": "InfoOutline", + "set": "Major", + "keywords": [ + "information", + "informative", + "info", + "details", + "outline", + "help", + "support", + "guidance", + "knowledge", + "outlineinfo" + ], + "aliases": [""], + "description": " Icon representing informational content or guidance, outlined to indicate helpful or relevant information.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 1:56:21 PM" +} diff --git a/icons/InfoOutline.svg b/icons/InfoOutline.svg new file mode 100644 index 0000000..b92d816 --- /dev/null +++ b/icons/InfoOutline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/LightBulb.svg b/icons/LightBulb.svg new file mode 100644 index 0000000..b9e9ae9 --- /dev/null +++ b/icons/LightBulb.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/LightBulbFill.json b/icons/LightBulbFill.json new file mode 100644 index 0000000..a1f958d --- /dev/null +++ b/icons/LightBulbFill.json @@ -0,0 +1,23 @@ +{ + "id": "LightBulbMajor", + "name": "LightBulbFill", + "set": "Major", + "keywords": [ + "bulb", + "light", + "light bulb", + "idea", + "inspiration", + "creativity", + "insight", + "solution", + "concept", + "energy", + "illumination", + "" + ], + "aliases": [""], + "description": "Icon representing ideas, inspiration, or innovation, filled to signify a bright idea or creative thought.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:01:27 PM" +} diff --git a/icons/MinusOutline.json b/icons/MinusOutline.json new file mode 100644 index 0000000..13cb573 --- /dev/null +++ b/icons/MinusOutline.json @@ -0,0 +1,19 @@ +{ + "id": "MinusOutlineMajor", + "name": "MinusOutline", + "set": "Major", + "keywords": [ + "subtract", + "remove", + "decrease", + "minus", + "reduction", + "negative", + "deduct", + "erase" + ], + "aliases": [""], + "description": "Minus icon used to represent a subtraction or reduction action, typically featuring a horizontal line.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:59:03 PM" +} diff --git a/icons/MinusOutline.svg b/icons/MinusOutline.svg new file mode 100644 index 0000000..7f1d3bc --- /dev/null +++ b/icons/MinusOutline.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/NewWindow.json b/icons/NewWindow.json new file mode 100644 index 0000000..c42e0a3 --- /dev/null +++ b/icons/NewWindow.json @@ -0,0 +1,10 @@ +{ + "id": "NewWindowMajor", + "name": "NewWindow", + "set": "Major", + "keywords": ["new window", "external link", "url", "navigation", "hyperlink", "redirect", ""], + "aliases": [""], + "description": "Icon indicating the action to open a link in a new window or tab.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 1:39:27 PM" +} diff --git a/icons/NewWindow.svg b/icons/NewWindow.svg new file mode 100644 index 0000000..20d0421 --- /dev/null +++ b/icons/NewWindow.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/Search.json b/icons/Search.json new file mode 100644 index 0000000..bdd20fb --- /dev/null +++ b/icons/Search.json @@ -0,0 +1,20 @@ +{ + "id": "SearchMajor", + "name": "Search", + "set": "Major", + "keywords": [ + "search", + "magnifier", + "find", + "explore", + "discover", + "lookup", + "browse", + "locate", + "investigate" + ], + "aliases": [""], + "description": "Icon representing the action of searching, finding, or looking up information. Typically depicted as a magnifying glass.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 1:42:13 PM" +} diff --git a/icons/Search.svg b/icons/Search.svg new file mode 100644 index 0000000..8218706 --- /dev/null +++ b/icons/Search.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/SuccessFill.json b/icons/SuccessFill.json new file mode 100644 index 0000000..886cb4c --- /dev/null +++ b/icons/SuccessFill.json @@ -0,0 +1,23 @@ +{ + "id": "SuccessFillMajor", + "name": "SuccessFill", + "set": "Major", + "keywords": [ + "success", + "checkmark", + "approved", + "confirmed", + "verified", + "completed", + "positive", + "done", + "validation", + "pass", + "filled success", + "status" + ], + "aliases": [""], + "description": "Icon representing success, completion, or approval, filled to emphasize a positive outcome or achievement.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:07:01 PM" +} diff --git a/icons/SuccessFill.svg b/icons/SuccessFill.svg new file mode 100644 index 0000000..6a5459d --- /dev/null +++ b/icons/SuccessFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/SuccessOutline.json b/icons/SuccessOutline.json new file mode 100644 index 0000000..d0948ab --- /dev/null +++ b/icons/SuccessOutline.json @@ -0,0 +1,24 @@ +{ + "id": "SuccessOutlineMajor", + "name": "SuccessOutline", + "set": "Major", + "keywords": [ + "success", + "checkmark", + "completed", + "approved", + "verified", + "confirmed", + "pass", + "positive", + "achievement", + "done", + "success status", + "outline success", + "status" + ], + "aliases": [""], + "description": "Icon representing success, completion, or approval, outlined to indicate a verified or confirmed action.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:28:47 PM" +} diff --git a/icons/SuccessOutline.svg b/icons/SuccessOutline.svg new file mode 100644 index 0000000..c30ab3d --- /dev/null +++ b/icons/SuccessOutline.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/TagOutline.json b/icons/TagOutline.json new file mode 100644 index 0000000..e24d4c3 --- /dev/null +++ b/icons/TagOutline.json @@ -0,0 +1,22 @@ +{ + "id": "TagOutlineMajor", + "name": "TagOutline", + "set": "Major", + "keywords": [ + "bookmark", + "flag", + "ticket", + "tag label", + "label", + "marker", + "sticker", + "identifier", + "category", + "price", + "badge" + ], + "aliases": [""], + "description": "An icon representing a tag, often used to signify labels, categories, or prices, typically shaped like a hanging tag or a label.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 3:00:52 PM" +} diff --git a/icons/TagOutline.svg b/icons/TagOutline.svg new file mode 100644 index 0000000..425e11e --- /dev/null +++ b/icons/TagOutline.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/UnavailableFill.json b/icons/UnavailableFill.json new file mode 100644 index 0000000..4050893 --- /dev/null +++ b/icons/UnavailableFill.json @@ -0,0 +1,10 @@ +{ + "id": "UnavailableFillMajor", + "name": "UnavailableFill", + "set": "Major", + "keywords": ["unavailable", "restricted", "status", "offline", "closed", "filled"], + "aliases": [""], + "description": " Icon indicating that a status or resource is unavailable or inaccessible, filled to highlight the lack of availability.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:40:31 PM" +} diff --git a/icons/UnavailableFill.svg b/icons/UnavailableFill.svg new file mode 100644 index 0000000..2e24358 --- /dev/null +++ b/icons/UnavailableFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/UnavailableOutline.json b/icons/UnavailableOutline.json new file mode 100644 index 0000000..3d1140e --- /dev/null +++ b/icons/UnavailableOutline.json @@ -0,0 +1,22 @@ +{ + "id": "UnavailableOutlineMajor", + "name": "UnavailableOutline", + "set": "Major", + "keywords": [ + "unavailable", + "satus", + "inaccessible", + "error", + "offline", + "closed", + "disabled", + "not available", + "blocked", + "restricted", + "outlined" + ], + "aliases": [""], + "description": "Icon indicating that a status or resource is unavailable or inaccessible, outlined to signal that something is not available.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:51:36 PM" +} diff --git a/icons/UnavailableOutline.svg b/icons/UnavailableOutline.svg new file mode 100644 index 0000000..007730e --- /dev/null +++ b/icons/UnavailableOutline.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/WarningFill.json b/icons/WarningFill.json new file mode 100644 index 0000000..3c975cd --- /dev/null +++ b/icons/WarningFill.json @@ -0,0 +1,21 @@ +{ + "id": "WarningFillMajor", + "name": "WarningFill", + "set": "Major", + "keywords": [ + "danger", + "alert", + "error", + "critical", + "important", + "alertsign", + "notification", + "notify", + "advisory", + "attention" + ], + "aliases": [""], + "description": "An icon used to indicate a warning or cautionary message, often featuring an exclamation mark inside a triangle.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:54:59 PM" +} diff --git a/icons/WarningFill.svg b/icons/WarningFill.svg new file mode 100644 index 0000000..f5b30cf --- /dev/null +++ b/icons/WarningFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/WarningOutline.json b/icons/WarningOutline.json new file mode 100644 index 0000000..8c92d39 --- /dev/null +++ b/icons/WarningOutline.json @@ -0,0 +1,21 @@ +{ + "id": "WarningOutlineMajor", + "name": "WarningOutline", + "set": "Major", + "keywords": [ + "danger", + "alert", + "error", + "critical", + "important", + "alertsign", + "notification", + "notify", + "advisory", + "attention" + ], + "aliases": [""], + "description": "An icon used to indicate a warning or cautionary message, often featuring an exclamation mark inside a triangle.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/23/2024, 2:55:49 PM" +} diff --git a/icons/WarningOutline.svg b/icons/WarningOutline.svg new file mode 100644 index 0000000..61894cd --- /dev/null +++ b/icons/WarningOutline.svg @@ -0,0 +1,5 @@ + + + + + From 3ea72928e054ce802fc7b24030e50d294b6ee9c5 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Mon, 2 Sep 2024 13:58:56 +0400 Subject: [PATCH 07/15] Bump up version to 1.0.4 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8890b7d..4eaf0bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@geneui/icons", - "version": "1.0.3", + "version": "1.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@geneui/icons", - "version": "1.0.3", + "version": "1.0.4", "license": "MIT", "devDependencies": { "@babel/cli": "^7.18.9", diff --git a/package.json b/package.json index 5123fa0..222fd30 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@geneui/icons", - "version": "1.0.3", + "version": "1.0.4", "description": "Gene UI icons distributed as SVG React components.", "author": "SoftConstruct", "main": "index.js", From f79c84909e3ce2939bc7fb4c7d36fdc2bfaafe26 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Fri, 20 Sep 2024 10:47:41 +0400 Subject: [PATCH 08/15] Add new pipelines for the package --- .github/workflows/notify-reviewers.yml | 20 ++++++++++++++++++++ .github/workflows/publish.yml | 11 +++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .github/workflows/notify-reviewers.yml diff --git a/.github/workflows/notify-reviewers.yml b/.github/workflows/notify-reviewers.yml new file mode 100644 index 0000000..5729d9a --- /dev/null +++ b/.github/workflows/notify-reviewers.yml @@ -0,0 +1,20 @@ +name: Notify Reviewers +on: + push: + branches: ["release/*"] +jobs: + send_notification: + runs-on: ubuntu-latest + steps: + - name: Send Notification + env: + INTERNAL_NOTIFICATION_CHANNEL_API_ENDPOINT: ${{ secrets.INTERNAL_NOTIFICATION_CHANNEL_API_ENDPOINT }} + run: | + COMMIT_ID=${{ github.sha }} + COMMIT_URL=${{ github.event.head_commit.url }} + COMMIT_AUTHOR=${{ github.event.pusher.name }} + + MESSAGE="@channel\New commit on @geneui/icons: [#$COMMIT_ID]($COMMIT_URL) by @$COMMIT_AUTHOR\n" + + curl -X POST -H "Content-Type: application/json" -d "{\"text\": \"$MESSAGE\", \"username\": \"GitHub\", \"icon_url\": \"https://github.githubassets.com/favicons/favicon.png\"}" $INTERNAL_NOTIFICATION_CHANNEL_API_ENDPOINT + diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ff1473b..4ed31f1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,6 +24,17 @@ jobs: run: cd dist && npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_ACCESS_TOKEN }} + - name: 🔔 Send Notification + env: + COMMUNITY_NOTIFICATION_CHANNEL_API_ENDPOINT: + ${{ secrets.COMMUNITY_NOTIFICATION_CHANNEL_API_ENDPOINT }} + run: | + VERSION=$(jq -r '.version' dist/package.json) + VERSION_URL="https://www.npmjs.com/package/@geneui/icons/v/$VERSION" + + MESSAGE="@channel\nExciting news! New version [$VERSION]($VERSION_URL) of @geneui/icons is published with new features and improvements! on NPM" + + curl -X POST -H "Content-Type: application/json" -d "{\"text\": \"$MESSAGE\", \"username\": \"NPM\", \"icon_url\": \"https://static-production.npmjs.com/b0f1a8318363185cc2ea6a40ac23eeb2.png\"}" $COMMUNITY_NOTIFICATION_CHANNEL_API_ENDPOINT - name: 🚀 Run bump up commit run: | git config --global user.name "Hamik Hambardzumyan" From 63895f589cf862c55b0ae89575822de683d59b80 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Fri, 20 Sep 2024 11:17:18 +0400 Subject: [PATCH 09/15] Fix notify message --- .github/workflows/notify-reviewers.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/notify-reviewers.yml b/.github/workflows/notify-reviewers.yml index 5729d9a..e58282c 100644 --- a/.github/workflows/notify-reviewers.yml +++ b/.github/workflows/notify-reviewers.yml @@ -14,7 +14,6 @@ jobs: COMMIT_URL=${{ github.event.head_commit.url }} COMMIT_AUTHOR=${{ github.event.pusher.name }} - MESSAGE="@channel\New commit on @geneui/icons: [#$COMMIT_ID]($COMMIT_URL) by @$COMMIT_AUTHOR\n" + MESSAGE="@channel\nNew commit on @geneui/icons\n Commit: [#$COMMIT_ID]($COMMIT_URL) by @$COMMIT_AUTHOR" - curl -X POST -H "Content-Type: application/json" -d "{\"text\": \"$MESSAGE\", \"username\": \"GitHub\", \"icon_url\": \"https://github.githubassets.com/favicons/favicon.png\"}" $INTERNAL_NOTIFICATION_CHANNEL_API_ENDPOINT - + curl -X POST -H "Content-Type: application/json" -d "{\"text\": \"$MESSAGE\", \"username\": \"GitHub\", \"icon_url\": \"https://github.githubassets.com/favicons/favicon.png\"}" $INTERNAL_NOTIFICATION_CHANNEL_API_ENDPOINT \ No newline at end of file From 35735214167fd7887aabc3afec8b4067c6a6624e Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Fri, 20 Sep 2024 11:19:21 +0400 Subject: [PATCH 10/15] Fix notify message --- .github/workflows/notify-reviewers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-reviewers.yml b/.github/workflows/notify-reviewers.yml index e58282c..9f2d2de 100644 --- a/.github/workflows/notify-reviewers.yml +++ b/.github/workflows/notify-reviewers.yml @@ -14,6 +14,6 @@ jobs: COMMIT_URL=${{ github.event.head_commit.url }} COMMIT_AUTHOR=${{ github.event.pusher.name }} - MESSAGE="@channel\nNew commit on @geneui/icons\n Commit: [#$COMMIT_ID]($COMMIT_URL) by @$COMMIT_AUTHOR" + MESSAGE="@channel\nNew commit on @geneui/icons\nCommit: [#$COMMIT_ID]($COMMIT_URL) by @$COMMIT_AUTHOR" curl -X POST -H "Content-Type: application/json" -d "{\"text\": \"$MESSAGE\", \"username\": \"GitHub\", \"icon_url\": \"https://github.githubassets.com/favicons/favicon.png\"}" $INTERNAL_NOTIFICATION_CHANNEL_API_ENDPOINT \ No newline at end of file From c42b7a7489e197472a202d91af1ae094e8b02e70 Mon Sep 17 00:00:00 2001 From: Emmagevv Date: Tue, 12 Nov 2024 13:53:07 +0400 Subject: [PATCH 11/15] add 22 icons --- icons/AlignmentBottom.json | 17 +++++++++++++++++ icons/AlignmentBottom.svg | 3 +++ icons/AlignmentBottomFilled.json | 17 +++++++++++++++++ icons/AlignmentBottomFilled.svg | 3 +++ icons/AlignmentCenter.json | 16 ++++++++++++++++ icons/AlignmentCenter.svg | 3 +++ icons/AlignmentCenterFilled.json | 15 +++++++++++++++ icons/AlignmentCenterFilled.svg | 3 +++ icons/AlignmentLeft.json | 16 ++++++++++++++++ icons/AlignmentLeft.svg | 3 +++ icons/AlignmentLeftFilled.json | 18 ++++++++++++++++++ icons/AlignmentLeftFilled.svg | 3 +++ icons/AlignmentRight.json | 10 ++++++++++ icons/AlignmentRight.svg | 3 +++ icons/AlignmentRightFilled.json | 16 ++++++++++++++++ icons/AlignmentRightFilled.svg | 3 +++ icons/AlignmentTop.json | 16 ++++++++++++++++ icons/AlignmentTop.svg | 3 +++ icons/AlignmentTopFilled.json | 16 ++++++++++++++++ icons/AlignmentTopFilled.svg | 3 +++ icons/Applications.json | 10 ++++++++++ icons/Applications.svg | 3 +++ icons/Archive.json | 17 +++++++++++++++++ icons/Archive.svg | 3 +++ icons/ArchiveFilled.json | 19 +++++++++++++++++++ icons/ArchiveFilled.svg | 3 +++ icons/ArrowDown.json | 10 ++++++++++ icons/ArrowDown.svg | 3 +++ icons/ArrowExpand.json | 10 ++++++++++ icons/ArrowExpand.svg | 3 +++ icons/ArrowMaximize.json | 10 ++++++++++ icons/ArrowMaximize.svg | 3 +++ icons/ArrowMaximizeVertical.json | 10 ++++++++++ icons/ArrowMaximizeVertical.svg | 3 +++ icons/ArrowSort.json | 10 ++++++++++ icons/ArrowSort.svg | 3 +++ icons/ArrowSwap.json | 10 ++++++++++ icons/ArrowSwap.svg | 3 +++ icons/ArrowUp.json | 10 ++++++++++ icons/ArrowUp.svg | 3 +++ icons/Attachment.json | 10 ++++++++++ icons/Attachment.svg | 3 +++ icons/RotationLeft.json | 10 ++++++++++ icons/RotationLeft.svg | 3 +++ 44 files changed, 359 insertions(+) create mode 100644 icons/AlignmentBottom.json create mode 100644 icons/AlignmentBottom.svg create mode 100644 icons/AlignmentBottomFilled.json create mode 100644 icons/AlignmentBottomFilled.svg create mode 100644 icons/AlignmentCenter.json create mode 100644 icons/AlignmentCenter.svg create mode 100644 icons/AlignmentCenterFilled.json create mode 100644 icons/AlignmentCenterFilled.svg create mode 100644 icons/AlignmentLeft.json create mode 100644 icons/AlignmentLeft.svg create mode 100644 icons/AlignmentLeftFilled.json create mode 100644 icons/AlignmentLeftFilled.svg create mode 100644 icons/AlignmentRight.json create mode 100644 icons/AlignmentRight.svg create mode 100644 icons/AlignmentRightFilled.json create mode 100644 icons/AlignmentRightFilled.svg create mode 100644 icons/AlignmentTop.json create mode 100644 icons/AlignmentTop.svg create mode 100644 icons/AlignmentTopFilled.json create mode 100644 icons/AlignmentTopFilled.svg create mode 100644 icons/Applications.json create mode 100644 icons/Applications.svg create mode 100644 icons/Archive.json create mode 100644 icons/Archive.svg create mode 100644 icons/ArchiveFilled.json create mode 100644 icons/ArchiveFilled.svg create mode 100644 icons/ArrowDown.json create mode 100644 icons/ArrowDown.svg create mode 100644 icons/ArrowExpand.json create mode 100644 icons/ArrowExpand.svg create mode 100644 icons/ArrowMaximize.json create mode 100644 icons/ArrowMaximize.svg create mode 100644 icons/ArrowMaximizeVertical.json create mode 100644 icons/ArrowMaximizeVertical.svg create mode 100644 icons/ArrowSort.json create mode 100644 icons/ArrowSort.svg create mode 100644 icons/ArrowSwap.json create mode 100644 icons/ArrowSwap.svg create mode 100644 icons/ArrowUp.json create mode 100644 icons/ArrowUp.svg create mode 100644 icons/Attachment.json create mode 100644 icons/Attachment.svg create mode 100644 icons/RotationLeft.json create mode 100644 icons/RotationLeft.svg diff --git a/icons/AlignmentBottom.json b/icons/AlignmentBottom.json new file mode 100644 index 0000000..1dfc12b --- /dev/null +++ b/icons/AlignmentBottom.json @@ -0,0 +1,17 @@ +{ + "id": "AlignmentBottomMajor", + "name": "AlignmentBottom", + "set": "Major", + "keywords": [ + "align bottom", + "vertical alignment", + "align objects", + "bottom align", + "layout alignment", + "align elements" + ], + "aliases": [""], + "description": "This icon represents Bottom Alignment, used to align multiple objects or elements along a shared bottom edge or baseline in design layouts.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:31:54 PM" +} diff --git a/icons/AlignmentBottom.svg b/icons/AlignmentBottom.svg new file mode 100644 index 0000000..cc79c87 --- /dev/null +++ b/icons/AlignmentBottom.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentBottomFilled.json b/icons/AlignmentBottomFilled.json new file mode 100644 index 0000000..929e972 --- /dev/null +++ b/icons/AlignmentBottomFilled.json @@ -0,0 +1,17 @@ +{ + "id": "AlignmentBottomMajor", + "name": "AlignmentBottomFilled", + "set": "Major", + "keywords": [ + "align bottom filled", + "vertical alignment filled", + "filled align objects", + "filled bottom align", + "filed layout alignment", + "align elements filled" + ], + "aliases": [""], + "description": "This icon represents Filled Bottom Alignment, used to align objects or elements along a shared bottom edge with a filled style.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:21:02 PM" +} diff --git a/icons/AlignmentBottomFilled.svg b/icons/AlignmentBottomFilled.svg new file mode 100644 index 0000000..16d0aa5 --- /dev/null +++ b/icons/AlignmentBottomFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentCenter.json b/icons/AlignmentCenter.json new file mode 100644 index 0000000..bc3b5d9 --- /dev/null +++ b/icons/AlignmentCenter.json @@ -0,0 +1,16 @@ +{ + "id": "AlignmentCenterMajor", + "name": "AlignmentCenter", + "set": "Major", + "keywords": [ + "align center", + "center layout", + "align middle", + "center objects", + "vertical center align" + ], + "aliases": [""], + "description": "This icon represents Center Alignment, used to align multiple objects or elements along a shared vertical center line.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:22:54 PM" +} diff --git a/icons/AlignmentCenter.svg b/icons/AlignmentCenter.svg new file mode 100644 index 0000000..7096e9b --- /dev/null +++ b/icons/AlignmentCenter.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentCenterFilled.json b/icons/AlignmentCenterFilled.json new file mode 100644 index 0000000..4bfa52b --- /dev/null +++ b/icons/AlignmentCenterFilled.json @@ -0,0 +1,15 @@ +{ + "id": "AlignmentCenterFilledMajor", + "name": "AlignmentCenterFilled", + "set": "Major", + "keywords": [ + "align center filled", + "filled center align", + "center objects filled", + "vertical center" + ], + "aliases": [""], + "description": "This icon represents Filled Center Alignment, used to align objects or elements along a shared vertical center line with a filled style.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:38:54 PM" +} diff --git a/icons/AlignmentCenterFilled.svg b/icons/AlignmentCenterFilled.svg new file mode 100644 index 0000000..a11b776 --- /dev/null +++ b/icons/AlignmentCenterFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentLeft.json b/icons/AlignmentLeft.json new file mode 100644 index 0000000..02ca05a --- /dev/null +++ b/icons/AlignmentLeft.json @@ -0,0 +1,16 @@ +{ + "id": "AlignmentLeftMajor", + "name": "AlignmentLeft", + "set": "Major", + "keywords": [ + "align left", + "left alignment", + "left edge align", + "horizontal align left", + "align objects left" + ], + "aliases": [""], + "description": "This icon represents Left Alignment, used to align objects or elements along a shared left edge.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:42:46 PM" +} diff --git a/icons/AlignmentLeft.svg b/icons/AlignmentLeft.svg new file mode 100644 index 0000000..3a891d0 --- /dev/null +++ b/icons/AlignmentLeft.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentLeftFilled.json b/icons/AlignmentLeftFilled.json new file mode 100644 index 0000000..62c1f48 --- /dev/null +++ b/icons/AlignmentLeftFilled.json @@ -0,0 +1,18 @@ +{ + "id": "AlignmentLeftFilledMajor", + "name": "AlignmentLeftFilled", + "set": "Major", + "keywords": [ + "align left filled", + "left alignment filled", + "filled align left", + "horizontal left align filled", + "left edge alignment filled" + ], + "aliases": [ + + ], + "description": "This icon represents Filled Left Alignment, used to align objects or elements along a shared left edge with a filled style.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:41:02 PM" +} diff --git a/icons/AlignmentLeftFilled.svg b/icons/AlignmentLeftFilled.svg new file mode 100644 index 0000000..a4940c2 --- /dev/null +++ b/icons/AlignmentLeftFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentRight.json b/icons/AlignmentRight.json new file mode 100644 index 0000000..c1c191b --- /dev/null +++ b/icons/AlignmentRight.json @@ -0,0 +1,10 @@ +{ + "id": "AlignmentRightMajor", + "name": "AlignmentRight", + "set": "Major", + "keywords": ["align right", "right alignment", "right edge align", "horizontal align right"], + "aliases": [""], + "description": "This icon represents Right Alignment, used to align objects or elements along a shared right edge.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:46:17 PM" +} diff --git a/icons/AlignmentRight.svg b/icons/AlignmentRight.svg new file mode 100644 index 0000000..a1f1afe --- /dev/null +++ b/icons/AlignmentRight.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentRightFilled.json b/icons/AlignmentRightFilled.json new file mode 100644 index 0000000..ab9e68d --- /dev/null +++ b/icons/AlignmentRightFilled.json @@ -0,0 +1,16 @@ +{ + "id": "AlignmentRightMajor", + "name": "AlignmentRightFilled", + "set": "Major", + "keywords": [ + "align right filled", + "right alignmengt filled", + "filled align right", + "horizontal right align filled", + "right edge alignment filled" + ], + "aliases": [""], + "description": "This icon represents Filled Right Alignment, used to align objects or elements along a shared right edge with a filled style.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:44:44 PM" +} diff --git a/icons/AlignmentRightFilled.svg b/icons/AlignmentRightFilled.svg new file mode 100644 index 0000000..35dd249 --- /dev/null +++ b/icons/AlignmentRightFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentTop.json b/icons/AlignmentTop.json new file mode 100644 index 0000000..4bc9455 --- /dev/null +++ b/icons/AlignmentTop.json @@ -0,0 +1,16 @@ +{ + "id": "AlignmentTopMajor", + "name": "AlignmentTop", + "set": "Major", + "keywords": [ + "align top", + "top alignment", + "top edge align", + "vertical align top", + "align objects top" + ], + "aliases": [""], + "description": "This icon represents Top Alignment, used to align objects or elements along a shared top edge.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:48:46 PM" +} diff --git a/icons/AlignmentTop.svg b/icons/AlignmentTop.svg new file mode 100644 index 0000000..3bb7ec0 --- /dev/null +++ b/icons/AlignmentTop.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/AlignmentTopFilled.json b/icons/AlignmentTopFilled.json new file mode 100644 index 0000000..838f8d2 --- /dev/null +++ b/icons/AlignmentTopFilled.json @@ -0,0 +1,16 @@ +{ + "id": "AlignmentTopFilledMajor", + "name": "AlignmentTopFilled", + "set": "Major", + "keywords": [ + "align top filled", + "top alignment filled", + "filled align top", + "vertical top align filled", + "top edge alignment filled" + ], + "aliases": [""], + "description": "This icon represents Filled Top Alignment, used to align objects or elements along a shared top edge with a filled style.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:47:44 PM" +} diff --git a/icons/AlignmentTopFilled.svg b/icons/AlignmentTopFilled.svg new file mode 100644 index 0000000..6e6c3c0 --- /dev/null +++ b/icons/AlignmentTopFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Applications.json b/icons/Applications.json new file mode 100644 index 0000000..fd924c9 --- /dev/null +++ b/icons/Applications.json @@ -0,0 +1,10 @@ +{ + "id": "ApplicationsMajor", + "name": "Applications", + "set": "Major", + "keywords": ["apps", "programs", "software", "tools"], + "aliases": [""], + "description": "The applications icon represents access to a collection or menu of available programs, tools, or features within a system. It is often used to open a dashboard or launcher for navigating different applications or functionalities.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 8:06:22 AM" +} diff --git a/icons/Applications.svg b/icons/Applications.svg new file mode 100644 index 0000000..9b44234 --- /dev/null +++ b/icons/Applications.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Archive.json b/icons/Archive.json new file mode 100644 index 0000000..9bf7797 --- /dev/null +++ b/icons/Archive.json @@ -0,0 +1,17 @@ +{ + "id": "ArchiveMajor", + "name": "Archive", + "set": "Major", + "keywords": [ + "Archive", + "file storage", + "data preservation", + "document retention", + "save", + "backup." + ], + "aliases": [""], + "description": "The archive icon typically represents the action of storing or preserving files or documents for long-term storage, often in a compressed or organized format for easy retrieval. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 1:56:06 PM" +} diff --git a/icons/Archive.svg b/icons/Archive.svg new file mode 100644 index 0000000..29bdf72 --- /dev/null +++ b/icons/Archive.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArchiveFilled.json b/icons/ArchiveFilled.json new file mode 100644 index 0000000..2e7f0a1 --- /dev/null +++ b/icons/ArchiveFilled.json @@ -0,0 +1,19 @@ +{ + "id": "ArchiveFilledMajor", + "name": "ArchiveFilled", + "set": "Major", + "keywords": [ + "Archive", + "file storage", + "data preservation", + "document retention", + "save", + "backup", + "filled", + "completed." + ], + "aliases": [""], + "description": "The filled archive icon represents a completed or active storage action, where files or documents are securely stored or archived. It is typically used to indicate that items have been successfully archived or backed up and are no longer in active use but are preserved for future reference. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 1:59:05 PM" +} diff --git a/icons/ArchiveFilled.svg b/icons/ArchiveFilled.svg new file mode 100644 index 0000000..72f7153 --- /dev/null +++ b/icons/ArchiveFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowDown.json b/icons/ArrowDown.json new file mode 100644 index 0000000..1c86909 --- /dev/null +++ b/icons/ArrowDown.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowDownMajor", + "name": "ArrowDown", + "set": "Major", + "keywords": ["arrow down", "direction down", "downward", "navigate down", "move down"], + "aliases": [""], + "description": "This icon represents a Downward Arrow, commonly used to indicate downward navigation, download actions, or moving an element down.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:16:41 PM" +} diff --git a/icons/ArrowDown.svg b/icons/ArrowDown.svg new file mode 100644 index 0000000..fcd63e2 --- /dev/null +++ b/icons/ArrowDown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowExpand.json b/icons/ArrowExpand.json new file mode 100644 index 0000000..0fafdd7 --- /dev/null +++ b/icons/ArrowExpand.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowExpandMajor", + "name": "ArrowExpand", + "set": "Major", + "keywords": ["expand", "enlarge", "maximize", "open", "full screen", "arrows"], + "aliases": [""], + "description": "The arrow expand icon signifies the action of enlarging or maximizing a view or element, often to full screen. It is used to indicate that content can be expanded for a larger or more detailed view.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 8:09:17 AM" +} diff --git a/icons/ArrowExpand.svg b/icons/ArrowExpand.svg new file mode 100644 index 0000000..a9e6742 --- /dev/null +++ b/icons/ArrowExpand.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowMaximize.json b/icons/ArrowMaximize.json new file mode 100644 index 0000000..a6396cf --- /dev/null +++ b/icons/ArrowMaximize.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowMaximizeMajor", + "name": "ArrowMaximize", + "set": "Major", + "keywords": ["Maximize", "expand", "enlarge", "full screen", "resize", "arrows."], + "aliases": [""], + "description": "The arrow maximize icon indicates the action of expanding an element to its maximum size, often to fill the entire screen or container.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 8:52:29 AM" +} diff --git a/icons/ArrowMaximize.svg b/icons/ArrowMaximize.svg new file mode 100644 index 0000000..ce06443 --- /dev/null +++ b/icons/ArrowMaximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowMaximizeVertical.json b/icons/ArrowMaximizeVertical.json new file mode 100644 index 0000000..5e496ee --- /dev/null +++ b/icons/ArrowMaximizeVertical.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowMaximizeVerticalMajor", + "name": "ArrowMaximizeVertical", + "set": "Major", + "keywords": ["Maximize", "vertical expand", "enlarge", "resize", "arrows", "up", "down."], + "aliases": [""], + "description": "The arrow maximize vertical icon represents the action of expanding or resizing content vertically, often to fit the full height of a screen or container.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 8:51:34 AM" +} diff --git a/icons/ArrowMaximizeVertical.svg b/icons/ArrowMaximizeVertical.svg new file mode 100644 index 0000000..0cc5e37 --- /dev/null +++ b/icons/ArrowMaximizeVertical.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowSort.json b/icons/ArrowSort.json new file mode 100644 index 0000000..42a0b1c --- /dev/null +++ b/icons/ArrowSort.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowSortMajor", + "name": "ArrowSort", + "set": "Major", + "keywords": ["Sort", "arrange", "order", "up", "down", "filter."], + "aliases": [""], + "description": "The arrow sort icon indicates the action of sorting or ordering items, typically in ascending or descending order. It is used to arrange data or elements based on a selected criterion.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 2:00:49 PM" +} diff --git a/icons/ArrowSort.svg b/icons/ArrowSort.svg new file mode 100644 index 0000000..9a2d043 --- /dev/null +++ b/icons/ArrowSort.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowSwap.json b/icons/ArrowSwap.json new file mode 100644 index 0000000..0791682 --- /dev/null +++ b/icons/ArrowSwap.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowSwapMajor", + "name": "ArrowSwap", + "set": "Major", + "keywords": ["swap", "exchange", "transfer", "arrows"], + "aliases": [""], + "description": "The arrowswap icon indicates an action to exchange or switch items, values, or positions. It is typically used to represent reversing the direction or swapping two elements.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 8:07:58 AM" +} diff --git a/icons/ArrowSwap.svg b/icons/ArrowSwap.svg new file mode 100644 index 0000000..9bc1526 --- /dev/null +++ b/icons/ArrowSwap.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ArrowUp.json b/icons/ArrowUp.json new file mode 100644 index 0000000..e295a43 --- /dev/null +++ b/icons/ArrowUp.json @@ -0,0 +1,10 @@ +{ + "id": "ArrowUpMajor", + "name": "ArrowUp", + "set": "Major", + "keywords": ["arrow up", "direction up", "navigate up", "move up", "upward arrow"], + "aliases": [""], + "description": "This icon represents an Upward Arrow, commonly used to indicate upward navigation, upload actions, or moving an element up.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/11/2024, 12:18:33 PM" +} diff --git a/icons/ArrowUp.svg b/icons/ArrowUp.svg new file mode 100644 index 0000000..2cfc937 --- /dev/null +++ b/icons/ArrowUp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Attachment.json b/icons/Attachment.json new file mode 100644 index 0000000..74bd9ed --- /dev/null +++ b/icons/Attachment.json @@ -0,0 +1,10 @@ +{ + "id": "AttachmentMajor", + "name": "Attachment", + "set": "Major", + "keywords": ["Attachment", "file", "document", "paperclip", "link", "add", "attach"], + "aliases": [""], + "description": "The attachment icon represents the action of adding or linking a file or document to a message, email, or form. It is commonly used to indicate that additional files can be included or are attached for reference.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 8:10:38 AM" +} diff --git a/icons/Attachment.svg b/icons/Attachment.svg new file mode 100644 index 0000000..e73ff7d --- /dev/null +++ b/icons/Attachment.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/RotationLeft.json b/icons/RotationLeft.json new file mode 100644 index 0000000..1a56e23 --- /dev/null +++ b/icons/RotationLeft.json @@ -0,0 +1,10 @@ +{ + "id": "RotationLeftMajor", + "name": "RotationLeft", + "set": "Major", + "keywords": ["rotate left", "turn left", "undo", "reset"], + "aliases": [""], + "description": "The arrow rotate counterclockwise icon represents the action of rotating an element to the left, often used for resetting, undoing changes, or refreshing content in a counterclockwise direction.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 9:15:41 AM" +} diff --git a/icons/RotationLeft.svg b/icons/RotationLeft.svg new file mode 100644 index 0000000..f8115e5 --- /dev/null +++ b/icons/RotationLeft.svg @@ -0,0 +1,3 @@ + + + From e6eacf9b2bb3db1172b14305bde02b1f1a7a44da Mon Sep 17 00:00:00 2001 From: Emmagevv Date: Fri, 15 Nov 2024 12:55:03 +0400 Subject: [PATCH 12/15] added 7 icons --- icons/Blocks.json | 10 ++++++++++ icons/Blocks.svg | 3 +++ icons/BlocksFilled.json | 10 ++++++++++ icons/BlocksFilled.svg | 3 +++ icons/Bookmark.json | 10 ++++++++++ icons/Bookmark.svg | 3 +++ icons/BookmarkFilled.json | 19 +++++++++++++++++++ icons/BookmarkFilled.svg | 3 +++ icons/Cube.json | 21 +++++++++++++++++++++ icons/Cube.svg | 3 +++ icons/CubeFilled.json | 21 +++++++++++++++++++++ icons/CubeFilled.svg | 3 +++ icons/Flask.json | 10 ++++++++++ icons/Flask.svg | 3 +++ 14 files changed, 122 insertions(+) create mode 100644 icons/Blocks.json create mode 100644 icons/Blocks.svg create mode 100644 icons/BlocksFilled.json create mode 100644 icons/BlocksFilled.svg create mode 100644 icons/Bookmark.json create mode 100644 icons/Bookmark.svg create mode 100644 icons/BookmarkFilled.json create mode 100644 icons/BookmarkFilled.svg create mode 100644 icons/Cube.json create mode 100644 icons/Cube.svg create mode 100644 icons/CubeFilled.json create mode 100644 icons/CubeFilled.svg create mode 100644 icons/Flask.json create mode 100644 icons/Flask.svg diff --git a/icons/Blocks.json b/icons/Blocks.json new file mode 100644 index 0000000..6a9d5f9 --- /dev/null +++ b/icons/Blocks.json @@ -0,0 +1,10 @@ +{ + "id": "BlocksMajor", + "name": "Blocks", + "set": "Major", + "keywords": ["Blocks", "grid", "layout", "structure", "menu", "applications."], + "aliases": [""], + "description": "The blocks icon represents a grid or collection of items organized in blocks, typically used to indicate a structured layout, an applications menu, or a dashboard view. It symbolizes access to various features or sections within a system.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/15/2024, 11:20:52 AM" +} diff --git a/icons/Blocks.svg b/icons/Blocks.svg new file mode 100644 index 0000000..b581f67 --- /dev/null +++ b/icons/Blocks.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/BlocksFilled.json b/icons/BlocksFilled.json new file mode 100644 index 0000000..eff29eb --- /dev/null +++ b/icons/BlocksFilled.json @@ -0,0 +1,10 @@ +{ + "id": "BlocksFilledMajor", + "name": "BlocksFilled", + "set": "Major", + "keywords": ["Blocks", "grid", "filled", "layout", "menu", "applications."], + "aliases": [""], + "description": "The Blocks Filled icon represents a filled grid or group of items, often used to indicate a structured layout, applications menu, or a collection of items organized in blocks. It can symbolize access to multiple features or sections within a system.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/15/2024, 11:22:01 AM" +} diff --git a/icons/BlocksFilled.svg b/icons/BlocksFilled.svg new file mode 100644 index 0000000..9d36a57 --- /dev/null +++ b/icons/BlocksFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Bookmark.json b/icons/Bookmark.json new file mode 100644 index 0000000..3a640cb --- /dev/null +++ b/icons/Bookmark.json @@ -0,0 +1,10 @@ +{ + "id": "BookmarkMajor", + "name": "Bookmark", + "set": "Major", + "keywords": ["bookmark", "save", "mark", "flag", "highlight", "favorite", "ribbon"], + "aliases": [""], + "description": "A bookmark icon symbolizes saving or marking content for quick access later. Typically designed as a simple ribbon or flag shape, it represents the act of highlighting items to revisit.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 2:31:38 PM" +} diff --git a/icons/Bookmark.svg b/icons/Bookmark.svg new file mode 100644 index 0000000..2bc3b5e --- /dev/null +++ b/icons/Bookmark.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/BookmarkFilled.json b/icons/BookmarkFilled.json new file mode 100644 index 0000000..46915c0 --- /dev/null +++ b/icons/BookmarkFilled.json @@ -0,0 +1,19 @@ +{ + "id": "BookmarkFilledMajor", + "name": "BookmarkFilled", + "set": "Major", + "keywords": [ + "bookmark filled", + "saved", + "marked", + "highlighted", + "favorite", + "selected", + "solid", + "ribbon" + ], + "aliases": [""], + "description": "A bookmark filled icon represents an item that has already been saved or marked. It usually appears as a solid, filled-in ribbon or flag shape, indicating active selection or highlighting for easy retrieval.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/12/2024, 2:32:48 PM" +} diff --git a/icons/BookmarkFilled.svg b/icons/BookmarkFilled.svg new file mode 100644 index 0000000..2faeeb9 --- /dev/null +++ b/icons/BookmarkFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Cube.json b/icons/Cube.json new file mode 100644 index 0000000..f5a6a9d --- /dev/null +++ b/icons/Cube.json @@ -0,0 +1,21 @@ +{ + "id": "CubeMajor", + "name": "Cube", + "set": "Major", + "keywords": [ + "3D", + "structure", + "block", + "modular", + "data", + "organization", + "storage", + "architecture", + "framework", + "design system." + ], + "aliases": [""], + "description": "A cube icon typically represents a 3D object or concept related to structure, organization, or a block element. It is often used to symbolize data storage, building blocks, or modularity in interfaces", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/15/2024, 11:31:15 AM" +} diff --git a/icons/Cube.svg b/icons/Cube.svg new file mode 100644 index 0000000..552dd21 --- /dev/null +++ b/icons/Cube.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CubeFilled.json b/icons/CubeFilled.json new file mode 100644 index 0000000..e1ebb00 --- /dev/null +++ b/icons/CubeFilled.json @@ -0,0 +1,21 @@ +{ + "id": "CubeFilledMajor", + "name": "CubeFilled", + "set": "Major", + "keywords": [ + "3D", + "filled", + "solid", + "block", + "structure", + "storage", + "unit", + "container", + "stability", + "design system." + ], + "aliases": [""], + "description": "The cube filled icon represents a solid, 3D block or object, often used to symbolize stability, storage, or a unit within a larger system. It is commonly used in interfaces to indicate a fully contained or structured element.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/15/2024, 11:31:52 AM" +} diff --git a/icons/CubeFilled.svg b/icons/CubeFilled.svg new file mode 100644 index 0000000..38bab72 --- /dev/null +++ b/icons/CubeFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Flask.json b/icons/Flask.json new file mode 100644 index 0000000..823fbd8 --- /dev/null +++ b/icons/Flask.json @@ -0,0 +1,10 @@ +{ + "id": "FlaskMajor", + "name": "Flask", + "set": "Major", + "keywords": ["Flask", "laboratory", "experiment", "science", "chemistry", "testing."], + "aliases": [""], + "description": " The flask icon represents scientific experimentation, testing, or research, commonly used to indicate laboratory-related activities, experimental features, or development testing environments.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/15/2024, 11:13:29 AM" +} diff --git a/icons/Flask.svg b/icons/Flask.svg new file mode 100644 index 0000000..710db71 --- /dev/null +++ b/icons/Flask.svg @@ -0,0 +1,3 @@ + + + From b748ac5d1f174d10ec68e73379fdcdb0caa098a2 Mon Sep 17 00:00:00 2001 From: Emmagevv Date: Tue, 19 Nov 2024 13:45:00 +0400 Subject: [PATCH 13/15] added 31 icons --- icons/BarTriple.json | 10 ++++++++++ icons/BarTriple.svg | 3 +++ icons/Calculator.json | 20 ++++++++++++++++++++ icons/Calculator.svg | 3 +++ icons/CalculatorFilled.json | 20 ++++++++++++++++++++ icons/CalculatorFilled.svg | 3 +++ icons/Calendar.json | 10 ++++++++++ icons/Calendar.svg | 3 +++ icons/CalendarRemove.json | 10 ++++++++++ icons/CalendarRemove.svg | 3 +++ icons/CalendarRemoveFilled.json | 10 ++++++++++ icons/CalendarRemoveFilled.svg | 3 +++ icons/CaretDown.json | 16 +++++++++++++--- icons/CaretDown.svg | 2 +- icons/CaretDownFilled.json | 10 ++++++++++ icons/CaretDownFilled.svg | 3 +++ icons/CaretLeft.json | 10 ++++++++++ icons/CaretLeft.svg | 3 +++ icons/CaretLeftFilled.json | 21 +++++++++++++++++++++ icons/CaretLeftFilled.svg | 3 +++ icons/CaretRight.json | 10 ++++++++++ icons/CaretRight.svg | 3 +++ icons/CaretRightFilled.json | 15 +++++++++++++++ icons/CaretRightFilled.svg | 3 +++ icons/CaretUp.json | 6 +++--- icons/CaretUp.svg | 2 +- icons/CaretUpFilled.json | 10 ++++++++++ icons/CaretUpFilled.svg | 3 +++ icons/Chat.json | 10 ++++++++++ icons/Chat.svg | 3 +++ icons/ChatMultiple.json | 10 ++++++++++ icons/ChatMultiple.svg | 3 +++ icons/Checkbox.json | 13 +++++++++++++ icons/Checkbox.svg | 3 +++ icons/ChevronDoubleLeft.json | 10 ++++++++++ icons/ChevronDoubleLeft.svg | 3 +++ icons/ChevronDoubleRight.json | 10 ++++++++++ icons/ChevronDoubleRight.svg | 3 +++ icons/ChevronRightLeft.json | 10 ++++++++++ icons/ChevronRightLeft.svg | 3 +++ icons/ChevronUpDown.json | 10 ++++++++++ icons/ChevronUpDown.svg | 3 +++ icons/Circle.json | 24 ++++++++++++++++++++++++ icons/Circle.svg | 3 +++ icons/CircleFilled.json | 23 +++++++++++++++++++++++ icons/CircleFilled.svg | 3 +++ icons/Clock.json | 20 ++++++++++++++++++++ icons/Clock.svg | 4 ++++ icons/ClockFilled.json | 21 +++++++++++++++++++++ icons/ClockFilled.svg | 3 +++ icons/ClockRemove.json | 10 ++++++++++ icons/ClockRemove.svg | 3 +++ icons/ColorFill.json | 23 +++++++++++++++++++++++ icons/ColorFill.svg | 3 +++ icons/ColorPalette.json | 10 ++++++++++ icons/ColorPalette.svg | 3 +++ icons/CurrencyGlobal.json | 21 +++++++++++++++++++++ icons/CurrencyGlobal.svg | 4 ++++ icons/CursorClick.json | 20 ++++++++++++++++++++ icons/CursorClick.svg | 3 +++ icons/CursorClickFilled.json | 20 ++++++++++++++++++++ icons/CursorClickFilled.svg | 3 +++ 62 files changed, 528 insertions(+), 8 deletions(-) create mode 100644 icons/BarTriple.json create mode 100644 icons/BarTriple.svg create mode 100644 icons/Calculator.json create mode 100644 icons/Calculator.svg create mode 100644 icons/CalculatorFilled.json create mode 100644 icons/CalculatorFilled.svg create mode 100644 icons/Calendar.json create mode 100644 icons/Calendar.svg create mode 100644 icons/CalendarRemove.json create mode 100644 icons/CalendarRemove.svg create mode 100644 icons/CalendarRemoveFilled.json create mode 100644 icons/CalendarRemoveFilled.svg create mode 100644 icons/CaretDownFilled.json create mode 100644 icons/CaretDownFilled.svg create mode 100644 icons/CaretLeft.json create mode 100644 icons/CaretLeft.svg create mode 100644 icons/CaretLeftFilled.json create mode 100644 icons/CaretLeftFilled.svg create mode 100644 icons/CaretRight.json create mode 100644 icons/CaretRight.svg create mode 100644 icons/CaretRightFilled.json create mode 100644 icons/CaretRightFilled.svg create mode 100644 icons/CaretUpFilled.json create mode 100644 icons/CaretUpFilled.svg create mode 100644 icons/Chat.json create mode 100644 icons/Chat.svg create mode 100644 icons/ChatMultiple.json create mode 100644 icons/ChatMultiple.svg create mode 100644 icons/Checkbox.json create mode 100644 icons/Checkbox.svg create mode 100644 icons/ChevronDoubleLeft.json create mode 100644 icons/ChevronDoubleLeft.svg create mode 100644 icons/ChevronDoubleRight.json create mode 100644 icons/ChevronDoubleRight.svg create mode 100644 icons/ChevronRightLeft.json create mode 100644 icons/ChevronRightLeft.svg create mode 100644 icons/ChevronUpDown.json create mode 100644 icons/ChevronUpDown.svg create mode 100644 icons/Circle.json create mode 100644 icons/Circle.svg create mode 100644 icons/CircleFilled.json create mode 100644 icons/CircleFilled.svg create mode 100644 icons/Clock.json create mode 100644 icons/Clock.svg create mode 100644 icons/ClockFilled.json create mode 100644 icons/ClockFilled.svg create mode 100644 icons/ClockRemove.json create mode 100644 icons/ClockRemove.svg create mode 100644 icons/ColorFill.json create mode 100644 icons/ColorFill.svg create mode 100644 icons/ColorPalette.json create mode 100644 icons/ColorPalette.svg create mode 100644 icons/CurrencyGlobal.json create mode 100644 icons/CurrencyGlobal.svg create mode 100644 icons/CursorClick.json create mode 100644 icons/CursorClick.svg create mode 100644 icons/CursorClickFilled.json create mode 100644 icons/CursorClickFilled.svg diff --git a/icons/BarTriple.json b/icons/BarTriple.json new file mode 100644 index 0000000..cdad9b2 --- /dev/null +++ b/icons/BarTriple.json @@ -0,0 +1,10 @@ +{ + "id": "BarTripleMajor", + "name": "BarTriple", + "set": "Major", + "keywords": ["bar", "triple", "data", "graph", "statistics", "column triple"], + "aliases": [""], + "description": "The Bar Triple icon represents three vertical bars, often used to indicate data, statistics, or progress in a graphical or chart-based format. It is commonly used in data visualization tools, dashboards, or UI components that display multiple values or comparisons side by side.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:14:12 AM" +} diff --git a/icons/BarTriple.svg b/icons/BarTriple.svg new file mode 100644 index 0000000..c929247 --- /dev/null +++ b/icons/BarTriple.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Calculator.json b/icons/Calculator.json new file mode 100644 index 0000000..8efa735 --- /dev/null +++ b/icons/Calculator.json @@ -0,0 +1,20 @@ +{ + "id": "CalculatorMajor", + "name": "Calculator", + "set": "Major", + "keywords": [ + "calculator", + "math", + "numbers", + "finance", + "equation", + "addition", + "minus", + "plus", + "" + ], + "aliases": [""], + "description": "The Calculator icon represents a tool used for performing mathematical operations. It is commonly used in finance, accounting, or data-related applications, allowing users to perform quick calculations. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:25:28 AM" +} diff --git a/icons/Calculator.svg b/icons/Calculator.svg new file mode 100644 index 0000000..b448476 --- /dev/null +++ b/icons/Calculator.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CalculatorFilled.json b/icons/CalculatorFilled.json new file mode 100644 index 0000000..86cbe09 --- /dev/null +++ b/icons/CalculatorFilled.json @@ -0,0 +1,20 @@ +{ + "id": "CalculatorFilledMajor", + "name": "CalculatorFilled", + "set": "Major", + "keywords": [ + "calculator", + "math", + "numbers", + "finance", + "equation", + "addition", + "minus", + "plus", + "filled" + ], + "aliases": [""], + "description": "The Calculator filled icon represents a filled version of a calculator, typically depicted with solid or filled shapes. It is used to signify a tool for performing mathematical operations within applications, often related to finance, accounting, or data analysis", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:27:20 AM" +} diff --git a/icons/CalculatorFilled.svg b/icons/CalculatorFilled.svg new file mode 100644 index 0000000..d450adc --- /dev/null +++ b/icons/CalculatorFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Calendar.json b/icons/Calendar.json new file mode 100644 index 0000000..7bf0666 --- /dev/null +++ b/icons/Calendar.json @@ -0,0 +1,10 @@ +{ + "id": "CalendarMajor", + "name": "Calendar", + "set": "Major", + "keywords": ["Calendar", "date", "schedule", "event", "planner", "time."], + "aliases": [""], + "description": "The calendar icon represents dates, scheduling, or planning, commonly used to indicate access to a schedule, event list, or date picker.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:03:24 AM" +} diff --git a/icons/Calendar.svg b/icons/Calendar.svg new file mode 100644 index 0000000..3fc127a --- /dev/null +++ b/icons/Calendar.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CalendarRemove.json b/icons/CalendarRemove.json new file mode 100644 index 0000000..761ab07 --- /dev/null +++ b/icons/CalendarRemove.json @@ -0,0 +1,10 @@ +{ + "id": "CalendarRemoveMajor", + "name": "CalendarRemove", + "set": "Major", + "keywords": ["Calendar", "remove", "delete", "cancel", "event", "schedule"], + "aliases": [""], + "description": "The calendar remove icon represents the action of deleting or canceling an event or removing an entry from a calendar or schedule.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 12:55:52 PM" +} diff --git a/icons/CalendarRemove.svg b/icons/CalendarRemove.svg new file mode 100644 index 0000000..e2f991a --- /dev/null +++ b/icons/CalendarRemove.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CalendarRemoveFilled.json b/icons/CalendarRemoveFilled.json new file mode 100644 index 0000000..2389d90 --- /dev/null +++ b/icons/CalendarRemoveFilled.json @@ -0,0 +1,10 @@ +{ + "id": "CalendarRemoveFilledMajor", + "name": "CalendarRemoveFilled", + "set": "Major", + "keywords": ["Calendar", "remove", "delete", "cancel", "event", "schedule", "filled."], + "aliases": [""], + "description": "The calendar remove filled icon represents a highlighted or emphasized action of deleting or canceling an event or removing an entry from a calendar or schedule.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 12:54:37 PM" +} diff --git a/icons/CalendarRemoveFilled.svg b/icons/CalendarRemoveFilled.svg new file mode 100644 index 0000000..f5b5f70 --- /dev/null +++ b/icons/CalendarRemoveFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CaretDown.json b/icons/CaretDown.json index 3c70a88..5004a6d 100644 --- a/icons/CaretDown.json +++ b/icons/CaretDown.json @@ -2,9 +2,19 @@ "id": "CaretDownMajor", "name": "CaretDown", "set": "Major", - "keywords": ["caret", "down", "dropdown", "expand", "open", "triangle", "unfold", "reveal"], + "keywords": [ + "dropdown", + "expand", + "collapse", + "navigation", + "menu", + "arrow", + "downward", + "UI indicator", + "toggle" + ], "aliases": [""], - "description": "A downward-pointing caret icon commonly used to indicate a dropdown menu, expandable content, or additional options. It serves as a visual cue for users to click and reveal hidden content or navigate to submenus. Often found in forms, navigation bars, and selection lists.", + "description": "The Caret Down icon is a small triangular symbol pointing downward. It is commonly used to indicate a dropdown menu, expand/collapse functionality, or to suggest navigation to additional content below", "sizes": [16, 20, 24, 28, 32, 48], - "creation_date": "8/22/2024, 3:54:38 PM" + "creation_date": "11/18/2024, 11:21:14 AM" } diff --git a/icons/CaretDown.svg b/icons/CaretDown.svg index a0e4226..17c2ec9 100644 --- a/icons/CaretDown.svg +++ b/icons/CaretDown.svg @@ -1,3 +1,3 @@ - + diff --git a/icons/CaretDownFilled.json b/icons/CaretDownFilled.json new file mode 100644 index 0000000..c3145b8 --- /dev/null +++ b/icons/CaretDownFilled.json @@ -0,0 +1,10 @@ +{ + "id": "CaretDownMajor", + "name": "CaretDownFilled", + "set": "Major", + "keywords": ["caret", "down", "filled", "dropdown", "expand", "open", "triangle", "unfold", "reveal"], + "aliases": [""], + "description": "A downward-pointing filled caret icon commonly used to indicate a dropdown menu, expandable content, or additional options. It serves as a visual cue for users to click and reveal hidden content or navigate to submenus. Often found in forms, navigation bars, and selection lists.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 3:54:38 PM" +} diff --git a/icons/CaretDownFilled.svg b/icons/CaretDownFilled.svg new file mode 100644 index 0000000..a0e4226 --- /dev/null +++ b/icons/CaretDownFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CaretLeft.json b/icons/CaretLeft.json new file mode 100644 index 0000000..7b1616a --- /dev/null +++ b/icons/CaretLeft.json @@ -0,0 +1,10 @@ +{ + "id": "CaretLeftMajor", + "name": "CaretLeft", + "set": "Major", + "keywords": ["Caret", "left", "arrow", "navigation", "back", "previous", ""], + "aliases": [""], + "description": "The caret left icon represents navigation or movement to the left, typically used to indicate going back, accessing the previous item, or collapsing a section.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 11:26:55 AM" +} diff --git a/icons/CaretLeft.svg b/icons/CaretLeft.svg new file mode 100644 index 0000000..7396d46 --- /dev/null +++ b/icons/CaretLeft.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CaretLeftFilled.json b/icons/CaretLeftFilled.json new file mode 100644 index 0000000..e1b18bc --- /dev/null +++ b/icons/CaretLeftFilled.json @@ -0,0 +1,21 @@ +{ + "id": "CaretLeftFilledMajor", + "name": "CaretLeftFilled", + "set": "Major", + "keywords": [ + "filled", + "arrow", + "left", + "backward", + "navigation", + "collapse", + "directional", + "slider", + "carousel", + "" + ], + "aliases": [""], + "description": "The Caret Left Filled icon is a solid triangular symbol pointing to the left. It is commonly used in user interfaces to indicate backward navigation, collapse functionality, or directional cues within a flow or carousel.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 11:23:28 AM" +} diff --git a/icons/CaretLeftFilled.svg b/icons/CaretLeftFilled.svg new file mode 100644 index 0000000..3fd6f84 --- /dev/null +++ b/icons/CaretLeftFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CaretRight.json b/icons/CaretRight.json new file mode 100644 index 0000000..23753fd --- /dev/null +++ b/icons/CaretRight.json @@ -0,0 +1,10 @@ +{ + "id": "CaretRightMajor", + "name": "CaretRight", + "set": "Major", + "keywords": ["Caret", "right", "", "arrow", "navigation", "forward", "next."], + "aliases": [""], + "description": "The caret right icon indicates navigation or movement to the right, typically used to signify progressing forward, accessing the next item, or expanding a section.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 12:48:30 PM" +} diff --git a/icons/CaretRight.svg b/icons/CaretRight.svg new file mode 100644 index 0000000..f93e397 --- /dev/null +++ b/icons/CaretRight.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CaretRightFilled.json b/icons/CaretRightFilled.json new file mode 100644 index 0000000..159958d --- /dev/null +++ b/icons/CaretRightFilled.json @@ -0,0 +1,15 @@ +{ + "id": "CaretRightFilledMajor", + "name": "CaretRightFilled", + "set": "Major", + "keywords": ["Caret", "right", "filled", "arrow", "navigation", "forward", "next"], + "aliases": [ + "The caret right filled icon indicates navigation or movement to the right", + "typically used to signify progressing forward", + "accessing the next item", + "or expanding a section." + ], + "description": "The caret right filled icon indicates navigation or movement to the right,typically used to ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 11:30:23 AM" +} diff --git a/icons/CaretRightFilled.svg b/icons/CaretRightFilled.svg new file mode 100644 index 0000000..fe583b0 --- /dev/null +++ b/icons/CaretRightFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CaretUp.json b/icons/CaretUp.json index 69fff1c..920b18f 100644 --- a/icons/CaretUp.json +++ b/icons/CaretUp.json @@ -2,9 +2,9 @@ "id": "CaretUpMajor", "name": "CaretUp", "set": "Major", - "keywords": ["caret", "up", "arrow", "collapse", "close", "fold", "hide", "collapsemenu"], + "keywords": ["Caret", "up", "arrow", "navigation", "collapse", "upward."], "aliases": [""], - "description": "An upward-pointing caret icon typically used to indicate the collapse or closing of a dropdown menu, hidden content, or additional options. It signals that content can be hidden or retracted. Often used in forms, navigation bars, and expandable lists.", + "description": "The caret up icon indicates upward movement or navigation, typically used to collapse a section, scroll up, or indicate an increase in value or hierarchy.", "sizes": [16, 20, 24, 28, 32, 48], - "creation_date": "8/22/2024, 3:55:48 PM" + "creation_date": "11/18/2024, 12:50:43 PM" } diff --git a/icons/CaretUp.svg b/icons/CaretUp.svg index 63df2d3..cc02ee3 100644 --- a/icons/CaretUp.svg +++ b/icons/CaretUp.svg @@ -1,3 +1,3 @@ - + diff --git a/icons/CaretUpFilled.json b/icons/CaretUpFilled.json new file mode 100644 index 0000000..07442bc --- /dev/null +++ b/icons/CaretUpFilled.json @@ -0,0 +1,10 @@ +{ + "id": "CaretUpMajor", + "name": "CaretUpFilled", + "set": "Major", + "keywords": ["caret", "up","filled", "arrow", "collapse", "close", "fold", "hide", "collapsemenu"], + "aliases": [""], + "description": "An upward-pointing filled caret icon typically used to indicate the collapse or closing of a dropdown menu, hidden content, or additional options. It signals that content can be hidden or retracted. Often used in forms, navigation bars, and expandable lists.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "8/22/2024, 3:55:48 PM" +} diff --git a/icons/CaretUpFilled.svg b/icons/CaretUpFilled.svg new file mode 100644 index 0000000..63df2d3 --- /dev/null +++ b/icons/CaretUpFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Chat.json b/icons/Chat.json new file mode 100644 index 0000000..88b7885 --- /dev/null +++ b/icons/Chat.json @@ -0,0 +1,10 @@ +{ + "id": "ChatMajor", + "name": "Chat", + "set": "Major", + "keywords": ["Chat", "message", "conversation", "communication", "talk", "bubble."], + "aliases": [""], + "description": "The chat icon represents messaging or communication, typically used to signify a single conversation or the ability to send and receive messages.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 10:57:14 AM" +} diff --git a/icons/Chat.svg b/icons/Chat.svg new file mode 100644 index 0000000..9762557 --- /dev/null +++ b/icons/Chat.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ChatMultiple.json b/icons/ChatMultiple.json new file mode 100644 index 0000000..4108205 --- /dev/null +++ b/icons/ChatMultiple.json @@ -0,0 +1,10 @@ +{ + "id": "ChatMultipleMajor", + "name": "ChatMultiple", + "set": "Major", + "keywords": ["Chat", "multiple", "messages", "conversation", "communication", "group."], + "aliases": [""], + "description": "The chat multiple icon represents group conversations or multiple chat threads, often used to indicate messaging or communication features involving more than one person or thread.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 10:56:25 AM" +} diff --git a/icons/ChatMultiple.svg b/icons/ChatMultiple.svg new file mode 100644 index 0000000..d494472 --- /dev/null +++ b/icons/ChatMultiple.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Checkbox.json b/icons/Checkbox.json new file mode 100644 index 0000000..8f4de98 --- /dev/null +++ b/icons/Checkbox.json @@ -0,0 +1,13 @@ +{ + "id": "CheckboxMajor", + "name": "Checkbox", + "set": "Major", + "keywords": ["Checkbox", "select", "tick", "option", "choice", "mark."], + "aliases": [ + "The checkbox icon represents an interactive element used to select or mark options", + "indicating a choice or confirming a selection in forms or lists." + ], + "description": "The checkbox icon represents an interactive element used to select or mark options, indicating a choice or confirming a selection in forms or lists.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 12:57:10 PM" +} diff --git a/icons/Checkbox.svg b/icons/Checkbox.svg new file mode 100644 index 0000000..a000173 --- /dev/null +++ b/icons/Checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ChevronDoubleLeft.json b/icons/ChevronDoubleLeft.json new file mode 100644 index 0000000..383881d --- /dev/null +++ b/icons/ChevronDoubleLeft.json @@ -0,0 +1,10 @@ +{ + "id": "ChevronDoubleLeftMajor", + "name": "ChevronDoubleLeft", + "set": "Major", + "keywords": ["Chevron", "double left", "navigation", "backward", "previous", "rewind"], + "aliases": [""], + "description": "The chevron double left icon represents a faster navigation or movement to the left, typically used to indicate going back multiple steps, accessing the previous section, or rewinding in a sequence.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 11:28:36 AM" +} diff --git a/icons/ChevronDoubleLeft.svg b/icons/ChevronDoubleLeft.svg new file mode 100644 index 0000000..a597288 --- /dev/null +++ b/icons/ChevronDoubleLeft.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ChevronDoubleRight.json b/icons/ChevronDoubleRight.json new file mode 100644 index 0000000..b490bab --- /dev/null +++ b/icons/ChevronDoubleRight.json @@ -0,0 +1,10 @@ +{ + "id": "ChevronDoubleRightMajor", + "name": "ChevronDoubleRight", + "set": "Major", + "keywords": ["Chevron", "double right", "navigation", "forward", "next", "fast forward."], + "aliases": [""], + "description": "The chevron double right icon represents quick navigation or movement to the right, typically used to indicate advancing multiple steps, accessing the next section, or fast-forwarding in a sequence.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/18/2024, 12:49:55 PM" +} diff --git a/icons/ChevronDoubleRight.svg b/icons/ChevronDoubleRight.svg new file mode 100644 index 0000000..d477b5c --- /dev/null +++ b/icons/ChevronDoubleRight.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ChevronRightLeft.json b/icons/ChevronRightLeft.json new file mode 100644 index 0000000..22d2c44 --- /dev/null +++ b/icons/ChevronRightLeft.json @@ -0,0 +1,10 @@ +{ + "id": "ChevronRightLeftMajor", + "name": "ChevronRightLeft", + "set": "Major", + "keywords": ["chevron", "right arrow", "left arrow", "navigation", "direction", "collapse", ""], + "aliases": [""], + "description": "The ChevronRightLeft icon represents directional arrows typically used for navigation purposes, allowing users to toggle between two states, such as expanding or collapsing content, moving left or right, or navigating through sections in a UI. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:07:58 AM" +} diff --git a/icons/ChevronRightLeft.svg b/icons/ChevronRightLeft.svg new file mode 100644 index 0000000..5b2a234 --- /dev/null +++ b/icons/ChevronRightLeft.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ChevronUpDown.json b/icons/ChevronUpDown.json new file mode 100644 index 0000000..966579f --- /dev/null +++ b/icons/ChevronUpDown.json @@ -0,0 +1,10 @@ +{ + "id": "ChevronUpDownMajor", + "name": "ChevronUpDown", + "set": "Major", + "keywords": ["chevron", "up and down", "up", "down", "expand", "collapse", "vertical movement"], + "aliases": [""], + "description": "The ChevronUpDown icon features two arrows pointing in opposite vertical directions, typically used to represent expandable or collapsible content. It allows users to toggle between up and down states, such as showing or hiding details, expanding or collapsing menus, or navigating through vertical sections in a UI.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:18:46 AM" +} diff --git a/icons/ChevronUpDown.svg b/icons/ChevronUpDown.svg new file mode 100644 index 0000000..434995d --- /dev/null +++ b/icons/ChevronUpDown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Circle.json b/icons/Circle.json new file mode 100644 index 0000000..d4458ac --- /dev/null +++ b/icons/Circle.json @@ -0,0 +1,24 @@ +{ + "id": "CircleMajor", + "name": "Circle", + "set": "Major", + "keywords": [ + "status", + "circle", + "icon", + "indicator", + "progress", + "completion", + "active", + "inactive", + "success", + "error", + "warning", + "neutral.offline", + "online" + ], + "aliases": [""], + "description": "A circle icon serves as a visual indicator for various system states, such as success, error, warning, or neutral. It is often used to represent the progress of a task, the condition of a process, or the activity state of a user or system. The design’s simplicity allows for quick recognition and understanding of the current status.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 1:41:11 PM" +} diff --git a/icons/Circle.svg b/icons/Circle.svg new file mode 100644 index 0000000..a11aa19 --- /dev/null +++ b/icons/Circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CircleFilled.json b/icons/CircleFilled.json new file mode 100644 index 0000000..169f064 --- /dev/null +++ b/icons/CircleFilled.json @@ -0,0 +1,23 @@ +{ + "id": "CircleFilledMajor", + "name": "CircleFilled", + "set": "Major", + "keywords": [ + "circle", + "filled", + "icon", + "status", + "active", + "complete", + "indicator", + "solid", + "color", + "visual cue", + "online", + "offline" + ], + "aliases": [""], + "description": "A filled circle icon is used as a visual cue to represent active or completed statuses, often signifying that a process, task, or condition is fully engaged or finished. Its solid design provides a strong, clear indicator, making it easy to identify key information at a glance, such as a successful action or an active state.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 1:42:51 PM" +} diff --git a/icons/CircleFilled.svg b/icons/CircleFilled.svg new file mode 100644 index 0000000..51f3016 --- /dev/null +++ b/icons/CircleFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/Clock.json b/icons/Clock.json new file mode 100644 index 0000000..0870471 --- /dev/null +++ b/icons/Clock.json @@ -0,0 +1,20 @@ +{ + "id": "ClockMajor", + "name": "Clock", + "set": "Major", + "keywords": [ + "clock", + "time", + "minute", + "hour", + "watch", + "alarm", + "timer", + "schedule", + "timekeeping" + ], + "aliases": [""], + "description": "The Clock icon represents a timepiece, typically used to indicate time-related features such as clocks, schedules, or timers. It is commonly used in applications for setting alarms, tracking time, managing appointments, or displaying current time. ", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:29:13 AM" +} diff --git a/icons/Clock.svg b/icons/Clock.svg new file mode 100644 index 0000000..28ca132 --- /dev/null +++ b/icons/Clock.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/ClockFilled.json b/icons/ClockFilled.json new file mode 100644 index 0000000..9ac77c0 --- /dev/null +++ b/icons/ClockFilled.json @@ -0,0 +1,21 @@ +{ + "id": "ClockFilledMajor", + "name": "ClockFilled", + "set": "Major", + "keywords": [ + "clock", + "time", + "minute", + "hour", + "watch", + "alarm", + "timer", + "schedule", + "timekeeping", + "filled clock" + ], + "aliases": [""], + "description": "The clock filled icon represents a filled version of a clock, typically with solid or bold elements to provide a more prominent, visually striking appearance. It is used to indicate time-related features such as alarms, schedules, timers, or time tracking within applications. The filled design makes it stand out in a UI, often used for buttons or icons that require high visibility in time management-related tasks.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:30:35 AM" +} diff --git a/icons/ClockFilled.svg b/icons/ClockFilled.svg new file mode 100644 index 0000000..91264e7 --- /dev/null +++ b/icons/ClockFilled.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ClockRemove.json b/icons/ClockRemove.json new file mode 100644 index 0000000..d58435f --- /dev/null +++ b/icons/ClockRemove.json @@ -0,0 +1,10 @@ +{ + "id": "ClockRemoveMajor", + "name": "ClockRemove", + "set": "Major", + "keywords": ["Clock", "remove", "delete", "cancel", "time", "schedule."], + "aliases": [""], + "description": "The clock remove icon represents the action of canceling or deleting a scheduled event or time-related entry. It is often used to indicate the removal of a reminder or appointment.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 10:59:17 AM" +} diff --git a/icons/ClockRemove.svg b/icons/ClockRemove.svg new file mode 100644 index 0000000..f6f57a5 --- /dev/null +++ b/icons/ClockRemove.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ColorFill.json b/icons/ColorFill.json new file mode 100644 index 0000000..fb01acc --- /dev/null +++ b/icons/ColorFill.json @@ -0,0 +1,23 @@ +{ + "id": "ColorFillMajor", + "name": "ColorFill", + "set": "Major", + "keywords": [ + "Color", + "fill", + "paint", + "customization", + "design", + "bucket", + "apply", + "background", + "palette", + "shading", + "tint", + "area." + ], + "aliases": [""], + "description": "The color fill icon represents the action of applying or filling a selected area, shape, or background with a specific color, commonly used in design and editing tools.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:05:05 AM" +} diff --git a/icons/ColorFill.svg b/icons/ColorFill.svg new file mode 100644 index 0000000..8f9ea08 --- /dev/null +++ b/icons/ColorFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/ColorPalette.json b/icons/ColorPalette.json new file mode 100644 index 0000000..04feb83 --- /dev/null +++ b/icons/ColorPalette.json @@ -0,0 +1,10 @@ +{ + "id": "ColorPaletteMajor", + "name": "ColorPalette", + "set": "Major", + "keywords": ["Color", "palette", "paint", "design", "creativity", "art", "customization."], + "aliases": [""], + "description": "The color palette icon represents tools for selecting or customizing colors, commonly used in design, art, or creative applications to indicate color selection or theme customization options.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:00:50 AM" +} diff --git a/icons/ColorPalette.svg b/icons/ColorPalette.svg new file mode 100644 index 0000000..064fe20 --- /dev/null +++ b/icons/ColorPalette.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CurrencyGlobal.json b/icons/CurrencyGlobal.json new file mode 100644 index 0000000..6bc1e99 --- /dev/null +++ b/icons/CurrencyGlobal.json @@ -0,0 +1,21 @@ +{ + "id": "CurrencyGlobalMajor", + "name": "CurrencyGlobal", + "set": "Major", + "keywords": [ + "currency", + "global", + "icon", + "international", + "exchange", + "finance", + "money", + "symbol", + "global economy", + "payment." + ], + "aliases": [""], + "description": "A currency global icon represents the concept of international finance and currency exchange, often symbolizing global economic transactions, payments, and the movement of money across borders. It visually communicates the interconnectedness of financial systems worldwide.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 1:30:05 PM" +} diff --git a/icons/CurrencyGlobal.svg b/icons/CurrencyGlobal.svg new file mode 100644 index 0000000..cf088b5 --- /dev/null +++ b/icons/CurrencyGlobal.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/CursorClick.json b/icons/CursorClick.json new file mode 100644 index 0000000..7ab192c --- /dev/null +++ b/icons/CursorClick.json @@ -0,0 +1,20 @@ +{ + "id": "CursorClickMajor", + "name": "CursorClick", + "set": "Major", + "keywords": [ + "cursor", + "click", + "pointer", + "mouse", + "interaction", + "action", + "navigation", + "select", + "" + ], + "aliases": [""], + "description": "The Cursor Click icon represents a cursor or pointer in the act of clicking, often used to signify user interaction or selection within a UI. It visually indicates that an action is required, such as clicking a button, selecting a link, or triggering a function. This icon is commonly used in interactive elements to guide users on where they can click or perform actions.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:32:20 AM" +} diff --git a/icons/CursorClick.svg b/icons/CursorClick.svg new file mode 100644 index 0000000..e208afa --- /dev/null +++ b/icons/CursorClick.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/CursorClickFilled.json b/icons/CursorClickFilled.json new file mode 100644 index 0000000..f0142f0 --- /dev/null +++ b/icons/CursorClickFilled.json @@ -0,0 +1,20 @@ +{ + "id": "CursorClickFilledMajor", + "name": "CursorClickFilled", + "set": "Major", + "keywords": [ + "cursor", + "click", + "pointer", + "mouse", + "interaction", + "action", + "navigation", + "select", + "filled cursor" + ], + "aliases": [""], + "description": "The Cursor Click Filled icon represents a filled or solid version of the cursor in the act of clicking, providing a bolder, more prominent visual compared to the standard cursor icon. It is used to indicate user interaction, such as selecting, pressing, or activating elements within a UI. The filled design makes it more noticeable, emphasizing the action of clicking or pressing a UI element.", + "sizes": [16, 20, 24, 28, 32, 48], + "creation_date": "11/19/2024, 11:33:24 AM" +} diff --git a/icons/CursorClickFilled.svg b/icons/CursorClickFilled.svg new file mode 100644 index 0000000..ca4eb39 --- /dev/null +++ b/icons/CursorClickFilled.svg @@ -0,0 +1,3 @@ + + + From cf24546006e7799f87475c42e3f923a9ae8a3a7c Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan <150047343+hamikhambardzumyan@users.noreply.github.com> Date: Wed, 20 Nov 2024 14:39:47 +0400 Subject: [PATCH 14/15] Update CONTRIBUTING.md (#7) --- CONTRIBUTING.md | 142 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 142 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e69de29..4bb103b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -0,0 +1,142 @@ +**Thank you for your interest in contributing to the @geneui/icons library! We appreciate your +efforts to help improve and expand this open-source project. This guide will help you get started +with setting up your development environment, adding or removing icons, and submitting your +contributions.** + +## Table of Contents + +- [Getting Started](#getting-started) + - [Prerequisites](#prerequisites) + - [Clone the Repository](#clone-the-repository) + - [Install Dependencies](#install-dependencies) +- [Adding a New Icon](#adding-a-new-icon) + - [Icon Naming Conventions](#icon-naming-conventions) + - [Preparing Your SVG File](#preparing-your-svg-file) + - [Using the Create Icon Script](#using-the-create-icon-script) +- [Removing an Icon](#removing-an-icon) + - [Using the Remove Icon Script](#using-the-remove-icon-script) +- [Submitting Your Changes](#submitting-your-changes) + - [Commit Message Guidelines](#commit-message-guidelines) + - [Creating a Pull Request](#creating-a-pull-request) +- [Contact](#contact) + +## 👋 Getting started + +### Prerequisites + +Before you begin, ensure you have the following installed on your machine: + +- Node.js (v14.x or later) +- npm (v6.x or later) or yarn (optional) +- Git + +### Clone the Repository + +Clone the [@geneui/icons repository](https://github.com/softconstruct/gene-ui-icons) repository to your local machine. + +```bash +git clone https://github.com/your-username/geneui-icons.git +``` + +### Install Dependencies + +Install the required dependencies using npm + +```bash +npm install +``` + +or using yarn + +```bash +yarn install +``` + +## 🆕 Adding a New Icon + +### Icon Naming Conventions + +- Icon Name: Must start with an uppercase letter and use PascalCase (e.g., AddUser, CheckCircle). +- Icon Set: Choose between Major and Minor based on the icon's usage context. + +### Preparing Your SVG File + +1. **Download**: SVG from Figma or another source. +2. **Place the SVG**: Add your SVG file to the `svgs/` directory. + +### Using the Create Icon Script + +We provide a script to streamline the process of adding a new icon. + +1. Run the Create Icon script +```bash +npm run create-icon +``` + +2. Follow the prompts +- **Choose an Icon set:** Select Major or Minor. +- **Enter the Icon name:** Provide a unique name following the naming conventions. +- **Select the Icon SVG source file:** Choose your SVG file from the list. +- **Enter the Icon keywords:** Provide relevant keywords separated by commas. +- **Enter the Icon aliases:** Provide any aliases separated by commas. +- **Enter the Icon description:** Provide a brief description of the icon. + +3. Upon successful completion, the script will +- Create the SVG and JSON metadata files in the `icons/` directory. +- Remove the source SVG file from the `svgs/` directory. + +**Note:** If you encounter any errors during this process, the script will provide detailed messages to help you resolve them. + +## ❌ Removing an Icon + +### Using the Remove Icon Script + +To remove an existing icon from the library + +1. Run the remove icon script +```bash +npm run remove-icon +``` +2. Follow the prompts +- **Select the Icon you want to remove:** Choose the icon from the list. +- **Confirmation:** Confirm that you want to remove the icon. + +3. The script will delete the icon's SVG and JSON metadata files from the `icons/` directory. + +## ⬆️ Submitting Your Changes + +**Use the branch** `release/1.0.x` to push changes. + +1. Ensure you are in the branch `release/1.0.x`. +```bash +git status +``` +otherwise +```bash +git checkout release/1.0.x +``` +2. Ensure your branch is up to date. +```bash +git pull +``` + +3. Stage all changes in your local machine. +```bash +git add . +``` + +4. Commit changes: write the action you have done (e.g Create, Remove) icon names. +```bash +git commit -m "Create clock, pencil icons and remove gear icon" +``` + +5. Push your changes to origin. +```bash +git push +``` + +## ☎️ Contact +If you have any questions or need assistance, feel free to reach out +- **Maintainer:** Hamik Hambardzumyan +- **Email:** hamik.hambardumyan@softconstruct.com +- **GitHub:** @hamikhambardzumyan From e68a747bf97403d1be13a45eeef6e5a48d206257 Mon Sep 17 00:00:00 2001 From: Hamik Hambardzumyan Date: Thu, 21 Nov 2024 15:15:28 +0400 Subject: [PATCH 15/15] Bump up version --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4eaf0bd..69f73d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@geneui/icons", - "version": "1.0.4", + "version": "1.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@geneui/icons", - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "devDependencies": { "@babel/cli": "^7.18.9", diff --git a/package.json b/package.json index 222fd30..e8c5fe9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@geneui/icons", - "version": "1.0.4", + "version": "1.0.5", "description": "Gene UI icons distributed as SVG React components.", "author": "SoftConstruct", "main": "index.js",