@particle-network/icons 0.7.0-beta.6 → 0.7.0-beta.8

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 (69) hide show
  1. package/dist/native/ChartPie1Icon.d.ts +7 -0
  2. package/dist/native/ChartPie1Icon.js +26 -0
  3. package/dist/native/ColorChartLineIcon.d.ts +7 -0
  4. package/dist/native/ColorChartLineIcon.js +41 -0
  5. package/dist/native/CompassIcon.d.ts +7 -0
  6. package/dist/native/CompassIcon.js +24 -0
  7. package/dist/native/FishIcon.d.ts +7 -0
  8. package/dist/native/FishIcon.js +27 -0
  9. package/dist/native/FloatingIcon.d.ts +7 -0
  10. package/dist/native/FloatingIcon.js +26 -0
  11. package/dist/native/HeaddressIcon.d.ts +7 -0
  12. package/dist/native/HeaddressIcon.js +27 -0
  13. package/dist/native/LayoutMultiLineIcon.d.ts +7 -0
  14. package/dist/native/LayoutMultiLineIcon.js +24 -0
  15. package/dist/native/LayoutSingleLineIcon.d.ts +7 -0
  16. package/dist/native/LayoutSingleLineIcon.js +24 -0
  17. package/dist/native/MegaphoneIcon.d.ts +7 -0
  18. package/dist/native/MegaphoneIcon.js +27 -0
  19. package/dist/native/OffchainIcon.d.ts +7 -0
  20. package/dist/native/OffchainIcon.js +24 -0
  21. package/dist/native/PercentBagIcon.d.ts +7 -0
  22. package/dist/native/PercentBagIcon.js +26 -0
  23. package/dist/native/RefreshCcwDollarIcon.d.ts +7 -0
  24. package/dist/native/RefreshCcwDollarIcon.js +26 -0
  25. package/dist/native/SnakeIcon.d.ts +7 -0
  26. package/dist/native/SnakeIcon.js +24 -0
  27. package/dist/native/Sprout1Icon.d.ts +7 -0
  28. package/dist/native/Sprout1Icon.js +27 -0
  29. package/dist/native/UserCheckIcon.d.ts +7 -0
  30. package/dist/native/UserCheckIcon.js +32 -0
  31. package/dist/native/UserSwitchIcon.d.ts +7 -0
  32. package/dist/native/UserSwitchIcon.js +26 -0
  33. package/dist/native/index.d.ts +16 -0
  34. package/dist/native/index.js +17 -1
  35. package/dist/web/ChartPie1Icon.d.ts +7 -0
  36. package/dist/web/ChartPie1Icon.js +23 -0
  37. package/dist/web/ColorChartLineIcon.d.ts +7 -0
  38. package/dist/web/ColorChartLineIcon.js +39 -0
  39. package/dist/web/CompassIcon.d.ts +7 -0
  40. package/dist/web/CompassIcon.js +21 -0
  41. package/dist/web/FishIcon.d.ts +7 -0
  42. package/dist/web/FishIcon.js +23 -0
  43. package/dist/web/FloatingIcon.d.ts +7 -0
  44. package/dist/web/FloatingIcon.js +23 -0
  45. package/dist/web/HeaddressIcon.d.ts +7 -0
  46. package/dist/web/HeaddressIcon.js +23 -0
  47. package/dist/web/LayoutMultiLineIcon.d.ts +7 -0
  48. package/dist/web/LayoutMultiLineIcon.js +21 -0
  49. package/dist/web/LayoutSingleLineIcon.d.ts +7 -0
  50. package/dist/web/LayoutSingleLineIcon.js +21 -0
  51. package/dist/web/MegaphoneIcon.d.ts +7 -0
  52. package/dist/web/MegaphoneIcon.js +23 -0
  53. package/dist/web/OffchainIcon.d.ts +7 -0
  54. package/dist/web/OffchainIcon.js +21 -0
  55. package/dist/web/PercentBagIcon.d.ts +7 -0
  56. package/dist/web/PercentBagIcon.js +23 -0
  57. package/dist/web/RefreshCcwDollarIcon.d.ts +7 -0
  58. package/dist/web/RefreshCcwDollarIcon.js +23 -0
  59. package/dist/web/SnakeIcon.d.ts +7 -0
  60. package/dist/web/SnakeIcon.js +21 -0
  61. package/dist/web/Sprout1Icon.d.ts +7 -0
  62. package/dist/web/Sprout1Icon.js +24 -0
  63. package/dist/web/UserCheckIcon.d.ts +7 -0
  64. package/dist/web/UserCheckIcon.js +29 -0
  65. package/dist/web/UserSwitchIcon.d.ts +7 -0
  66. package/dist/web/UserSwitchIcon.js +23 -0
  67. package/dist/web/index.d.ts +16 -0
  68. package/dist/web/index.js +17 -1
  69. package/package.json +2 -2
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const LayoutSingleLineIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default LayoutSingleLineIcon;
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const LayoutSingleLineIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ d: "M18.3921 16.5049C18.8458 16.551 19.2007 16.9345 19.2007 17.4004L19.1958 17.4922C19.1527 17.9156 18.8155 18.2518 18.3921 18.2949L18.3003 18.2998H5.70068L5.60791 18.2949C5.1544 18.2487 4.80049 17.8661 4.80029 17.4004C4.80029 16.9345 5.15426 16.5511 5.60791 16.5049L5.70068 16.5H18.3003L18.3921 16.5049ZM18.3921 11.1045C18.8458 11.1506 19.2006 11.5342 19.2007 12L19.1958 12.0918C19.1527 12.5152 18.8155 12.8514 18.3921 12.8945L18.3003 12.8994H5.70068L5.60791 12.8945C5.1544 12.8483 4.80049 12.4657 4.80029 12C4.80042 11.5343 5.15434 11.1507 5.60791 11.1045L5.70068 11.0996H18.3003L18.3921 11.1045ZM14.7925 5.70508C15.246 5.7514 15.6 6.13489 15.6001 6.60059L15.5952 6.69238C15.5521 7.11566 15.2157 7.45185 14.7925 7.49512L14.7007 7.5H5.70068L5.60791 7.49512C5.1544 7.44886 4.80049 7.06626 4.80029 6.60059C4.80042 6.13484 5.15434 5.75134 5.60791 5.70508L5.70068 5.7002H14.7007L14.7925 5.70508Z",
15
+ fill: "currentColor"
16
+ })
17
+ });
18
+ };
19
+ LayoutSingleLineIcon.displayName = 'LayoutSingleLineIcon|layout-single-line';
20
+ const web_LayoutSingleLineIcon = LayoutSingleLineIcon;
21
+ export { web_LayoutSingleLineIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const MegaphoneIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default MegaphoneIcon;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const MegaphoneIcon_MegaphoneIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ d: "M20.8881 4.16163C20.567 3.87103 20.1486 3.75686 19.74 3.83989L8.00566 7.56582H4.29855C3.37421 7.56582 2.625 8.36497 2.625 9.35094V13.1495C2.625 14.1355 3.37421 14.9346 4.29855 14.9346H5.37858L7.70403 19.8126C7.82079 20.0513 8.04458 20.1862 8.28783 20.1862C8.38513 20.1862 8.48243 20.1655 8.57973 20.1136C8.90082 19.9371 9.02731 19.522 8.8619 19.1795L6.83807 14.9346H8.01539L19.6719 18.4945L19.74 18.5153C19.8178 18.5256 19.8957 18.536 19.9735 18.536C20.3043 18.536 20.6254 18.4115 20.8784 18.1831C21.1995 17.8925 21.3746 17.4774 21.3746 17.0415V5.31366C21.3843 4.86738 21.2092 4.45223 20.8881 4.16163ZM3.91908 13.1495V9.35094C3.91908 9.13299 4.09422 8.95655 4.28882 8.95655H7.61646V13.575L4.28882 13.5543C4.09422 13.5439 3.91908 13.3675 3.91908 13.1495ZM20.0903 17.0311C20.0903 17.0726 20.0708 17.1038 20.0513 17.1245C20.0416 17.1349 20.0124 17.1557 19.9832 17.1557L17.9983 16.5537V9.25753C17.9983 9.07311 17.9296 8.89624 17.8074 8.76583C17.6851 8.63542 17.5193 8.56216 17.3464 8.56216C17.1735 8.56216 17.0077 8.63542 16.8854 8.76583C16.7632 8.89624 16.6945 9.07311 16.6945 9.25753V16.1489L8.89109 13.7618C8.89109 13.7307 8.91055 13.6996 8.91055 13.6684V8.68671L19.9735 5.18911C20.0027 5.18911 20.0319 5.19949 20.0416 5.22025C20.0611 5.24101 20.0805 5.26176 20.0805 5.31366V17.0311H20.0903Z",
15
+ fill: "currentColor",
16
+ stroke: "currentColor",
17
+ strokeWidth: 0.05
18
+ })
19
+ });
20
+ };
21
+ MegaphoneIcon_MegaphoneIcon.displayName = 'MegaphoneIcon|megaphone';
22
+ const MegaphoneIcon = MegaphoneIcon_MegaphoneIcon;
23
+ export { MegaphoneIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const OffchainIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default OffchainIcon;
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const OffchainIcon_OffchainIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ d: "M4.08134 2.98777C3.78312 3.26696 3.76776 3.73485 4.04681 4.03323L7.02094 7.21176L6.23028 7.21245C4.96582 7.21337 3.75321 7.71598 2.85909 8.61009C1.965 9.50422 1.46236 10.7168 1.46145 11.9813V11.9827C1.46226 13.2472 1.96503 14.4597 2.85909 15.3538C3.75333 16.2481 4.96635 16.7514 6.23097 16.7522H9.32042C9.72892 16.752 10.0606 16.4205 10.0607 16.0119C10.0607 15.6033 9.72895 15.2719 9.32042 15.2717H6.23097C5.35882 15.2709 4.52198 14.9244 3.90525 14.3077C3.28857 13.6909 2.94189 12.8542 2.94127 11.982C2.94199 11.1098 3.28923 10.2737 3.90594 9.65694C4.52284 9.04004 5.35924 8.69351 6.23166 8.69296V8.69158L7.98907 8.69227C8.11115 8.69226 8.22451 8.65903 8.32605 8.60664L10.7906 11.241L8.25562 11.2417C7.84696 11.2418 7.51536 11.5733 7.51536 11.982C7.51551 12.3905 7.84705 12.7222 8.25562 12.7222L12.1758 12.7215L19.4022 20.4479C19.6814 20.7462 20.1493 20.7615 20.4477 20.4824C20.7461 20.2032 20.7621 19.7347 20.4829 19.4363L17.9652 16.7446C19.1447 16.6859 20.2641 16.1914 21.103 15.3525C21.9971 14.4583 22.4999 13.2458 22.5006 11.9813L22.5013 11.9806C22.5005 10.7161 21.9972 9.50287 21.103 8.60871C20.2089 7.71483 18.9961 7.21191 17.7318 7.21107L17.7311 7.21176L14.6424 7.21107C14.2339 7.21116 13.9023 7.54285 13.9021 7.95132C13.9021 8.35996 14.2338 8.69148 14.6424 8.69158H17.7304C18.6026 8.69212 19.4393 9.03896 20.0562 9.65556C20.6728 10.2722 21.02 11.1086 21.0208 11.9806C21.0203 12.8529 20.6736 13.6894 20.0568 14.3063C19.44 14.9231 18.6034 15.2696 17.7311 15.2703H16.7713C16.714 15.2703 16.6584 15.278 16.6049 15.2903L13.6756 12.1594C13.6897 12.1024 13.6998 12.0434 13.6998 11.982C13.6998 11.5733 13.3682 11.2417 12.9595 11.2417L12.8166 11.241L5.12681 3.02229C4.84758 2.72408 4.37971 2.70864 4.08134 2.98777Z",
15
+ fill: "currentColor"
16
+ })
17
+ });
18
+ };
19
+ OffchainIcon_OffchainIcon.displayName = 'OffchainIcon|offchain';
20
+ const OffchainIcon = OffchainIcon_OffchainIcon;
21
+ export { OffchainIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const PercentBagIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default PercentBagIcon;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const PercentBagIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M8.13733 2.56382C10.6862 2.11938 13.2935 2.11933 15.8424 2.56382L16.3873 2.66635L16.4791 2.68393C17.0758 2.80357 17.4054 3.44816 17.1539 4.00229C16.63 5.15468 15.815 6.00465 14.8629 6.55796C15.9494 6.97677 16.9836 7.60823 17.8766 8.37632C21.1435 11.187 22.8337 17.2667 19.3932 19.8617L19.1383 20.0501C17.8402 20.9904 16.1715 21.841 12.0358 21.8412L11.3336 21.8304C8.159 21.7277 6.37255 20.9276 5.12561 20.0501L4.86585 19.8617C3.18025 18.5905 2.66029 16.3961 3.21155 13.9212C3.63582 10.8747 6.10621 7.82899 9.16467 6.5853C8.19175 6.03288 7.35754 5.17421 6.82483 4.00229C6.57334 3.44816 6.90393 2.80356 7.50061 2.68393L7.59143 2.66635L8.13733 2.56382ZM12.8522 7.26108C12.294 7.34456 11.7253 7.34754 11.1666 7.26792C9.6947 7.48717 8.2473 8.24409 7.04651 9.35581C5.60751 10.6882 4.63097 12.4281 4.40003 14.0863L4.39417 14.1341L4.38342 14.182C3.8939 16.3793 4.40761 18.0118 5.5885 18.9027C6.70792 19.7467 8.41799 20.641 12.0358 20.641C14.1576 20.6409 15.5274 20.4081 16.4908 20.0912C17.435 19.7805 18.0515 19.3695 18.6705 18.9027C19.8923 17.981 20.3253 16.3609 19.9703 14.4154C19.616 12.4746 18.5078 10.5026 17.0944 9.28647C15.8405 8.20789 14.3207 7.46815 12.8522 7.26108ZM13.2301 15.2083C13.6388 15.1477 14.0554 15.2524 14.3873 15.4984C14.7189 15.7445 14.9389 16.1124 14.9996 16.5208C15.0603 16.9295 14.9565 17.3452 14.7106 17.6771C14.4646 18.009 14.0967 18.2305 13.6881 18.2914C13.2795 18.352 12.8628 18.2472 12.5309 18.0013C12.1991 17.7553 11.9784 17.3874 11.9176 16.9789C11.8569 16.5704 11.961 16.1545 12.2067 15.8226C12.4528 15.4907 12.8214 15.2691 13.2301 15.2083ZM14.3131 10.5785C14.4482 10.5585 14.5869 10.5928 14.6969 10.6742C14.7514 10.7146 14.7977 10.7664 14.8326 10.8246C14.8674 10.8825 14.89 10.9472 14.9 11.014C14.9099 11.0809 14.9066 11.1496 14.8903 11.2152C14.8738 11.2809 14.8447 11.3434 14.8043 11.3978L9.84143 18.0931L9.84046 18.0941C9.758 18.2013 9.63651 18.2725 9.50257 18.2914C9.36864 18.3101 9.23239 18.275 9.12366 18.1947C9.01486 18.114 8.94163 17.9935 8.92053 17.8597C8.89951 17.726 8.9317 17.589 9.01038 17.4789L13.9742 10.7816C14.0558 10.672 14.1779 10.5986 14.3131 10.5785ZM13.3824 16.2298C13.2449 16.2503 13.1206 16.3253 13.0377 16.4369C12.9549 16.5486 12.9197 16.6889 12.9401 16.8265C12.9606 16.9642 13.0353 17.0884 13.1471 17.1712C13.2589 17.2539 13.3992 17.2884 13.5367 17.2679C13.6741 17.2473 13.7978 17.1735 13.8805 17.0619C13.9632 16.9501 13.9986 16.8098 13.9782 16.6722C13.9576 16.5349 13.8835 16.4113 13.7721 16.3285C13.6605 16.2457 13.5199 16.2096 13.3824 16.2298ZM10.0778 10.5794C10.28 10.5494 10.4868 10.5591 10.6852 10.6087C10.8836 10.6584 11.0707 10.7467 11.235 10.8685C11.3993 10.9903 11.5389 11.1433 11.6442 11.3187C11.7492 11.494 11.8182 11.6888 11.8483 11.891C11.8783 12.0932 11.8686 12.3 11.819 12.4984C11.7693 12.6968 11.6809 12.8839 11.5592 13.0482C11.4375 13.2124 11.2842 13.3512 11.109 13.4564C10.9336 13.5615 10.738 13.6314 10.5358 13.6615C10.1273 13.722 9.71132 13.6182 9.37952 13.3724C9.04753 13.1263 8.82704 12.7577 8.76624 12.349C8.70561 11.9403 8.80932 11.5237 9.0553 11.1917C9.30128 10.8601 9.66937 10.6403 10.0778 10.5794ZM10.2301 11.6009C10.0927 11.6215 9.9682 11.6955 9.88538 11.807C9.80266 11.9186 9.76749 12.0592 9.78772 12.1966C9.80817 12.3342 9.88314 12.4584 9.99475 12.5414C10.1064 12.624 10.2469 12.6593 10.3844 12.639C10.5219 12.6184 10.6463 12.5437 10.7291 12.432C10.8117 12.3202 10.8472 12.1798 10.8268 12.0423C10.8062 11.9049 10.7323 11.7804 10.6207 11.6976C10.509 11.6148 10.3676 11.5806 10.2301 11.6009ZM15.9157 3.79917C13.3212 3.31082 10.6586 3.31088 8.06409 3.79917C8.75446 5.07831 9.92513 5.82791 11.1793 6.05307C11.4628 6.01845 11.749 6.00034 12.0358 6.00034L12.4225 6.01108C12.5613 6.01899 12.7005 6.0311 12.8395 6.04721C14.0791 5.81379 15.2323 5.06519 15.9157 3.79917Z",
17
+ fill: "currentColor"
18
+ })
19
+ });
20
+ };
21
+ PercentBagIcon.displayName = 'PercentBagIcon|percent-bag';
22
+ const web_PercentBagIcon = PercentBagIcon;
23
+ export { web_PercentBagIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const RefreshCcwDollarIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default RefreshCcwDollarIcon;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const RefreshCcwDollarIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M20.6571 13.4316C20.6645 13.4326 20.6721 13.4344 20.6795 13.4355C20.7199 13.4419 20.7594 13.4519 20.7977 13.4648C20.8002 13.4657 20.803 13.4659 20.8055 13.4668C20.8129 13.4694 20.8198 13.4737 20.827 13.4766C20.8583 13.4888 20.8886 13.5031 20.9178 13.5195C20.9308 13.5269 20.9435 13.5349 20.9559 13.543C20.9833 13.5607 21.0092 13.5802 21.034 13.6016C21.0412 13.6078 21.0486 13.6137 21.0555 13.6201C21.0834 13.6462 21.109 13.6746 21.1326 13.7051C21.1362 13.7097 21.14 13.7141 21.1434 13.7188C21.197 13.7916 21.2392 13.8747 21.2625 13.9678L21.9774 16.8242C22.073 17.2069 21.8395 17.5947 21.4569 17.6904C21.0743 17.7858 20.6863 17.5534 20.5907 17.1709L20.3602 16.249C19.6723 17.3991 18.7659 18.4117 17.6834 19.2236C16.0454 20.4521 14.0804 21.1687 12.036 21.2822C12.0229 21.2829 12.009 21.2832 11.9959 21.2832C10.0897 21.2834 8.2292 20.6971 6.6678 19.6035C5.10642 18.5099 3.91971 16.9615 3.26839 15.1699C3.13401 14.7994 3.3247 14.3897 3.69515 14.2549C4.06578 14.1202 4.47532 14.3121 4.61019 14.6826C5.16131 16.1985 6.16606 17.5083 7.48714 18.4336C8.8025 19.3548 10.3689 19.8494 11.9744 19.8535C13.7307 19.7525 15.4184 19.1367 16.826 18.0811C17.8609 17.3049 18.7087 16.316 19.3201 15.1885L17.8856 15.5479C17.5031 15.6432 17.115 15.4108 17.0194 15.0283C16.9239 14.6458 17.1573 14.2578 17.5399 14.1621L20.3963 13.4473L20.4422 13.4404C20.4716 13.4351 20.501 13.4293 20.5311 13.4277L20.5399 13.4268C20.5793 13.4251 20.6186 13.4269 20.6571 13.4316ZM12.0887 6.62109C12.4467 6.62109 12.7371 6.91154 12.7371 7.26953V8.48438C13.1237 8.54603 13.4883 8.66503 13.7977 8.84863C14.2857 9.13841 14.6834 9.62596 14.6834 10.292C14.6834 10.6498 14.3937 10.9402 14.036 10.9404C13.678 10.9404 13.3875 10.6499 13.3875 10.292C13.3875 10.208 13.3506 10.0905 13.1356 9.96289C12.9124 9.83054 12.5535 9.73229 12.1034 9.73047C12.0985 9.7306 12.0935 9.73242 12.0887 9.73242C12.0825 9.7324 12.0763 9.73064 12.0701 9.73047C11.804 9.73049 11.582 9.73112 11.3856 9.74707C11.1832 9.76352 11.0539 9.7937 10.9715 9.8291C10.903 9.85857 10.8779 9.88631 10.8602 9.91699C10.8362 9.95875 10.7948 10.0633 10.7948 10.292C10.7948 10.4707 10.875 10.6427 11.1522 10.8584C11.4475 11.088 11.8605 11.284 12.3651 11.5195C12.8325 11.7377 13.3922 11.9956 13.826 12.333C14.2778 12.6845 14.6833 13.1934 14.6834 13.9219C14.6834 14.2975 14.6167 14.6475 14.4442 14.9463C14.2654 15.2556 14.0054 15.4545 13.7225 15.5762C13.4534 15.6919 13.164 15.7384 12.9012 15.7598C12.8477 15.7641 12.7929 15.7639 12.7381 15.7666V16.9521C12.7379 17.31 12.4476 17.5996 12.0897 17.5996C11.7319 17.5995 11.4414 17.3099 11.4412 16.9521V15.7422C11.0745 15.6965 10.717 15.6046 10.408 15.4385C10.154 15.3018 9.91979 15.108 9.75081 14.8398C9.58013 14.5688 9.49788 14.2565 9.49788 13.9219C9.49809 13.5641 9.78851 13.2745 10.1463 13.2744C10.5041 13.2745 10.7946 13.5641 10.7948 13.9219C10.7948 14.0408 10.8217 14.1075 10.8475 14.1484C10.8749 14.192 10.925 14.2446 11.0223 14.2969C11.2347 14.4109 11.5939 14.4843 12.0907 14.4844C12.3661 14.4844 12.5952 14.4841 12.7967 14.4678C12.999 14.4513 13.1284 14.4211 13.2108 14.3857C13.2792 14.3563 13.3044 14.3285 13.3221 14.2979C13.3461 14.2562 13.3875 14.1511 13.3875 13.9219C13.3874 13.7433 13.3069 13.5719 13.0301 13.3564C12.7348 13.1268 12.3219 12.9299 11.8172 12.6943C11.3499 12.4763 10.7901 12.2191 10.3563 11.8818C9.90436 11.5303 9.49788 11.0207 9.49788 10.292C9.49789 9.91654 9.56478 9.56726 9.73714 9.26855C9.91585 8.95903 10.1758 8.75946 10.4588 8.6377C10.728 8.52192 11.0183 8.47643 11.2811 8.45508C11.3334 8.45083 11.3867 8.44999 11.4403 8.44727V7.26953C11.4403 6.9116 11.7308 6.62119 12.0887 6.62109ZM12.0008 2.71973C13.9165 2.72513 15.7839 3.32248 17.3465 4.43066C18.909 5.53883 20.0907 7.10322 20.7293 8.90918C20.8608 9.28107 20.6657 9.68978 20.2938 9.82129C19.9219 9.95265 19.5142 9.75755 19.3826 9.38574C18.8423 7.85754 17.8425 6.53343 16.5203 5.5957C15.1985 4.65823 13.6184 4.15226 11.9979 4.14746C10.3545 4.14776 8.66223 4.85273 7.22054 5.97852C6.20244 6.77356 5.3392 7.75721 4.7264 8.79492L6.11116 8.4502C6.49377 8.35468 6.8817 8.58713 6.97737 8.96973C7.07273 9.35227 6.8394 9.7403 6.45687 9.83594L3.65218 10.5361C3.50425 10.5856 3.34029 10.5908 3.18245 10.5332C2.94764 10.4474 2.7853 10.251 2.73226 10.0244L2.01937 7.17285C1.92403 6.79036 2.15743 6.40234 2.53987 6.30664C2.92241 6.21127 3.31043 6.44462 3.40609 6.82715L3.65218 7.81348C4.34987 6.70551 5.2782 5.68298 6.34163 4.85254C7.96374 3.58592 9.9571 2.71977 11.9989 2.71973H12.0008Z",
17
+ fill: "currentColor"
18
+ })
19
+ });
20
+ };
21
+ RefreshCcwDollarIcon.displayName = 'RefreshCcwDollarIcon|refresh-ccw-dollar';
22
+ const web_RefreshCcwDollarIcon = RefreshCcwDollarIcon;
23
+ export { web_RefreshCcwDollarIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const SnakeIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default SnakeIcon;
@@ -0,0 +1,21 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const SnakeIcon_SnakeIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ d: "M11.2422 1.71973C12.1395 1.71986 12.985 2.08318 13.6211 2.7373C14.2495 3.38357 14.5967 4.23409 14.5967 5.12988V11.2266C14.5966 12.144 14.3158 12.8247 13.9453 13.3223H15.3486L18.2451 10.4258C18.8791 9.79202 19.91 9.79194 20.5439 10.4258C21.1775 11.0597 21.1776 12.0907 20.5439 12.7246L19.5957 13.6729C20.3175 14.1053 20.8027 14.8948 20.8027 15.7969C20.8026 16.24 20.6833 16.6555 20.4785 17.0156C21.5983 17.3393 22.4199 18.3708 22.4199 19.5938C22.4197 21.0748 21.2155 22.2792 19.7344 22.2793H4.26562C2.78449 22.2793 1.58034 21.0748 1.58008 19.5938C1.58008 18.371 2.40105 17.3394 3.52051 17.0156C3.31589 16.6556 3.19735 16.2397 3.19727 15.7969C3.19739 14.4322 4.30714 13.3223 5.67188 13.3223H7.52734C7.72613 13.1846 8.10489 12.9116 8.47559 12.5723C8.78742 12.2866 9.02711 12.0148 9.18652 11.7764C9.34952 11.5324 9.41194 11.3465 9.41211 11.2266V8.22754L9.41406 8.21777C9.41396 8.21613 9.41417 8.21382 9.41406 8.21191C9.4131 8.201 9.41078 8.18663 9.40723 8.17188C9.39962 8.14065 9.38631 8.11414 9.36914 8.0957C9.32277 8.04648 9.18574 7.9825 8.89844 7.98242C8.22414 7.98242 7.46917 7.72493 6.78027 7.28125L6.48926 7.0791C6.14244 6.82141 5.84069 6.52952 5.62012 6.23145C5.53295 6.11382 5.45945 5.99445 5.39844 5.87598H3.60156C3.21855 5.87593 2.90853 5.56556 2.9082 5.18262C2.9082 4.79939 3.21835 4.48832 3.60156 4.48828H5.34668C5.48683 4.1615 5.70838 3.84994 5.9209 3.59473C6.16891 3.29694 6.41822 3.05915 6.54688 2.94238C7.74135 1.85854 8.63196 1.71973 9 1.71973H11.2422ZM4.26562 18.2949C3.54989 18.2949 2.9668 18.878 2.9668 19.5938C2.96706 20.3093 3.55005 20.8926 4.26562 20.8926H19.7344C20.4499 20.8925 21.0329 20.3092 21.0332 19.5938C21.0332 18.8781 20.4501 18.295 19.7344 18.2949H4.26562ZM5.67188 14.709C5.07239 14.709 4.58398 15.1974 4.58398 15.7969C4.58425 16.3961 5.07255 16.8848 5.67188 16.8848H18.3281C18.9274 16.8847 19.4157 16.3961 19.416 15.7969C19.416 15.1974 18.9276 14.7091 18.3281 14.709H5.67188ZM19.5625 11.4072C19.4699 11.3147 19.3182 11.3146 19.2256 11.4072L17.3105 13.3223H17.9844L19.5625 11.7441C19.655 11.6516 19.6548 11.4999 19.5625 11.4072ZM9 3.10742C8.86101 3.10742 8.63559 3.17814 8.35254 3.33398C8.07689 3.48577 7.77068 3.70465 7.47852 3.96973C7.16132 4.25761 6.93225 4.53051 6.78418 4.74805C6.71008 4.85696 6.65749 4.95005 6.625 5.02148C6.59215 5.09383 6.58742 5.12607 6.58691 5.12695C6.58792 5.13187 6.5927 5.15586 6.6123 5.2002C6.63494 5.25118 6.67303 5.31837 6.73047 5.39746C6.81691 5.51642 6.94452 5.65859 7.12207 5.81055L7.31641 5.96582L7.52051 6.10645C8.00284 6.41769 8.51865 6.5957 8.89844 6.5957C9.52986 6.59576 10.0498 6.7774 10.4033 7.1709C10.7969 7.60938 10.808 8.12594 10.7998 8.29785V11.2266C10.7996 11.8975 10.409 12.5973 9.70996 13.3086H11.4922C11.6131 13.2835 11.9997 13.1881 12.3711 12.9346C12.9236 12.5571 13.2089 11.9933 13.209 11.2266V5.12988C13.209 4.59805 13.0025 4.09153 12.626 3.7041C12.2503 3.31779 11.7589 3.10756 11.2422 3.10742H9ZM9.09375 4.30762C9.28191 4.30761 9.46265 4.38258 9.5957 4.51562C9.66149 4.58143 9.71436 4.65917 9.75 4.74512C9.7856 4.83105 9.80365 4.92359 9.80371 5.0166C9.80371 5.10957 9.7855 5.20217 9.75 5.28809C9.71436 5.37414 9.66156 5.45269 9.5957 5.51855C9.52983 5.58443 9.45131 5.6372 9.36523 5.67285C9.27928 5.70839 9.18676 5.72656 9.09375 5.72656C9.00071 5.72652 8.90823 5.70846 8.82227 5.67285C8.73629 5.63721 8.65859 5.58435 8.59277 5.51855C8.45972 5.38551 8.38477 5.20476 8.38477 5.0166C8.38489 4.82862 8.45984 4.64856 8.59277 4.51562C8.72573 4.3827 8.90575 4.30771 9.09375 4.30762Z",
15
+ fill: "currentColor"
16
+ })
17
+ });
18
+ };
19
+ SnakeIcon_SnakeIcon.displayName = 'SnakeIcon|snake';
20
+ const SnakeIcon = SnakeIcon_SnakeIcon;
21
+ export { SnakeIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const Sprout1Icon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default Sprout1Icon;
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const Sprout1Icon_Sprout1Icon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ d: "M14 9.536V7C14 5.93913 14.4214 4.92172 15.1716 4.17157C15.9217 3.42143 16.9391 3 18 3H19.5C19.6326 3 19.7598 3.05268 19.8536 3.14645C19.9473 3.24021 20 3.36739 20 3.5V5C20 6.06087 19.5786 7.07828 18.8284 7.82843C18.0783 8.57857 17.0609 9 16 9C14.9391 9 13.9217 9.42143 13.1716 10.1716C12.4214 10.9217 12 11.9391 12 13M12 13C12 15 13 16 13 18C13 19.0819 12.6491 20.1345 12 21M12 13C12 12.0714 11.7414 11.1612 11.2533 10.3713C10.7651 9.58147 10.0666 8.94313 9.23607 8.52787C8.40554 8.1126 7.47578 7.93682 6.55097 8.02021C5.62616 8.1036 4.74285 8.44287 4 9C4 9.92856 4.25857 10.8388 4.74675 11.6287C5.23492 12.4185 5.9334 13.0569 6.76393 13.4721C7.59446 13.8874 8.52422 14.0632 9.44903 13.9798C10.3738 13.8964 11.2572 13.5571 12 13ZM5 21H19",
15
+ stroke: "currentColor",
16
+ strokeWidth: 1.45,
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round"
19
+ })
20
+ });
21
+ };
22
+ Sprout1Icon_Sprout1Icon.displayName = 'Sprout1Icon|sprout-1';
23
+ const Sprout1Icon = Sprout1Icon_Sprout1Icon;
24
+ export { Sprout1Icon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const UserCheckIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default UserCheckIcon;
@@ -0,0 +1,29 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const UserCheckIcon_UserCheckIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsxs("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 23 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: [
14
+ /*#__PURE__*/ jsx("path", {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M18.8096 12.9429C19.0204 12.6426 19.4351 12.5699 19.7354 12.7808C20.0355 12.9916 20.1073 13.4063 19.8965 13.7065L14.7646 21.0142C14.6593 21.1641 14.4968 21.2636 14.3154 21.2896C14.134 21.3155 13.9499 21.2653 13.8066 21.1509L10.3809 18.4146C10.0943 18.1855 10.0483 17.7676 10.2773 17.481C10.5064 17.1943 10.9243 17.1474 11.2109 17.3765L14.083 19.6724L18.8096 12.9429ZM6.34766 11.187C7.49767 10.6792 8.76626 10.5458 9.99023 10.8052C11.2139 11.0645 12.3324 11.7036 13.2061 12.6343C13.4569 12.9017 13.4429 13.3226 13.1758 13.5737C12.9083 13.8244 12.4883 13.8108 12.2373 13.5435C11.5433 12.8041 10.6643 12.3062 9.71484 12.105C8.76594 11.9039 7.78163 12.0069 6.88477 12.4028C5.98721 12.7993 5.21223 13.4742 4.66406 14.3481C4.11578 15.2226 3.82025 16.2555 3.81934 17.3149V18.6431H6.26953C6.63607 18.6434 6.93346 18.9405 6.93359 19.3071C6.93352 19.6738 6.63611 19.9709 6.26953 19.9712H3.15527C2.78842 19.9712 2.49129 19.674 2.49121 19.3071V17.313C2.49242 16.0094 2.85564 14.7319 3.53906 13.6421C4.22282 12.552 5.19828 11.6947 6.34766 11.187ZM8.76074 2.6958C10.715 2.69586 12.2273 4.37246 12.2275 6.34912C12.2275 8.32598 10.7152 10.0034 8.76074 10.0034C6.80638 10.0033 5.29395 8.32593 5.29395 6.34912C5.29418 4.37251 6.80653 2.69594 8.76074 2.6958ZM8.76074 4.02393C7.61976 4.02407 6.6223 5.02426 6.62207 6.34912C6.62207 7.6742 7.61963 8.67417 8.76074 8.67432C9.90191 8.67425 10.8994 7.67426 10.8994 6.34912C10.8992 5.02421 9.90178 4.02399 8.76074 4.02393Z",
18
+ fill: "currentColor"
19
+ }),
20
+ /*#__PURE__*/ jsx("path", {
21
+ d: "M18.8096 12.9429L18.8488 12.9704L18.8488 12.9704L18.8096 12.9429ZM19.7354 12.7808L19.7629 12.7415L19.7629 12.7415L19.7354 12.7808ZM19.8965 13.7065L19.8572 13.679V13.679L19.8965 13.7065ZM14.7646 21.0142L14.8039 21.0417L14.8039 21.0417L14.7646 21.0142ZM14.3154 21.2896L14.3222 21.337V21.337L14.3154 21.2896ZM13.8066 21.1509L13.8366 21.1134L13.8366 21.1134L13.8066 21.1509ZM10.3809 18.4146L10.3509 18.452L10.3509 18.452L10.3809 18.4146ZM10.2773 17.481L10.2399 17.451L10.2399 17.451L10.2773 17.481ZM11.2109 17.3765L11.2409 17.339L11.2409 17.339L11.2109 17.3765ZM14.083 19.6724L14.053 19.7098C14.0634 19.7181 14.0767 19.7217 14.0898 19.7199C14.1029 19.718 14.1147 19.7108 14.1223 19.6999L14.083 19.6724ZM6.34766 11.187L6.32828 11.1431L6.32827 11.1431L6.34766 11.187ZM9.99023 10.8052L10.0002 10.7582H10.0002L9.99023 10.8052ZM13.2061 12.6343L13.241 12.6014L13.241 12.6014L13.2061 12.6343ZM13.1758 13.5737L13.2086 13.6087L13.2086 13.6087L13.1758 13.5737ZM12.2373 13.5435L12.2023 13.5763L12.2023 13.5763L12.2373 13.5435ZM9.71484 12.105L9.72479 12.058L9.72479 12.058L9.71484 12.105ZM6.88477 12.4028L6.86539 12.3589L6.86538 12.3589L6.88477 12.4028ZM4.66406 14.3481L4.62342 14.3227L4.62341 14.3227L4.66406 14.3481ZM3.81934 17.3149L3.77136 17.3149V17.3149H3.81934ZM3.81934 18.6431H3.77136C3.77136 18.6696 3.79284 18.691 3.81934 18.691V18.6431ZM6.26953 18.6431L6.26957 18.5951H6.26953V18.6431ZM6.93359 19.3071L6.98157 19.3071V19.3071L6.93359 19.3071ZM6.26953 19.9712V20.0192H6.26957L6.26953 19.9712ZM2.49121 19.3071H2.44323V19.3071L2.49121 19.3071ZM2.49121 17.313L2.44323 17.3129V17.313H2.49121ZM3.53906 13.6421L3.49842 13.6166L3.49841 13.6166L3.53906 13.6421ZM8.76074 2.6958L8.76074 2.64782H8.76074L8.76074 2.6958ZM12.2275 6.34912H12.2755V6.34912L12.2275 6.34912ZM8.76074 10.0034L8.76074 10.0514H8.76074L8.76074 10.0034ZM5.29395 6.34912L5.24597 6.34912V6.34912H5.29395ZM8.76074 4.02393L8.76075 3.97595H8.76074L8.76074 4.02393ZM6.62207 6.34912L6.57409 6.34911V6.34912H6.62207ZM8.76074 8.67432L8.76074 8.7223H8.76075L8.76074 8.67432ZM10.8994 6.34912H10.9474V6.34911L10.8994 6.34912ZM18.8096 12.9429L18.8488 12.9704C19.0445 12.6919 19.4292 12.6244 19.7078 12.82L19.7354 12.7808L19.7629 12.7415C19.441 12.5154 18.9964 12.5934 18.7703 12.9153L18.8096 12.9429ZM19.7354 12.7808L19.7078 12.82C19.9862 13.0156 20.0529 13.4003 19.8572 13.679L19.8965 13.7065L19.9357 13.7341C20.1618 13.4123 20.0849 12.9677 19.7629 12.7415L19.7354 12.7808ZM19.8965 13.7065L19.8572 13.679L14.7254 20.9866L14.7646 21.0142L14.8039 21.0417L19.9357 13.7341L19.8965 13.7065ZM14.7646 21.0142L14.7254 20.9866C14.6277 21.1256 14.4769 21.218 14.3086 21.2421L14.3154 21.2896L14.3222 21.337C14.5167 21.3092 14.6909 21.2025 14.8039 21.0417L14.7646 21.0142ZM14.3154 21.2896L14.3086 21.2421C14.1403 21.2662 13.9695 21.2196 13.8366 21.1134L13.8066 21.1509L13.7767 21.1884C13.9302 21.3111 14.1276 21.3649 14.3222 21.337L14.3154 21.2896ZM13.8066 21.1509L13.8366 21.1134L10.4108 18.3771L10.3809 18.4146L10.3509 18.452L13.7767 21.1884L13.8066 21.1509ZM10.3809 18.4146L10.4108 18.3771C10.145 18.1646 10.1023 17.7769 10.3148 17.5109L10.2773 17.481L10.2399 17.451C9.99439 17.7582 10.0436 18.2064 10.3509 18.452L10.3809 18.4146ZM10.2773 17.481L10.3148 17.5109C10.5273 17.245 10.9151 17.2015 11.181 17.4139L11.2109 17.3765L11.2409 17.339C10.9335 17.0934 10.4854 17.1437 10.2399 17.451L10.2773 17.481ZM11.2109 17.3765L11.181 17.4139L14.053 19.7098L14.083 19.6724L14.113 19.6349L11.2409 17.339L11.2109 17.3765ZM14.083 19.6724L14.1223 19.6999L18.8488 12.9704L18.8096 12.9429L18.7703 12.9153L14.0437 19.6448L14.083 19.6724ZM6.34766 11.187L6.36704 11.2309C7.5079 10.7271 8.76623 10.5949 9.98029 10.8521L9.99023 10.8052L10.0002 10.7582C8.76629 10.4968 7.48744 10.6313 6.32828 11.1431L6.34766 11.187ZM9.99023 10.8052L9.98029 10.8521C11.1941 11.1094 12.3039 11.7433 13.1711 12.6671L13.2061 12.6343L13.241 12.6014C12.3609 11.6638 11.2337 11.0197 10.0002 10.7582L9.99023 10.8052ZM13.2061 12.6343L13.1711 12.6671C13.4037 12.9151 13.3909 13.3057 13.1429 13.5388L13.1758 13.5737L13.2086 13.6087C13.495 13.3395 13.5101 12.8882 13.241 12.6014L13.2061 12.6343ZM13.1758 13.5737L13.143 13.5387C12.8948 13.7712 12.5051 13.7586 12.2723 13.5106L12.2373 13.5435L12.2023 13.5763C12.4714 13.8629 12.9217 13.8775 13.2086 13.6087L13.1758 13.5737ZM12.2373 13.5435L12.2723 13.5106C11.5718 12.7643 10.6841 12.2614 9.72479 12.058L9.71484 12.105L9.70489 12.1519C10.6444 12.3511 11.5148 12.8439 12.2023 13.5763L12.2373 13.5435ZM9.71484 12.105L9.72479 12.058C8.76596 11.8549 7.77139 11.9589 6.86539 12.3589L6.88477 12.4028L6.90414 12.4467C7.79187 12.0548 8.76593 11.953 9.7049 12.1519L9.71484 12.105ZM6.88477 12.4028L6.86538 12.3589C5.95873 12.7594 5.17648 13.4409 4.62342 14.3227L4.66406 14.3481L4.70471 14.3736C5.24798 13.5075 6.01569 12.8391 6.90415 12.4467L6.88477 12.4028ZM4.66406 14.3481L4.62341 14.3227C4.07025 15.2048 3.77228 16.2466 3.77136 17.3149L3.81934 17.3149L3.86732 17.315C3.86823 16.2643 4.16131 15.2403 4.70471 14.3736L4.66406 14.3481ZM3.81934 17.3149H3.77136V18.6431H3.81934H3.86732V17.3149H3.81934ZM3.81934 18.6431V18.691H6.26953V18.6431V18.5951H3.81934V18.6431ZM6.26953 18.6431L6.26949 18.691C6.60959 18.6913 6.88549 18.9671 6.88561 19.3071L6.93359 19.3071L6.98157 19.3071C6.98143 18.914 6.66256 18.5954 6.26957 18.5951L6.26953 18.6431ZM6.93359 19.3071L6.88561 19.3071C6.88554 19.6472 6.60963 19.9229 6.26949 19.9232L6.26953 19.9712L6.26957 20.0192C6.66258 20.0188 6.98149 19.7003 6.98157 19.3071L6.93359 19.3071ZM6.26953 19.9712V19.9232H3.15527V19.9712V20.0192H6.26953V19.9712ZM3.15527 19.9712V19.9232C2.81493 19.9232 2.53926 19.6475 2.53919 19.3071L2.49121 19.3071L2.44323 19.3071C2.44331 19.7004 2.76192 20.0192 3.15527 20.0192V19.9712ZM2.49121 19.3071H2.53919V17.313H2.49121H2.44323V19.3071H2.49121ZM2.49121 17.313L2.53919 17.313C2.54039 16.0182 2.90117 14.7496 3.57971 13.6676L3.53906 13.6421L3.49841 13.6166C2.81012 14.7142 2.44445 16.0005 2.44323 17.3129L2.49121 17.313ZM3.53906 13.6421L3.57971 13.6676C4.25858 12.5852 5.22678 11.7345 6.36704 11.2309L6.34766 11.187L6.32827 11.1431C5.16978 11.6548 4.18706 12.5187 3.49842 13.6166L3.53906 13.6421ZM8.76074 2.6958L8.76074 2.74378C10.6855 2.74384 12.1793 4.39583 12.1796 6.34913L12.2275 6.34912L12.2755 6.34912C12.2753 4.34909 10.7445 2.64788 8.76074 2.64782L8.76074 2.6958ZM12.2275 6.34912H12.1796C12.1796 8.30262 10.6856 9.95538 8.76074 9.95544L8.76074 10.0034L8.76074 10.0514C10.7447 10.0513 12.2755 8.34933 12.2755 6.34912H12.2275ZM8.76074 10.0034L8.76075 9.95544C6.83592 9.9553 5.34193 8.30258 5.34193 6.34912H5.29395H5.24597C5.24597 8.34929 6.77684 10.0513 8.76074 10.0514L8.76074 10.0034ZM5.29395 6.34912L5.34193 6.34913C5.34215 4.39588 6.83605 2.74392 8.76075 2.74378L8.76074 2.6958L8.76074 2.64782C6.777 2.64796 5.2462 4.34913 5.24597 6.34912L5.29395 6.34912ZM8.76074 4.02393L8.76074 3.97595C7.59065 3.97609 6.57432 5.00045 6.57409 6.34911L6.62207 6.34912L6.67005 6.34913C6.67027 5.04807 7.64887 4.07205 8.76075 4.07191L8.76074 4.02393ZM6.62207 6.34912H6.57409C6.57409 7.69802 7.59053 8.72215 8.76074 8.7223L8.76074 8.67432L8.76075 8.62634C7.64873 8.6262 6.67005 7.65039 6.67005 6.34912H6.62207ZM8.76074 8.67432L8.76075 8.7223C9.93101 8.72223 10.9474 7.69807 10.9474 6.34912H10.8994H10.8514C10.8514 7.65044 9.8728 8.62627 8.76074 8.62634L8.76074 8.67432ZM10.8994 6.34912L10.9474 6.34911C10.9472 5.0004 9.93089 3.97601 8.76075 3.97595L8.76074 4.02393L8.76074 4.07191C9.87267 4.07197 10.8512 5.04802 10.8514 6.34913L10.8994 6.34912Z",
22
+ fill: "currentColor"
23
+ })
24
+ ]
25
+ });
26
+ };
27
+ UserCheckIcon_UserCheckIcon.displayName = 'UserCheckIcon|user-check';
28
+ const UserCheckIcon = UserCheckIcon_UserCheckIcon;
29
+ export { UserCheckIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const UserSwitchIcon: {
4
+ <T extends string = IconColor>({ size, width, height, className, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default UserSwitchIcon;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useWebColor } from "../core/index.js";
4
+ const UserSwitchIcon_UserSwitchIcon = ({ size = 16, width = size, height = size, className, color = 'currentColor', ...props })=>{
5
+ const clsx = useWebColor(color, className);
6
+ return /*#__PURE__*/ jsx("svg", {
7
+ width: width,
8
+ height: height,
9
+ className: clsx,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ ...props,
13
+ children: /*#__PURE__*/ jsx("path", {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M13.1079 17.8906C13.2413 17.8907 13.3706 17.931 13.48 18.0039L13.5825 18.0879L13.6665 18.1895C13.7395 18.2989 13.7788 18.429 13.7788 18.5625C13.7788 18.7405 13.7083 18.9112 13.5825 19.0371C13.4567 19.163 13.2859 19.2333 13.1079 19.2334H8.79443L9.17139 19.6797L9.17627 19.6855L9.24854 19.7939C9.30977 19.9089 9.33688 20.0403 9.32471 20.1719C9.3084 20.3472 9.22389 20.5094 9.08936 20.623C8.95477 20.7367 8.7806 20.7927 8.60498 20.7793C8.42947 20.7659 8.2657 20.6843 8.1499 20.5518L8.14502 20.5459L6.83643 18.9951C6.75415 18.8974 6.70103 18.778 6.68408 18.6514C6.66719 18.5247 6.68687 18.3952 6.74072 18.2793L6.7876 18.1963C6.83956 18.1165 6.9079 18.0477 6.98877 17.9961C7.09655 17.9274 7.22227 17.8907 7.3501 17.8906H13.1079ZM10.229 3.21875C13.075 3.21923 15.3821 5.52602 15.3823 8.37207C15.3822 10.1441 14.4874 11.7072 13.1255 12.6348C14.0997 13.024 14.9962 13.6081 15.7524 14.3643C17.217 15.8291 18.0404 17.8163 18.0405 19.8877C18.0404 20.2878 17.715 20.613 17.3149 20.6133C16.9147 20.6132 16.5905 20.2879 16.5903 19.8877C16.5903 18.2008 15.9197 16.5826 14.7271 15.3896C13.5342 14.1968 11.9159 13.5266 10.229 13.5264C8.54189 13.5264 6.92298 14.1967 5.72998 15.3896C4.53712 16.5826 3.86678 18.2007 3.8667 19.8877C3.86657 20.2878 3.54219 20.613 3.14209 20.6133C2.74176 20.6133 2.41664 20.288 2.4165 19.8877C2.41658 17.8161 3.2398 15.8291 4.70459 14.3643C5.46087 13.608 6.35721 13.0239 7.33154 12.6348C5.96953 11.7072 5.07479 10.1442 5.07471 8.37207C5.0749 5.52572 7.38261 3.21875 10.229 3.21875ZM16.2925 4.19336C16.4968 3.84906 16.9423 3.73619 17.2866 3.94043C18.0149 4.37258 18.626 4.97788 19.0649 5.70215C19.5038 6.42648 19.7573 7.2481 19.8032 8.09375C19.849 8.93961 19.6857 9.78408 19.3276 10.5518C19.096 11.0483 18.7859 11.5016 18.4136 11.8984C20.0907 13.4746 21.5834 16.1322 21.5835 19.002C21.5834 19.4021 21.258 19.7273 20.8579 19.7275C20.4578 19.7273 20.1334 19.4021 20.1333 19.002C20.1331 16.2777 18.4966 13.7086 16.8804 12.4961C16.6979 12.3593 16.5905 12.1441 16.5903 11.916C16.5903 11.6878 16.6979 11.4729 16.8804 11.3359C17.3672 10.9706 17.7568 10.4901 18.0142 9.93848C18.2713 9.38702 18.3888 8.78043 18.356 8.17285C18.323 7.56504 18.1401 6.97374 17.8247 6.45312C17.5093 5.9327 17.0698 5.49802 16.5464 5.1875C16.2021 4.98322 16.0882 4.53772 16.2925 4.19336ZM11.9829 14.5898C12.1084 14.6247 12.2221 14.6964 12.3091 14.7959L12.314 14.8008L13.6226 16.3516C13.6843 16.4247 13.7294 16.5101 13.7554 16.6016L13.7749 16.6953L13.7808 16.791C13.7798 16.8861 13.7586 16.9805 13.7183 17.0674C13.6644 17.1833 13.5789 17.2818 13.4712 17.3506C13.3634 17.4194 13.2378 17.456 13.1099 17.4561H7.35205C7.17401 17.456 7.00333 17.3847 6.87744 17.2588C6.78313 17.1644 6.71964 17.045 6.69385 16.916L6.68018 16.7842L6.69385 16.6523C6.71974 16.5236 6.78318 16.4038 6.87744 16.3096C7.00331 16.1839 7.17415 16.1133 7.35205 16.1133H11.6646L11.2876 15.667L11.2827 15.6621L11.2837 15.6611C11.1725 15.5247 11.119 15.3501 11.1353 15.1748L11.1597 15.0469C11.1966 14.922 11.2696 14.8089 11.3706 14.7236L11.478 14.6494C11.5917 14.5864 11.7225 14.5575 11.854 14.5674L11.9829 14.5898ZM10.229 4.66797C8.18342 4.66797 6.52509 6.32653 6.5249 8.37207C6.52503 10.3536 8.08075 11.9719 10.0376 12.0713L10.229 12.0762L10.4194 12.0713C12.3761 11.9717 13.933 10.3535 13.9331 8.37207C13.9329 6.32683 12.2742 4.66845 10.229 4.66797Z",
17
+ fill: "currentColor"
18
+ })
19
+ });
20
+ };
21
+ UserSwitchIcon_UserSwitchIcon.displayName = 'UserSwitchIcon|user-switch';
22
+ const UserSwitchIcon = UserSwitchIcon_UserSwitchIcon;
23
+ export { UserSwitchIcon as default };
@@ -52,6 +52,7 @@ export { default as ChartLine2Icon } from './ChartLine2Icon';
52
52
  export { default as ChartLineCheckedIcon } from './ChartLineCheckedIcon';
53
53
  export { default as ChartLineRectangleIcon } from './ChartLineRectangleIcon';
54
54
  export { default as ChartLineIcon } from './ChartLineIcon';
55
+ export { default as ChartPie1Icon } from './ChartPie1Icon';
55
56
  export { default as ChartPieIcon } from './ChartPieIcon';
56
57
  export { default as ChartUpIcon } from './ChartUpIcon';
57
58
  export { default as CheckIcon } from './CheckIcon';
@@ -92,6 +93,7 @@ export { default as ClockIcon } from './ClockIcon';
92
93
  export { default as CloseIcon } from './CloseIcon';
93
94
  export { default as ClothesIcon } from './ClothesIcon';
94
95
  export { default as ColorBullxIcon } from './ColorBullxIcon';
96
+ export { default as ColorChartLineIcon } from './ColorChartLineIcon';
95
97
  export { default as ColorCoingeckoIcon } from './ColorCoingeckoIcon';
96
98
  export { default as ColorDiceIcon } from './ColorDiceIcon';
97
99
  export { default as ColorGmgnIcon } from './ColorGmgnIcon';
@@ -112,6 +114,7 @@ export { default as ColorTruthSocialIcon } from './ColorTruthSocialIcon';
112
114
  export { default as ColorTwitchAppIcon } from './ColorTwitchAppIcon';
113
115
  export { default as ColorYoutubeIcon } from './ColorYoutubeIcon';
114
116
  export { default as ColumnsIcon } from './ColumnsIcon';
117
+ export { default as CompassIcon } from './CompassIcon';
115
118
  export { default as ConceptIcon } from './ConceptIcon';
116
119
  export { default as ConvertFlashIcon } from './ConvertFlashIcon';
117
120
  export { default as ConvertIcon } from './ConvertIcon';
@@ -148,11 +151,13 @@ export { default as FaqIcon } from './FaqIcon';
148
151
  export { default as FileTextIcon } from './FileTextIcon';
149
152
  export { default as FilterIcon } from './FilterIcon';
150
153
  export { default as FingerprintIcon } from './FingerprintIcon';
154
+ export { default as FishIcon } from './FishIcon';
151
155
  export { default as FlagIcon } from './FlagIcon';
152
156
  export { default as FlameFilledIcon } from './FlameFilledIcon';
153
157
  export { default as FlameIcon } from './FlameIcon';
154
158
  export { default as Flash1Icon } from './Flash1Icon';
155
159
  export { default as FlashIcon } from './FlashIcon';
160
+ export { default as FloatingIcon } from './FloatingIcon';
156
161
  export { default as FolderIcon } from './FolderIcon';
157
162
  export { default as FullscreenIcon } from './FullscreenIcon';
158
163
  export { default as GasFeeIcon } from './GasFeeIcon';
@@ -160,6 +165,7 @@ export { default as GhostIcon } from './GhostIcon';
160
165
  export { default as GiftIcon } from './GiftIcon';
161
166
  export { default as GithubIcon } from './GithubIcon';
162
167
  export { default as GrassIcon } from './GrassIcon';
168
+ export { default as HeaddressIcon } from './HeaddressIcon';
163
169
  export { default as HeadsetIcon } from './HeadsetIcon';
164
170
  export { default as HeartIcon } from './HeartIcon';
165
171
  export { default as HexagonDollarIcon } from './HexagonDollarIcon';
@@ -180,7 +186,9 @@ export { default as LayersIcon } from './LayersIcon';
180
186
  export { default as LayoutBottomIcon } from './LayoutBottomIcon';
181
187
  export { default as LayoutFloatIcon } from './LayoutFloatIcon';
182
188
  export { default as LayoutLeftIcon } from './LayoutLeftIcon';
189
+ export { default as LayoutMultiLineIcon } from './LayoutMultiLineIcon';
183
190
  export { default as LayoutRightIcon } from './LayoutRightIcon';
191
+ export { default as LayoutSingleLineIcon } from './LayoutSingleLineIcon';
184
192
  export { default as LayoutSplitIcon } from './LayoutSplitIcon';
185
193
  export { default as LayoutIcon } from './LayoutIcon';
186
194
  export { default as LeaderboardIcon } from './LeaderboardIcon';
@@ -205,6 +213,7 @@ export { default as MailIcon } from './MailIcon';
205
213
  export { default as ManualIcon } from './ManualIcon';
206
214
  export { default as MarketStatsIcon } from './MarketStatsIcon';
207
215
  export { default as MarketTrendIcon } from './MarketTrendIcon';
216
+ export { default as MegaphoneIcon } from './MegaphoneIcon';
208
217
  export { default as MenuIcon } from './MenuIcon';
209
218
  export { default as MoonIcon } from './MoonIcon';
210
219
  export { default as MoveUpRightIcon } from './MoveUpRightIcon';
@@ -220,6 +229,7 @@ export { default as NavStockUxIcon } from './NavStockUxIcon';
220
229
  export { default as NavTrackerIcon } from './NavTrackerIcon';
221
230
  export { default as NavTradeIcon } from './NavTradeIcon';
222
231
  export { default as NavWalletIcon } from './NavWalletIcon';
232
+ export { default as OffchainIcon } from './OffchainIcon';
223
233
  export { default as OrderIcon } from './OrderIcon';
224
234
  export { default as OrientationSwitchIcon } from './OrientationSwitchIcon';
225
235
  export { default as OwnerAddressIcon } from './OwnerAddressIcon';
@@ -228,6 +238,7 @@ export { default as ParticleTwitterIcon } from './ParticleTwitterIcon';
228
238
  export { default as PartyPopperIcon } from './PartyPopperIcon';
229
239
  export { default as PasswordIcon } from './PasswordIcon';
230
240
  export { default as PauseIcon } from './PauseIcon';
241
+ export { default as PercentBagIcon } from './PercentBagIcon';
231
242
  export { default as PercentIcon } from './PercentIcon';
232
243
  export { default as PinOnIcon } from './PinOnIcon';
233
244
  export { default as PinIcon } from './PinIcon';
@@ -251,6 +262,7 @@ export { default as RecordBuyIcon } from './RecordBuyIcon';
251
262
  export { default as RecordSellIcon } from './RecordSellIcon';
252
263
  export { default as RedPacketIcon } from './RedPacketIcon';
253
264
  export { default as RedditIcon } from './RedditIcon';
265
+ export { default as RefreshCcwDollarIcon } from './RefreshCcwDollarIcon';
254
266
  export { default as RefreshCcwIcon } from './RefreshCcwIcon';
255
267
  export { default as RefreshCwIcon } from './RefreshCwIcon';
256
268
  export { default as RocketIcon } from './RocketIcon';
@@ -283,6 +295,7 @@ export { default as SlidersHorizontalIcon } from './SlidersHorizontalIcon';
283
295
  export { default as SlidersVerticalIcon } from './SlidersVerticalIcon';
284
296
  export { default as SlippageIcon } from './SlippageIcon';
285
297
  export { default as SmartphoneIcon } from './SmartphoneIcon';
298
+ export { default as SnakeIcon } from './SnakeIcon';
286
299
  export { default as SnowflakeIcon } from './SnowflakeIcon';
287
300
  export { default as SortAscIcon } from './SortAscIcon';
288
301
  export { default as SortDescIcon } from './SortDescIcon';
@@ -292,6 +305,7 @@ export { default as SortUp1Icon } from './SortUp1Icon';
292
305
  export { default as SortUpIcon } from './SortUpIcon';
293
306
  export { default as SortIcon } from './SortIcon';
294
307
  export { default as SpaceIcon } from './SpaceIcon';
308
+ export { default as Sprout1Icon } from './Sprout1Icon';
295
309
  export { default as SproutIcon } from './SproutIcon';
296
310
  export { default as StakeIcon } from './StakeIcon';
297
311
  export { default as StarOnIcon } from './StarOnIcon';
@@ -337,10 +351,12 @@ export { default as UnlinkIcon } from './UnlinkIcon';
337
351
  export { default as UpdateIcon } from './UpdateIcon';
338
352
  export { default as UploadIcon } from './UploadIcon';
339
353
  export { default as UserBanIcon } from './UserBanIcon';
354
+ export { default as UserCheckIcon } from './UserCheckIcon';
340
355
  export { default as UserFollowIcon } from './UserFollowIcon';
341
356
  export { default as UserPasskeyIcon } from './UserPasskeyIcon';
342
357
  export { default as UserPasskeysIcon } from './UserPasskeysIcon';
343
358
  export { default as UserStarIcon } from './UserStarIcon';
359
+ export { default as UserSwitchIcon } from './UserSwitchIcon';
344
360
  export { default as UserTieIcon } from './UserTieIcon';
345
361
  export { default as UserIcon } from './UserIcon';
346
362
  export { default as Users1Icon } from './Users1Icon';