elementa-icons 1.6.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/icons/arrows-directions/ArrowDown.js +0 -7
  2. package/dist/icons/arrows-directions/ArrowLeft.js +0 -7
  3. package/dist/icons/arrows-directions/ArrowRight.js +13 -0
  4. package/dist/icons/arrows-directions/ArrowUp.js +0 -7
  5. package/dist/icons/arrows-directions/ChevronDown.js +14 -0
  6. package/dist/icons/arrows-directions/ChevronLeft.js +14 -0
  7. package/dist/icons/arrows-directions/ChevronRight.js +14 -0
  8. package/dist/icons/arrows-directions/ChevronUp.js +14 -0
  9. package/dist/icons/editing-creation/Add.js +14 -0
  10. package/dist/icons/editing-creation/Copy.js +1 -10
  11. package/dist/icons/editing-creation/Cut.js +1 -10
  12. package/dist/icons/editing-creation/Edit.js +14 -0
  13. package/dist/icons/editing-creation/Paste.js +14 -0
  14. package/dist/icons/finance-shopping/Bitcoin.js +14 -0
  15. package/dist/icons/finance-shopping/CreditCards.js +14 -0
  16. package/dist/icons/finance-shopping/ShoppingCart.js +14 -0
  17. package/dist/icons/finance-shopping/Wallet.js +14 -0
  18. package/dist/icons/user-interface-controls/Search.js +6 -8
  19. package/dist/index.esm.js +1 -1
  20. package/dist/index.js +15 -13
  21. package/dist/lib/icon-template.js +1 -15
  22. package/dist/types/icons/arrows-directions/ArrowDown.d.ts +0 -7
  23. package/dist/types/icons/arrows-directions/ArrowLeft.d.ts +0 -7
  24. package/dist/types/icons/arrows-directions/ArrowRight.d.ts +6 -0
  25. package/dist/types/icons/arrows-directions/ArrowUp.d.ts +0 -7
  26. package/dist/types/icons/arrows-directions/ChevronDown.d.ts +6 -0
  27. package/dist/types/icons/arrows-directions/ChevronLeft.d.ts +6 -0
  28. package/dist/types/icons/arrows-directions/ChevronRight.d.ts +6 -0
  29. package/dist/types/icons/arrows-directions/ChevronUp.d.ts +6 -0
  30. package/dist/types/icons/editing-creation/Add.d.ts +6 -0
  31. package/dist/types/icons/editing-creation/Copy.d.ts +0 -7
  32. package/dist/types/icons/editing-creation/Cut.d.ts +0 -7
  33. package/dist/types/icons/editing-creation/Edit.d.ts +6 -0
  34. package/dist/types/icons/editing-creation/Paste.d.ts +6 -0
  35. package/dist/types/icons/finance-shopping/Bitcoin.d.ts +6 -0
  36. package/dist/types/icons/finance-shopping/CreditCards.d.ts +6 -0
  37. package/dist/types/icons/finance-shopping/ShoppingCart.d.ts +6 -0
  38. package/dist/types/icons/finance-shopping/Wallet.d.ts +6 -0
  39. package/dist/types/icons/user-interface-controls/Search.d.ts +3 -3
  40. package/dist/types/index.d.ts +11 -8
  41. package/dist/types/lib/icon-template.d.ts +0 -7
  42. package/package.json +2 -2
  43. package/src/index.ts +24 -13
@@ -1,13 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  /**
3
3
  * This function renders an SVG icon of an arrow pointing downwards.
4
- *
5
- * @version 1.2.0
6
- * @author Aayush Goyal
7
- * @created 2025-06-22
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.1.0
11
4
  */
12
5
  const ArrowDown = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
13
6
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", viewBox: "0 0 25 29", stroke: color, strokeWidth: strokeWidth, width: width, height: height, fill: color, children: [_jsx("path", { d: "M24.185 14.28s-3.77 3.822-7.172 7.4c-.826.867-1.623 1.725-2.34 2.508-.948 1.03-1.749 1.934-2.3 2.545l-.004-.002-.005.003c-.983-1.064-2.746-3.022-4.654-5.042A552.286 552.286 0 0 0 .552 14.28a.244.244 0 0 0-.367.32s3.258 4.267 6.337 8.123c1.734 2.173 3.424 4.192 4.341 5.315a1.988 1.988 0 0 0 3.012 0c.528-.631 1.311-1.551 2.2-2.632.673-.821 1.411-1.73 2.155-2.67 3.066-3.868 6.322-8.136 6.322-8.136a.244.244 0 0 0-.367-.32Z" }), _jsx("path", { d: "M12.612 23.65s.113-1.067.26-2.763c.1-1.15.225-2.572.325-4.144.057-.887.103-1.815.135-2.763.021-.61.038-1.225.036-1.842a51.027 51.027 0 0 0-.042-1.842 164.88 164.88 0 0 0-.349-5.526C12.78 2.3 12.612.625 12.612.625a.243.243 0 0 0-.487 0S11.96 2.3 11.761 4.77c-.068.844-.137 1.773-.2 2.763-.056.887-.113 1.814-.149 2.763a48.819 48.819 0 0 0-.043 1.842c0 .617.015 1.233.036 1.842.033.948.078 1.876.135 2.763.1 1.572.226 2.994.326 4.144.146 1.696.26 2.763.26 2.763a.243.243 0 0 0 .486 0Z" })] }));
@@ -1,13 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  /**
3
3
  * This function renders an SVG icon of a left arrow.
4
- *
5
- * @version 1.0.0
6
- * @author Aayush Goyal
7
- * @created 2025-07-13
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.3.0
11
4
  */
12
5
  const ArrowLeft = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
13
6
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon of a left arrow.
4
+ */
5
+ const ArrowRight = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 29 25", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M14.002.92s3.823 3.77 7.4 7.173c.868.826 1.725 1.623 2.508 2.34 1.03.948 1.934 1.749 2.546 2.3l-.003.004.004.005c-1.065.983-3.022 2.746-5.043 4.654-3.588 3.388-7.412 7.158-7.412 7.158a.244.244 0 0 0 .32.367s4.267-3.258 8.124-6.337c2.172-1.734 4.192-3.424 5.314-4.341a1.988 1.988 0 0 0 .001-3.012c-.632-.528-1.552-1.311-2.633-2.2-.82-.673-1.729-1.411-2.67-2.155C18.59 3.81 14.322.554 14.322.554a.244.244 0 0 0-.32.367" }), _jsx("path", { d: "M23.373 12.494s-1.068-.113-2.764-.26c-1.15-.1-2.571-.225-4.144-.325a91 91 0 0 0-2.763-.135 49 49 0 0 0-1.842-.036c-.617 0-1.233.019-1.842.042a164.883 164.883 0 0 0-5.526.349c-2.47.198-4.145.365-4.145.365a.243.243 0 0 0 0 .487s1.674.166 4.145.364c.844.068 1.773.137 2.763.2.887.056 1.814.113 2.763.149a49 49 0 0 0 1.842.043c.617 0 1.233-.015 1.842-.036a94 94 0 0 0 2.763-.135c1.573-.1 2.994-.226 4.144-.326 1.696-.146 2.764-.26 2.764-.26a.243.243 0 0 0 0-.486" })] }));
12
+ };
13
+ export default ArrowRight;
@@ -1,13 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  /**
3
3
  * This function renders an SVG icon of an arrow pointing downwards.
4
- *
5
- * @version 1.1.0
6
- * @author Aayush Goyal
7
- * @created 2025-06-22
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.1.0
11
4
  */
12
5
  const ArrowDown = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
13
6
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a downward chevron.
5
+ */
6
+ const ChevronDown = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 33 13", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M32.121.435s-3.57 2.356-7.379 4.954a359 359 0 0 0-4.38 3.035c-1.105.778-2.095 1.501-2.886 2.068a2.03 2.03 0 0 1-1.209.388 2.03 2.03 0 0 1-1.21-.385c-1.46-1.026-3.594-2.557-5.812-4.087C4.95 3.445.414.435.414.435a.243.243 0 1 0-.292.39S4.28 4.337 8.328 7.632c2.09 1.7 4.157 3.321 5.55 4.433a3.94 3.94 0 0 0 2.39.815 3.94 3.94 0 0 0 2.39-.812c.766-.6 1.737-1.349 2.793-2.192a344 344 0 0 0 4.14-3.355A658 658 0 0 0 32.413.825a.244.244 0 0 0-.292-.39" }) }));
13
+ };
14
+ export default ChevronDown;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a left chevron.
5
+ */
6
+ const ChevronLeft = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 14 33", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M12.984 32.483s-2.356-3.57-4.954-7.38a359 359 0 0 0-3.035-4.38c-.778-1.104-1.5-2.094-2.068-2.885a2.03 2.03 0 0 1-.388-1.21 2.03 2.03 0 0 1 .385-1.21c1.026-1.46 2.557-3.593 4.087-5.811C9.974 5.31 12.984.775 12.984.775a.243.243 0 1 0-.39-.292S9.082 4.642 5.787 8.69c-1.7 2.089-3.32 4.157-4.433 5.55a3.94 3.94 0 0 0-.815 2.389 3.94 3.94 0 0 0 .812 2.39c.601.767 1.35 1.738 2.192 2.794a344 344 0 0 0 3.355 4.14 658 658 0 0 0 5.696 6.822.244.244 0 0 0 .39-.292" }) }));
13
+ };
14
+ export default ChevronLeft;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a right chevron.
5
+ */
6
+ const IcNavigationChevronRight = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 13 33", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M.124.775s2.356 3.57 4.954 7.379a359 359 0 0 0 3.035 4.38c.778 1.105 1.5 2.095 2.068 2.886.265.36.388.785.388 1.21s-.121.851-.385 1.21c-1.026 1.46-2.557 3.593-4.087 5.811a687 687 0 0 0-5.973 8.832.243.243 0 1 0 .39.292s3.512-4.159 6.807-8.207c1.7-2.089 3.32-4.157 4.433-5.55a3.94 3.94 0 0 0 .815-2.389 3.94 3.94 0 0 0-.812-2.39c-.601-.767-1.35-1.738-2.192-2.794a344 344 0 0 0-3.355-4.14C3.28 3.744.514.483.514.483a.244.244 0 0 0-.39.292" }) }));
13
+ };
14
+ export default IcNavigationChevronRight;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a upward chevron.
5
+ */
6
+ const IcNavigationChevronUp = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 34 13", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M.93 12.828s3.57-2.356 7.378-4.954a359 359 0 0 0 4.38-3.035c1.105-.778 2.095-1.5 2.886-2.068a2.03 2.03 0 0 1 1.21-.388c.424 0 .851.121 1.21.385 1.46 1.026 3.593 2.557 5.811 4.087a687 687 0 0 0 8.832 5.973.243.243 0 1 0 .292-.39s-4.159-3.512-8.207-6.807c-2.089-1.7-4.157-3.32-5.55-4.433a3.94 3.94 0 0 0-2.389-.815 3.94 3.94 0 0 0-2.39.812c-.767.601-1.738 1.35-2.794 2.192a344 344 0 0 0-4.14 3.355C3.9 9.672.637 12.438.637 12.438a.244.244 0 0 0 .292.39" }) }));
13
+ };
14
+ export default IcNavigationChevronUp;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a plus.
5
+ */
6
+ const Add = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 31 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M1.484 17.64s5.434.003 11.6-.116c8.08-.172 17.397-.541 17.397-.541.2-.006.36-.167.36-.362a.353.353 0 0 0-.358-.354s-9.319-.378-17.402-.548c-6.163-.125-11.6-.111-11.6-.111A1.013 1.013 0 0 0 .467 16.62a1.02 1.02 0 0 0 1.017 1.02" }), _jsx("path", { d: "M17.013 30.098s.003-5.434-.117-11.6c-.171-8.08-.541-17.398-.541-17.398a.37.37 0 0 0-.362-.36.353.353 0 0 0-.354.358s-.378 9.32-.548 17.403c-.125 6.162-.111 11.6-.111 11.6a1.013 1.013 0 0 0 1.013 1.013 1.02 1.02 0 0 0 1.02-1.016" })] }));
13
+ };
14
+ export default Add;
@@ -2,13 +2,6 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  // Import styles.
3
3
  /**
4
4
  * This function renders an SVG icon of a copy action.
5
- *
6
- * @version 1.0.0
7
- * @author Aayush Goyal
8
- * @created 2025-07-15
9
- * @modifier
10
- * @modified
11
- * @since 1.6.0
12
5
  */
13
6
  const Copy = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
14
7
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
@@ -16,8 +9,6 @@ const Copy = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em
16
9
  clipRule: 'evenodd',
17
10
  strokeLinejoin: 'round',
18
11
  strokeMiterlimit: 2
