@particle-network/icons 0.0.16 → 0.0.18

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 (57) hide show
  1. package/dist/native/AppLockIcon.d.ts +7 -0
  2. package/dist/native/AppLockIcon.js +41 -0
  3. package/dist/native/CexWalletIcon.d.ts +7 -0
  4. package/dist/native/CexWalletIcon.js +26 -0
  5. package/dist/native/ChartColorSwitchIcon.js +1 -1
  6. package/dist/native/ConceptIcon.d.ts +7 -0
  7. package/dist/native/ConceptIcon.js +25 -0
  8. package/dist/native/CreatorTeamIcon.d.ts +7 -0
  9. package/dist/native/CreatorTeamIcon.js +26 -0
  10. package/dist/native/DiamondHandIcon.d.ts +7 -0
  11. package/dist/native/DiamondHandIcon.js +26 -0
  12. package/dist/native/FaqIcon.js +6 -16
  13. package/dist/native/ImageFallbackIcon.d.ts +7 -0
  14. package/dist/native/ImageFallbackIcon.js +26 -0
  15. package/dist/native/KolInfluencersIcon.d.ts +7 -0
  16. package/dist/native/KolInfluencersIcon.js +23 -0
  17. package/dist/native/LanguagesIcon.js +1 -1
  18. package/dist/native/LiquidityPoolIcon.d.ts +7 -0
  19. package/dist/native/LiquidityPoolIcon.js +23 -0
  20. package/dist/native/ManualIcon.js +1 -1
  21. package/dist/native/PaperHandIcon.d.ts +7 -0
  22. package/dist/native/PaperHandIcon.js +29 -0
  23. package/dist/native/TestnetsIcon.d.ts +7 -0
  24. package/dist/native/TestnetsIcon.js +23 -0
  25. package/dist/native/Top10HoldersIcon.d.ts +7 -0
  26. package/dist/native/Top10HoldersIcon.js +23 -0
  27. package/dist/native/index.d.ts +11 -0
  28. package/dist/native/index.js +12 -1
  29. package/dist/web/AppLockIcon.d.ts +7 -0
  30. package/dist/web/AppLockIcon.js +40 -0
  31. package/dist/web/CexWalletIcon.d.ts +7 -0
  32. package/dist/web/CexWalletIcon.js +25 -0
  33. package/dist/web/ChartColorSwitchIcon.js +1 -1
  34. package/dist/web/ConceptIcon.d.ts +7 -0
  35. package/dist/web/ConceptIcon.js +24 -0
  36. package/dist/web/CreatorTeamIcon.d.ts +7 -0
  37. package/dist/web/CreatorTeamIcon.js +25 -0
  38. package/dist/web/DiamondHandIcon.d.ts +7 -0
  39. package/dist/web/DiamondHandIcon.js +25 -0
  40. package/dist/web/FaqIcon.js +6 -16
  41. package/dist/web/ImageFallbackIcon.d.ts +7 -0
  42. package/dist/web/ImageFallbackIcon.js +25 -0
  43. package/dist/web/KolInfluencersIcon.d.ts +7 -0
  44. package/dist/web/KolInfluencersIcon.js +22 -0
  45. package/dist/web/LanguagesIcon.js +1 -1
  46. package/dist/web/LiquidityPoolIcon.d.ts +7 -0
  47. package/dist/web/LiquidityPoolIcon.js +22 -0
  48. package/dist/web/ManualIcon.js +1 -1
  49. package/dist/web/PaperHandIcon.d.ts +7 -0
  50. package/dist/web/PaperHandIcon.js +28 -0
  51. package/dist/web/TestnetsIcon.d.ts +7 -0
  52. package/dist/web/TestnetsIcon.js +22 -0
  53. package/dist/web/Top10HoldersIcon.d.ts +7 -0
  54. package/dist/web/Top10HoldersIcon.js +22 -0
  55. package/dist/web/index.d.ts +11 -0
  56. package/dist/web/index.js +12 -1
  57. package/package.json +2 -1
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const AppLockIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default AppLockIcon;
@@ -0,0 +1,41 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const AppLockIcon_AppLockIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
10
+ width: width,
11
+ height: height,
12
+ viewBox: "0 0 24 24",
13
+ fill: "none",
14
+ ...props,
15
+ children: [
16
+ /*#__PURE__*/ jsx(Path, {
17
+ d: "M4.50977 4.70911C4.50977 4.29986 4.84272 3.96692 5.25196 3.96692H14.9004C15.3096 3.96692 15.6426 4.29986 15.6426 4.70911V9.74036C15.6426 10.1503 15.9749 10.4825 16.3848 10.4825C16.7947 10.4825 17.127 10.1503 17.127 9.74036V4.70911C17.127 3.47941 16.1301 2.48254 14.9004 2.48254H5.25196C4.02227 2.48254 3.0254 3.47941 3.0254 4.70911V19.256C3.0254 20.4857 4.02227 21.4825 5.25196 21.4825H10.834C11.2439 21.4825 11.5762 21.1503 11.5762 20.7404C11.5762 20.3305 11.2439 19.9982 10.834 19.9982H5.25196C4.84272 19.9982 4.50977 19.6652 4.50977 19.256V4.70911Z",
18
+ fill: fill
19
+ }),
20
+ /*#__PURE__*/ jsx(Path, {
21
+ d: "M10.062 16.7345C10.2343 16.7354 10.4025 16.7872 10.5453 16.8836C10.6881 16.9799 10.7992 17.1164 10.8646 17.2759C10.9299 17.4353 10.9465 17.6105 10.9124 17.7794C10.8783 17.9482 10.7949 18.1032 10.6727 18.2247C10.5506 18.3463 10.3952 18.4289 10.2262 18.4622C10.0571 18.4955 9.88199 18.478 9.72289 18.4118C9.5638 18.3457 9.42786 18.2339 9.33223 18.0906C9.23659 17.9473 9.18556 17.7789 9.18555 17.6066C9.18584 17.4918 9.20874 17.3781 9.25294 17.2722C9.29714 17.1662 9.36178 17.07 9.44317 16.989C9.52455 16.908 9.62109 16.8439 9.72727 16.8002C9.83345 16.7565 9.94719 16.7342 10.062 16.7345Z",
22
+ fill: fill
23
+ }),
24
+ /*#__PURE__*/ jsx(Path, {
25
+ d: "M11.3731 6.04504H8.7754C8.57856 6.04504 8.38978 5.96685 8.25059 5.82766C8.11141 5.68848 8.03321 5.4997 8.03321 5.30286C8.03321 5.10602 8.11141 4.91724 8.25059 4.77805C8.38978 4.63886 8.57856 4.56067 8.7754 4.56067H11.3731C11.5699 4.56067 11.7587 4.63886 11.8979 4.77805C12.037 4.91724 12.1152 5.10602 12.1152 5.30286C12.1152 5.4997 12.037 5.68848 11.8979 5.82766C11.7587 5.96685 11.5699 6.04504 11.3731 6.04504Z",
26
+ fill: fill
27
+ }),
28
+ /*#__PURE__*/ jsx(Path, {
29
+ d: "M19.3732 15.2159H19.1605V13.8597C19.1605 12.5481 18.092 11.4825 16.7767 11.4825C15.4614 11.4825 14.3929 12.5481 14.3929 13.8597V15.2133H14.1803C13.2955 15.2133 12.5762 15.9306 12.5762 16.8129V19.9179C12.5762 20.8002 13.2981 21.5175 14.1803 21.5175H19.3705C20.2553 21.5149 20.9746 20.7976 20.9746 19.9179V16.8155C20.9746 15.9332 20.2553 15.2159 19.3732 15.2159ZM18.0264 15.2159H15.527V13.8597C15.527 13.1712 16.0889 12.6135 16.7767 12.6135C17.4672 12.6135 18.0264 13.1738 18.0264 13.8597V15.2159ZM13.7103 16.8155C13.7103 16.5563 13.923 16.3443 14.1829 16.3443H19.3732C19.6331 16.3443 19.8457 16.5563 19.8457 16.8155V19.9205C19.8457 20.1797 19.6331 20.3918 19.3732 20.3918H14.1803C13.9203 20.3918 13.7077 20.1797 13.7077 19.9205V16.8155H13.7103Z",
30
+ fill: fill
31
+ }),
32
+ /*#__PURE__*/ jsx(Path, {
33
+ d: "M16.7767 19.4519C17.0891 19.4519 17.3438 19.1979 17.3438 18.8864V17.8522C17.3438 17.5407 17.0891 17.2868 16.7767 17.2868C16.4643 17.2868 16.2096 17.5407 16.2096 17.8522V18.8864C16.2096 19.1979 16.4643 19.4519 16.7767 19.4519Z",
34
+ fill: fill
35
+ })
36
+ ]
37
+ });
38
+ };
39
+ AppLockIcon_AppLockIcon.displayName = 'AppLockIcon|app-lock';
40
+ const AppLockIcon = AppLockIcon_AppLockIcon;
41
+ export { AppLockIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const CexWalletIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default CexWalletIcon;
@@ -0,0 +1,26 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const CexWalletIcon_CexWalletIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ const stroke = props.stroke || _color;
10
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
11
+ width: width,
12
+ height: height,
13
+ viewBox: "0 0 24 24",
14
+ fill: "none",
15
+ ...props,
16
+ children: /*#__PURE__*/ jsx(Path, {
17
+ d: "M21.0891 18.829C21.0891 20.0256 20.1191 20.9957 18.9226 20.9957L5.05581 20.9958C3.85933 20.9958 2.88916 20.0257 2.88916 18.8291L2.88916 5.82908C2.88916 4.87181 3.66523 4.09571 4.62254 4.09571L11.6297 4.09577L13.1637 3.33259C13.3863 3.25179 13.7282 3.22304 13.907 3.37015L14.3249 4.09574H17.6225C18.5798 4.09574 19.3558 4.87178 19.3558 5.82911V7.12904C20.3131 7.12904 21.0892 7.90502 21.0892 8.86238L21.0891 18.829ZM4.62254 4.96244C4.14393 4.96244 3.75586 5.78372 3.75586 6.26242C3.75586 6.74109 4.14387 7.1291 4.6226 7.1291H5.24883H4.81549H4.89758C4.90312 7.12688 4.90678 7.12214 4.91251 7.12001L10.1046 4.96247L4.62254 4.96244ZM13.7561 5.0406L13.2955 4.20714L11.752 4.96247H11.7481L6.96434 7.1291H14.7913L13.7561 5.0406ZM18.4892 5.82914C18.4892 5.35048 18.1012 4.96247 17.6225 4.96247H14.64L15.7035 7.12907H18.4891L18.4892 5.82914ZM19.3559 7.99583H4.62254C4.30526 7.99577 4.01157 7.90412 3.75583 7.75533V18.829C3.75583 19.547 4.33787 20.129 5.05578 20.129H18.9224C19.6404 20.129 20.2224 19.547 20.2224 18.829V15.7957H18.489C17.5317 15.7957 16.7558 15.0197 16.7558 14.0624C16.7558 13.1052 17.5317 12.3291 18.489 12.3291H20.2224V8.86244C20.2224 8.38378 19.8344 7.99583 19.3559 7.99583ZM20.2224 14.9291L20.2224 13.1957H18.4891C18.0105 13.1957 17.6225 13.5837 17.6225 14.0624C17.6225 14.5411 18.0105 14.9291 18.4891 14.9291H20.2224ZM18.7595 13.7706H19.3558V14.3416H18.7595V13.7706Z",
18
+ fill: fill,
19
+ stroke: stroke,
20
+ strokeWidth: 0.419918
21
+ })
22
+ });
23
+ };
24
+ CexWalletIcon_CexWalletIcon.displayName = 'CexWalletIcon|cex-wallet';
25
+ const CexWalletIcon = CexWalletIcon_CexWalletIcon;
26
+ export { CexWalletIcon as default };
@@ -13,7 +13,7 @@ const ChartColorSwitchIcon_ChartColorSwitchIcon = ({ size = 16, width = size, he
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M18.8165 13.8926C18.811 13.7316 18.8682 13.5686 18.9913 13.4453C19.2269 13.2097 19.6076 13.2098 19.8419 13.4453L22.0988 15.7051C22.2165 15.823 22.2745 15.9765 22.2745 16.1309C22.2745 16.2852 22.2155 16.4399 22.0978 16.5566C21.8621 16.7926 21.4806 16.7926 21.2462 16.5566L20.0197 15.3281L20.0197 21.8672C20.0197 22.1998 19.7501 22.4696 19.4181 22.4697C19.0859 22.4697 18.8165 22.1999 18.8165 21.8672L18.8165 13.8926ZM2.00012 11.2656C2.00015 6.84033 5.58168 3.25306 10.0001 3.25293C14.4184 3.25299 18.0009 6.43997 18.0001 10.376C17.9998 11.4853 17.5932 12.4988 16.923 13.2783C17.2241 13.3113 17.4591 13.5627 17.4591 13.873L17.4601 21.8672C17.4601 21.9064 17.455 21.9458 17.4474 21.9844C17.4445 21.9991 17.4387 22.013 17.4347 22.0273C17.4177 22.0891 17.3937 22.1494 17.3566 22.2041C17.2906 22.302 17.1965 22.3793 17.0861 22.4248C17.0718 22.4307 17.0566 22.4338 17.0421 22.4385C16.9838 22.4574 16.9221 22.4697 16.8575 22.4697C16.7926 22.4697 16.7306 22.4576 16.672 22.4385C16.6575 22.4337 16.6423 22.4307 16.6281 22.4248C16.554 22.3941 16.4875 22.3489 16.4318 22.293L14.1769 20.0342C13.9414 19.7981 13.9413 19.4176 14.1769 19.1816C14.4126 18.9459 14.7929 18.9457 15.0284 19.1816L16.256 20.4121L16.256 13.9111C15.5075 14.4857 14.5716 14.8276 13.5558 14.8281L11.9816 14.8281C11.7248 14.8271 11.4728 14.9008 11.257 15.04C11.0413 15.1792 10.87 15.3779 10.7648 15.6123C10.6595 15.8468 10.6249 16.1072 10.6642 16.3613C10.7035 16.6155 10.8153 16.8532 10.9864 17.0449C11.2085 17.2917 11.3315 17.6121 11.3322 17.9443C11.332 18.6815 10.7207 19.2783 10.0001 19.2783C5.58167 19.2782 2.00012 15.6909 2.00012 11.2656ZM3.60754 10.9951C3.46353 14.426 6.04391 17.3613 9.46008 17.6523C9.19565 17.2071 9.05373 16.6997 9.04895 16.1816C9.04421 15.6634 9.17733 15.1533 9.43372 14.7031C9.69011 14.253 10.0611 13.8788 10.5089 13.6191C10.9566 13.3596 11.4653 13.2232 11.9825 13.2246L13.5558 13.2246C14.3102 13.2241 15.0342 12.924 15.5675 12.3896C16.1008 11.8551 16.4005 11.1297 16.4005 10.374C16.4003 7.36991 13.5742 4.85455 10.0001 4.85449C6.57143 4.85681 3.75168 7.56416 3.60754 10.9951ZM12.4239 10.2979C12.3777 10.0648 12.4006 9.82304 12.4913 9.60352C12.5822 9.38397 12.7364 9.19649 12.9337 9.06445C13.1311 8.93241 13.3634 8.8623 13.6007 8.8623C13.7582 8.86232 13.9142 8.89281 14.0597 8.95312C14.2053 9.0135 14.3379 9.1023 14.4493 9.21387C14.5606 9.32537 14.6488 9.45787 14.7091 9.60352C14.7694 9.74929 14.8009 9.90569 14.8009 10.0635C14.8009 10.3011 14.7305 10.5338 14.5988 10.7314C14.4669 10.9291 14.2789 11.0828 14.0597 11.1738C13.8405 11.2648 13.5991 11.2885 13.3663 11.2422C13.1337 11.1958 12.9198 11.0819 12.7521 10.9141C12.5842 10.746 12.4703 10.531 12.4239 10.2979ZM8.82434 7.89453C8.77804 7.66153 8.80202 7.41972 8.8927 7.2002C8.9834 6.98077 9.13705 6.79322 9.33411 6.66113C9.53118 6.52908 9.76301 6.45829 10.0001 6.45801C10.1577 6.45788 10.3144 6.48852 10.4601 6.54883C10.6057 6.60916 10.7383 6.69805 10.8497 6.80957C10.9612 6.92124 11.0502 7.05428 11.1105 7.20019C11.1708 7.34621 11.2014 7.50312 11.2013 7.66113C11.2011 7.89858 11.1309 8.13074 10.9991 8.32812C10.8672 8.52558 10.6793 8.67967 10.4601 8.77051C10.2409 8.86127 9.99932 8.88524 9.76672 8.83887C9.53431 8.79243 9.32108 8.67755 9.15344 8.50977C8.98568 8.34174 8.87068 8.12757 8.82434 7.89453ZM5.22278 10.2979C5.17659 10.0648 5.20033 9.82302 5.29114 9.60352C5.38198 9.38396 5.53622 9.19649 5.73352 9.06445C5.93089 8.93244 6.16317 8.86226 6.40051 8.8623C6.71841 8.86271 7.02331 8.98882 7.24817 9.21387C7.47306 9.43913 7.60034 9.74492 7.60071 10.0635C7.60075 10.3011 7.53032 10.5338 7.39856 10.7314C7.26674 10.9291 7.07872 11.0828 6.8595 11.1738C6.64024 11.2648 6.39891 11.2885 6.16614 11.2422C5.93354 11.1958 5.71965 11.0819 5.55188 10.9141C5.38404 10.746 5.26908 10.531 5.22278 10.2979Z",
16
+ d: "M18.6851 13.0454C18.6798 12.8824 18.7379 12.7181 18.8608 12.5933C19.0391 12.4124 19.2998 12.3689 19.5181 12.4614C19.5331 12.4678 19.5467 12.4774 19.561 12.4849C19.5813 12.4955 19.6024 12.5049 19.6216 12.5181C19.6493 12.5369 19.6745 12.5593 19.6987 12.5825C19.7028 12.5864 19.7084 12.5892 19.7124 12.5933L21.9712 14.8862C22.0889 15.0059 22.147 15.1614 22.147 15.3179C22.147 15.4745 22.0871 15.6311 21.9692 15.7495C21.7334 15.9888 21.3523 15.9888 21.1177 15.7495L19.8901 14.5024L19.8901 21.1382C19.8901 21.4757 19.62 21.7493 19.2876 21.7495C18.9551 21.7495 18.6851 21.4758 18.6851 21.1382L18.6851 13.0454ZM1.85303 10.3813C1.85303 5.89098 5.43809 2.25051 9.86084 2.25049C14.2832 2.25055 17.8684 5.48428 17.8677 9.47803C17.8674 10.6033 17.4609 11.6315 16.7905 12.4224C17.0918 12.4559 17.3275 12.7112 17.3276 13.0259L17.3276 21.1382L17.3169 21.2554C17.3021 21.3326 17.2723 21.4075 17.228 21.4751L17.1509 21.5708C17.042 21.6814 16.8912 21.7494 16.7251 21.7495C16.5765 21.7495 16.4415 21.6936 16.3364 21.603C16.324 21.5923 16.3101 21.5827 16.2983 21.5708L14.0415 19.2788C13.8056 19.0393 13.8056 18.6531 14.0415 18.4136C14.2773 18.1743 14.6572 18.1744 14.8931 18.4136L16.1226 19.6616L16.1226 13.064C15.3733 13.6474 14.4366 13.9951 13.4194 13.9956L11.8442 13.9956C11.5873 13.9946 11.3347 14.0692 11.1187 14.2104C10.9027 14.3517 10.7318 14.5537 10.6265 14.7915C10.5211 15.0294 10.4857 15.2935 10.5249 15.5513C10.5642 15.8091 10.6768 16.0501 10.8481 16.2446C11.0705 16.495 11.1942 16.8206 11.1948 17.1577C11.1946 17.9057 10.582 18.5112 9.86084 18.5112C5.43823 18.5112 1.85326 14.8715 1.85303 10.3813ZM3.46143 10.106C3.31715 13.5872 5.90044 16.5664 9.31982 16.8618C9.05502 16.4099 8.91344 15.8944 8.90869 15.3687C8.90397 14.8429 9.03685 14.3254 9.29346 13.8687C9.55009 13.4119 9.92142 13.0325 10.3696 12.769C10.8177 12.5057 11.3265 12.3673 11.8442 12.3687L13.4204 12.3687C14.1754 12.368 14.8993 12.0632 15.4331 11.521C15.9669 10.9786 16.267 10.2428 16.2671 9.47607C16.2668 6.42788 13.4383 3.87555 9.86084 3.87549C6.42885 3.87773 3.60579 6.62463 3.46143 10.106ZM12.2866 9.39893C12.2404 9.16246 12.2641 8.91756 12.355 8.69482C12.4459 8.472 12.5998 8.28097 12.7974 8.14697C12.9948 8.01318 13.227 7.9419 13.4644 7.94189C13.622 7.94188 13.7786 7.97342 13.9243 8.03467C14.0699 8.09593 14.2025 8.18618 14.314 8.29932C14.4253 8.41247 14.5134 8.54704 14.5737 8.69482C14.6341 8.84273 14.6655 9.00154 14.6655 9.16162C14.6655 9.40253 14.5951 9.638 14.4634 9.83838C14.3315 10.0389 14.1437 10.1952 13.9243 10.2876C13.7049 10.3799 13.463 10.4049 13.23 10.3579C12.997 10.3109 12.7827 10.1944 12.6147 10.0239C12.4468 9.8534 12.333 9.63544 12.2866 9.39893ZM8.68408 6.96045C8.63771 6.72403 8.66171 6.47911 8.75244 6.25635C8.84322 6.03357 8.9965 5.84258 9.19385 5.7085C9.39117 5.57446 9.62342 5.50268 9.86084 5.50244C10.0186 5.50231 10.175 5.53404 10.3208 5.59521C10.4667 5.65651 10.5998 5.74651 10.7114 5.85986C10.8231 5.97323 10.9118 6.10821 10.9722 6.25635C11.0324 6.40435 11.0631 6.563 11.063 6.72314C11.0628 6.96424 10.9929 7.2005 10.8608 7.40088C10.7288 7.60121 10.5402 7.75695 10.3208 7.84912C10.1015 7.94115 9.86018 7.96548 9.62744 7.91846C9.39456 7.87137 9.18013 7.75493 9.01221 7.58447C8.84445 7.41404 8.73045 7.19676 8.68408 6.96045ZM5.07959 9.39893C5.03332 9.16243 5.05706 8.91759 5.14795 8.69482C5.2389 8.47198 5.39277 8.28096 5.59033 8.14697C5.78777 8.01319 6.01995 7.94188 6.25732 7.94189C6.5756 7.94228 6.88085 8.07088 7.10596 8.29932C7.33107 8.52791 7.45815 8.83836 7.4585 9.16162C7.45845 9.40251 7.38805 9.63801 7.25635 9.83838C7.1244 10.0389 6.93673 10.1962 6.71728 10.2886C6.49783 10.3809 6.25593 10.4049 6.02295 10.3579C5.78994 10.3109 5.57571 10.1945 5.40771 10.0239C5.23972 9.85336 5.12593 9.63551 5.07959 9.39893Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const ConceptIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default ConceptIcon;
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const ConceptIcon_ConceptIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
10
+ width: width,
11
+ height: height,
12
+ viewBox: "0 0 24 24",
13
+ fill: "none",
14
+ ...props,
15
+ children: /*#__PURE__*/ jsx(Path, {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M15.2373 3.5276C17.6084 2.54717 19.5304 2.56497 20.5977 3.66627C21.6645 4.76761 21.6232 6.68894 20.5693 9.02858C20.1376 9.9863 19.5525 10.9846 18.8438 11.9856C19.5568 12.9841 20.1458 13.9802 20.5811 14.9368C21.644 17.2723 21.6928 19.1949 20.6299 20.2991C20.075 20.8761 19.2823 21.1594 18.3174 21.1594C17.4374 21.1594 16.4087 20.9245 15.2705 20.4592C14.221 20.0304 13.1194 19.4249 12.0127 18.678C10.9098 19.4286 9.81172 20.0401 8.76465 20.4729C7.62016 20.9459 6.58459 21.1848 5.7002 21.1848C4.74368 21.1848 3.95739 20.9044 3.40332 20.3333C2.33613 19.232 2.37679 17.3107 3.43066 14.971C3.86249 14.013 4.44734 13.0142 5.15625 12.013C4.44411 11.0148 3.85417 10.0192 3.41895 9.06276C2.35589 6.72777 2.30732 4.80544 3.37012 3.70045C4.43304 2.59556 6.35515 2.56882 8.73047 3.5403C9.77889 3.96901 10.881 4.57401 11.9873 5.32057C13.0904 4.56977 14.1901 3.96047 15.2373 3.5276ZM6.08301 13.2258C5.54426 14.024 5.09446 14.8119 4.75391 15.5676C4.35595 16.4515 4.13251 17.247 4.08398 17.8958C4.03536 18.5471 4.16415 19.0336 4.44531 19.3235C4.65088 19.5352 4.9583 19.6702 5.36133 19.7171C5.76484 19.7639 6.25818 19.7218 6.82324 19.5881C7.92331 19.3279 9.28068 18.7205 10.7559 17.7708C9.95972 17.1573 9.16759 16.4776 8.40234 15.7415C7.55626 14.928 6.77875 14.0803 6.08301 13.2258ZM17.9199 13.2024C17.2275 14.0595 16.4533 14.9101 15.6113 15.7268C14.8483 16.4661 14.0593 17.1494 13.2646 17.7659C14.1387 18.3243 14.9996 18.7814 15.8193 19.1165C16.7165 19.4832 17.5189 19.6787 18.1689 19.7044C18.8214 19.7301 19.303 19.5843 19.583 19.2932H19.584C19.8637 19.0023 19.9896 18.5153 19.9385 17.8645C19.8875 17.2161 19.6615 16.4215 19.2598 15.5393C18.9165 14.7846 18.4623 13.9989 17.9199 13.2024ZM11.9902 7.09987C11.3394 7.58576 10.6895 8.12243 10.0518 8.70241L9.39844 9.31569C8.49801 10.1892 7.67902 11.0974 6.9668 12.009C7.66004 12.89 8.47478 13.7959 9.40918 14.6946C10.2559 15.5096 11.1333 16.2492 12.0098 16.8987C12.858 16.265 13.7317 15.5284 14.6016 14.6848C15.5323 13.7823 16.3428 12.8736 17.0332 11.9895C16.3176 11.0812 15.4961 10.1743 14.5918 9.30494C13.7175 8.46503 12.842 7.73034 11.9902 7.09987ZM11.9961 10.8674C12.3667 10.8675 12.7223 11.0147 12.9844 11.2766C13.2466 11.5388 13.3936 11.8951 13.3936 12.2659C13.3935 12.6366 13.2465 12.992 12.9844 13.2542C12.7222 13.5163 12.3668 13.6633 11.9961 13.6633C11.6254 13.6633 11.27 13.5162 11.0078 13.2542C10.7457 12.992 10.5977 12.6366 10.5977 12.2659C10.5977 11.8951 10.7456 11.5388 11.0078 11.2766C11.27 11.0147 11.6255 10.8674 11.9961 10.8674ZM5.68164 4.2903C5.10412 4.29031 4.67659 4.43607 4.41602 4.70729C4.01286 5.12694 3.9281 5.93279 4.21777 7.03053C4.49778 8.09116 5.12082 9.39116 6.07812 10.7981C6.7707 9.94018 7.54616 9.09025 8.3877 8.27467C9.15061 7.53493 9.93899 6.85192 10.7334 6.23561C8.70009 4.9369 6.89505 4.29035 5.68164 4.2903ZM18.2979 4.26881C17.7061 4.26883 16.9737 4.42067 16.1494 4.7278L15.791 4.8694C14.9727 5.20709 14.1142 5.66738 13.2422 6.22975C14.0395 6.84295 14.831 7.52343 15.5967 8.26002C16.4426 9.07337 17.2194 9.92132 17.915 10.7756C18.8674 9.36463 19.4859 8.06233 19.7617 7.00026C20.047 5.90143 19.9593 5.09611 19.5547 4.67799C19.297 4.4122 18.8709 4.26884 18.2979 4.26881Z",
19
+ fill: fill
20
+ })
21
+ });
22
+ };
23
+ ConceptIcon_ConceptIcon.displayName = 'ConceptIcon|concept';
24
+ const ConceptIcon = ConceptIcon_ConceptIcon;
25
+ export { ConceptIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const CreatorTeamIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default CreatorTeamIcon;
@@ -0,0 +1,26 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const CreatorTeamIcon_CreatorTeamIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ const stroke = props.stroke || _color;
10
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
11
+ width: width,
12
+ height: height,
13
+ viewBox: "0 0 24 24",
14
+ fill: "none",
15
+ ...props,
16
+ children: /*#__PURE__*/ jsx(Path, {
17
+ d: "M20.2703 16.9454V16.603C20.2703 16.4508 20.2289 16.2987 20.2289 16.1465C20.9319 15.9182 21.0973 15.1574 21.0973 14.5106V14.2443C21.0973 13.4835 19.8981 12.7226 18.7816 12.5704L17.0448 12.2661L18.3681 11.2008C19.0297 10.6682 19.4019 9.86932 19.4019 8.99432C19.4019 7.62476 18.4921 6.48345 17.293 6.29323L16.9621 5.53236C18.7816 5.53236 20.2703 7.09215 20.2703 9.03236C20.2703 10.1737 19.7327 11.2008 18.947 11.8095C20.353 12.0378 21.9243 13.065 21.9243 14.2443V14.5106C21.9243 15.69 21.3868 16.7171 20.2703 16.9454ZM14.9773 12.8367C17.0862 13.2171 19.4432 14.7389 19.4432 16.565V16.9454C19.4432 19.0378 18.4094 20.7498 16.1351 20.7498H7.86479C5.59045 20.7498 4.55666 19.0378 4.55666 16.9454V16.565C4.55666 14.7389 6.9137 13.2171 9.02263 12.8367C7.82343 11.8856 7.03775 10.3258 7.03775 8.57584C7.03775 5.64649 9.27074 3.24976 11.9999 3.24976C14.7292 3.24976 16.9621 5.64649 16.9621 8.61389C16.9621 10.3639 16.1765 11.8856 14.9773 12.8367ZM9.93237 13.5215C7.94749 13.5215 5.38369 15.0052 5.38369 16.565V16.9454C5.38369 17.8584 5.6318 19.9889 7.86479 19.9889H16.1351C18.3681 19.9889 18.6162 17.8584 18.6162 16.9454V16.565C18.6162 15.0052 16.0524 13.5215 14.0675 13.5215H13.8608C13.2818 13.7498 12.6616 13.9019 11.9999 13.9019C11.3383 13.9019 10.718 13.7498 10.1391 13.5215H9.93237ZM11.9999 4.01063C9.72561 4.01063 7.86479 6.06497 7.86479 8.57584C7.86479 11.0867 9.72561 13.1411 11.9999 13.1411C14.2743 13.1411 16.1351 11.1248 16.1351 8.57584C16.1351 6.06497 14.2743 4.01063 11.9999 4.01063ZM9.84966 7.96715C9.80831 8.11932 9.64291 8.23345 9.43615 8.23345C9.14669 8.23345 8.98128 8.00519 9.02263 7.73889C9.31209 6.7878 9.93237 5.98889 10.6767 5.57041C10.9662 5.41823 11.297 5.60845 11.297 5.9128C11.297 6.02693 11.2143 6.14106 11.0902 6.21715C10.5526 6.55954 10.0564 7.16823 9.84966 7.96715ZM4.55666 9.03236C4.55666 9.90736 4.92882 10.7443 5.59045 11.2389L6.9137 12.3041L5.17693 12.6085C4.10179 12.7606 2.90259 13.5215 2.90259 14.2443V14.5106C2.90259 15.1574 3.068 15.9182 3.77098 16.1465C3.77098 16.2987 3.72963 16.4508 3.72963 16.603V16.9454C2.61313 16.7171 2.07556 15.69 2.07556 14.5106V14.2443C2.07556 13.0269 3.64692 12.0378 5.05288 11.8095C4.22585 11.1628 3.72963 10.1737 3.72963 9.03236C3.72963 7.09215 5.21828 5.53236 7.03775 5.53236C7.03775 5.53236 6.78964 6.10302 6.66559 6.33128C5.46639 6.52149 4.55666 7.6628 4.55666 9.03236Z",
18
+ fill: fill,
19
+ stroke: stroke,
20
+ strokeWidth: 0.384439
21
+ })
22
+ });
23
+ };
24
+ CreatorTeamIcon_CreatorTeamIcon.displayName = 'CreatorTeamIcon|creator-team';
25
+ const CreatorTeamIcon = CreatorTeamIcon_CreatorTeamIcon;
26
+ export { CreatorTeamIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const DiamondHandIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default DiamondHandIcon;
@@ -0,0 +1,26 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const DiamondHandIcon_DiamondHandIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ const stroke = props.stroke || _color;
10
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
11
+ width: width,
12
+ height: height,
13
+ viewBox: "0 0 24 24",
14
+ fill: "none",
15
+ ...props,
16
+ children: /*#__PURE__*/ jsx(Path, {
17
+ d: "M21.4675 8.87754L18.7112 4.74301C18.3312 4.17307 17.6969 3.83496 17.0142 3.83496H6.61027C5.92763 3.83496 5.29328 4.17307 4.91331 4.74301L2.15374 8.87754C1.63209 9.66001 1.70937 10.6904 2.34372 11.3827L10.8768 20.7531C11.1151 21.0139 11.4564 21.1652 11.8106 21.1652C12.1648 21.1652 12.5062 21.0139 12.7445 20.7531L21.2776 11.3827C21.9087 10.6904 21.986 9.66001 21.4675 8.87754ZM17.9062 5.27754L20.6625 9.41207C20.7205 9.49901 20.7656 9.59561 20.7946 9.69221H16.1352L14.8246 4.79775H17.011C17.3716 4.80097 17.7065 4.97808 17.9062 5.27754ZM11.8106 19.6067L8.53264 10.6614H15.0854L11.8106 19.6067ZM13.8232 4.80097L15.1337 9.69543H8.48434L9.79489 4.80097H13.8232ZM5.7151 5.27754C5.91475 4.97808 6.24963 4.79775 6.61027 4.79775H8.79668L7.48613 9.69221H2.82673C2.85571 9.59561 2.90079 9.49901 2.95875 9.41207L5.7151 5.27754ZM2.99739 10.6614H7.50545L10.5419 18.9498L3.05857 10.7323C3.03603 10.7097 3.01671 10.684 2.99739 10.6614ZM13.0793 18.9498L16.1158 10.6614H20.6239C20.6046 10.6872 20.5852 10.7097 20.5627 10.7355L13.0793 18.9498Z",
18
+ fill: fill,
19
+ stroke: stroke,
20
+ strokeWidth: 0.305828
21
+ })
22
+ });
23
+ };
24
+ DiamondHandIcon_DiamondHandIcon.displayName = 'DiamondHandIcon|diamond-hand';
25
+ const DiamondHandIcon = DiamondHandIcon_DiamondHandIcon;
26
+ export { DiamondHandIcon as default };
@@ -1,4 +1,4 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
1
+ import { jsx } from "react/jsx-runtime";
2
2
  import "react";