19
- }, viewBox: "0 0 30 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M693.052 357.748h29.511v29.9h-29.511z", style: {
20
- fill: 'none'
21
- }, transform: "matrix(1.00607 0 0 1.00697 -697.263 -359.608)" }), _jsx("path", { d: "m28.873 8.716-.002.012c0 .108.09.196.197.196 0 0 .189-.032.197-.227l.013-.279a2.25 2.25 0 0 0-1.327-2.132 2.3 2.3 0 0 0-.883-.21c-2.11-.076-5.566-.217-8.787-.32-2.251-.073-4.384-.122-5.86-.163a2.84 2.84 0 0 0-2.021.803 2.88 2.88 0 0 0-.872 2.022c-.023 2.207-.101 5.945-.105 9.684s.068 7.476.089 9.683a2.9 2.9 0 0 0 .87 2.041 2.9 2.9 0 0 0 2.04.82l14.646-.298a2.54 2.54 0 0 0 1.788-.775c.23-.241.414-.521.532-.826.117-.304.18-.63.171-.962l-.454-18.027a.037.037 0 0 0-.037-.036.036.036 0 0 0-.037.036l-.454 18.027a1.51 1.51 0 0 1-.468 1.041 1.46 1.46 0 0 1-1.041.396l-14.646-.298a1.13 1.13 0 0 1-.788-.35 1.113 1.113 0 0 1-.303-.789c.022-2.207.093-5.945.09-9.683-.004-3.74-.082-7.477-.107-9.684a1.13 1.13 0 0 1 .665-1.07c.139-.06.288-.102.443-.105 1.475-.041 3.608-.09 5.859-.163 3.221-.104 6.676-.244 8.787-.321a1.68 1.68 0 0 1 1.22.44 1.74 1.74 0 0 1 .57 1.22l.012.278z" }), _jsx("path", { d: "M19.551 4.59q-.003.013-.002.029c0 .107.088.196.196.196 0 0 .188-.062.201-.288.01-.143.027-.444.048-.8a2.3 2.3 0 0 0-.593-1.658c-.408-.46-1-.74-1.662-.78-1.797-.091-4.569-.256-7.352-.37C9.13.866 7.877.83 6.71.802 5.299.77 4.02.762 3.035.747A2.97 2.97 0 0 0 .05 3.745C.093 5.57.145 8.439.235 11.49c.129 4.336.32 9.03.41 11.62a2.36 2.36 0 0 0 .743 1.647 2.286 2.286 0 0 0 1.647.62l5.578-.229a.04.04 0 0 0 .037-.037.04.04 0 0 0-.037-.038l-5.578-.229a1.7 1.7 0 0 1-1.183-.551 1.7 1.7 0 0 1-.334-.554 1.7 1.7 0 0 1-.094-.628c.091-2.592.28-7.285.41-11.621.09-3.052.142-5.921.186-7.746a1 1 0 0 1 .307-.708c.183-.18.431-.295.708-.295.985-.015 2.264-.023 3.676-.056 1.166-.028 2.42-.064 3.676-.116 2.783-.114 5.555-.279 7.352-.37.438-.027.848.112 1.155.38.326.286.554.686.589 1.152l.06.799q.001.031.008.058" })] }));
12
+ }, viewBox: "0 0 30 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m28.873 8.716-.002.012c0 .108.09.196.197.196 0 0 .189-.032.197-.227l.013-.279a2.25 2.25 0 0 0-1.327-2.132 2.3 2.3 0 0 0-.883-.21c-2.11-.076-5.566-.217-8.787-.32-2.251-.073-4.384-.122-5.86-.163a2.84 2.84 0 0 0-2.021.803 2.88 2.88 0 0 0-.872 2.022c-.023 2.207-.101 5.945-.105 9.684s.068 7.476.089 9.683a2.9 2.9 0 0 0 .87 2.041 2.9 2.9 0 0 0 2.04.82l14.646-.298a2.54 2.54 0 0 0 1.788-.775c.23-.241.414-.521.532-.826.117-.304.18-.63.171-.962l-.454-18.027a.037.037 0 0 0-.037-.036.036.036 0 0 0-.037.036l-.454 18.027a1.51 1.51 0 0 1-.468 1.041 1.46 1.46 0 0 1-1.041.396l-14.646-.298a1.13 1.13 0 0 1-.788-.35 1.113 1.113 0 0 1-.303-.789c.022-2.207.093-5.945.09-9.683-.004-3.74-.082-7.477-.107-9.684a1.13 1.13 0 0 1 .665-1.07c.139-.06.288-.102.443-.105 1.475-.041 3.608-.09 5.859-.163 3.221-.104 6.676-.244 8.787-.321a1.68 1.68 0 0 1 1.22.44 1.74 1.74 0 0 1 .57 1.22l.012.278z" }), _jsx("path", { d: "M19.551 4.59q-.003.013-.002.029c0 .107.088.196.196.196 0 0 .188-.062.201-.288.01-.143.027-.444.048-.8a2.3 2.3 0 0 0-.593-1.658c-.408-.46-1-.74-1.662-.78-1.797-.091-4.569-.256-7.352-.37C9.13.866 7.877.83 6.71.802 5.299.77 4.02.762 3.035.747A2.97 2.97 0 0 0 .05 3.745C.093 5.57.145 8.439.235 11.49c.129 4.336.32 9.03.41 11.62a2.36 2.36 0 0 0 .743 1.647 2.286 2.286 0 0 0 1.647.62l5.578-.229a.04.04 0 0 0 .037-.037.04.04 0 0 0-.037-.038l-5.578-.229a1.7 1.7 0 0 1-1.183-.551 1.7 1.7 0 0 1-.334-.554 1.7 1.7 0 0 1-.094-.628c.091-2.592.28-7.285.41-11.621.09-3.052.142-5.921.186-7.746a1 1 0 0 1 .307-.708c.183-.18.431-.295.708-.295.985-.015 2.264-.023 3.676-.056 1.166-.028 2.42-.064 3.676-.116 2.783-.114 5.555-.279 7.352-.37.438-.027.848.112 1.155.38.326.286.554.686.589 1.152l.06.799q.001.031.008.058" })] }));
22
13
  };
23
14
  export default Copy;
@@ -2,13 +2,6 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  // Import styles.
3
3
  /**
4
4
  * This function renders an SVG icon of a cut action.
5
- *
6
- * @version 1.0.0
7
- * @author Aayush Goyal
8
- * @created 2025-07-15
9
- * @modifier
10
- * @modified
11
- * @since 1.6.0
12
5
  */
13
6
  const Cut = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
14
7
  return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
@@ -16,8 +9,6 @@ const Cut = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em'
16
9
  clipRule: 'evenodd',
17
10
  strokeLinejoin: 'round',
18
11
  strokeMiterlimit: 2
19
- }, viewBox: "0 0 23 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M730.716 356.256h21.898v31.62h-21.898z", style: {
20
- fill: 'none'
21
- }, transform: "matrix(1.00627 0 0 1.00395 -734.664 -357.472)" }), _jsx("path", { d: "M11.366 18.702a1.23 1.23 0 0 0-.505.488 35 35 0 0 0-.593 1.047 225 225 0 0 0-2.757 5.209 250 250 0 0 0-2.49 5.022c-.247-.001-.46-.24-.63-.522-.402-.672-.573-1.68-.17-2.532.366-.778 1.16-1.414 2.576-1.615a.2.2 0 0 0 .187-.217.2.2 0 0 0-.217-.187c-2.297.02-3.356 1.239-3.706 2.529-.355 1.31.102 2.734.82 3.432.54.523 1.232.667 1.96.365a.73.73 0 0 0 .328-.311s1.47-2.44 2.98-5.078c1.09-1.905 2.196-3.916 2.87-5.13.218-.392.385-.701.492-.893 3.96-2.356 6.416-5.292 7.9-8.186C23.388 6.312 22.486.75 22.486.75a.569.569 0 0 0-1.056-.212L11.76 17.993a.034.034 0 0 0 .012.046.034.034 0 0 0 .046-.012l9.563-15.26c-.092 1.969-.56 5.249-2.426 8.575-1.48 2.64-3.846 5.314-7.65 7.375z" }), _jsx("path", { d: "M10.825 20.309c.107.192.274.5.492.893.674 1.214 1.78 3.225 2.871 5.13a298 298 0 0 0 2.98 5.078.73.73 0 0 0 .327.31c.728.303 1.421.159 1.96-.364.718-.698 1.175-2.122.82-3.432-.35-1.29-1.409-2.508-3.706-2.53a.2.2 0 0 0-.217.188.2.2 0 0 0 .187.217c1.417.2 2.21.837 2.577 1.615.402.853.231 1.86-.17 2.532-.17.283-.384.52-.63.522a256 256 0 0 0-2.49-5.022 225 225 0 0 0-2.758-5.21 35 35 0 0 0-.593-1.046 1.23 1.23 0 0 0-.505-.488l.063.015c-3.805-2.061-6.17-4.735-7.65-7.375-1.867-3.326-2.335-6.606-2.427-8.577 0 .002 9.563 15.262 9.563 15.262.01.016.03.02.046.012a.034.034 0 0 0 .012-.046L1.905.538A.57.57 0 0 0 .85.75s-.902 5.562 2.077 11.373c1.483 2.894 3.94 5.83 7.9 8.186" })] }));
12
+ }, viewBox: "0 0 23 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M11.366 18.702a1.23 1.23 0 0 0-.505.488 35 35 0 0 0-.593 1.047 225 225 0 0 0-2.757 5.209 250 250 0 0 0-2.49 5.022c-.247-.001-.46-.24-.63-.522-.402-.672-.573-1.68-.17-2.532.366-.778 1.16-1.414 2.576-1.615a.2.2 0 0 0 .187-.217.2.2 0 0 0-.217-.187c-2.297.02-3.356 1.239-3.706 2.529-.355 1.31.102 2.734.82 3.432.54.523 1.232.667 1.96.365a.73.73 0 0 0 .328-.311s1.47-2.44 2.98-5.078c1.09-1.905 2.196-3.916 2.87-5.13.218-.392.385-.701.492-.893 3.96-2.356 6.416-5.292 7.9-8.186C23.388 6.312 22.486.75 22.486.75a.569.569 0 0 0-1.056-.212L11.76 17.993a.034.034 0 0 0 .012.046.034.034 0 0 0 .046-.012l9.563-15.26c-.092 1.969-.56 5.249-2.426 8.575-1.48 2.64-3.846 5.314-7.65 7.375z" }), _jsx("path", { d: "M10.825 20.309c.107.192.274.5.492.893.674 1.214 1.78 3.225 2.871 5.13a298 298 0 0 0 2.98 5.078.73.73 0 0 0 .327.31c.728.303 1.421.159 1.96-.364.718-.698 1.175-2.122.82-3.432-.35-1.29-1.409-2.508-3.706-2.53a.2.2 0 0 0-.217.188.2.2 0 0 0 .187.217c1.417.2 2.21.837 2.577 1.615.402.853.231 1.86-.17 2.532-.17.283-.384.52-.63.522a256 256 0 0 0-2.49-5.022 225 225 0 0 0-2.758-5.21 35 35 0 0 0-.593-1.046 1.23 1.23 0 0 0-.505-.488l.063.015c-3.805-2.061-6.17-4.735-7.65-7.375-1.867-3.326-2.335-6.606-2.427-8.577 0 .002 9.563 15.262 9.563 15.262.01.016.03.02.046.012a.034.034 0 0 0 .012-.046L1.905.538A.57.57 0 0 0 .85.75s-.902 5.562 2.077 11.373c1.483 2.894 3.94 5.83 7.9 8.186" })] }));
22
13
  };
23
14
  export default Cut;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of an {auto-generated}.
5
+ */
6
+ const Edit = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 33 28", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M10.69 25.31 4.685 17.14a1.47 1.47 0 0 1-.263-1.092c.053-.36.253-.695.568-.93 1.629-1.218 4.294-3.195 6.944-5.195 2.648-1.997 5.278-4.016 6.9-5.25a1.05 1.05 0 0 1 1.152-.07c.115.068.216.16.299.267.873 1.127 2.096 2.724 3.335 4.306 1.24 1.584 2.495 3.154 3.38 4.272a1.07 1.07 0 0 1 .11 1.168 1.1 1.1 0 0 1-.268.326L12.428 26.555a1.44 1.44 0 0 1-.987.329l-9.69-.496a.7.7 0 0 1-.532-.276.73.73 0 0 1-.136-.602l1.856-8.304a.04.04 0 0 0-.028-.046.037.037 0 0 0-.044.028L.583 25.385a1.27 1.27 0 0 0 .59 1.43c.16.096.342.153.532.172l9.656.965a2.55 2.55 0 0 0 1.764-.498L27.97 16.393a2.93 2.93 0 0 0 1.06-3.092 2.9 2.9 0 0 0-.512-1.036c-.869-1.13-2.086-2.73-3.32-4.319-1.232-1.587-2.481-3.163-3.362-4.285a2.97 2.97 0 0 0-3.15-1.017 3 3 0 0 0-1.027.532c-1.581 1.286-4.162 3.369-6.726 5.473-2.566 2.107-5.113 4.233-6.68 5.53a2.56 2.56 0 0 0-.929 1.735 2.52 2.52 0 0 0 .56 1.854l6.497 7.785a.196.196 0 1 0 .31-.242M21.077 2.424l1.901-1.049c.154-.087.328-.073.487-.031.134.035.225.152.3.28.286.467.653 1.093 1.107 1.811.237.376.491.773.77 1.18.426.623.878 1.276 1.365 1.907.3.389.618.763.935 1.126.331.38.665.741.989 1.084.818.865 1.553 1.588 2.059 2.105.05.048.105.09.132.152.03.07.068.136.069.212 0 .084.005.166-.026.242-.033.083-.067.165-.132.23l-1.547 1.575 1.93-1.075c.158-.09.279-.22.388-.36.114-.147.177-.322.226-.505.051-.19.04-.382.013-.573-.028-.197-.118-.376-.222-.55-.382-.614-.91-1.5-1.556-2.5a37 37 0 0 0-.816-1.22 24 24 0 0 0-.872-1.175A41 41 0 0 0 27.05 3.51c-.33-.368-.654-.708-.963-1.03-.591-.61-1.11-1.115-1.497-1.504-.29-.285-.64-.47-1.018-.469-.353.001-.71.094-.98.36z" }) }));
13
+ };
14
+ export default Edit;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a paste action.
5
+ */
6
+ const Paste = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 32 33", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M31.23 8.74v.003c0 .108.088.196.196.196 0 0 .19-.04.198-.243l.018-.435a2.24 2.24 0 0 0-.607-1.61 2.3 2.3 0 0 0-1.609-.728c-2.259-.077-6.076-.221-9.624-.327-2.486-.074-4.835-.123-6.417-.164a2.84 2.84 0 0 0-2.022.806 2.88 2.88 0 0 0-.87 2.023c-.023 2.35-.103 6.454-.107 10.557-.003 4.104.07 8.207.092 10.558a2.89 2.89 0 0 0 1.807 2.656c.347.137.72.212 1.1.207l16.041-.303c.339-.007.67-.076.974-.21a2.508 2.508 0 0 0 1.52-2.35L31.463 9.85a.037.037 0 0 0-.038-.036.036.036 0 0 0-.036.036l-.457 19.525a1.5 1.5 0 0 1-.465 1.042 1.46 1.46 0 0 1-1.042.398l-16.04-.303a1.117 1.117 0 0 1-1.093-1.137c.02-2.351.094-6.454.09-10.558-.002-4.103-.082-8.206-.106-10.557a1.1 1.1 0 0 1 .302-.806 1.15 1.15 0 0 1 .806-.366c1.582-.04 3.931-.09 6.417-.164 3.548-.105 7.365-.25 9.624-.327a1.68 1.68 0 0 1 1.219.444 1.763 1.763 0 0 1 .566 1.22l.02.476zM6.563 26.853h2a.5.5 0 1 0 0-1h-2a.5.5 0 1 0 0 1m-3.268 0h1.268a.5.5 0 1 0 0-1H3.295c-.188 0-.37-.035-.536-.099a.5.5 0 0 0-.359.934c.279.107.58.165.895.165m-1.499-2.5v-1.59a.5.5 0 0 0-1 0v1.59q0 .262.051.508a.5.5 0 0 0 .98-.202q-.03-.149-.03-.306m-1-5.59v2a.501.501 0 0 0 1 0v-2a.5.5 0 0 0-1 0m0-4v2a.5.5 0 0 0 1 0v-2a.501.501 0 0 0-1 0m0-4v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-1 0m0-4v2a.501.501 0 0 0 1 0v-2a.5.5 0 0 0-1 0m0-3.525v1.525a.5.5 0 0 0 1 0V3.238q0-.183.042-.354a.5.5 0 0 0-.973-.234 2.5 2.5 0 0 0-.07.588m20.11 1.079v.01q0 .095.033.18a.5.5 0 0 0 .467.32s.504-.044.5-.518l-.008-.987a.501.501 0 0 0-1 .008zm-1.335-2.57c.256.03.492.124.693.265a.5.5 0 0 0 .577-.816 2.5 2.5 0 0 0-1.443-.458h-.77a.5.5 0 0 0 0 1h.77q.088 0 .173.01m-16.276-.01H4.63a.5.5 0 1 0 0-1H3.295c-.286 0-.561.049-.818.138a.501.501 0 0 0 .327.945q.233-.082.491-.083m5.333-1h-2a.5.5 0 1 0 0 1h2a.5.5 0 1 0 0-1m4 0h-2a.5.5 0 1 0 0 1h2a.5.5 0 1 0 0-1m4 0h-2a.5.5 0 0 0 0 1h2a.5.5 0 1 0 0-1" }) }));
13
+ };
14
+ export default Paste;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of the bitcoin logo.
5
+ */
6
+ const Bitcoin = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 33 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M7.082 27.413c-2.997-2.7-4.606-6.354-4.818-10.09-.206-3.65.943-7.379 3.554-10.33 2.534-2.939 6.027-4.54 9.615-4.837 3.58-.296 7.28.706 10.258 3.183a14.52 14.52 0 0 1 5.212 9.584c.418 3.691-.584 7.503-3.216 10.478-2.69 3.054-5.819 4.81-9.206 5.259-3.331.442-6.9-.366-10.54-2.416a.08.08 0 0 0-.106.027.08.08 0 0 0 .027.105c3.636 2.256 7.26 3.217 10.689 2.907 3.59-.327 6.964-2.05 9.93-5.156 2.996-3.154 4.24-7.293 3.911-11.349-.326-4.047-2.237-8-5.514-10.846C23.53 1.073 19.332-.187 15.264.169 11.2.525 7.289 2.486 4.494 5.877 1.776 9.261.646 13.421 1.101 17.421a15.26 15.26 0 0 0 5.727 10.292.196.196 0 1 0 .253-.3" }), _jsx("path", { d: "M23.464 8.283c2.038 1.915 3.092 4.467 3.189 7.059.093 2.503-.739 5.042-2.563 7.033-1.748 1.98-4.139 3.028-6.582 3.21-2.436.183-4.948-.498-6.965-2.19a9.92 9.92 0 0 1-3.56-6.547c-.287-2.533.394-5.148 2.199-7.191 1.858-2.118 4.019-3.34 6.363-3.655 2.322-.312 4.808.247 7.348 1.67a.077.077 0 0 0 .08-.132c-2.535-1.629-5.076-2.34-7.493-2.16-2.547.19-4.952 1.377-7.087 3.544-2.17 2.22-3.094 5.162-2.9 8.059.193 2.9 1.533 5.743 3.853 7.811 2.384 2.078 5.393 3.018 8.317 2.78 2.917-.237 5.731-1.643 7.744-4.074 1.932-2.424 2.749-5.393 2.408-8.25a10.78 10.78 0 0 0-4.096-7.265.196.196 0 1 0-.255.298" }), _jsx("path", { d: "m15.073 10.534-.28-1.302a.178.178 0 1 0-.357 0l-.281 1.302a.46.46 0 1 0 .918 0M14.155 21.008l.28 1.302a.178.178 0 1 0 .357 0l.281-1.302a.46.46 0 1 0-.918 0M16.429 10.534l-.28-1.302a.178.178 0 1 0-.358 0l-.28 1.302a.46.46 0 1 0 .918 0M15.51 21.008l.281 1.302a.178.178 0 1 0 .357 0l.28-1.302a.46.46 0 1 0-.918 0M14.837 19.74s.008-1.572-.097-3.351c-.14-2.347-.45-5.026-.45-5.026a.298.298 0 1 0-.597 0s-.312 2.679-.45 5.026c-.107 1.779-.099 3.35-.099 3.35a.847.847 0 0 0 1.693.001" }), _jsx("path", { d: "M12.064 11.352s1.821.253 3.823.466c.871.093 1.763.161 2.549.232.377.021.686.228.928.48.235.245.402.563.407.928v.005c.034.392-.05.77-.282 1.054-.263.326-.604.604-1.053.66l-3.52.55a.036.036 0 0 0-.036.037c0 .02.016.037.036.037l3.52.55c.832.103 1.598-.199 2.2-.687.64-.517.993-1.319 1.068-2.201v-.005c.011-.905-.336-1.745-.94-2.327a3.12 3.12 0 0 0-2.328-.868c-.786.071-1.678.14-2.55.232-2 .213-3.822.466-3.822.466a.196.196 0 1 0 0 .391" }), _jsx("path", { d: "M12.066 20.569s1.99.262 4.148.478c.953.094 1.924.162 2.766.234a3.14 3.14 0 0 0 2.328-.881c.604-.584.953-1.423.942-2.328l-.001-.005c-.07-.884-.424-1.688-1.059-2.21-.603-.497-1.373-.805-2.21-.708l-3.942.58a.036.036 0 0 0-.037.036c0 .021.016.037.037.037l3.942.58c.442.05.782.322 1.045.64.23.281.32.654.289 1.045v.005c-.005.365-.172.683-.407.926-.242.25-.553.45-.927.467-.842.072-1.813.14-2.766.234-2.159.216-4.148.478-4.148.478a.196.196 0 1 0 0 .392" })] }));
13
+ };
14
+ export default Bitcoin;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of credit cards.
5
+ */
6
+ const CreditCards = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 32 25", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m25.972.115-.066-.001h-.066L4.83.609a.036.036 0 0 0-.037.037c0 .02.016.037.037.037l21.011.493c.402.008.759.185 1.016.453.253.264.396.625.388 1.017l-.263 13.897a1.117 1.117 0 0 1-1.14 1.095c-1.625-.019-4.094-.062-6.856-.082-1.467-.01-3.019-.015-4.57-.01-1.96.004-3.92.02-5.712.042-2.296.029-4.316.075-5.712.098a1.16 1.16 0 0 1-.831-.311 1.2 1.2 0 0 1-.382-.832L1.337 2.645a1.68 1.68 0 0 1 .44-1.214c.303-.329.73-.545 1.214-.564L3.644.84c.084-.007.13-.114.136-.183A.195.195 0 0 0 3.58.445L2.99.423a2.25 2.25 0 0 0-1.615.607 2.3 2.3 0 0 0-.732 1.615L.202 16.542a2.8 2.8 0 0 0 .791 1.998 2.83 2.83 0 0 0 1.998.858c1.396.024 3.416.07 5.712.1 1.792.022 3.752.037 5.712.042 1.551.004 3.103 0 4.57-.012 2.762-.019 5.23-.061 6.855-.081a2.88 2.88 0 0 0 2.86-2.905l-.263-13.897a2.57 2.57 0 0 0-.784-1.813 2.54 2.54 0 0 0-1.681-.717" }), _jsx("path", { d: "m2.284 18.596-.042.329a2.892 2.892 0 0 0 1.462 2.891c.333.188.702.306 1.088.353 2.903.333 8.483 1.013 13.61 1.563 3.632.389 7.038.7 9.089.905A2.87 2.87 0 0 0 29.6 24a2.84 2.84 0 0 0 1.028-1.928l1.245-13.843a2.536 2.536 0 0 0-2.276-2.763l-1.708-.151a.461.461 0 0 0-.1.916l1.7.223c.407.054.75.273.982.575.227.294.334.679.281 1.076l-1.792 13.784a1.15 1.15 0 0 1-.445.756 1.12 1.12 0 0 1-.83.218c-2.046-.246-5.438-.682-9.068-1.09-5.125-.578-10.72-1.127-13.625-1.431a1.095 1.095 0 0 1-.984-1.206l.036-.329s-1.71-.643-1.76-.21" }), _jsx("path", { d: "M.99 7.02h26.85V4.488H.99zM4.064 16.096s1.22-.008 2.604-.071c1.818-.083 3.907-.25 3.907-.25a.344.344 0 0 0 0-.689s-2.086-.174-3.904-.264a76 76 0 0 0-2.604-.08.677.677 0 1 0-.003 1.354M12.494 15.895l1.92-.126a.35.35 0 0 0 .001-.7l-1.92-.134a.48.48 0 0 0 0 .96" })] }));
13
+ };
14
+ export default CreditCards;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a shopping cart.
5
+ */
6
+ const ShoppingCart = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 33 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m10.895 20.624.045-.001-.004-1.354a2.209 2.209 0 0 0-2.2 2.212l.003.465a2.668 2.668 0 0 0 .786 1.882 2.64 2.64 0 0 0 1.88.768c1.845-.03 4.746-.063 7.747-.125 5.636-.114 11.62-.286 11.62-.286a.24.24 0 0 0 0-.478s-5.983-.17-11.62-.284c-3-.06-5.9-.093-7.747-.123a1.3 1.3 0 0 1-.514-.108 1.33 1.33 0 0 1-.721-.732 1.3 1.3 0 0 1-.099-.513l.003-.465a.863.863 0 0 1 .821-.858" }), _jsx("path", { d: "m1.697 2.154 5.081.152c.379.012.726.157 1 .389.268.225.456.54.528.903l3.354 16.038c.14.645.502 1.195.985 1.593.487.399 1.11.63 1.777.64 1.766.024 4.736.079 7.496.101 1.93.016 3.759.011 5 .015a2.98 2.98 0 0 0 2.906-2.342l2.35-11.536a.728.728 0 0 0-.711-.89s-3.727.101-7.957.245c-5.544.19-11.937.447-11.937.447a.037.037 0 0 0-.037.037c0 .02.017.036.037.036 0 0 6.393.257 11.937.447 2.956.1 5.666.181 7.03.22l-2.623 10.562a1.02 1.02 0 0 1-.996.776c-1.24.003-3.068-.001-4.999.014-2.76.023-5.73.078-7.496.101a1.143 1.143 0 0 1-1.132-.85L9.144 3.401a2.4 2.4 0 0 0-.882-1.317 2.36 2.36 0 0 0-1.484-.476l-5.081.153a.197.197 0 0 0-.197.196c0 .108.088.197.197.197M14.817 25.613a2 2 0 0 1 1.33.758c.29.362.42.832.368 1.33-.035.45-.281.82-.596 1.1-.292.258-.68.401-1.102.384a1.6 1.6 0 0 1-.574-.1 1.7 1.7 0 0 1-.529-.284c-.326-.275-.586-.643-.632-1.1-.069-.516.009-.984.254-1.359.278-.425.699-.732 1.264-.849a.027.027 0 0 0 .026-.029.027.027 0 0 0-.029-.026 2.2 2.2 0 0 0-1.68.536c-.473.405-.744 1.01-.84 1.726-.077.782.208 1.504.681 2.059.3.35.696.61 1.14.772.286.104.598.149.92.153.813-.033 1.557-.36 2.059-.924.487-.547.778-1.274.716-2.06-.078-.743-.403-1.399-.945-1.831-.503-.401-1.141-.632-1.83-.55a.147.147 0 0 0 0 .294M26.342 25.613a2 2 0 0 1 1.33.758c.291.362.421.832.369 1.33-.036.45-.282.82-.597 1.1-.292.258-.68.401-1.102.384a1.6 1.6 0 0 1-.574-.1 1.7 1.7 0 0 1-.529-.284c-.326-.275-.586-.643-.631-1.1-.07-.516.008-.984.253-1.359.278-.425.7-.732 1.264-.849a.027.027 0 0 0 .027-.029.027.027 0 0 0-.03-.026 2.2 2.2 0 0 0-1.68.536c-.473.405-.744 1.01-.839 1.726-.078.782.207 1.504.68 2.059.3.35.697.61 1.14.772.286.104.598.149.92.153.814-.033 1.557-.36 2.06-.924.486-.547.778-1.274.715-2.06-.078-.743-.402-1.399-.944-1.831-.504-.401-1.142-.632-1.832-.55a.147.147 0 0 0 0 .294" }), _jsx("path", { d: "m1.959 2.918 2.62-.254a.701.701 0 0 0 .003-1.401L1.962.999a.96.96 0 0 0-.003 1.92" })] }));
13
+ };
14
+ export default ShoppingCart;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a wallet.
5
+ */
6
+ const Wallet = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 31 28", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M1.277 5.145.961 23.498c-.01.673.251 1.288.676 1.749.43.465 1.033.764 1.711.808l23.956 1.504c.392.023.78-.038 1.143-.167a2.91 2.91 0 0 0 1.914-2.689l.231-17.966a2.99 2.99 0 0 0-.822-2.081 2.98 2.98 0 0 0-2.032-.928c-2.742-.106-8.012-.323-13.115-.505-1.995-.07-3.964-.137-5.747-.196L27.384.335l.039 2.778c0 .02.016.037.037.037s.037-.016.037-.037l.097-2.899c0-.03-.013-.06-.035-.08a.11.11 0 0 0-.084-.026L1.395 2.8a.65.65 0 0 0 .047 1.297s6.402.43 13.098.841c5.097.312 10.364.605 13.102.765a1 1 0 0 1 .952 1.018l-.065 17.968a1.08 1.08 0 0 1-.328.792 1.11 1.11 0 0 1-.811.315l-23.987-.858a1.45 1.45 0 0 1-.99-.43 1.48 1.48 0 0 1-.427-1.009L1.669 5.145a.196.196 0 1 0-.392 0" }), _jsx("path", { d: "M28.89 13.198s-3.028-.27-5.9-.469c-1.526-.105-2.996-.177-3.932-.233a1.89 1.89 0 0 0-1.37.535 1.95 1.95 0 0 0-.587 1.374c-.01.49-.03 1.105-.032 1.72 0 .617.018 1.232.025 1.72.023.542.233 1.039.605 1.376.366.332.847.555 1.379.526 1.133-.086 3.054-.204 4.906-.37 2.543-.228 4.905-.51 4.905-.51.021 0 .037-.016.037-.036a.037.037 0 0 0-.037-.037s-2.362-.28-4.906-.505c-1.851-.165-3.773-.282-4.906-.366l-.017-.088c.001-.489.014-1.105.006-1.72-.008-.616-.035-1.23-.05-1.72l-.005-.048.047-.055c.936-.055 2.406-.127 3.933-.232 2.87-.2 5.898-.47 5.898-.47a.196.196 0 1 0 0-.392" })] }));
13
+ };
14
+ export default Wallet;
@@ -1,23 +1,21 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  // Import styles.
3
3
  /**
4
4
  * This function renders an SVG icon of a search.
5
5
  *
6
- * @version 1.0.0
6
+ * @version 1.1.0
7
7
  * @author Aayush Goyal
8
8
  * @created 2025-07-15
9
- * @modifier
10
- * @modified
9
+ * @modifier Aayush Goyal
10
+ * @modified 2025-07-
11
11
  * @since 1.6.0
12
12
  */