3
3
  import external_react_native_svg_default, { Path } from "react-native-svg";
4
4
  import { isThemeColor, useIconsContext } from "../core/index.js";
@@ -6,26 +6,16 @@ const FaqIcon = ({ size = 16, width = size, height = size, color = 'currentColor
6
6
  const { getColor } = useIconsContext();
7
7
  const _color = isThemeColor(color) ? getColor(color) : color;
8
8
  const fill = props.fill || _color;
9
- return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
9
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
10
10
  width: width,
11
11
  height: height,
12
12
  viewBox: "0 0 24 24",
13
13
  fill: "none",
14
14
  ...props,
15
- children: [
16
- /*#__PURE__*/ jsx(Path, {
17
- d: "M18.7907 1.55066H5.20931C3.7612 1.55066 2.58328 2.72869 2.58328 4.17671V16.1889C2.58328 17.637 3.7612 18.8151 5.20931 18.8151H5.77912V21.7643C5.77912 22.003 5.90328 22.2245 6.10702 22.3489C6.21627 22.4155 6.33998 22.4492 6.46392 22.4492C6.57115 22.4492 6.67836 22.4241 6.7767 22.3735L13.7054 18.8151H18.7907C20.2388 18.8151 21.4168 17.637 21.4168 16.1889V4.17671C21.4167 2.72872 20.2388 1.55066 18.7907 1.55066ZM20.0471 16.1889C20.0471 16.8818 19.4835 17.4454 18.7907 17.4454H13.5397C13.4309 17.4454 13.3237 17.4714 13.227 17.5211L7.14876 20.6428V18.1303C7.14876 17.7521 6.84224 17.4454 6.46392 17.4454H5.20931C4.51647 17.4454 3.95292 16.8818 3.95292 16.1889V4.17671C3.95292 3.48399 4.51647 2.9203 5.20931 2.9203H18.7907C19.4835 2.9203 20.0471 3.48396 20.0471 4.17671V16.1889H20.0471Z",
18
- fill: fill
19
- }),
20
- /*#__PURE__*/ jsx(Path, {
21
- d: "M12 5.37146C10.2846 5.37146 8.88913 6.76707 8.88913 8.48246C8.88913 8.85407 9.19142 9.15648 9.56302 9.15648C9.93465 9.15648 10.2369 8.85407 10.2369 8.48246C10.2369 7.51031 11.0279 6.71947 12 6.71947C12.9722 6.71947 13.7631 7.51028 13.7631 8.48246C13.7631 9.19771 13.3355 9.83673 12.6715 10.112C11.8542 10.4561 11.3261 11.2513 11.3261 12.138C11.3261 12.5096 11.6284 12.812 12 12.812C12.3239 12.812 12.6021 12.5809 12.661 12.2649C12.6697 12.2263 12.6739 12.1847 12.6739 12.138C12.6739 11.7901 12.8824 11.481 13.2096 11.3483L13.2239 11.3407C14.3708 10.8493 15.1109 9.72928 15.1109 8.48249C15.1109 6.76707 13.7154 5.37146 12 5.37146Z",
22
- fill: fill
23
- }),
24
- /*#__PURE__*/ jsx(Path, {
25
- d: "M11.9343 13.5464C11.4036 13.5464 10.9718 13.9783 10.9718 14.5091C10.9718 15.0399 11.4036 15.4718 11.9343 15.4718C12.4651 15.4718 12.8969 15.0399 12.8969 14.5091C12.8969 13.9783 12.4651 13.5464 11.9343 13.5464Z",
26
- fill: fill
27
- })
28
- ]
15
+ children: /*#__PURE__*/ jsx(Path, {
16
+ d: "M18.6699 1.73608C20.0923 1.73608 21.2498 2.89299 21.25 4.31519V16.115C21.2498 17.5373 20.0922 18.6941 18.6699 18.6941H13.6748L6.86914 22.1892C6.77268 22.2388 6.66769 22.2634 6.5625 22.2634C6.44093 22.2634 6.31911 22.231 6.21191 22.1658C6.01189 22.0436 5.88978 21.8258 5.88965 21.5916V18.6941H5.33008C3.90776 18.6941 2.75019 17.5373 2.75 16.115V4.31519C2.75014 2.89296 3.90773 1.73608 5.33008 1.73608H18.6699ZM5.33008 3.08179C4.64961 3.08179 4.09584 3.63487 4.0957 4.31519V16.115C4.09589 16.7954 4.64964 17.3484 5.33008 17.3484H6.5625C6.93382 17.3486 7.23421 17.65 7.23438 18.0212V20.49L13.2051 17.4236C13.3001 17.3747 13.4058 17.3484 13.5127 17.3484H18.6699C19.3504 17.3484 19.9041 16.7954 19.9043 16.115V4.31519C19.9042 3.63484 19.3504 3.08179 18.6699 3.08179H5.33008ZM11.9355 13.5193C12.4569 13.5193 12.8809 13.9432 12.8809 14.4646C12.8809 14.986 12.4569 15.4099 11.9355 15.4099C11.4142 15.4099 10.9902 14.986 10.9902 14.4646C10.9902 13.9432 11.4142 13.5193 11.9355 13.5193ZM12 5.48901C13.6849 5.48901 15.0555 6.85977 15.0557 8.54468C15.0557 9.76936 14.3287 10.8696 13.2021 11.3523L13.1885 11.3601C12.867 11.4905 12.6621 11.7938 12.6621 12.1355C12.6621 12.1814 12.6579 12.2225 12.6494 12.2605C12.5915 12.5708 12.3181 12.7976 12 12.7976C11.635 12.7976 11.3379 12.5005 11.3379 12.1355C11.3379 11.2646 11.8566 10.4833 12.6592 10.1453C13.3115 9.87484 13.7314 9.24724 13.7314 8.54468C13.7314 7.58981 12.9549 6.81323 12 6.81323C11.0451 6.81324 10.2686 7.58984 10.2686 8.54468C10.2686 8.90962 9.97139 9.20668 9.60645 9.20679C9.24143 9.20679 8.94434 8.90969 8.94434 8.54468C8.94442 6.85979 10.3151 5.48902 12 5.48901Z",
17
+ fill: fill
18
+ })
29
19
  });