13
13
  const Search = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
14
- return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
14
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
15
15
  fillRule: 'evenodd',
16
16
  clipRule: 'evenodd',
17
17
  strokeLinejoin: 'round',
18
18
  strokeMiterlimit: 2
19
- }, viewBox: "0 0 28 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M543.001 349.947h31.109v33.364h-31.109z", style: {
20
- fill: 'none'
21
- }, transform: "matrix(.86177 0 0 .87557 -467.526 -306.197)" }), _jsx("path", { d: "M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307" })] }));
19
+ }, viewBox: "0 0 28 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307" }) }));
22
20
  };
23
21
  export default Search;
package/dist/index.esm.js CHANGED
@@ -1 +1 @@
1
- import{jsxs as e,jsx as t}from"react/jsx-runtime";const i=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 25 29",stroke:i,strokeWidth:a,width:r,height:l,fill:i,children:[t("path",{d:"M24.185 14.28s-3.77 3.822-7.172 7.4c-.826.867-1.623 1.725-2.34 2.508-.948 1.03-1.749 1.934-2.3 2.545l-.004-.002-.005.003c-.983-1.064-2.746-3.022-4.654-5.042A552.286 552.286 0 0 0 .552 14.28a.244.244 0 0 0-.367.32s3.258 4.267 6.337 8.123c1.734 2.173 3.424 4.192 4.341 5.315a1.988 1.988 0 0 0 3.012 0c.528-.631 1.311-1.551 2.2-2.632.673-.821 1.411-1.73 2.155-2.67 3.066-3.868 6.322-8.136 6.322-8.136a.244.244 0 0 0-.367-.32Z"}),t("path",{d:"M12.612 23.65s.113-1.067.26-2.763c.1-1.15.225-2.572.325-4.144.057-.887.103-1.815.135-2.763.021-.61.038-1.225.036-1.842a51.027 51.027 0 0 0-.042-1.842 164.88 164.88 0 0 0-.349-5.526C12.78 2.3 12.612.625 12.612.625a.243.243 0 0 0-.487 0S11.96 2.3 11.761 4.77c-.068.844-.137 1.773-.2 2.763-.056.887-.113 1.814-.149 2.763a48.819 48.819 0 0 0-.043 1.842c0 .617.015 1.233.036 1.842.033.948.078 1.876.135 2.763.1 1.572.226 2.994.326 4.144.146 1.696.26 2.763.26 2.763a.243.243 0 0 0 .486 0Z"})]}),l=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 29 25",height:l,stroke:i,strokeWidth:a,width:r,fill:i,children:[t("path",{d:"M14.898 24.549s-3.822-3.77-7.4-7.172a188 188 0 0 0-2.508-2.341c-1.03-.947-1.934-1.748-2.545-2.3l.002-.003-.003-.005c1.065-.983 3.022-2.746 5.042-4.654C11.075 4.686 14.898.916 14.898.916a.244.244 0 0 0-.32-.367s-4.267 3.258-8.123 6.337C4.282 8.62 2.263 10.31 1.14 11.226a1.988 1.988 0 0 0 0 3.013c.631.528 1.551 1.31 2.632 2.199.821.674 1.73 1.412 2.67 2.156a648 648 0 0 0 8.136 6.322.244.244 0 0 0 .32-.367"}),t("path",{d:"M5.528 12.976s1.067.113 2.763.26c1.15.099 2.572.225 4.145.325a91 91 0 0 0 2.763.135c.609.02 1.225.038 1.842.036a51 51 0 0 0 1.842-.042 164.882 164.882 0 0 0 5.526-.349c2.47-.198 4.144-.365 4.144-.365a.243.243 0 0 0 0-.487s-1.674-.166-4.144-.364c-.844-.068-1.773-.137-2.763-.2-.888-.056-1.815-.113-2.763-.15a49 49 0 0 0-1.842-.042 51 51 0 0 0-1.842.036c-.95.033-1.877.078-2.763.135-1.573.1-2.995.226-4.145.326-1.696.146-2.763.259-2.763.259a.243.243 0 0 0 0 .487"})]}),a=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 26 29",height:l,stroke:i,strokeWidth:a,width:r,fill:i,children:[t("path",{d:"M1.02 14.836s3.77-3.823 7.173-7.4c.826-.868 1.623-1.725 2.34-2.508.948-1.03 1.749-1.934 2.3-2.546l.004.003.005-.004c.983 1.065 2.746 3.022 4.654 5.043 3.388 3.588 7.158 7.412 7.158 7.412a.244.244 0 0 0 .367-.32s-3.258-4.267-6.337-8.124C16.95 4.22 15.26 2.201 14.343 1.078a1.988 1.988 0 0 0-3.012-.001c-.528.632-1.311 1.552-2.2 2.633-.673.82-1.411 1.729-2.155 2.67a648.25 648.25 0 0 0-6.322 8.136.244.244 0 0 0 .367.32Z"}),t("path",{d:"M12.594 5.466s-.113 1.067-.26 2.763c-.1 1.15-.225 2.571-.325 4.144a91.07 91.07 0 0 0-.135 2.763 48.872 48.872 0 0 0-.036 1.842c0 .617.019 1.233.042 1.842a164.882 164.882 0 0 0 .349 5.526c.198 2.47.365 4.145.365 4.145a.243.243 0 0 0 .487 0s.166-1.674.364-4.145c.068-.844.137-1.773.2-2.763.056-.887.113-1.814.149-2.763a48.82 48.82 0 0 0 .043-1.842 51.077 51.077 0 0 0-.036-1.842 94.437 94.437 0 0 0-.135-2.763c-.1-1.573-.226-2.994-.326-4.144-.146-1.696-.26-2.763-.26-2.763a.243.243 0 0 0-.486 0Z"})]}),r=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 23 32",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M730.716 356.256h21.898v31.62h-21.898z",style:{fill:"none"},transform:"matrix(1.00627 0 0 1.00395 -734.664 -357.472)"}),t("path",{d:"M11.366 18.702a1.23 1.23 0 0 0-.505.488 35 35 0 0 0-.593 1.047 225 225 0 0 0-2.757 5.209 250 250 0 0 0-2.49 5.022c-.247-.001-.46-.24-.63-.522-.402-.672-.573-1.68-.17-2.532.366-.778 1.16-1.414 2.576-1.615a.2.2 0 0 0 .187-.217.2.2 0 0 0-.217-.187c-2.297.02-3.356 1.239-3.706 2.529-.355 1.31.102 2.734.82 3.432.54.523 1.232.667 1.96.365a.73.73 0 0 0 .328-.311s1.47-2.44 2.98-5.078c1.09-1.905 2.196-3.916 2.87-5.13.218-.392.385-.701.492-.893 3.96-2.356 6.416-5.292 7.9-8.186C23.388 6.312 22.486.75 22.486.75a.569.569 0 0 0-1.056-.212L11.76 17.993a.034.034 0 0 0 .012.046.034.034 0 0 0 .046-.012l9.563-15.26c-.092 1.969-.56 5.249-2.426 8.575-1.48 2.64-3.846 5.314-7.65 7.375z"}),t("path",{d:"M10.825 20.309c.107.192.274.5.492.893.674 1.214 1.78 3.225 2.871 5.13a298 298 0 0 0 2.98 5.078.73.73 0 0 0 .327.31c.728.303 1.421.159 1.96-.364.718-.698 1.175-2.122.82-3.432-.35-1.29-1.409-2.508-3.706-2.53a.2.2 0 0 0-.217.188.2.2 0 0 0 .187.217c1.417.2 2.21.837 2.577 1.615.402.853.231 1.86-.17 2.532-.17.283-.384.52-.63.522a256 256 0 0 0-2.49-5.022 225 225 0 0 0-2.758-5.21 35 35 0 0 0-.593-1.046 1.23 1.23 0 0 0-.505-.488l.063.015c-3.805-2.061-6.17-4.735-7.65-7.375-1.867-3.326-2.335-6.606-2.427-8.577 0 .002 9.563 15.262 9.563 15.262.01.016.03.02.046.012a.034.034 0 0 0 .012-.046L1.905.538A.57.57 0 0 0 .85.75s-.902 5.562 2.077 11.373c1.483 2.894 3.94 5.83 7.9 8.186"})]}),o=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 30 31",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M693.052 357.748h29.511v29.9h-29.511z",style:{fill:"none"},transform:"matrix(1.00607 0 0 1.00697 -697.263 -359.608)"}),t("path",{d:"m28.873 8.716-.002.012c0 .108.09.196.197.196 0 0 .189-.032.197-.227l.013-.279a2.25 2.25 0 0 0-1.327-2.132 2.3 2.3 0 0 0-.883-.21c-2.11-.076-5.566-.217-8.787-.32-2.251-.073-4.384-.122-5.86-.163a2.84 2.84 0 0 0-2.021.803 2.88 2.88 0 0 0-.872 2.022c-.023 2.207-.101 5.945-.105 9.684s.068 7.476.089 9.683a2.9 2.9 0 0 0 .87 2.041 2.9 2.9 0 0 0 2.04.82l14.646-.298a2.54 2.54 0 0 0 1.788-.775c.23-.241.414-.521.532-.826.117-.304.18-.63.171-.962l-.454-18.027a.037.037 0 0 0-.037-.036.036.036 0 0 0-.037.036l-.454 18.027a1.51 1.51 0 0 1-.468 1.041 1.46 1.46 0 0 1-1.041.396l-14.646-.298a1.13 1.13 0 0 1-.788-.35 1.113 1.113 0 0 1-.303-.789c.022-2.207.093-5.945.09-9.683-.004-3.74-.082-7.477-.107-9.684a1.13 1.13 0 0 1 .665-1.07c.139-.06.288-.102.443-.105 1.475-.041 3.608-.09 5.859-.163 3.221-.104 6.676-.244 8.787-.321a1.68 1.68 0 0 1 1.22.44 1.74 1.74 0 0 1 .57 1.22l.012.278z"}),t("path",{d:"M19.551 4.59q-.003.013-.002.029c0 .107.088.196.196.196 0 0 .188-.062.201-.288.01-.143.027-.444.048-.8a2.3 2.3 0 0 0-.593-1.658c-.408-.46-1-.74-1.662-.78-1.797-.091-4.569-.256-7.352-.37C9.13.866 7.877.83 6.71.802 5.299.77 4.02.762 3.035.747A2.97 2.97 0 0 0 .05 3.745C.093 5.57.145 8.439.235 11.49c.129 4.336.32 9.03.41 11.62a2.36 2.36 0 0 0 .743 1.647 2.286 2.286 0 0 0 1.647.62l5.578-.229a.04.04 0 0 0 .037-.037.04.04 0 0 0-.037-.038l-5.578-.229a1.7 1.7 0 0 1-1.183-.551 1.7 1.7 0 0 1-.334-.554 1.7 1.7 0 0 1-.094-.628c.091-2.592.28-7.285.41-11.621.09-3.052.142-5.921.186-7.746a1 1 0 0 1 .307-.708c.183-.18.431-.295.708-.295.985-.015 2.264-.023 3.676-.056 1.166-.028 2.42-.064 3.676-.116 2.783-.114 5.555-.279 7.352-.37.438-.027.848.112 1.155.38.326.286.554.686.589 1.152l.06.799q.001.031.008.058"})]}),s=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 28 30",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M543.001 349.947h31.109v33.364h-31.109z",style:{fill:"none"},transform:"matrix(.86177 0 0 .87557 -467.526 -306.197)"}),t("path",{d:"M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307"})]}),h=({color:i="#000000",height:l="1em",strokeWidth:a=1,width:r="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 28",height:l,width:r,stroke:i,strokeWidth:a,fill:i,children:[t("path",{d:"M634.483 1673.02h35.983v26.903h-35.983z",style:{fill:"none"},transform:"matrix(.88725 0 0 1.00132 -562.43 -1674.52)"}),t("path",{d:"M28.561 11.94a43 43 0 0 0-1.882-.981 109 109 0 0 0-4.297-1.957.243.243 0 1 0-.255.414s1.916 1.607 3.69 2.947c.658.498 1.295.944 1.783 1.275.366.25.652.422.787.509a1.087 1.087 0 0 0 1.57-.494c.072-.183.25-.602.456-1.165.187-.508.4-1.124.611-1.778.68-2.114 1.356-4.52 1.356-4.52a.243.243 0 1 0-.446-.195s-1.3 2.136-2.383 4.074a47 47 0 0 0-.99 1.87M4.392 16.409c.508.28 1.17.632 1.883.98 1.997.975 4.297 1.957 4.297 1.957a.243.243 0 1 0 .254-.414s-1.916-1.608-3.689-2.948a44 44 0 0 0-1.783-1.275c-.367-.249-.653-.421-.788-.508a1.087 1.087 0 0 0-1.57.494c-.072.183-.25.602-.456 1.165a46 46 0 0 0-.61 1.778c-.68 2.113-1.357 4.52-1.357 4.52a.243.243 0 1 0 .446.194s1.3-2.135 2.383-4.073a47 47 0 0 0 .99-1.87"}),t("path",{d:"M5.844 9.488c1.245-2.605 3.204-4.45 5.44-5.565a12 12 0 0 1 5.129-1.276c4.332-.08 8.671 2.175 10.914 6.947a.418.418 0 0 0 .768-.328C25.994 3.768 21.271.953 16.438.736A13.3 13.3 0 0 0 10.33 1.92C7.615 3.155 5.255 5.363 3.714 8.448a1.187 1.187 0 0 0 .544 1.585 1.187 1.187 0 0 0 1.586-.545M27.107 18.858c-1.245 2.606-3.203 4.451-5.44 5.566a12 12 0 0 1-5.128 1.275c-4.332.081-8.672-2.175-10.915-6.946a.418.418 0 0 0-.768.327c2.102 5.499 6.825 8.314 11.658 8.53a13.3 13.3 0 0 0 6.108-1.184c2.715-1.235 5.075-3.443 6.616-6.527a1.187 1.187 0 0 0-.545-1.586 1.187 1.187 0 0 0-1.586.545"})]});export{i as ArrowDown,l as ArrowLeft,a as ArrowUp,o as Copy,r as Cut,h as Refresh,s as Search};
1
+ import{jsxs as e,jsx as t}from"react/jsx-runtime";const l=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 25 29",stroke:l,strokeWidth:a,width:o,height:i,fill:l,children:[t("path",{d:"M24.185 14.28s-3.77 3.822-7.172 7.4c-.826.867-1.623 1.725-2.34 2.508-.948 1.03-1.749 1.934-2.3 2.545l-.004-.002-.005.003c-.983-1.064-2.746-3.022-4.654-5.042A552.286 552.286 0 0 0 .552 14.28a.244.244 0 0 0-.367.32s3.258 4.267 6.337 8.123c1.734 2.173 3.424 4.192 4.341 5.315a1.988 1.988 0 0 0 3.012 0c.528-.631 1.311-1.551 2.2-2.632.673-.821 1.411-1.73 2.155-2.67 3.066-3.868 6.322-8.136 6.322-8.136a.244.244 0 0 0-.367-.32Z"}),t("path",{d:"M12.612 23.65s.113-1.067.26-2.763c.1-1.15.225-2.572.325-4.144.057-.887.103-1.815.135-2.763.021-.61.038-1.225.036-1.842a51.027 51.027 0 0 0-.042-1.842 164.88 164.88 0 0 0-.349-5.526C12.78 2.3 12.612.625 12.612.625a.243.243 0 0 0-.487 0S11.96 2.3 11.761 4.77c-.068.844-.137 1.773-.2 2.763-.056.887-.113 1.814-.149 2.763a48.819 48.819 0 0 0-.043 1.842c0 .617.015 1.233.036 1.842.033.948.078 1.876.135 2.763.1 1.572.226 2.994.326 4.144.146 1.696.26 2.763.26 2.763a.243.243 0 0 0 .486 0Z"})]}),i=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 29 25",height:i,stroke:l,strokeWidth:a,width:o,fill:l,children:[t("path",{d:"M14.898 24.549s-3.822-3.77-7.4-7.172a188 188 0 0 0-2.508-2.341c-1.03-.947-1.934-1.748-2.545-2.3l.002-.003-.003-.005c1.065-.983 3.022-2.746 5.042-4.654C11.075 4.686 14.898.916 14.898.916a.244.244 0 0 0-.32-.367s-4.267 3.258-8.123 6.337C4.282 8.62 2.263 10.31 1.14 11.226a1.988 1.988 0 0 0 0 3.013c.631.528 1.551 1.31 2.632 2.199.821.674 1.73 1.412 2.67 2.156a648 648 0 0 0 8.136 6.322.244.244 0 0 0 .32-.367"}),t("path",{d:"M5.528 12.976s1.067.113 2.763.26c1.15.099 2.572.225 4.145.325a91 91 0 0 0 2.763.135c.609.02 1.225.038 1.842.036a51 51 0 0 0 1.842-.042 164.882 164.882 0 0 0 5.526-.349c2.47-.198 4.144-.365 4.144-.365a.243.243 0 0 0 0-.487s-1.674-.166-4.144-.364c-.844-.068-1.773-.137-2.763-.2-.888-.056-1.815-.113-2.763-.15a49 49 0 0 0-1.842-.042 51 51 0 0 0-1.842.036c-.95.033-1.877.078-2.763.135-1.573.1-2.995.226-4.145.326-1.696.146-2.763.259-2.763.259a.243.243 0 0 0 0 .487"})]}),a=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 29 25",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"M14.002.92s3.823 3.77 7.4 7.173c.868.826 1.725 1.623 2.508 2.34 1.03.948 1.934 1.749 2.546 2.3l-.003.004.004.005c-1.065.983-3.022 2.746-5.043 4.654-3.588 3.388-7.412 7.158-7.412 7.158a.244.244 0 0 0 .32.367s4.267-3.258 8.124-6.337c2.172-1.734 4.192-3.424 5.314-4.341a1.988 1.988 0 0 0 .001-3.012c-.632-.528-1.552-1.311-2.633-2.2-.82-.673-1.729-1.411-2.67-2.155C18.59 3.81 14.322.554 14.322.554a.244.244 0 0 0-.32.367"}),t("path",{d:"M23.373 12.494s-1.068-.113-2.764-.26c-1.15-.1-2.571-.225-4.144-.325a91 91 0 0 0-2.763-.135 49 49 0 0 0-1.842-.036c-.617 0-1.233.019-1.842.042a164.883 164.883 0 0 0-5.526.349c-2.47.198-4.145.365-4.145.365a.243.243 0 0 0 0 .487s1.674.166 4.145.364c.844.068 1.773.137 2.763.2.887.056 1.814.113 2.763.149a49 49 0 0 0 1.842.043c.617 0 1.233-.015 1.842-.036a94 94 0 0 0 2.763-.135c1.573-.1 2.994-.226 4.144-.326 1.696-.146 2.764-.26 2.764-.26a.243.243 0 0 0 0-.486"})]}),o=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 26 29",height:i,stroke:l,strokeWidth:a,width:o,fill:l,children:[t("path",{d:"M1.02 14.836s3.77-3.823 7.173-7.4c.826-.868 1.623-1.725 2.34-2.508.948-1.03 1.749-1.934 2.3-2.546l.004.003.005-.004c.983 1.065 2.746 3.022 4.654 5.043 3.388 3.588 7.158 7.412 7.158 7.412a.244.244 0 0 0 .367-.32s-3.258-4.267-6.337-8.124C16.95 4.22 15.26 2.201 14.343 1.078a1.988 1.988 0 0 0-3.012-.001c-.528.632-1.311 1.552-2.2 2.633-.673.82-1.411 1.729-2.155 2.67a648.25 648.25 0 0 0-6.322 8.136.244.244 0 0 0 .367.32Z"}),t("path",{d:"M12.594 5.466s-.113 1.067-.26 2.763c-.1 1.15-.225 2.571-.325 4.144a91.07 91.07 0 0 0-.135 2.763 48.872 48.872 0 0 0-.036 1.842c0 .617.019 1.233.042 1.842a164.882 164.882 0 0 0 .349 5.526c.198 2.47.365 4.145.365 4.145a.243.243 0 0 0 .487 0s.166-1.674.364-4.145c.068-.844.137-1.773.2-2.763.056-.887.113-1.814.149-2.763a48.82 48.82 0 0 0 .043-1.842 51.077 51.077 0 0 0-.036-1.842 94.437 94.437 0 0 0-.135-2.763c-.1-1.573-.226-2.994-.326-4.144-.146-1.696-.26-2.763-.26-2.763a.243.243 0 0 0-.486 0Z"})]}),c=({color:e="#000000",height:l="1em",strokeWidth:i=1,width:a="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 13",height:l,width:a,stroke:e,strokeWidth:i,fill:e,children:t("path",{d:"M32.121.435s-3.57 2.356-7.379 4.954a359 359 0 0 0-4.38 3.035c-1.105.778-2.095 1.501-2.886 2.068a2.03 2.03 0 0 1-1.209.388 2.03 2.03 0 0 1-1.21-.385c-1.46-1.026-3.594-2.557-5.812-4.087C4.95 3.445.414.435.414.435a.243.243 0 1 0-.292.39S4.28 4.337 8.328 7.632c2.09 1.7 4.157 3.321 5.55 4.433a3.94 3.94 0 0 0 2.39.815 3.94 3.94 0 0 0 2.39-.812c.766-.6 1.737-1.349 2.793-2.192a344 344 0 0 0 4.14-3.355A658 658 0 0 0 32.413.825a.244.244 0 0 0-.292-.39"})}),s=({color:e="#000000",height:l="1em",strokeWidth:i=1,width:a="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 14 33",height:l,width:a,stroke:e,strokeWidth:i,fill:e,children:t("path",{d:"M12.984 32.483s-2.356-3.57-4.954-7.38a359 359 0 0 0-3.035-4.38c-.778-1.104-1.5-2.094-2.068-2.885a2.03 2.03 0 0 1-.388-1.21 2.03 2.03 0 0 1 .385-1.21c1.026-1.46 2.557-3.593 4.087-5.811C9.974 5.31 12.984.775 12.984.775a.243.243 0 1 0-.39-.292S9.082 4.642 5.787 8.69c-1.7 2.089-3.32 4.157-4.433 5.55a3.94 3.94 0 0 0-.815 2.389 3.94 3.94 0 0 0 .812 2.39c.601.767 1.35 1.738 2.192 2.794a344 344 0 0 0 3.355 4.14 658 658 0 0 0 5.696 6.822.244.244 0 0 0 .39-.292"})}),r=({color:e="#000000",height:l="1em",strokeWidth:i=1,width:a="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 13 33",height:l,width:a,stroke:e,strokeWidth:i,fill:e,children:t("path",{d:"M.124.775s2.356 3.57 4.954 7.379a359 359 0 0 0 3.035 4.38c.778 1.105 1.5 2.095 2.068 2.886.265.36.388.785.388 1.21s-.121.851-.385 1.21c-1.026 1.46-2.557 3.593-4.087 5.811a687 687 0 0 0-5.973 8.832.243.243 0 1 0 .39.292s3.512-4.159 6.807-8.207c1.7-2.089 3.32-4.157 4.433-5.55a3.94 3.94 0 0 0 .815-2.389 3.94 3.94 0 0 0-.812-2.39c-.601-.767-1.35-1.738-2.192-2.794a344 344 0 0 0-3.355-4.14C3.28 3.744.514.483.514.483a.244.244 0 0 0-.39.292"})}),h=({color:e="#000000",height:l="1em",strokeWidth:i=1,width:a="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 34 13",height:l,width:a,stroke:e,strokeWidth:i,fill:e,children:t("path",{d:"M.93 12.828s3.57-2.356 7.378-4.954a359 359 0 0 0 4.38-3.035c1.105-.778 2.095-1.5 2.886-2.068a2.03 2.03 0 0 1 1.21-.388c.424 0 .851.121 1.21.385 1.46 1.026 3.593 2.557 5.811 4.087a687 687 0 0 0 8.832 5.973.243.243 0 1 0 .292-.39s-4.159-3.512-8.207-6.807c-2.089-1.7-4.157-3.32-5.55-4.433a3.94 3.94 0 0 0-2.389-.815 3.94 3.94 0 0 0-2.39.812c-.767.601-1.738 1.35-2.794 2.192a344 344 0 0 0-4.14 3.355C3.9 9.672.637 12.438.637 12.438a.244.244 0 0 0 .292.39"})}),d=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 23 32",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"M11.366 18.702a1.23 1.23 0 0 0-.505.488 35 35 0 0 0-.593 1.047 225 225 0 0 0-2.757 5.209 250 250 0 0 0-2.49 5.022c-.247-.001-.46-.24-.63-.522-.402-.672-.573-1.68-.17-2.532.366-.778 1.16-1.414 2.576-1.615a.2.2 0 0 0 .187-.217.2.2 0 0 0-.217-.187c-2.297.02-3.356 1.239-3.706 2.529-.355 1.31.102 2.734.82 3.432.54.523 1.232.667 1.96.365a.73.73 0 0 0 .328-.311s1.47-2.44 2.98-5.078c1.09-1.905 2.196-3.916 2.87-5.13.218-.392.385-.701.492-.893 3.96-2.356 6.416-5.292 7.9-8.186C23.388 6.312 22.486.75 22.486.75a.569.569 0 0 0-1.056-.212L11.76 17.993a.034.034 0 0 0 .012.046.034.034 0 0 0 .046-.012l9.563-15.26c-.092 1.969-.56 5.249-2.426 8.575-1.48 2.64-3.846 5.314-7.65 7.375z"}),t("path",{d:"M10.825 20.309c.107.192.274.5.492.893.674 1.214 1.78 3.225 2.871 5.13a298 298 0 0 0 2.98 5.078.73.73 0 0 0 .327.31c.728.303 1.421.159 1.96-.364.718-.698 1.175-2.122.82-3.432-.35-1.29-1.409-2.508-3.706-2.53a.2.2 0 0 0-.217.188.2.2 0 0 0 .187.217c1.417.2 2.21.837 2.577 1.615.402.853.231 1.86-.17 2.532-.17.283-.384.52-.63.522a256 256 0 0 0-2.49-5.022 225 225 0 0 0-2.758-5.21 35 35 0 0 0-.593-1.046 1.23 1.23 0 0 0-.505-.488l.063.015c-3.805-2.061-6.17-4.735-7.65-7.375-1.867-3.326-2.335-6.606-2.427-8.577 0 .002 9.563 15.262 9.563 15.262.01.016.03.02.046.012a.034.034 0 0 0 .012-.046L1.905.538A.57.57 0 0 0 .85.75s-.902 5.562 2.077 11.373c1.483 2.894 3.94 5.83 7.9 8.186"})]}),n=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 30 31",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"m28.873 8.716-.002.012c0 .108.09.196.197.196 0 0 .189-.032.197-.227l.013-.279a2.25 2.25 0 0 0-1.327-2.132 2.3 2.3 0 0 0-.883-.21c-2.11-.076-5.566-.217-8.787-.32-2.251-.073-4.384-.122-5.86-.163a2.84 2.84 0 0 0-2.021.803 2.88 2.88 0 0 0-.872 2.022c-.023 2.207-.101 5.945-.105 9.684s.068 7.476.089 9.683a2.9 2.9 0 0 0 .87 2.041 2.9 2.9 0 0 0 2.04.82l14.646-.298a2.54 2.54 0 0 0 1.788-.775c.23-.241.414-.521.532-.826.117-.304.18-.63.171-.962l-.454-18.027a.037.037 0 0 0-.037-.036.036.036 0 0 0-.037.036l-.454 18.027a1.51 1.51 0 0 1-.468 1.041 1.46 1.46 0 0 1-1.041.396l-14.646-.298a1.13 1.13 0 0 1-.788-.35 1.113 1.113 0 0 1-.303-.789c.022-2.207.093-5.945.09-9.683-.004-3.74-.082-7.477-.107-9.684a1.13 1.13 0 0 1 .665-1.07c.139-.06.288-.102.443-.105 1.475-.041 3.608-.09 5.859-.163 3.221-.104 6.676-.244 8.787-.321a1.68 1.68 0 0 1 1.22.44 1.74 1.74 0 0 1 .57 1.22l.012.278z"}),t("path",{d:"M19.551 4.59q-.003.013-.002.029c0 .107.088.196.196.196 0 0 .188-.062.201-.288.01-.143.027-.444.048-.8a2.3 2.3 0 0 0-.593-1.658c-.408-.46-1-.74-1.662-.78-1.797-.091-4.569-.256-7.352-.37C9.13.866 7.877.83 6.71.802 5.299.77 4.02.762 3.035.747A2.97 2.97 0 0 0 .05 3.745C.093 5.57.145 8.439.235 11.49c.129 4.336.32 9.03.41 11.62a2.36 2.36 0 0 0 .743 1.647 2.286 2.286 0 0 0 1.647.62l5.578-.229a.04.04 0 0 0 .037-.037.04.04 0 0 0-.037-.038l-5.578-.229a1.7 1.7 0 0 1-1.183-.551 1.7 1.7 0 0 1-.334-.554 1.7 1.7 0 0 1-.094-.628c.091-2.592.28-7.285.41-11.621.09-3.052.142-5.921.186-7.746a1 1 0 0 1 .307-.708c.183-.18.431-.295.708-.295.985-.015 2.264-.023 3.676-.056 1.166-.028 2.42-.064 3.676-.116 2.783-.114 5.555-.279 7.352-.37.438-.027.848.112 1.155.38.326.286.554.686.589 1.152l.06.799q.001.031.008.058"})]}),w=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 32",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"M7.082 27.413c-2.997-2.7-4.606-6.354-4.818-10.09-.206-3.65.943-7.379 3.554-10.33 2.534-2.939 6.027-4.54 9.615-4.837 3.58-.296 7.28.706 10.258 3.183a14.52 14.52 0 0 1 5.212 9.584c.418 3.691-.584 7.503-3.216 10.478-2.69 3.054-5.819 4.81-9.206 5.259-3.331.442-6.9-.366-10.54-2.416a.08.08 0 0 0-.106.027.08.08 0 0 0 .027.105c3.636 2.256 7.26 3.217 10.689 2.907 3.59-.327 6.964-2.05 9.93-5.156 2.996-3.154 4.24-7.293 3.911-11.349-.326-4.047-2.237-8-5.514-10.846C23.53 1.073 19.332-.187 15.264.169 11.2.525 7.289 2.486 4.494 5.877 1.776 9.261.646 13.421 1.101 17.421a15.26 15.26 0 0 0 5.727 10.292.196.196 0 1 0 .253-.3"}),t("path",{d:"M23.464 8.283c2.038 1.915 3.092 4.467 3.189 7.059.093 2.503-.739 5.042-2.563 7.033-1.748 1.98-4.139 3.028-6.582 3.21-2.436.183-4.948-.498-6.965-2.19a9.92 9.92 0 0 1-3.56-6.547c-.287-2.533.394-5.148 2.199-7.191 1.858-2.118 4.019-3.34 6.363-3.655 2.322-.312 4.808.247 7.348 1.67a.077.077 0 0 0 .08-.132c-2.535-1.629-5.076-2.34-7.493-2.16-2.547.19-4.952 1.377-7.087 3.544-2.17 2.22-3.094 5.162-2.9 8.059.193 2.9 1.533 5.743 3.853 7.811 2.384 2.078 5.393 3.018 8.317 2.78 2.917-.237 5.731-1.643 7.744-4.074 1.932-2.424 2.749-5.393 2.408-8.25a10.78 10.78 0 0 0-4.096-7.265.196.196 0 1 0-.255.298"}),t("path",{d:"m15.073 10.534-.28-1.302a.178.178 0 1 0-.357 0l-.281 1.302a.46.46 0 1 0 .918 0M14.155 21.008l.28 1.302a.178.178 0 1 0 .357 0l.281-1.302a.46.46 0 1 0-.918 0M16.429 10.534l-.28-1.302a.178.178 0 1 0-.358 0l-.28 1.302a.46.46 0 1 0 .918 0M15.51 21.008l.281 1.302a.178.178 0 1 0 .357 0l.28-1.302a.46.46 0 1 0-.918 0M14.837 19.74s.008-1.572-.097-3.351c-.14-2.347-.45-5.026-.45-5.026a.298.298 0 1 0-.597 0s-.312 2.679-.45 5.026c-.107 1.779-.099 3.35-.099 3.35a.847.847 0 0 0 1.693.001"}),t("path",{d:"M12.064 11.352s1.821.253 3.823.466c.871.093 1.763.161 2.549.232.377.021.686.228.928.48.235.245.402.563.407.928v.005c.034.392-.05.77-.282 1.054-.263.326-.604.604-1.053.66l-3.52.55a.036.036 0 0 0-.036.037c0 .02.016.037.036.037l3.52.55c.832.103 1.598-.199 2.2-.687.64-.517.993-1.319 1.068-2.201v-.005c.011-.905-.336-1.745-.94-2.327a3.12 3.12 0 0 0-2.328-.868c-.786.071-1.678.14-2.55.232-2 .213-3.822.466-3.822.466a.196.196 0 1 0 0 .391"}),t("path",{d:"M12.066 20.569s1.99.262 4.148.478c.953.094 1.924.162 2.766.234a3.14 3.14 0 0 0 2.328-.881c.604-.584.953-1.423.942-2.328l-.001-.005c-.07-.884-.424-1.688-1.059-2.21-.603-.497-1.373-.805-2.21-.708l-3.942.58a.036.036 0 0 0-.037.036c0 .021.016.037.037.037l3.942.58c.442.05.782.322 1.045.64.23.281.32.654.289 1.045v.005c-.005.365-.172.683-.407.926-.242.25-.553.45-.927.467-.842.072-1.813.14-2.766.234-2.159.216-4.148.478-4.148.478a.196.196 0 1 0 0 .392"})]}),p=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 32 25",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"m25.972.115-.066-.001h-.066L4.83.609a.036.036 0 0 0-.037.037c0 .02.016.037.037.037l21.011.493c.402.008.759.185 1.016.453.253.264.396.625.388 1.017l-.263 13.897a1.117 1.117 0 0 1-1.14 1.095c-1.625-.019-4.094-.062-6.856-.082-1.467-.01-3.019-.015-4.57-.01-1.96.004-3.92.02-5.712.042-2.296.029-4.316.075-5.712.098a1.16 1.16 0 0 1-.831-.311 1.2 1.2 0 0 1-.382-.832L1.337 2.645a1.68 1.68 0 0 1 .44-1.214c.303-.329.73-.545 1.214-.564L3.644.84c.084-.007.13-.114.136-.183A.195.195 0 0 0 3.58.445L2.99.423a2.25 2.25 0 0 0-1.615.607 2.3 2.3 0 0 0-.732 1.615L.202 16.542a2.8 2.8 0 0 0 .791 1.998 2.83 2.83 0 0 0 1.998.858c1.396.024 3.416.07 5.712.1 1.792.022 3.752.037 5.712.042 1.551.004 3.103 0 4.57-.012 2.762-.019 5.23-.061 6.855-.081a2.88 2.88 0 0 0 2.86-2.905l-.263-13.897a2.57 2.57 0 0 0-.784-1.813 2.54 2.54 0 0 0-1.681-.717"}),t("path",{d:"m2.284 18.596-.042.329a2.892 2.892 0 0 0 1.462 2.891c.333.188.702.306 1.088.353 2.903.333 8.483 1.013 13.61 1.563 3.632.389 7.038.7 9.089.905A2.87 2.87 0 0 0 29.6 24a2.84 2.84 0 0 0 1.028-1.928l1.245-13.843a2.536 2.536 0 0 0-2.276-2.763l-1.708-.151a.461.461 0 0 0-.1.916l1.7.223c.407.054.75.273.982.575.227.294.334.679.281 1.076l-1.792 13.784a1.15 1.15 0 0 1-.445.756 1.12 1.12 0 0 1-.83.218c-2.046-.246-5.438-.682-9.068-1.09-5.125-.578-10.72-1.127-13.625-1.431a1.095 1.095 0 0 1-.984-1.206l.036-.329s-1.71-.643-1.76-.21"}),t("path",{d:"M.99 7.02h26.85V4.488H.99zM4.064 16.096s1.22-.008 2.604-.071c1.818-.083 3.907-.25 3.907-.25a.344.344 0 0 0 0-.689s-2.086-.174-3.904-.264a76 76 0 0 0-2.604-.08.677.677 0 1 0-.003 1.354M12.494 15.895l1.92-.126a.35.35 0 0 0 .001-.7l-1.92-.134a.48.48 0 0 0 0 .96"})]}),v=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 31",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"m10.895 20.624.045-.001-.004-1.354a2.209 2.209 0 0 0-2.2 2.212l.003.465a2.668 2.668 0 0 0 .786 1.882 2.64 2.64 0 0 0 1.88.768c1.845-.03 4.746-.063 7.747-.125 5.636-.114 11.62-.286 11.62-.286a.24.24 0 0 0 0-.478s-5.983-.17-11.62-.284c-3-.06-5.9-.093-7.747-.123a1.3 1.3 0 0 1-.514-.108 1.33 1.33 0 0 1-.721-.732 1.3 1.3 0 0 1-.099-.513l.003-.465a.863.863 0 0 1 .821-.858"}),t("path",{d:"m1.697 2.154 5.081.152c.379.012.726.157 1 .389.268.225.456.54.528.903l3.354 16.038c.14.645.502 1.195.985 1.593.487.399 1.11.63 1.777.64 1.766.024 4.736.079 7.496.101 1.93.016 3.759.011 5 .015a2.98 2.98 0 0 0 2.906-2.342l2.35-11.536a.728.728 0 0 0-.711-.89s-3.727.101-7.957.245c-5.544.19-11.937.447-11.937.447a.037.037 0 0 0-.037.037c0 .02.017.036.037.036 0 0 6.393.257 11.937.447 2.956.1 5.666.181 7.03.22l-2.623 10.562a1.02 1.02 0 0 1-.996.776c-1.24.003-3.068-.001-4.999.014-2.76.023-5.73.078-7.496.101a1.143 1.143 0 0 1-1.132-.85L9.144 3.401a2.4 2.4 0 0 0-.882-1.317 2.36 2.36 0 0 0-1.484-.476l-5.081.153a.197.197 0 0 0-.197.196c0 .108.088.197.197.197M14.817 25.613a2 2 0 0 1 1.33.758c.29.362.42.832.368 1.33-.035.45-.281.82-.596 1.1-.292.258-.68.401-1.102.384a1.6 1.6 0 0 1-.574-.1 1.7 1.7 0 0 1-.529-.284c-.326-.275-.586-.643-.632-1.1-.069-.516.009-.984.254-1.359.278-.425.699-.732 1.264-.849a.027.027 0 0 0 .026-.029.027.027 0 0 0-.029-.026 2.2 2.2 0 0 0-1.68.536c-.473.405-.744 1.01-.84 1.726-.077.782.208 1.504.681 2.059.3.35.696.61 1.14.772.286.104.598.149.92.153.813-.033 1.557-.36 2.059-.924.487-.547.778-1.274.716-2.06-.078-.743-.403-1.399-.945-1.831-.503-.401-1.141-.632-1.83-.55a.147.147 0 0 0 0 .294M26.342 25.613a2 2 0 0 1 1.33.758c.291.362.421.832.369 1.33-.036.45-.282.82-.597 1.1-.292.258-.68.401-1.102.384a1.6 1.6 0 0 1-.574-.1 1.7 1.7 0 0 1-.529-.284c-.326-.275-.586-.643-.631-1.1-.07-.516.008-.984.253-1.359.278-.425.7-.732 1.264-.849a.027.027 0 0 0 .027-.029.027.027 0 0 0-.03-.026 2.2 2.2 0 0 0-1.68.536c-.473.405-.744 1.01-.839 1.726-.078.782.207 1.504.68 2.059.3.35.697.61 1.14.772.286.104.598.149.92.153.814-.033 1.557-.36 2.06-.924.486-.547.778-1.274.715-2.06-.078-.743-.402-1.399-.944-1.831-.504-.401-1.142-.632-1.832-.55a.147.147 0 0 0 0 .294"}),t("path",{d:"m1.959 2.918 2.62-.254a.701.701 0 0 0 .003-1.401L1.962.999a.96.96 0 0 0-.003 1.92"})]}),m=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 31 28",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"M1.277 5.145.961 23.498c-.01.673.251 1.288.676 1.749.43.465 1.033.764 1.711.808l23.956 1.504c.392.023.78-.038 1.143-.167a2.91 2.91 0 0 0 1.914-2.689l.231-17.966a2.99 2.99 0 0 0-.822-2.081 2.98 2.98 0 0 0-2.032-.928c-2.742-.106-8.012-.323-13.115-.505-1.995-.07-3.964-.137-5.747-.196L27.384.335l.039 2.778c0 .02.016.037.037.037s.037-.016.037-.037l.097-2.899c0-.03-.013-.06-.035-.08a.11.11 0 0 0-.084-.026L1.395 2.8a.65.65 0 0 0 .047 1.297s6.402.43 13.098.841c5.097.312 10.364.605 13.102.765a1 1 0 0 1 .952 1.018l-.065 17.968a1.08 1.08 0 0 1-.328.792 1.11 1.11 0 0 1-.811.315l-23.987-.858a1.45 1.45 0 0 1-.99-.43 1.48 1.48 0 0 1-.427-1.009L1.669 5.145a.196.196 0 1 0-.392 0"}),t("path",{d:"M28.89 13.198s-3.028-.27-5.9-.469c-1.526-.105-2.996-.177-3.932-.233a1.89 1.89 0 0 0-1.37.535 1.95 1.95 0 0 0-.587 1.374c-.01.49-.03 1.105-.032 1.72 0 .617.018 1.232.025 1.72.023.542.233 1.039.605 1.376.366.332.847.555 1.379.526 1.133-.086 3.054-.204 4.906-.37 2.543-.228 4.905-.51 4.905-.51.021 0 .037-.016.037-.036a.037.037 0 0 0-.037-.037s-2.362-.28-4.906-.505c-1.851-.165-3.773-.282-4.906-.366l-.017-.088c.001-.489.014-1.105.006-1.72-.008-.616-.035-1.23-.05-1.72l-.005-.048.047-.055c.936-.055 2.406-.127 3.933-.232 2.87-.2 5.898-.47 5.898-.47a.196.196 0 1 0 0-.392"})]}),g=({color:e="#000000",height:l="1em",strokeWidth:i=1,width:a="1em"})=>t("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 28 30",height:l,width:a,stroke:e,strokeWidth:i,fill:e,children:t("path",{d:"M14.781 18.142s2.109 3.26 4.141 6.269c1.105 1.635 2.195 3.177 2.844 4.116a1.94 1.94 0 0 0 1.36.776 1.975 1.975 0 0 0 1.51-.485l1.866-1.676a2 2 0 0 0 .638-1.472 1.97 1.97 0 0 0-.658-1.444c-.883-.725-2.324-1.944-3.869-3.176-2.846-2.268-5.95-4.604-5.95-4.604a.036.036 0 0 0-.052.003.037.037 0 0 0 .002.052s2.587 2.897 5.086 5.543c1.357 1.436 2.693 2.77 3.49 3.59l-.012.032-.016.003-1.843 1.702-.019.028-.05-.003c-.732-.874-1.929-2.335-3.212-3.835-2.36-2.758-4.944-5.657-4.944-5.657a.196.196 0 1 0-.312.238M15.324 3.064c1.667 1.499 2.438 3.429 2.44 5.41.002 1.88-.726 3.794-2.124 5.398-1.328 1.597-3.184 2.473-5.1 2.672a7.9 7.9 0 0 1-2.902-.23 7.6 7.6 0 0 1-2.626-1.287 7.62 7.62 0 0 1-2.965-5.023A7.82 7.82 0 0 1 3.507 4.2C4.82 2.419 6.566 1.326 8.447.955 10.408.57 12.5.951 14.41 2.132c.017.011.04.007.051-.01a.036.036 0 0 0-.01-.051C12.568.69 10.422.147 8.36.39 6.268.638 4.273 1.705 2.69 3.547 1.06 5.456.38 7.85.573 10.17c.195 2.37 1.33 4.647 3.29 6.298a9.2 9.2 0 0 0 3.231 1.74 9 9 0 0 0 3.67.319 9.23 9.23 0 0 0 6.22-3.584c1.47-2.02 2.161-4.335 1.933-6.53-.227-2.182-1.319-4.225-3.349-5.656a.196.196 0 1 0-.245.307"})}),k=({color:l="#000000",height:i="1em",strokeWidth:a=1,width:o="1em"})=>e("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},viewBox:"0 0 33 28",height:i,width:o,stroke:l,strokeWidth:a,fill:l,children:[t("path",{d:"M634.483 1673.02h35.983v26.903h-35.983z",style:{fill:"none"},transform:"matrix(.88725 0 0 1.00132 -562.43 -1674.52)"}),t("path",{d:"M28.561 11.94a43 43 0 0 0-1.882-.981 109 109 0 0 0-4.297-1.957.243.243 0 1 0-.255.414s1.916 1.607 3.69 2.947c.658.498 1.295.944 1.783 1.275.366.25.652.422.787.509a1.087 1.087 0 0 0 1.57-.494c.072-.183.25-.602.456-1.165.187-.508.4-1.124.611-1.778.68-2.114 1.356-4.52 1.356-4.52a.243.243 0 1 0-.446-.195s-1.3 2.136-2.383 4.074a47 47 0 0 0-.99 1.87M4.392 16.409c.508.28 1.17.632 1.883.98 1.997.975 4.297 1.957 4.297 1.957a.243.243 0 1 0 .254-.414s-1.916-1.608-3.689-2.948a44 44 0 0 0-1.783-1.275c-.367-.249-.653-.421-.788-.508a1.087 1.087 0 0 0-1.57.494c-.072.183-.25.602-.456 1.165a46 46 0 0 0-.61 1.778c-.68 2.113-1.357 4.52-1.357 4.52a.243.243 0 1 0 .446.194s1.3-2.135 2.383-4.073a47 47 0 0 0 .99-1.87"}),t("path",{d:"M5.844 9.488c1.245-2.605 3.204-4.45 5.44-5.565a12 12 0 0 1 5.129-1.276c4.332-.08 8.671 2.175 10.914 6.947a.418.418 0 0 0 .768-.328C25.994 3.768 21.271.953 16.438.736A13.3 13.3 0 0 0 10.33 1.92C7.615 3.155 5.255 5.363 3.714 8.448a1.187 1.187 0 0 0 .544 1.585 1.187 1.187 0 0 0 1.586-.545M27.107 18.858c-1.245 2.606-3.203 4.451-5.44 5.566a12 12 0 0 1-5.128 1.275c-4.332.081-8.672-2.175-10.915-6.946a.418.418 0 0 0-.768.327c2.102 5.499 6.825 8.314 11.658 8.53a13.3 13.3 0 0 0 6.108-1.184c2.715-1.235 5.075-3.443 6.616-6.527a1.187 1.187 0 0 0-.545-1.586 1.187 1.187 0 0 0-1.586.545"})]});export{l as ArrowDown,i as ArrowLeft,a as ArrowRight,o as ArrowUp,w as Bitcoin,c as ChevronDown,s as ChevronLeft,r as ChevronRight,h as ChevronUp,n as Copy,p as CreditCards,d as Cut,k as Refresh,g as Search,v as ShoppingCart,m as Wallet};
package/dist/index.js CHANGED
@@ -1,12 +1,5 @@
1
1
  /**
2
2
  * This file exports all the icons for the library.
3
- *
4
- * @version 1.2.0
5
- * @author Aayush Goyal
6
- * @created 2025-06-22
7
- * @modifier Aayush Goyal
8
- * @modified 2025-07-13
9
- * @since 1.1.0
10
3
  */
11
4
  // SECTION: Imports
12
5
  // SECTION: Accessibility
@@ -20,8 +13,12 @@
20
13
  // SECTION: Arrows & Direction
21
14
  import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
22
15
  import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
23
- // import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
16
+ import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
24
17
  import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
18
+ import ChevronDown from '@/src/icons/arrows-directions/ChevronDown';
19
+ import ChevronLeft from '@/src/icons/arrows-directions/ChevronLeft';
20
+ import ChevronRight from '@/src/icons/arrows-directions/ChevronRight';
21
+ import ChevronUp from '@/src/icons/arrows-directions/ChevronUp';
25
22
  // !SECTION: Arrows & Direction
26
23
  // SECTION: Astronomy
27
24
  // !SECTION: Astronomy
@@ -69,6 +66,12 @@ import Copy from '@/src/icons/editing-creation/Copy';
69
66
  // !SECTION: Files & Folders
70
67
  // SECTION: Film & Video
71
68
  // !SECTION: Film & Video
69
+ // SECTION: Finance & Shopping
70
+ import Bitcoin from '@/src/icons/finance-shopping/Bitcoin';
71
+ import CreditCards from '@/src/icons/finance-shopping/CreditCards';
72
+ import ShoppingCart from '@/src/icons/finance-shopping/ShoppingCart';
73
+ import Wallet from '@/src/icons/finance-shopping/Wallet';
74
+ // !SECTION
72
75
  // SECTION: Food & Beverage
73
76
  // !SECTION: Food & Beverage
74
77
  // SECTION: Gaming
@@ -123,8 +126,6 @@ import Copy from '@/src/icons/editing-creation/Copy';
123
126
  // !SECTION: Science Fiction
124
127
  // SECTION: Security & Privacy
125
128
  // !SECTION: Security & Privacy
126
- // SECTION: Finance & Shopping
127
- // !SECTION: Finance & Shopping
128
129
  // SECTION: Social & People
129
130
  // !SECTION: Social & People
130
131
  // SECTION: Spinners
@@ -176,7 +177,7 @@ import Refresh from '@/src/icons/saving-data-management/Refresh';
176
177
  // SECTION: Animals
177
178
  // !SECTION: Animals
178
179
  // SECTION: Arrows & Direction
179
- export { ArrowDown, ArrowLeft, ArrowUp };
180
+ export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
180
181
  // !SECTION: Arrows & Direction
181
182
  // SECTION: Astronomy
182
183
  // !SECTION: Astronomy
@@ -224,6 +225,9 @@ export { Cut, Copy };
224
225
  // SECTION: Film & Video
225
226
  // !SECTION: Film & Video
226
227
  // SECTION: Food & Beverage
228
+ // SECTION: Finance & Shopping
229
+ export { Bitcoin, CreditCards, ShoppingCart, Wallet };
230
+ // !SECTION: Finance & Shopping
227
231
  // !SECTION: Food & Beverage
228
232
  // SECTION: Gaming
229
233
  // !SECTION: Gaming
@@ -277,8 +281,6 @@ export { Cut, Copy };
277
281
  // !SECTION: Science Fiction
278
282
  // SECTION: Security & Privacy
279
283
  // !SECTION: Security & Privacy
280
- // SECTION: Finance & Shopping
281
- // !SECTION: Finance & Shopping
282
284
  // SECTION: Social & People
283
285
  // !SECTION: Social & People
284
286
  // SECTION: Spinners
@@ -2,13 +2,6 @@
2
2
  // Import styles.
3
3
  /**
4
4
  * This function is a custom template for converting SVG icons to React components.
5
- *
6
- * @version 1.1.0
7
- * @author Aayush Goyal
8
- * @created 2025-07-13
9
- * @modifier Aayush Goyal
10
- * @modified 2025-07-15
11
- * @since 1.1.0
12
5
  */
13
6
  const iconTemplate = ({ imports, interfaces, componentName, props, jsx, exports }, { tpl }) => {
14
7
  console.log(props);
@@ -27,14 +20,7 @@ import { IconComponentProps } from "@/src/lib/types";
27
20
  // Import styles.
28
21
 
29
22
  /**
30
- * This function renders an SVG icon of an {auto-generated}.
31
- *
32
- * @version 1.0.0
33
- * @author Aayush Goyal
34
- * @created Auto-generated
35
- * @modifier
36
- * @modified
37
- * @since 1.x.0
23
+ * This function renders an SVG icon of a {auto-generated}.
38
24
  */
39
25
 
40
26
  ${interfaces};
@@ -1,13 +1,6 @@
1
1
  import { IconComponentProps } from '@/src/lib/types';
2
2
  /**
3
3
  * This function renders an SVG icon of an arrow pointing downwards.
4
- *
5
- * @version 1.2.0
6
- * @author Aayush Goyal
7
- * @created 2025-06-22
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.1.0
11
4
  */
12
5
  declare const ArrowDown: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
13
6
  export default ArrowDown;
@@ -1,13 +1,6 @@
1
1
  import { IconComponentProps } from '@/src/lib/types';
2
2
  /**
3
3
  * This function renders an SVG icon of a left arrow.
4
- *
5
- * @version 1.0.0
6
- * @author Aayush Goyal
7
- * @created 2025-07-13
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.3.0
11
4
  */
12
5
  declare const ArrowLeft: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
13
6
  export default ArrowLeft;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a left arrow.
4
+ */
5
+ declare const ArrowRight: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ArrowRight;
@@ -1,13 +1,6 @@
1
1
  import { IconComponentProps } from '@/src/lib/types';
2
2
  /**
3
3
  * This function renders an SVG icon of an arrow pointing downwards.
4
- *
5
- * @version 1.1.0
6
- * @author Aayush Goyal
7
- * @created 2025-06-22
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.1.0
11
4
  */
12
5
  declare const ArrowDown: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
13
6
  export default ArrowDown;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a downward chevron.
4
+ */
5
+ declare const ChevronDown: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ChevronDown;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a left chevron.
4
+ */
5
+ declare const ChevronLeft: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ChevronLeft;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a right chevron.
4
+ */
5
+ declare const IcNavigationChevronRight: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default IcNavigationChevronRight;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a upward chevron.
4
+ */
5
+ declare const IcNavigationChevronUp: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default IcNavigationChevronUp;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a plus.
4
+ */
5
+ declare const Add: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Add;
@@ -1,13 +1,6 @@
1
1
  import { IconComponentProps } from '@/src/lib/types';
2
2
  /**
3
3
  * This function renders an SVG icon of a copy action.
4
- *
5
- * @version 1.0.0
6
- * @author Aayush Goyal
7
- * @created 2025-07-15
8
- * @modifier
9
- * @modified
10
- * @since 1.6.0
11
4
  */
12
5
  declare const Copy: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
13
6
  export default Copy;
@@ -1,13 +1,6 @@
1
1
  import { IconComponentProps } from '@/src/lib/types';
2
2
  /**
3
3
  * This function renders an SVG icon of a cut action.
4
- *
5
- * @version 1.0.0
6
- * @author Aayush Goyal
7
- * @created 2025-07-15
8
- * @modifier
9
- * @modified
10
- * @since 1.6.0
11
4
  */
12
5
  declare const Cut: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
13
6
  export default Cut;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of an {auto-generated}.
4
+ */
5
+ declare const Edit: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Edit;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a paste action.
4
+ */
5
+ declare const Paste: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Paste;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of the bitcoin logo.
4
+ */
5
+ declare const Bitcoin: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Bitcoin;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of credit cards.
4
+ */
5
+ declare const CreditCards: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CreditCards;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a shopping cart.
4
+ */
5
+ declare const ShoppingCart: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ShoppingCart;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon of a wallet.
4
+ */
5
+ declare const Wallet: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Wallet;
@@ -2,11 +2,11 @@ import { IconComponentProps } from '@/src/lib/types';
2
2
  /**
3
3
  * This function renders an SVG icon of a search.
4
4
  *
5
- * @version 1.0.0
5
+ * @version 1.1.0
6
6
  * @author Aayush Goyal
7
7
  * @created 2025-07-15
8
- * @modifier
9
- * @modified
8
+ * @modifier Aayush Goyal
9
+ * @modified 2025-07-
10
10
  * @since 1.6.0
11
11
  */
12
12
  declare const Search: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,21 +1,24 @@
1
1
  /**
2
2
  * This file exports all the icons for the library.
3
- *
4
- * @version 1.2.0
5
- * @author Aayush Goyal
6
- * @created 2025-06-22
7
- * @modifier Aayush Goyal
8
- * @modified 2025-07-13
9
- * @since 1.1.0
10
3
  */
11
4
  import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
12
5
  import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
6
+ import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
13
7
  import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
8
+ import ChevronDown from '@/src/icons/arrows-directions/ChevronDown';
9
+ import ChevronLeft from '@/src/icons/arrows-directions/ChevronLeft';
10
+ import ChevronRight from '@/src/icons/arrows-directions/ChevronRight';
11
+ import ChevronUp from '@/src/icons/arrows-directions/ChevronUp';
14
12
  import Cut from '@/src/icons/editing-creation/Cut';
15
13
  import Copy from '@/src/icons/editing-creation/Copy';
14
+ import Bitcoin from '@/src/icons/finance-shopping/Bitcoin';
15
+ import CreditCards from '@/src/icons/finance-shopping/CreditCards';
16
+ import ShoppingCart from '@/src/icons/finance-shopping/ShoppingCart';
17
+ import Wallet from '@/src/icons/finance-shopping/Wallet';
16
18
  import Search from '@/src/icons/user-interface-controls/Search';
17
19
  import Refresh from '@/src/icons/saving-data-management/Refresh';
18
- export { ArrowDown, ArrowLeft, ArrowUp };
20
+ export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
19
21
  export { Cut, Copy };
22
+ export { Bitcoin, CreditCards, ShoppingCart, Wallet };
20
23
  export { Search };
21
24
  export { Refresh };
@@ -1,13 +1,6 @@
1
1
  import type { Template } from '@/src/lib/types';
2
2
  /**
3
3
  * This function is a custom template for converting SVG icons to React components.
4
- *
5
- * @version 1.1.0
6
- * @author Aayush Goyal
7
- * @created 2025-07-13
8
- * @modifier Aayush Goyal
9
- * @modified 2025-07-15
10
- * @since 1.1.0
11
4
  */
12
5
  declare const iconTemplate: Template;
13
6
  export default iconTemplate;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.6.0",
3
+ "version": "1.9.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
@@ -37,7 +37,7 @@
37
37
  "build:watch": "rollup -c -w",
38
38
  "prepublishOnly": "npm run build",
39
39
  "publish:npm": "npm publish --access public",
40
- "svgr": "svgr src/icons/*.svg --template src/lib/icon-template.ts --expand-props none"
40
+ "svgr": "svgr src/icons/*.svg --template src/lib/icon-template.ts --expand-props none --ignore-existing"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": "^19.1.0"
package/src/index.ts CHANGED
@@ -1,12 +1,5 @@
1
1
  /**
2
2
  * This file exports all the icons for the library.
3
- *
4
- * @version 1.2.0
5
- * @author Aayush Goyal
6
- * @created 2025-06-22
7
- * @modifier Aayush Goyal
8
- * @modified 2025-07-13
9
- * @since 1.1.0
10
3
  */
11
4
  // SECTION: Imports
12
5
  // SECTION: Accessibility
@@ -20,8 +13,12 @@
20
13
  // SECTION: Arrows & Direction
21
14
  import ArrowDown from '@/src/icons/arrows-directions/ArrowDown';
22
15
  import ArrowLeft from '@/src/icons/arrows-directions/ArrowLeft';
23
- // import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
16
+ import ArrowRight from '@/src/icons/arrows-directions/ArrowRight';
24
17
  import ArrowUp from '@/src/icons/arrows-directions/ArrowUp';
18
+ import ChevronDown from '@/src/icons/arrows-directions/ChevronDown';
19
+ import ChevronLeft from '@/src/icons/arrows-directions/ChevronLeft';
20
+ import ChevronRight from '@/src/icons/arrows-directions/ChevronRight';
21
+ import ChevronUp from '@/src/icons/arrows-directions/ChevronUp';
25
22
  // !SECTION: Arrows & Direction
26
23
  // SECTION: Astronomy
27
24
  // !SECTION: Astronomy
@@ -69,6 +66,12 @@ import Copy from '@/src/icons/editing-creation/Copy';
69
66
  // !SECTION: Files & Folders
70
67
  // SECTION: Film & Video
71
68
  // !SECTION: Film & Video
69
+ // SECTION: Finance & Shopping
70
+ import Bitcoin from '@/src/icons/finance-shopping/Bitcoin';
71
+ import CreditCards from '@/src/icons/finance-shopping/CreditCards';
72
+ import ShoppingCart from '@/src/icons/finance-shopping/ShoppingCart';
73
+ import Wallet from '@/src/icons/finance-shopping/Wallet';
74
+ // !SECTION
72
75
  // SECTION: Food & Beverage
73
76
  // !SECTION: Food & Beverage
74
77
  // SECTION: Gaming
@@ -123,8 +126,6 @@ import Copy from '@/src/icons/editing-creation/Copy';
123
126
  // !SECTION: Science Fiction
124
127
  // SECTION: Security & Privacy
125
128
  // !SECTION: Security & Privacy
126
- // SECTION: Finance & Shopping
127
- // !SECTION: Finance & Shopping
128
129
  // SECTION: Social & People
129
130
  // !SECTION: Social & People
130
131
  // SECTION: Spinners
@@ -177,7 +178,16 @@ import Refresh from '@/src/icons/saving-data-management/Refresh';
177
178
  // SECTION: Animals
178
179
  // !SECTION: Animals
179
180
  // SECTION: Arrows & Direction
180
- export { ArrowDown, ArrowLeft, ArrowUp };
181
+ export {
182
+ ArrowDown,
183
+ ArrowLeft,
184
+ ArrowRight,
185
+ ArrowUp,
186
+ ChevronDown,
187
+ ChevronLeft,
188
+ ChevronRight,
189
+ ChevronUp
190
+ };
181
191
  // !SECTION: Arrows & Direction
182
192
  // SECTION: Astronomy
183
193
  // !SECTION: Astronomy
@@ -225,6 +235,9 @@ export { Cut, Copy };
225
235
  // SECTION: Film & Video
226
236
  // !SECTION: Film & Video
227
237
  // SECTION: Food & Beverage
238
+ // SECTION: Finance & Shopping
239
+ export { Bitcoin, CreditCards, ShoppingCart, Wallet };
240
+ // !SECTION: Finance & Shopping
228
241
  // !SECTION: Food & Beverage
229
242
  // SECTION: Gaming
230
243
  // !SECTION: Gaming
@@ -278,8 +291,6 @@ export { Cut, Copy };
278
291
  // !SECTION: Science Fiction
279
292
  // SECTION: Security & Privacy
280
293
  // !SECTION: Security & Privacy
281
- // SECTION: Finance & Shopping
282
- // !SECTION: Finance & Shopping
283
294
  // SECTION: Social & People
284
295
  // !SECTION: Social & People
285
296
  // SECTION: Spinners