30
20
  };
31
21
  FaqIcon.displayName = 'FaqIcon|faq';
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const ImageFallbackIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default ImageFallbackIcon;
@@ -0,0 +1,26 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const ImageFallbackIcon_ImageFallbackIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ const stroke = props.stroke || _color;
10
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
11
+ width: width,
12
+ height: height,
13
+ viewBox: "0 0 24 24",
14
+ fill: "none",
15
+ ...props,
16
+ children: /*#__PURE__*/ jsx(Path, {
17
+ d: "M13.1187 15.032C13.171 14.9797 13.2128 14.917 13.2337 14.8438C13.3696 14.5929 13.3278 14.2792 13.1187 14.0701L8.39301 9.3444L13.0769 4.66052C13.3487 4.38868 13.3487 3.97048 13.0769 3.69865C12.941 3.56273 12.7737 3.5 12.6064 3.5H5.46558C4.02278 3.5 2.85181 4.68143 2.85181 6.11378V17.8758C2.85181 19.3186 4.03323 20.4895 5.46558 20.4895H7.4416C7.62979 20.4895 7.79707 20.4268 7.92253 20.2909L9.02032 19.1827L13.0769 15.1052C13.0978 15.0843 13.0978 15.0633 13.1187 15.032ZM7.09658 19.1931H5.46558C4.74418 19.1931 4.15869 18.6076 4.15869 17.8862V6.12423C4.15869 5.40283 4.74418 4.81734 5.46558 4.81734H11.0068L6.96066 8.85301C6.75156 9.06212 6.70974 9.37577 6.84566 9.62669C6.87702 9.68942 6.90839 9.76261 6.96066 9.81488C6.99203 9.84625 6.99203 9.86716 7.01294 9.89852L11.7073 14.5929L7.09658 19.1931ZM18.5345 3.51045H16.5166C16.3284 3.51045 16.1612 3.57319 16.0357 3.7091L14.9275 4.81734L10.8813 8.85301C10.5468 9.21894 10.6095 9.53259 10.9336 9.88807L15.6279 14.5824L10.8813 19.3395C10.6199 19.6009 10.6199 20.0295 10.8813 20.3014C11.0172 20.4373 11.195 20.5 11.3623 20.5H18.5345C19.9773 20.5 21.1482 19.3186 21.1482 17.8862V6.12423C21.1482 4.68143 19.9773 3.51045 18.5345 3.51045ZM19.8414 17.8862C19.8414 18.6076 19.2559 19.1931 18.5345 19.1931H12.941L16.9976 15.1156C17.3112 14.8124 17.3008 14.3524 17.0498 14.0806L12.3137 9.3444L16.8512 4.80689H18.5345C19.2559 4.80689 19.8414 5.39237 19.8414 6.11378V17.8862Z",
18
+ fill: fill,
19
+ stroke: stroke,
20
+ strokeWidth: 0.203295
21
+ })
22
+ });
23
+ };
24
+ ImageFallbackIcon_ImageFallbackIcon.displayName = 'ImageFallbackIcon|image-fallback';
25
+ const ImageFallbackIcon = ImageFallbackIcon_ImageFallbackIcon;
26
+ export { ImageFallbackIcon as default };
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const KolInfluencersIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default KolInfluencersIcon;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const KolInfluencersIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
10
+ width: width,
11
+ height: height,
12
+ viewBox: "0 0 24 24",
13
+ fill: "none",
14
+ ...props,
15
+ children: /*#__PURE__*/ jsx(Path, {
16
+ d: "M14.8743 5.06079L19.5657 4.43384L18.9397 9.12524L22.7004 12.0002L18.9397 14.8743L19.5657 19.5657L14.8743 18.9397L12.0002 22.7004L9.12524 18.9397L4.43384 19.5657L5.06079 14.8743L1.30005 12.0002L5.06079 9.12524L4.43384 4.43384L9.12524 5.06079L12.0002 1.30005L14.8743 5.06079ZM10.1174 5.8186L9.67798 6.3938L8.96021 6.2981L5.88696 5.88696L6.2981 8.96021L6.3938 9.67798L5.8186 10.1174L3.35474 11.9993L5.8186 13.8831L6.3938 14.3225L6.2981 15.0393L5.88696 18.1116L8.96021 17.7024L9.67798 17.6067L10.1174 18.1819L11.9993 20.6438L13.8831 18.1819L14.3225 17.6067L15.0393 17.7024L18.1116 18.1116L17.7024 15.0393L17.6067 14.3225L18.1819 13.8831L20.6438 11.9993L18.1819 10.1174L17.6067 9.67798L17.7024 8.96021L18.1116 5.88696L15.0393 6.2981L14.3225 6.3938L13.8831 5.8186L11.9993 3.35474L10.1174 5.8186ZM14.6497 9.69556C14.9246 9.42143 15.359 9.40497 15.6536 9.64478L15.7102 9.69556V9.69653C16.0035 9.98979 16.0034 10.4648 15.7102 10.7581L11.7141 14.7512C11.7084 14.7579 11.703 14.7662 11.6956 14.7737L11.6946 14.7756C11.6496 14.8201 11.599 14.8553 11.5471 14.886V14.9924H11.0071L10.9807 14.9661C10.8541 14.934 10.733 14.8717 10.634 14.7727C10.6225 14.7612 10.6131 14.751 10.6077 14.7444C10.605 14.7412 10.6023 14.7385 10.6008 14.7366C10.5994 14.7348 10.5982 14.733 10.5979 14.7327L10.5989 14.7336C10.5996 14.7346 10.6011 14.7365 10.6028 14.7385C10.6051 14.7414 10.6089 14.746 10.6135 14.7512L8.6272 12.7659C8.33412 12.4726 8.33409 11.9975 8.6272 11.7043L8.68384 11.6526C8.9591 11.428 9.35675 11.4281 9.63208 11.6526L9.68872 11.7043L11.1643 13.1799L14.6497 9.69653V9.69556Z",
17
+ fill: fill
18
+ })
19
+ });
20
+ };
21
+ KolInfluencersIcon.displayName = 'KolInfluencersIcon|kol-influencers';
22
+ const native_KolInfluencersIcon = KolInfluencersIcon;
23
+ export { native_KolInfluencersIcon as default };
@@ -13,7 +13,7 @@ const LanguagesIcon_LanguagesIcon = ({ size = 16, width = size, height = size, c
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M16.4389 5.41016C17.6105 5.41024 18.5615 6.36172 18.562 7.5332V19.5713C18.5716 20.7445 17.6191 21.6963 16.4477 21.6963H4.42719C3.24692 21.6963 2.29463 20.7455 2.29437 19.5732V7.5332C2.29482 6.36182 3.24599 5.4104 4.41742 5.41016H16.4389ZM4.41742 6.87012C4.05073 6.87029 3.75479 7.16658 3.75433 7.5332V19.5732C3.75458 19.9401 4.05059 20.2362 4.41742 20.2363H16.4389C16.8057 20.2362 17.1017 19.9401 17.102 19.5732V7.5332C17.1015 7.16656 16.8056 6.87027 16.4389 6.87012H4.41742ZM19.0414 2.2998C20.515 2.29984 21.7104 3.49617 21.7104 4.96973V17.0195C21.7103 17.4276 21.3792 17.7725 20.9575 17.7725C20.5377 17.7722 20.2056 17.4393 20.2055 17.0195V4.96973C20.2055 4.32608 19.6851 3.8057 19.0414 3.80566H6.97015C6.55027 3.80557 6.21724 3.47264 6.21722 3.05273C6.21722 2.63105 6.56207 2.2999 6.97015 2.2998H19.0414ZM9.7514 9.26367C10.0298 9.10793 10.3708 9.10533 10.6479 9.27539L10.6489 9.27441C10.7976 9.36138 10.9019 9.49447 10.9682 9.6377L10.9692 9.63965L14.0961 16.5957C14.1467 16.6969 14.1713 16.8086 14.1713 16.917C14.1713 17.1147 14.0852 17.2893 13.9438 17.4141L13.9301 17.4277L13.9291 17.4268C13.7999 17.549 13.6269 17.6208 13.4457 17.6152C13.1416 17.6271 12.8698 17.4468 12.7651 17.1582V17.1592L12.0678 15.5781H8.34711L7.64008 17.1689L7.63812 17.168C7.53366 17.445 7.26784 17.6235 6.9682 17.6152V17.6162L6.96527 17.6152C6.96357 17.6152 6.96115 17.6161 6.95941 17.6162V17.6152C6.81809 17.6136 6.68496 17.5735 6.56976 17.5059L6.45844 17.4277C6.30455 17.2994 6.21724 17.1085 6.21722 16.9082C6.21724 16.8084 6.23914 16.6997 6.28949 16.6035H6.28851L9.41937 9.63965L9.42035 9.6377C9.48778 9.49211 9.59147 9.36229 9.74359 9.26855L9.7514 9.26367ZM8.9516 14.207H11.4614L10.2026 11.3672L8.9516 14.207Z",
16
+ d: "M16.3483 5.54492C17.4961 5.54504 18.4282 6.47724 18.4284 7.625V19.417C18.4379 20.5662 17.5045 21.498 16.3571 21.498H4.5817C3.42546 21.498 2.49283 20.5665 2.49283 19.418V7.625C2.49298 6.47717 3.42504 5.54492 4.57291 5.54492H16.3483ZM4.57291 6.97559C4.21339 6.97559 3.92267 7.26552 3.92252 7.625V19.418C3.92252 19.7776 4.21329 20.0674 4.57291 20.0674H16.3483C16.7078 20.0672 16.9977 19.7775 16.9977 19.418V7.625C16.9976 7.26563 16.7077 6.97577 16.3483 6.97559H4.57291ZM18.8971 2.49805C20.3406 2.49805 21.5124 3.66982 21.5124 5.11328V16.917C21.5122 17.3167 21.188 17.6542 20.7751 17.6543C20.3637 17.6543 20.0379 17.3283 20.0378 16.917V5.11328C20.0378 4.48277 19.5276 3.97266 18.8971 3.97266H7.07291C6.66165 3.97251 6.3356 3.64665 6.3356 3.23535C6.33571 2.82242 6.67327 2.4982 7.07291 2.49805H18.8971ZM9.90298 9.26855C10.1553 9.16752 10.444 9.1841 10.6823 9.33301L10.6813 9.33398C10.8241 9.41907 10.9255 9.54723 10.9899 9.68652L10.9909 9.68848L14.0534 16.502C14.1025 16.6005 14.1266 16.7099 14.1266 16.8164C14.1265 17.0169 14.0375 17.1946 13.8903 17.3174L13.8883 17.3154C13.7565 17.44 13.5792 17.5132 13.3942 17.501V17.5C13.1042 17.5026 12.8495 17.3276 12.7497 17.0527L12.0651 15.5049H8.42252L7.72916 17.0625L7.7272 17.0615C7.62505 17.3331 7.36493 17.5082 7.07095 17.5V17.501L7.06802 17.5C7.06644 17.4999 7.06473 17.501 7.06314 17.501V17.5C6.87721 17.4981 6.70597 17.4289 6.57193 17.3174C6.4212 17.1917 6.33561 17.0041 6.3356 16.8076C6.33563 16.707 6.35705 16.5974 6.40884 16.502L9.47134 9.68848L9.47232 9.68652C9.53821 9.54401 9.64016 9.41634 9.7897 9.32422L9.79654 9.31934L9.90298 9.26855ZM9.01334 14.1621H11.4723L10.2389 11.3799L9.01334 14.1621Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const LiquidityPoolIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default LiquidityPoolIcon;
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import "react";
3
+ import external_react_native_svg_default, { Path } from "react-native-svg";
4
+ import { isThemeColor, useIconsContext } from "../core/index.js";
5
+ const LiquidityPoolIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
6
+ const { getColor } = useIconsContext();
7
+ const _color = isThemeColor(color) ? getColor(color) : color;
8
+ const fill = props.fill || _color;
9
+ return /*#__PURE__*/ jsx(external_react_native_svg_default, {
10
+ width: width,
11
+ height: height,
12
+ viewBox: "0 0 24 24",
13
+ fill: "none",
14
+ ...props,
15
+ children: /*#__PURE__*/ jsx(Path, {
16
+ d: "M8.59473 2.41333C9.21347 2.02832 10.029 2.20937 10.4258 2.82446L10.5361 2.99634C14.2314 8.74686 16.0801 12.7084 16.0801 15.0129C16.0801 15.702 15.9752 16.3666 15.7852 16.9934C15.9843 17.0235 16.1867 17.0393 16.3916 17.0393C18.6085 17.0393 20.4053 15.245 20.4053 13.0315C20.4052 11.6075 19.0968 8.79038 16.4785 4.70825L16.3984 4.58423L16.0449 5.1438L15.8057 5.52173L15.5732 5.8938L15.3379 6.27075L15.2139 6.47192L15.0918 6.67114L14.9756 6.86353L14.8789 7.02563L14.8486 7.07739C14.6623 7.39616 14.2525 7.50368 13.9336 7.31763C13.6146 7.13122 13.5069 6.72056 13.6934 6.40161L13.7686 6.27368L13.8262 6.17798L13.9355 5.99731L14.0605 5.79321L14.2471 5.49146L14.4971 5.09106L14.8447 4.53735L15.1982 3.97974L15.2686 3.86743C15.3724 3.70368 15.5108 3.56425 15.6738 3.45923C16.295 3.05926 17.1234 3.23855 17.5234 3.85962C20.3362 8.22827 21.7431 11.2419 21.7432 13.0315C21.7432 15.9842 19.347 18.3772 16.3916 18.3772C16.0074 18.3772 15.6287 18.3355 15.2598 18.2561C14.1115 20.3738 11.8738 21.8118 9.30078 21.8118C5.55672 21.8116 2.52246 18.7671 2.52246 15.0129C2.52248 12.6861 4.40736 8.66825 8.17676 2.82446C8.27989 2.66457 8.41628 2.52819 8.57617 2.42505L8.59473 2.41333ZM9.19238 3.71704C5.6374 9.24926 3.86037 13.0584 3.86035 15.0129C3.86035 18.0292 6.29661 20.4737 9.30078 20.4739C12.3051 20.4739 14.7422 18.0293 14.7422 15.0129C14.7422 13.0594 12.965 9.2505 9.41113 3.71997L9.30078 3.54907L9.19238 3.71704ZM6.36816 12.0754C6.52505 11.7505 6.91528 11.6141 7.24023 11.7708C7.24472 11.7729 7.24946 11.7753 7.25391 11.7776L7.27051 11.7854C7.5929 11.9505 7.72524 12.3424 7.56934 12.6692L7.40527 13.0139L7.37598 13.0793L7.33496 13.176L7.30859 13.2405L7.28223 13.303L7.25684 13.3645L7.2334 13.426L7.18652 13.5452L7.1543 13.6331L7.13379 13.6897L7.12402 13.718L7.10449 13.7737L7.08496 13.8284L7.06738 13.8831C7.06162 13.9008 7.05535 13.9183 7.0498 13.9358L7.03418 13.9885L7.01074 14.0647L7.00391 14.0901L6.98926 14.1399L6.98242 14.1643L6.96973 14.2131L6.95215 14.2834L6.94141 14.3293L6.92676 14.3967C6.91198 14.4661 6.89942 14.5364 6.88965 14.6067L6.88477 14.6458L6.87988 14.6838C6.87675 14.7143 6.87473 14.7451 6.87305 14.7756L6.87109 14.8108C6.87053 14.8277 6.87012 14.8443 6.87012 14.8606C6.87012 15.8295 7.39637 16.6724 8.17285 17.1135C8.2525 17.1587 8.37741 17.2176 8.54785 17.2883L7.84961 18.3772C7.79815 18.4033 7.7243 18.3915 7.62793 18.3411C6.38257 17.6885 5.53223 16.3737 5.53223 14.8606C5.53227 14.6071 5.56906 14.3254 5.6416 14.0139L5.65625 13.9534C5.67948 13.8588 5.70482 13.7645 5.73242 13.6711L5.75195 13.6057C5.76519 13.5623 5.77951 13.5184 5.79395 13.4739L5.81543 13.4065C5.83071 13.3609 5.84728 13.3151 5.86328 13.2698L5.8877 13.2004C5.92235 13.1048 5.95866 13.0098 5.99609 12.9153L6.02539 12.842L6.04004 12.8049L6.07129 12.7307L6.10254 12.6545L6.11816 12.6174L6.18457 12.4631L6.2373 12.3459L6.36816 12.0754Z",
17
+ fill: fill
18
+ })
19
+ });
20
+ };
21
+ LiquidityPoolIcon.displayName = 'LiquidityPoolIcon|liquidity-pool';
22
+ const native_LiquidityPoolIcon = LiquidityPoolIcon;
23
+ export { native_LiquidityPoolIcon as default };
@@ -13,7 +13,7 @@ const ManualIcon_ManualIcon = ({ size = 16, width = size, height = size, color =
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M17.0976 1.99985C17.3966 1.99647 17.6901 2.0838 17.9394 2.24887C18.1069 2.35863 18.2509 2.50169 18.3613 2.6688C18.469 2.83518 18.5441 3.0219 18.581 3.21665C18.5848 3.23749 18.5865 3.27954 18.5878 3.32114C18.5894 3.36744 18.5906 3.42848 18.5917 3.49887C18.5939 3.6405 18.5957 3.82351 18.5966 4.00766C18.5974 4.14969 18.5963 4.29334 18.5966 4.42075C18.8423 4.47637 19.0803 4.56147 19.3046 4.67661H19.3076L19.33 4.68833C19.5959 4.8265 19.8397 5.00489 20.0517 5.21665C20.263 5.42873 20.4407 5.67185 20.579 5.93735L20.5908 5.95981V5.96176C20.6891 6.15615 20.7671 6.36005 20.8232 6.57016L20.874 6.78989V6.79087C20.911 6.98954 20.9294 7.19131 20.9296 7.3934V19.0467C20.9296 19.1478 20.9244 19.2482 20.915 19.3485L20.916 19.3495C20.8829 19.7431 20.7714 20.1263 20.5908 20.4774V20.4803L20.579 20.5028C20.3468 20.9472 20.0055 21.3253 19.5869 21.6014L19.5859 21.6024C19.3326 21.7654 19.0575 21.8908 18.7695 21.9754L18.4775 22.0467C18.378 22.0653 18.2773 22.0794 18.1767 22.0887L17.874 22.1024H6.21967C6.01755 22.1029 5.81579 22.085 5.61713 22.0477C5.3195 21.9929 5.0317 21.8932 4.76362 21.7528C4.49752 21.6149 4.25367 21.4375 4.04194 21.2254V21.2245C3.83078 21.0122 3.65307 20.7692 3.51459 20.5038L3.50287 20.4813V20.4764C3.37138 20.2156 3.27527 19.9383 3.22065 19.6512C3.20208 19.5518 3.18802 19.4511 3.17865 19.3504L3.16498 19.0477V7.3934C3.16464 7.19104 3.18293 6.9887 3.22065 6.78989C3.22093 6.78831 3.22036 6.78658 3.22065 6.78501L3.20502 6.78891L3.18744 6.50962C3.18448 6.28821 3.18003 5.99969 3.1767 5.72055C3.17392 5.48723 3.172 5.26052 3.17084 5.08676C3.17026 5.00019 3.16972 4.92611 3.16987 4.87094C3.17 4.81948 3.17015 4.77658 3.17182 4.75864C3.17188 4.24311 3.42674 3.76163 3.50776 3.60532C3.55345 3.51716 3.60403 3.42981 3.65912 3.34555C3.8806 3.01021 4.16809 2.72264 4.50385 2.5018L4.50483 2.50083C4.8433 2.28292 5.22078 2.13214 5.61615 2.05649C5.81548 2.01928 6.01886 2.00007 6.22162 1.99985H17.0976ZM6.33197 5.85434C5.96241 5.90044 5.61949 5.96818 5.30756 6.04673C5.26347 6.07552 5.22055 6.10616 5.17963 6.1395L5.16205 6.15219C5.09801 6.20575 5.03931 6.26531 4.9853 6.32895L4.96479 6.35337C4.90065 6.43237 4.84488 6.51803 4.7978 6.60825C4.72501 6.74985 4.67246 6.9011 4.64252 7.05747C4.62265 7.16824 4.61286 7.28086 4.61322 7.3934V19.0497C4.61045 19.2142 4.63319 19.3778 4.67963 19.535L4.73432 19.6903V19.6913C4.79067 19.8344 4.86888 19.9683 4.96576 20.0877L4.97162 20.0956C5.03146 20.1682 5.09822 20.2349 5.17084 20.2948L5.17963 20.3016C5.21835 20.3331 5.25901 20.363 5.30072 20.3905C5.43214 20.4754 5.57619 20.5404 5.72651 20.5838L5.76655 20.5946C5.80565 20.605 5.84496 20.6162 5.88471 20.6239L6.0517 20.6463C6.10748 20.6512 6.16362 20.6534 6.21967 20.6532H17.8759C18.0262 20.6549 18.1758 20.636 18.3212 20.5985L18.3691 20.5848C18.6669 20.501 18.9312 20.3275 19.1279 20.0887L19.2177 19.9657C19.3025 19.8343 19.3677 19.6911 19.4111 19.5409L19.4238 19.494C19.4605 19.3481 19.4807 19.1983 19.4804 19.0477V7.3934L19.4726 7.22544C19.4675 7.16981 19.4595 7.11438 19.4492 7.05942V7.05747C19.4413 7.01632 19.4303 6.97611 19.4199 6.93637L19.4101 6.90024C19.3955 6.84903 19.3788 6.79922 19.3593 6.75083V6.74985C19.3034 6.60671 19.225 6.47244 19.1279 6.35337L19.1152 6.33774C18.9881 6.1875 18.8335 6.06293 18.6591 5.97153V5.97055C18.5176 5.89843 18.366 5.84761 18.2099 5.81821C18.0991 5.7978 17.9867 5.78707 17.874 5.78696H6.91694C6.71594 5.80951 6.5205 5.83082 6.33197 5.85434ZM13.5966 12.4969C13.7887 12.4969 13.9735 12.573 14.1093 12.7088C14.245 12.8447 14.3212 13.0295 14.3212 13.2215C14.3211 13.4133 14.2448 13.5976 14.1093 13.7332C13.9735 13.869 13.7887 13.9461 13.5966 13.9461H7.3808C7.18892 13.946 7.00481 13.8689 6.86908 13.7332C6.73343 13.5975 6.6573 13.4134 6.65717 13.2215C6.65717 13.0295 6.73333 12.8447 6.86908 12.7088C7.0048 12.5732 7.18893 12.497 7.3808 12.4969H13.5966ZM16.7363 9.3895C16.9284 9.3895 17.1131 9.46557 17.249 9.60141C17.3845 9.73711 17.4608 9.92136 17.4609 10.1131C17.4608 10.305 17.3846 10.4901 17.249 10.6258C17.1131 10.7616 16.9283 10.8377 16.7363 10.8377H7.3808C7.18894 10.8376 7.0048 10.7615 6.86908 10.6258C6.73331 10.49 6.65724 10.3051 6.65717 10.1131C6.65729 9.92125 6.73344 9.73713 6.86908 9.60141C7.00482 9.46568 7.18886 9.38962 7.3808 9.3895H16.7363ZM6.22358 3.35337C5.99014 3.34933 5.75795 3.3927 5.54194 3.4813C5.38902 3.54105 5.24637 3.62468 5.11908 3.72837H5.11713C5.03368 3.79622 4.95745 3.87344 4.88959 3.95688V3.95786C4.82109 4.04224 4.76116 4.13396 4.71088 4.23032C4.63355 4.38075 4.57762 4.54172 4.54584 4.70786C4.53893 4.74631 4.53471 4.7853 4.53022 4.82407C4.86219 4.6143 5.23131 4.46817 5.61713 4.39438C5.81583 4.35732 6.01755 4.33895 6.21967 4.33872H17.4697V3.96958C17.4696 3.56403 17.0858 3.38995 16.9628 3.35337H6.22358Z",
16
+ d: "M16.9218 2.35095C17.2102 2.34774 17.4928 2.43199 17.7333 2.59119C17.895 2.69712 18.0339 2.83515 18.1405 2.99646C18.2446 3.15714 18.3168 3.33766 18.3524 3.52576C18.356 3.54585 18.3579 3.5855 18.3593 3.62537C18.3607 3.67016 18.3621 3.72999 18.3632 3.79822C18.3653 3.93486 18.3671 4.11084 18.368 4.28845C18.3688 4.42579 18.3678 4.56471 18.368 4.68787L18.4647 4.70935C18.6671 4.7624 18.8631 4.83832 19.0497 4.93396H19.0536L19.0751 4.94568C19.2675 5.04567 19.4478 5.16721 19.6122 5.30798L19.7714 5.45544L19.9178 5.61462C20.0586 5.77911 20.1809 5.95931 20.2811 6.15173L20.2919 6.17322V6.17615C20.4193 6.4282 20.5112 6.69655 20.5643 6.974L20.5653 6.97498C20.601 7.16655 20.6187 7.36116 20.619 7.55603V18.8021C20.619 18.9004 20.6146 18.9985 20.6053 19.0961C20.5733 19.4755 20.466 19.8446 20.2919 20.183V20.1859L20.2811 20.2074C20.057 20.6362 19.727 21.0015 19.3231 21.2679L19.3221 21.2689C18.9964 21.4785 18.6332 21.6243 18.2528 21.6976H18.2518C18.0601 21.7334 17.8649 21.7511 17.6698 21.7513H6.42371C6.22842 21.7518 6.03263 21.7347 5.8407 21.6986C5.5538 21.6457 5.27589 21.5498 5.01746 21.4144C4.76085 21.2815 4.52636 21.1092 4.32214 20.9047C4.11819 20.6998 3.9461 20.4647 3.81238 20.2084L3.80066 20.1869V20.181C3.67403 19.9296 3.58182 19.6618 3.52917 19.3851C3.49336 19.1933 3.4747 18.9982 3.47449 18.8031V7.55701C3.47413 7.36163 3.49277 7.16595 3.52917 6.974C3.52946 6.97242 3.52888 6.97069 3.52917 6.96912L3.51355 6.97302L3.49695 6.70349C3.49409 6.48982 3.49039 6.21126 3.48718 5.94177C3.4845 5.71655 3.48244 5.49717 3.48132 5.32947C3.48077 5.24596 3.48021 5.17464 3.48035 5.12146C3.48048 5.07163 3.48067 5.03028 3.4823 5.01306C3.4824 4.51533 3.72848 4.05036 3.80652 3.89978C3.85054 3.81487 3.89897 3.73094 3.95203 3.64978C4.16582 3.32604 4.44427 3.04849 4.76843 2.83533L4.76941 2.83435C5.09596 2.62422 5.46026 2.47859 5.84167 2.40564C6.03377 2.3698 6.22927 2.35119 6.42468 2.35095H16.9218ZM6.5321 6.07068C6.17558 6.11514 5.84472 6.18036 5.54382 6.25623C5.50075 6.28415 5.45866 6.3136 5.41882 6.34607L5.41394 6.34998C5.34814 6.40389 5.28735 6.46388 5.2323 6.52869L5.21179 6.5531C5.18103 6.59103 5.15167 6.63051 5.12488 6.67126L5.05066 6.79822C4.98036 6.935 4.93012 7.08173 4.90125 7.23279C4.88217 7.3394 4.87258 7.44772 4.87292 7.55603V18.8051C4.87025 18.9639 4.89156 19.1221 4.9364 19.2738L4.98914 19.4232L4.99011 19.4242C5.04448 19.5623 5.11929 19.6917 5.21277 19.807L5.22156 19.8177C5.27527 19.8826 5.33495 19.9422 5.39929 19.9965L5.4198 20.014C5.45735 20.0446 5.49652 20.0734 5.53699 20.1L5.63367 20.1576C5.73281 20.2118 5.83836 20.2551 5.94714 20.2865L5.96863 20.2924C6.01182 20.3044 6.05546 20.3161 6.09949 20.3246L6.26062 20.3461C6.31439 20.3508 6.36869 20.3531 6.42273 20.3529H17.6718C17.7921 20.3543 17.9126 20.3425 18.0302 20.3177L18.1473 20.2865C18.4348 20.2056 18.6909 20.0385 18.8807 19.808L18.9677 19.6888C19.0492 19.5624 19.1114 19.4242 19.1532 19.2797L19.1639 19.2416C19.2007 19.0984 19.2208 18.951 19.2206 18.8031V7.55603C19.2209 7.44797 19.2104 7.33995 19.1903 7.23376L19.1884 7.22498V7.224C19.18 7.1815 19.1692 7.13985 19.1581 7.099L19.1532 7.08044C19.1391 7.031 19.1222 6.98264 19.1034 6.93591V6.93494C19.0495 6.79687 18.9744 6.66797 18.8807 6.5531L18.8719 6.54236C18.7485 6.39516 18.5978 6.27315 18.4276 6.18396V6.18298C18.2911 6.11347 18.1446 6.06485 17.994 6.0365C17.8871 6.01684 17.7785 6.00633 17.6698 6.00623H7.08875C6.89753 6.02771 6.71159 6.04829 6.5321 6.07068ZM13.5419 12.4808C13.7273 12.4808 13.9059 12.5548 14.037 12.6859C14.1679 12.8169 14.241 12.9948 14.2411 13.1801C14.241 13.3651 14.1677 13.5432 14.037 13.6742C13.9059 13.8051 13.7271 13.8793 13.5419 13.8793H7.54382C7.35862 13.8791 7.18065 13.8052 7.04968 13.6742C6.91882 13.5432 6.84468 13.3652 6.8446 13.1801C6.84468 12.9949 6.91885 12.8169 7.04968 12.6859C7.18065 12.555 7.35864 12.481 7.54382 12.4808H13.5419ZM16.5721 9.48181C16.7575 9.48182 16.9352 9.55586 17.0663 9.68689C17.1973 9.81793 17.2713 9.99571 17.2714 10.181C17.2713 10.3663 17.1972 10.5442 17.0663 10.6752C16.9352 10.8061 16.7574 10.8802 16.5721 10.8802H7.54382C7.35862 10.8801 7.18065 10.8061 7.04968 10.6752C6.9188 10.5442 6.84468 10.3662 6.8446 10.181C6.84466 9.99586 6.91883 9.8179 7.04968 9.68689C7.18065 9.55592 7.35862 9.48195 7.54382 9.48181H16.5721ZM6.42761 3.65759C6.20232 3.65369 5.97788 3.69513 5.76941 3.78064C5.62168 3.83836 5.48414 3.91969 5.36121 4.0199H5.35925C5.27892 4.08526 5.20488 4.1583 5.13953 4.23865V4.2406C5.07347 4.32199 5.01615 4.41036 4.96765 4.5033C4.89296 4.64854 4.83915 4.80382 4.80847 4.96423C4.80179 5.00139 4.79734 5.03906 4.79285 5.07654C5.11301 4.87425 5.46861 4.7337 5.8407 4.66248H5.84167C6.03321 4.62675 6.22789 4.60805 6.42273 4.60779H17.2802V4.25134C17.2799 3.86013 16.9096 3.69289 16.7909 3.65759H6.42761Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const PaperHandIcon: {
4
+ <T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default PaperHandIcon;