@particle-network/icons 0.0.5 → 0.0.6

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 (66) hide show
  1. package/README.md +4 -180
  2. package/dist/native/AllTokensIcon.js +1 -1
  3. package/dist/native/AppleIcon.js +1 -1
  4. package/dist/native/BoxesIcon.js +1 -1
  5. package/dist/native/CameraIcon.js +3 -6
  6. package/dist/native/ChartLineIcon.js +1 -1
  7. package/dist/native/ChartUpIcon.js +1 -1
  8. package/dist/native/CircleMinusIcon.js +1 -1
  9. package/dist/native/CirclePlusIcon.js +1 -1
  10. package/dist/native/CircleQuestionIcon.js +6 -12
  11. package/dist/native/ColorGoogleIcon.js +4 -4
  12. package/dist/native/ColorInstagramIcon.js +15 -15
  13. package/dist/native/Draggable2Icon.d.ts +7 -0
  14. package/dist/native/Draggable2Icon.js +23 -0
  15. package/dist/native/EllipsisIcon.d.ts +7 -0
  16. package/dist/native/EllipsisIcon.js +23 -0
  17. package/dist/native/ExpandIcon.js +1 -1
  18. package/dist/native/HoneyPotIcon.js +1 -1
  19. package/dist/native/InstagramIcon.js +1 -1
  20. package/dist/native/InternetIcon.js +1 -1
  21. package/dist/native/LayoutDownIcon.js +1 -1
  22. package/dist/native/LayoutLeftIcon.js +1 -1
  23. package/dist/native/LinkIcon.js +12 -6
  24. package/dist/native/Lock2Icon.js +1 -1
  25. package/dist/native/SunIcon.js +1 -1
  26. package/dist/native/ThemeSwitchIcon.js +12 -6
  27. package/dist/native/TiktokIcon.js +1 -1
  28. package/dist/native/TrackIcon.js +2 -5
  29. package/dist/native/TradeMainIcon.js +1 -1
  30. package/dist/native/TrenchIcon.js +1 -1
  31. package/dist/native/WalletIcon.js +1 -1
  32. package/dist/native/index.d.ts +3 -1
  33. package/dist/native/index.js +4 -2
  34. package/dist/web/AllTokensIcon.js +1 -1
  35. package/dist/web/AppleIcon.js +1 -1
  36. package/dist/web/BoxesIcon.js +1 -1
  37. package/dist/web/CameraIcon.js +3 -6
  38. package/dist/web/ChartLineIcon.js +1 -1
  39. package/dist/web/ChartUpIcon.js +1 -1
  40. package/dist/web/CircleMinusIcon.js +1 -1
  41. package/dist/web/CirclePlusIcon.js +1 -1
  42. package/dist/web/CircleQuestionIcon.js +6 -12
  43. package/dist/web/ColorGoogleIcon.js +4 -4
  44. package/dist/web/ColorInstagramIcon.js +15 -15
  45. package/dist/web/Draggable2Icon.d.ts +7 -0
  46. package/dist/web/Draggable2Icon.js +22 -0
  47. package/dist/web/EllipsisIcon.d.ts +7 -0
  48. package/dist/web/EllipsisIcon.js +22 -0
  49. package/dist/web/ExpandIcon.js +1 -1
  50. package/dist/web/HoneyPotIcon.js +1 -1
  51. package/dist/web/InstagramIcon.js +1 -1
  52. package/dist/web/InternetIcon.js +1 -1
  53. package/dist/web/LayoutDownIcon.js +1 -1
  54. package/dist/web/LayoutLeftIcon.js +1 -1
  55. package/dist/web/LinkIcon.js +12 -6
  56. package/dist/web/Lock2Icon.js +1 -1
  57. package/dist/web/SunIcon.js +1 -1
  58. package/dist/web/ThemeSwitchIcon.js +12 -6
  59. package/dist/web/TiktokIcon.js +1 -1
  60. package/dist/web/TrackIcon.js +2 -5
  61. package/dist/web/TradeMainIcon.js +1 -1
  62. package/dist/web/TrenchIcon.js +1 -1
  63. package/dist/web/WalletIcon.js +1 -1
  64. package/dist/web/index.d.ts +3 -1
  65. package/dist/web/index.js +4 -2
  66. package/package.json +1 -1
package/README.md CHANGED
@@ -40,134 +40,19 @@ yarn add @particle-network/icons
40
40
  pnpm add @particle-network/icons
41
41
  ```
42
42
 
43
- ## 🚀 快速开始
44
-
45
- ### React Web
46
-
47
- ```tsx
48
- // 导入单个图标
49
- import { UserIcon } from '@particle-network/icons/web/UserIcon';
50
-
51
- // 或从主入口导入
52
- import { UserIcon, SettingsIcon, SearchIcon } from '@particle-network/icons/web';
53
-
54
- function App() {
55
- return (
56
- <div>
57
- <UserIcon size={24} color='#1890ff' />
58
- <SettingsIcon size={32} color='#52c41a' />
59
- <SearchIcon size={20} color='#666' />
60
- </div>
61
- );
62
- }
63
- ```
64
-
65
- ### React Native
66
-
67
- ```tsx
68
- // 导入单个图标
69
- import { UserIcon } from '@particle-network/icons/native/UserIcon';
70
-
71
- // 或从主入口导入
72
- import { UserIcon, SettingsIcon, SearchIcon } from '@particle-network/icons/native';
73
-
74
- function App() {
75
- return (
76
- <View>
77
- <UserIcon size={24} color='#1890ff' />
78
- <SettingsIcon size={32} color='#52c41a' />
79
- <SearchIcon size={20} color='#666' />
80
- </View>
81
- );
82
- }
83
- ```
84
-
85
- ### 核心组件(自定义渲染)
86
-
87
- ```tsx
88
- import { icons } from '@particle-network/icons/core';
89
-
90
- // 获取图标的 SVG 路径数据
91
- const userIconPath = icons.user.path;
92
- const userIconViewBox = icons.user.viewBox;
93
- ```
94
-
95
- ## 📚 API
96
-
97
- ### 图标组件 Props
98
-
99
- | 属性 | 类型 | 默认值 | 描述 |
100
- | ------------- | ------------------ | -------------- | ------------------------ |
101
- | `size` | `number \| string` | `24` | 图标大小 |
102
- | `color` | `string` | `currentColor` | 图标颜色 |
103
- | `strokeWidth` | `number` | `2` | 线条宽度(仅限线性图标) |
104
- | `className` | `string` | - | CSS 类名(仅 Web) |
105
- | `style` | `object` | - | 样式对象 |
106
-
107
- ### 使用示例
108
-
109
- ```tsx
110
- // 基础用法
111
- <UserIcon />
112
-
113
- // 自定义大小和颜色
114
- <UserIcon size={32} color="#1890ff" />
115
-
116
- // 响应式大小
117
- <UserIcon size="2em" />
118
-
119
- // 自定义样式
120
- <UserIcon
121
- size={24}
122
- style={{ marginRight: 8, verticalAlign: 'middle' }}
123
- />
124
-
125
- // 线性图标自定义线宽
126
- <SearchIcon strokeWidth={1.5} />
127
- ```
128
-
129
- ## 🎨 可用图标
130
-
131
- 本图标库包含 196+ 个精心设计的图标,覆盖以下分类:
132
-
133
- ### 常用图标
134
-
135
- - User, Home, Settings, Search, Menu
136
- - Close, Check, Plus, Minus, Edit
137
- - Delete, Copy, Download, Upload, Share
138
-
139
- ### 导航图标
140
-
141
- - ArrowLeft, ArrowRight, ArrowUp, ArrowDown
142
- - ChevronLeft, ChevronRight, ChevronUp, ChevronDown
143
- - Back, Forward, Refresh, MoreHorizontal, MoreVertical
144
-
145
- ### 媒体图标
146
-
147
- - Play, Pause, Stop, Forward, Rewind
148
- - Volume, VolumeOff, Mic, MicOff, Camera
149
-
150
- ### 社交图标
151
-
152
- - Like, Comment, Share, Bookmark, Flag
153
- - Star, Heart, ThumbsUp, ThumbsDown
154
-
155
- ### 更多分类...
156
-
157
- 查看[完整图标列表](https://ux-design.minijoy.work/icons)
158
-
159
43
  ## 🔧 开发指南
160
44
 
161
45
  ### 添加新图标
162
46
 
163
47
  1. **准备 SVG 文件**
164
48
 
165
- 将 SVG 文件放置在 `packages/icons/svg` 目录中,使用 kebab-case 命名:
49
+ 将 SVG 文件放置在 `packages/icons/svg` 目录中,使用 kebab-case 命名, 彩色 icon 命名为 color-xxx:
166
50
 
167
51
  ```
168
52
  packages/icons/svg/
169
53
  ├── user-icon.svg
170
54
  ├── settings-icon.svg
55
+ ├── color-new-icon.svg <-- 新添加的彩色图标
171
56
  └── new-icon.svg <-- 新添加的图标
172
57
  ```
173
58
 
@@ -180,21 +65,11 @@ const userIconViewBox = icons.user.viewBox;
180
65
  yarn build
181
66
  ```
182
67
 
183
- 3. **使用新图标**
184
-
185
- ```tsx
186
- import { NewIcon } from '@particle-network/icons/web';
187
-
188
- <NewIcon size={24} color='#1890ff' />;
189
- ```
190
-
191
68
  ### SVG 规范
192
69
 
193
70
  为确保图标质量和一致性,请遵循以下规范:
194
71
 
195
72
  - **尺寸**: 24x24px 视窗
196
- - **线宽**: 2px(可通过 strokeWidth 调整)
197
- - **颜色**: 使用 currentColor,支持动态颜色
198
73
  - **路径**: 优化路径,移除不必要的属性
199
74
  - **命名**: 使用 kebab-case 命名
200
75
 
@@ -241,59 +116,8 @@ import { UserIcon } from '@particle-network/icons/web/UserIcon';
241
116
  import * as Icons from '@particle-network/icons/web';
242
117
  ```
243
118
 
244
- ### 动态图标
245
-
246
- ```tsx
247
- import { UserIcon, SettingsIcon, HomeIcon } from '@particle-network/icons/web';
248
-
249
- const iconMap = {
250
- user: UserIcon,
251
- settings: SettingsIcon,
252
- home: HomeIcon,
253
- };
254
-
255
- function DynamicIcon({ name, ...props }) {
256
- const Icon = iconMap[name];
257
- return Icon ? <Icon {...props} /> : null;
258
- }
259
-
260
- // 使用
261
- <DynamicIcon name='user' size={24} color='#1890ff' />;
262
- ```
263
-
264
- ### 主题集成
265
-
266
- ```tsx
267
- // 与主题系统集成
268
- import { useTheme } from '@particle-network/ui-react';
269
- import { UserIcon } from '@particle-network/icons/web';
270
-
271
- function ThemedIcon() {
272
- const { colors } = useTheme();
273
-
274
- return <UserIcon color={colors.primary} size={24} />;
275
- }
276
- ```
277
-
278
- ## 🤝 贡献
279
-
280
- 欢迎贡献新图标!请确保:
281
-
282
- 1. SVG 符合设计规范
283
- 2. 命名清晰、语义化
284
- 3. 提供图标预览
285
- 4. 更新文档
286
-
287
- 查看[贡献指南](../../CONTRIBUTING.md)了解更多。
288
-
289
- ## 📄 许可证
290
-
291
- MIT © [UniversalX Team](https://github.com/particle-network)
292
-
293
- ## 🔗 相关链接
294
-
295
- - [图标预览](https://ux-design.minijoy.work/icons)
296
- - [GitHub 仓库](https://gitlab.minijoy.work/frontend/ux-design)
119
+ - [图标预览](https://ux-design-dev.vercel.app/icons)
120
+ - [Gitlab 仓库](https://gitlab.minijoy.work/frontend/ux-design)
297
121
  - [NPM 包](https://www.npmjs.com/package/@particle-network/icons)
298
122
  - [更新日志](./CHANGELOG.md)
299
123
 
@@ -19,7 +19,7 @@ const AllTokensIcon_AllTokensIcon = ({ size = 16, width = size, height = size, c
19
19
  fillOpacity: 0.2
20
20
  }),
21
21
  /*#__PURE__*/ jsx(Path, {
22
- d: "M12.8579 11.6352C11.1436 11.7304 10.1912 12.4923 10.1912 13.9209C10.2864 15.159 11.0484 15.6352 12.5722 15.8256C13.8103 15.8256 14.8579 15.4447 15.3341 14.5875C15.3341 14.9685 15.4293 15.3494 15.715 15.6352H16.7626C16.4769 15.3494 16.3817 14.778 16.3817 14.0161V11.159C16.4769 9.25421 15.5245 8.39707 13.6198 8.39707C11.9055 8.30183 10.7626 9.06373 10.3817 10.4923L11.5245 10.778C11.6198 9.82564 12.2864 9.25421 13.6198 9.44469C14.8579 9.44469 15.5245 10.1114 15.3341 11.3494C15.1436 11.3494 14.2864 11.5399 12.8579 11.6352ZM15.2388 12.778C15.1436 14.0161 14.3817 14.778 12.9531 14.8733C12.0007 14.8733 11.3341 14.4923 11.3341 13.7304C11.3341 12.9685 12.0007 12.4923 13.2388 12.3971C14.4769 12.3018 15.1436 12.1114 15.2388 11.9209V12.778ZM19.2388 5.7304H18.1912V15.4447H19.2388V5.7304ZM20.9531 5.7304V15.4447H22.0007V5.7304H20.9531ZM17.3341 16.9685C16.0007 16.9685 14.8579 18.1114 14.8579 19.4447C14.8579 19.7304 14.8579 19.8256 14.9531 20.1114C14.0007 20.4923 12.9531 20.5875 12.0007 20.5875C7.23883 20.5875 3.23883 16.6828 3.23883 11.8256C3.23883 6.96849 7.14359 3.06373 12.0007 3.06373C13.9055 3.06373 15.6198 3.53992 16.9531 4.68278C17.4293 4.87326 17.715 4.77802 17.9055 4.58754C18.096 4.20659 18.0007 3.92088 17.715 3.7304C16.096 2.58754 14.096 2.01611 12.0007 2.01611C6.47692 2.01611 2.00073 6.4923 2.00073 12.0161C2.00073 17.5399 6.47692 22.0161 12.0007 22.0161C13.2388 22.0161 14.4769 21.7304 15.6198 21.2542C16.096 21.7304 16.7626 22.0161 17.5245 22.0161C18.8579 22.0161 20.0007 20.8733 20.0007 19.5399C20.0007 18.1114 18.7626 16.9685 17.3341 16.9685ZM17.3341 20.778C16.5722 20.778 16.096 20.3018 16.096 19.5399C16.096 18.778 16.5722 18.3018 17.3341 18.3018C18.096 18.3018 18.5722 18.778 18.5722 19.5399C18.6674 20.3018 18.096 20.778 17.3341 20.778Z",
22
+ d: "M12.001 1.91602C14.1127 1.91606 16.1321 2.49268 17.7695 3.64746H17.7705C17.928 3.75259 18.0427 3.89085 18.0859 4.06348C18.1289 4.23579 18.0975 4.42798 17.9951 4.63281L17.9883 4.64746L17.9766 4.65918C17.8688 4.76687 17.7304 4.84943 17.5518 4.87695C17.3745 4.9042 17.1652 4.87598 16.916 4.77637L16.9004 4.76953L16.8887 4.75879C15.5785 3.63581 13.8893 3.1641 12.001 3.16406C7.19906 3.16406 3.33887 7.02426 3.33887 11.8262C3.33916 16.6271 7.29377 20.4883 12.001 20.4883C12.9194 20.4883 13.9176 20.3954 14.8301 20.0488C14.8003 19.9502 14.7806 19.8712 14.7705 19.791C14.7577 19.6885 14.7578 19.5861 14.7578 19.4453C14.7578 18.0569 15.9456 16.8693 17.334 16.8691C18.8128 16.8693 20.1004 18.0518 20.1006 19.54C20.1003 20.9283 18.9127 22.1161 17.5244 22.1162C16.7616 22.1161 16.0894 21.8369 15.5977 21.3691C14.4612 21.8348 13.2325 22.1162 12.001 22.1162C6.4221 22.1162 1.90163 17.5954 1.90137 12.0166C1.90137 6.43756 6.42194 1.91602 12.001 1.91602ZM17.334 18.4023C16.9743 18.4024 16.692 18.5141 16.5 18.7061C16.3081 18.898 16.1964 19.1804 16.1963 19.54C16.1964 19.8995 16.3083 20.1821 16.5 20.374C16.6919 20.5658 16.9745 20.6786 17.334 20.6787C17.6948 20.6787 18.0022 20.5659 18.2061 20.373C18.4076 20.1821 18.5174 19.9039 18.4736 19.5527L18.4717 19.54H18.4727C18.4726 19.1806 18.3597 18.898 18.168 18.7061C17.976 18.5143 17.6935 18.4024 17.334 18.4023ZM13.626 8.29785H13.625C14.587 8.29863 15.3303 8.51506 15.8203 8.99219C16.3124 9.47195 16.5298 10.1961 16.4814 11.1641V14.0166C16.4815 14.3941 16.5052 14.7197 16.5625 14.9834C16.6201 15.2479 16.7104 15.4409 16.834 15.5645L17.0039 15.7354H15.6738L15.6445 15.7061C15.4116 15.473 15.2975 15.1837 15.2549 14.8867C14.7006 15.6113 13.7012 15.9257 12.5723 15.9258H12.5596C11.7935 15.83 11.2004 15.6602 10.7861 15.3467C10.3657 15.0282 10.1412 14.5693 10.0918 13.9287L10.0908 13.9209H10.0918C10.0919 13.1827 10.339 12.6052 10.8174 12.2021C11.2924 11.8022 11.9831 11.5845 12.8516 11.5361L13.3584 11.4961C13.8373 11.4534 14.2349 11.4028 14.5459 11.3584C14.7536 11.3287 14.9223 11.3017 15.0527 11.2822C15.127 11.2711 15.1921 11.2626 15.2441 11.2568C15.3149 10.6968 15.1979 10.2804 14.9395 10.001C14.6676 9.70745 14.2229 9.54498 13.6201 9.54492H13.6133L13.6055 9.54395C12.9537 9.45091 12.4823 9.54685 12.165 9.76562C11.8499 9.98301 11.6696 10.3335 11.624 10.7881L11.6123 10.9033L11.501 10.876L10.3574 10.5898L10.2588 10.5654L10.2852 10.4668C10.4812 9.7318 10.8756 9.16225 11.4463 8.79004C12.016 8.41852 12.7532 8.24936 13.626 8.29785ZM19.3389 15.5449H18.0918V5.63086H19.3389V15.5449ZM22.1006 15.5449H20.8535V5.63086H22.1006V15.5449ZM15.1045 12.1523C15.0008 12.2026 14.8623 12.2495 14.6924 12.292C14.3516 12.3772 13.8688 12.4492 13.2471 12.4971C12.6372 12.544 12.1808 12.6847 11.8799 12.8965C11.584 13.1049 11.4347 13.3841 11.4346 13.7305C11.4347 14.0769 11.5835 14.3326 11.8418 14.5049C12.1051 14.6803 12.4885 14.7734 12.9531 14.7734C13.6478 14.726 14.1689 14.5175 14.5273 14.1816C14.8847 13.8466 15.0913 13.3744 15.1387 12.7783V12.1338C15.1273 12.1398 15.1163 12.1466 15.1045 12.1523Z",
23
23
  fill: fill
24
24
  })
25
25
  ]
@@ -13,7 +13,7 @@ const AppleIcon_AppleIcon = ({ size = 16, width = size, height = size, color = '
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M15.6631 7.03516C16.358 7.12201 18.2672 7.29639 19.4824 9.11914C19.3936 9.20713 17.2258 10.5093 17.2256 13.1123C17.2256 16.2364 19.9142 17.2796 20.0898 17.3672C20.0023 17.4582 19.6543 18.845 18.6143 20.3184C17.7461 21.5338 16.7913 22.8358 15.4023 22.8359C14.0133 22.8359 13.4922 21.9679 11.9297 21.9678C10.3671 21.9678 9.8459 22.749 8.54395 22.8359C7.15485 22.9228 6.11232 21.5337 5.24414 20.2314C3.42107 17.6268 2.03237 12.8519 3.85547 9.72656C4.81049 8.16396 6.46001 7.12207 8.19629 7.12207C9.58534 7.03526 10.8876 7.99022 11.6689 7.99023C12.5371 7.99023 14.0135 6.86153 15.6631 7.03516ZM15.5762 2C15.7498 3.21533 15.2286 4.43068 14.5342 5.29883C13.8396 6.16699 12.6237 6.86221 11.4082 6.77539C11.2346 5.55995 11.8426 4.34387 12.5371 3.5625C13.2317 2.69437 14.5344 2 15.5762 2Z",
16
+ d: "M15.5564 7.34863C16.1563 7.42364 17.8063 7.57368 18.8562 9.14844C18.7812 9.22343 16.9062 10.3482 16.906 12.5977C16.906 15.2958 19.2283 16.1966 19.3806 16.2725C19.3054 16.349 19.0054 17.5484 18.1062 18.8223C17.3564 19.872 16.5314 20.9969 15.3318 20.9971C14.132 20.9971 13.6816 20.2471 12.3318 20.2471C10.9821 20.2471 10.5318 20.9221 9.40698 20.9971C8.2073 21.0718 7.3072 19.8718 6.55737 18.7471C4.98268 16.4974 3.7836 12.3734 5.35815 9.67383C6.18302 8.32406 7.60744 7.42389 9.10718 7.42383C10.307 7.34882 11.4323 8.17383 12.1072 8.17383C12.8571 8.17361 14.1318 7.19871 15.5564 7.34863ZM15.4812 2.99902C15.6312 4.04878 15.1816 5.09875 14.5818 5.84863C13.9819 6.59852 12.9315 7.19902 11.8816 7.12402C11.7316 6.07418 12.2573 5.02355 12.8572 4.34863C13.4571 3.59901 14.5816 2.99913 15.4812 2.99902Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -13,7 +13,7 @@ const BoxesIcon_BoxesIcon = ({ size = 16, width = size, height = size, color = '
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M6.43457 11.5319C6.72988 11.3614 7.09434 11.3614 7.38965 11.5319L10.8428 13.526C11.1381 13.6965 11.3203 14.0122 11.3203 14.3532V18.3424L11.3125 18.4684C11.2736 18.7594 11.1011 19.0194 10.8428 19.1686L7.38965 21.1627L7.27539 21.2194C7.00395 21.3311 6.69285 21.3119 6.43457 21.1627L2.98047 19.1686C2.7222 19.0194 2.55061 18.7594 2.51172 18.4684L2.50293 18.3424V14.3532C2.50293 14.0123 2.68533 13.6966 2.98047 13.526L6.43457 11.5319ZM16.6172 11.5319C16.9125 11.3615 17.277 11.3614 17.5723 11.5319L21.0254 13.526C21.3205 13.6966 21.5029 14.0123 21.5029 14.3532V18.3424L21.4951 18.4684C21.4562 18.7594 21.2837 19.0194 21.0254 19.1686L17.5723 21.1627L17.458 21.2194C17.1866 21.3312 16.8755 21.3117 16.6172 21.1627L13.1631 19.1686C12.9048 19.0194 12.7332 18.7594 12.6943 18.4684L12.6855 18.3424V14.3532C12.6855 14.0122 12.8678 13.6965 13.1631 13.526L16.6172 11.5319ZM7.49805 16.7194L7.44336 19.7526L10.127 18.2047V15.4049L7.49805 16.7194ZM17.6807 16.7194L17.626 19.7526L20.3096 18.2047V15.4049L17.6807 16.7194ZM3.69629 18.2038L6.25293 19.6793L6.30664 16.7106L3.69629 15.4049V18.2038ZM13.8789 18.2038L16.4346 19.6784L16.4883 16.7106L13.8789 15.4059V18.2038ZM4.08398 14.2663L6.91113 15.6793L9.73828 14.2653L6.91211 12.6335L4.08398 14.2663ZM14.2666 14.2663L17.0928 15.6793L19.9209 14.2653L17.0947 12.6335L14.2666 14.2663ZM11.5234 2.62271C11.8187 2.45225 12.1832 2.45227 12.4785 2.62271L15.9316 4.61685C16.227 4.78736 16.4092 5.10299 16.4092 5.444V9.43326L16.4014 9.55923C16.3624 9.85019 16.1899 10.1103 15.9316 10.2594L12.4785 12.2536L12.3643 12.3102C12.0929 12.4218 11.7816 12.4027 11.5234 12.2536L8.06934 10.2594C7.81115 10.1103 7.63951 9.85012 7.60059 9.55923L7.5918 9.43326V5.444C7.5918 5.10319 7.77432 4.78743 8.06934 4.61685L11.5234 2.62271ZM12.5908 7.80826L12.5361 10.8415L15.2158 9.29556V6.49576L12.5908 7.80826ZM8.78516 9.29458L11.3457 10.7721L11.3994 7.80337L8.78516 6.49576V9.29458ZM9.17285 5.35708L12 6.77017L14.8271 5.35611L12.001 3.72427L9.17285 5.35708Z",
16
+ d: "M6.43457 11.532C6.72988 11.3615 7.09434 11.3615 7.38965 11.532L10.8428 13.5261C11.1381 13.6966 11.3203 14.0123 11.3203 14.3533V18.3425L11.3125 18.4685C11.2736 18.7595 11.1011 19.0195 10.8428 19.1687L7.38965 21.1628L7.27539 21.2195C7.00396 21.3312 6.69285 21.312 6.43457 21.1628L2.98047 19.1687C2.7222 19.0195 2.55061 18.7595 2.51172 18.4685L2.50293 18.3425V14.3533C2.50293 14.0124 2.68533 13.6967 2.98047 13.5261L6.43457 11.532ZM16.6172 11.532C16.9125 11.3616 17.277 11.3615 17.5723 11.532L21.0254 13.5261C21.3205 13.6967 21.5029 14.0124 21.5029 14.3533V18.3425L21.4951 18.4685C21.4562 18.7595 21.2837 19.0195 21.0254 19.1687L17.5723 21.1628L17.458 21.2195C17.1866 21.3313 16.8755 21.3118 16.6172 21.1628L13.1631 19.1687C12.9048 19.0195 12.7332 18.7595 12.6943 18.4685L12.6855 18.3425V14.3533C12.6855 14.0123 12.8678 13.6966 13.1631 13.5261L16.6172 11.532ZM17.585 16.6589L17.5234 20.0349L20.5029 18.3152V15.2009L17.585 16.6589ZM7.40332 16.6589L7.3418 20.0339L10.3203 18.3152V15.2009L7.40332 16.6589ZM3.50293 18.3152L6.34375 19.9558L6.40332 16.6511L3.50293 15.2009V18.3152ZM13.6855 18.3152L16.5254 19.9548L16.585 16.6511L13.6855 15.2019V18.3152ZM3.77637 14.2195L6.91113 15.7869L10.0449 14.2195L6.91113 12.4109L3.77637 14.2195ZM13.959 14.2205L17.0928 15.7869L20.2275 14.2195L17.0938 12.4109L13.959 14.2205ZM11.5234 2.6228C11.8187 2.45234 12.1832 2.45237 12.4785 2.6228L15.9316 4.61694C16.227 4.78746 16.4092 5.10309 16.4092 5.44409V9.43335L16.4014 9.55933C16.3624 9.85028 16.1899 10.1104 15.9316 10.2595L12.4785 12.2537L12.3643 12.3103C12.0929 12.4219 11.7816 12.4028 11.5234 12.2537L8.06934 10.2595C7.81115 10.1103 7.63951 9.85022 7.60059 9.55933L7.5918 9.43335V5.44409C7.5918 5.10328 7.77432 4.78753 8.06934 4.61694L11.5234 2.6228ZM12.4961 7.7478L12.4346 11.1228L15.4092 9.40601V6.29175L12.4961 7.7478ZM8.5918 9.40601L11.4355 11.0486L11.4961 7.7439L8.5918 6.29175V9.40601ZM8.86523 5.3103L12 6.87769L15.1338 5.3103L12 3.50171L8.86523 5.3103Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -6,18 +6,15 @@ const CameraIcon_CameraIcon = ({ size = 16, width = size, height = size, color =
6
6
  const { getColor } = useIconsContext();
7
7
  const _color = isThemeColor(color) ? getColor(color) : color;
8
8
  const fill = props.fill || _color;
9
- const stroke = props.stroke || _color;
10
9
  return /*#__PURE__*/ jsx(external_react_native_svg_default, {
11
10
  width: width,
12
11
  height: height,
13
- viewBox: "0 0 24 24",
12
+ viewBox: "0 0 24 23",
14
13
  fill: "none",
15
14
  ...props,
16
15
  children: /*#__PURE__*/ jsx(Path, {
17
- d: "M11.9792 8.84994C9.84878 8.84994 8.12256 10.6123 8.12256 12.7873C8.12256 14.9623 9.84878 16.7247 11.9792 16.7247C14.1096 16.7247 15.8358 14.9623 15.8358 12.7873C15.8358 10.6123 14.1096 8.84994 11.9792 8.84994ZM11.9792 8.06247C14.5353 8.06247 16.6071 10.1772 16.6071 12.7873C16.6071 15.3974 14.5353 17.5121 11.9792 17.5121C9.42262 17.5121 7.35123 15.3974 7.35123 12.7873C7.35123 10.1772 9.42262 8.06247 11.9792 8.06247ZM17.034 7.2813H18.9222C19.3314 7.28181 19.7238 7.44761 20.0136 7.74248C20.3034 8.03735 20.4672 8.43733 20.4691 8.85506L20.5 17.5133C20.501 17.7198 20.4618 17.9244 20.3849 18.1153C20.3079 18.3063 20.1947 18.4797 20.0516 18.6257C19.9086 18.7717 19.7387 18.8873 19.5517 18.9658C19.3646 19.0443 19.1642 19.0842 18.962 19.0832L5.0793 19.0497C4.6695 19.0482 4.27684 18.8816 3.98678 18.5861C3.69671 18.2905 3.53272 17.89 3.53048 17.4716L3.50002 8.85585C3.4991 8.64931 3.53818 8.44463 3.615 8.25356C3.69182 8.06249 3.80487 7.8888 3.94765 7.74248C4.09043 7.59616 4.26013 7.48009 4.44699 7.40095C4.63385 7.3218 4.83419 7.28114 5.03649 7.2813H7.39404C7.60847 7.2813 7.86031 7.12223 7.95672 6.92654L8.58689 5.64611C8.77664 5.26025 9.27646 4.94329 9.70184 4.94132L14.7081 4.91652C15.1354 4.91415 15.6337 5.22757 15.8258 5.61697L16.4748 6.93205C16.5705 7.12577 16.8204 7.2813 17.034 7.2813ZM17.034 8.06877C16.53 8.06877 16.0132 7.7463 15.786 7.28602L15.137 5.97094C15.0764 5.8481 14.8454 5.7032 14.712 5.70399L9.70608 5.7288C9.5711 5.72919 9.33585 5.87842 9.27607 5.99969L8.6459 7.28012C8.41836 7.74197 7.90042 8.06877 7.39404 8.06877H5.03649C4.61226 8.06877 4.2698 8.4192 4.27134 8.8527L4.30219 17.4688C4.30371 17.6791 4.38634 17.8803 4.53216 18.0288C4.67799 18.1773 4.87526 18.2612 5.08123 18.2622L18.9635 18.2957C19.0641 18.2965 19.1638 18.2768 19.2568 18.238C19.3499 18.1991 19.4344 18.1417 19.5056 18.0692C19.5767 17.9966 19.6331 17.9104 19.6713 17.8154C19.7095 17.7205 19.7289 17.6187 19.7283 17.5161L19.6978 8.85782C19.6966 8.64853 19.6145 8.44819 19.4693 8.30042C19.3241 8.15265 19.1276 8.06939 18.9226 8.06877H17.034ZM11.8828 15.7403C11.7805 15.7403 11.6824 15.6988 11.6101 15.625C11.5377 15.5512 11.4971 15.451 11.4971 15.3466C11.4971 15.2422 11.5377 15.142 11.6101 15.0682C11.6824 14.9943 11.7805 14.9529 11.8828 14.9529C13.0012 14.9529 13.9075 14.0276 13.9075 12.8857C13.9075 12.7813 13.9481 12.6812 14.0204 12.6073C14.0928 12.5335 14.1909 12.492 14.2931 12.492C14.3954 12.492 14.4935 12.5335 14.5658 12.6073C14.6382 12.6812 14.6788 12.7813 14.6788 12.8857C14.6788 13.6428 14.3842 14.3689 13.8599 14.9042C13.3355 15.4396 12.6243 15.7403 11.8828 15.7403Z",
18
- fill: fill,
19
- stroke: stroke,
20
- strokeWidth: 0.45
16
+ d: "M14.707 3.70117C14.9902 3.69974 15.2766 3.79986 15.5146 3.94922C15.753 4.0988 15.9691 4.3129 16.0947 4.56738L16.7441 5.88281C16.7621 5.919 16.8044 5.96738 16.8691 6.00781C16.9342 6.0484 16.9957 6.06444 17.0342 6.06445H18.9229C19.4131 6.06513 19.8821 6.26396 20.2275 6.61523C20.5297 6.92267 20.7164 7.32544 20.7598 7.75293L20.7695 7.9375L20.7998 17.0127C20.8009 17.2577 20.7545 17.5006 20.6631 17.7275C20.5715 17.9547 20.4364 18.1617 20.2656 18.3359C20.0949 18.5102 19.8921 18.6491 19.668 18.7432C19.4443 18.8371 19.2041 18.8839 18.9619 18.8828V18.8838H5.07812C4.58726 18.882 4.11798 18.6821 3.77246 18.3301C3.47026 18.0221 3.28384 17.6193 3.24023 17.1914L3.23047 17.0068L3.2002 7.94043C3.19914 7.69541 3.24569 7.45259 3.33691 7.22559C3.42825 6.99841 3.56303 6.7908 3.7334 6.61621C3.9037 6.44178 4.10643 6.30274 4.33008 6.20801C4.55367 6.11333 4.79369 6.06435 5.03613 6.06445H7.39355C7.43117 6.06445 7.49341 6.04856 7.55957 6.00684C7.62512 5.96546 7.66878 5.91563 7.6875 5.87793L8.31738 4.59668C8.44194 4.34357 8.65825 4.12963 8.89551 3.97949C9.13257 3.8295 9.41834 3.72598 9.7002 3.72461L14.707 3.7002V3.70117ZM9.70801 5.1123H9.7168C9.71506 5.1127 9.70861 5.11387 9.69727 5.11816C9.67668 5.12598 9.65023 5.13908 9.62305 5.15625C9.59593 5.17339 9.57293 5.1915 9.55664 5.20703L9.54492 5.21582L8.91504 6.49609C8.63822 7.05795 8.01694 7.45215 7.39355 7.45215H5.03613C4.7839 7.45237 4.57032 7.66251 4.57129 7.93555L4.60254 17L4.6123 17.0986C4.63169 17.1948 4.6781 17.2833 4.74609 17.3525C4.83653 17.4446 4.95798 17.4955 5.08301 17.4961H18.9658C19.0257 17.4966 19.0858 17.4852 19.1416 17.4619C19.1972 17.4386 19.2478 17.4034 19.291 17.3594C19.3342 17.3153 19.369 17.2626 19.3926 17.2041C19.4162 17.1455 19.4291 17.0822 19.4287 17.0186V17.0176L19.3975 7.94336L19.3877 7.8457C19.3686 7.75042 19.3223 7.66235 19.2549 7.59375C19.1878 7.52559 19.1036 7.48047 19.0137 7.46191L18.9219 7.45215H17.0342C16.4144 7.45213 15.7936 7.06321 15.5166 6.50195L14.8682 5.1875C14.8738 5.19886 14.874 5.19454 14.8564 5.17773C14.8407 5.16269 14.8182 5.14534 14.792 5.12891C14.7659 5.11252 14.7412 5.10005 14.7217 5.09277C14.7144 5.09005 14.7091 5.08868 14.7061 5.08789L9.70801 5.1123ZM11.9795 6.8457C14.707 6.84588 16.9072 9.10131 16.9072 11.8711C16.9071 14.6407 14.7069 16.8953 11.9795 16.8955C9.25154 16.8955 7.05093 14.6408 7.05078 11.8711C7.05078 9.10123 9.25144 6.84572 11.9795 6.8457ZM11.9795 8.2334C10.0206 8.23342 8.42285 9.8559 8.42285 11.8711C8.423 13.8862 10.0207 15.5078 11.9795 15.5078C13.9381 15.5076 15.536 13.8861 15.5361 11.8711C15.5361 9.856 13.9382 8.23357 11.9795 8.2334ZM14.293 11.2754C14.4768 11.2754 14.6522 11.3498 14.7803 11.4805C14.908 11.6109 14.9784 11.7869 14.9785 11.9688C14.9785 12.8033 14.654 13.6052 14.0742 14.1973C13.4941 14.7895 12.7059 15.124 11.8828 15.124C11.6989 15.124 11.5236 15.0487 11.3955 14.918C11.2679 14.7874 11.1973 14.6115 11.1973 14.4297C11.1974 14.2478 11.2677 14.0719 11.3955 13.9414C11.5236 13.8107 11.699 13.7363 11.8828 13.7363C12.8297 13.7363 13.6074 12.9508 13.6074 11.9688C13.6075 11.7869 13.6779 11.6109 13.8057 11.4805C13.9337 11.3498 14.1092 11.2754 14.293 11.2754Z",
17
+ fill: fill
21
18
  })
22
19
  });
23
20
  };
@@ -13,7 +13,7 @@ const ChartLineIcon_ChartLineIcon = ({ size = 16, width = size, height = size, c
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M4.75079 19.2574H19.8774C20.2308 19.2574 20.5171 19.5232 20.5171 19.8764C20.5171 20.0461 20.4497 20.2088 20.3297 20.3288C20.2098 20.4487 20.0471 20.5161 19.8774 20.5161H4.12417C3.95452 20.5161 3.79181 20.4487 3.67185 20.3288C3.55189 20.2088 3.4845 20.0461 3.4845 19.8764V4.15578C3.4845 3.98613 3.55189 3.82343 3.67185 3.70347C3.79181 3.58351 3.95452 3.51611 4.12417 3.51611C4.47744 3.51611 4.75079 3.80252 4.75079 4.15578V19.2574ZM11.3434 10.0706L7.16201 14.2203C7.0493 14.3462 6.89135 14.4224 6.72266 14.4322C6.55397 14.442 6.38824 14.3847 6.26167 14.2728C6.13509 14.1608 6.05795 14.0034 6.04709 13.8347C6.03622 13.6661 6.09253 13.5 6.2037 13.3728L10.8017 8.75187C10.9129 8.62617 11.069 8.54919 11.2364 8.53751C11.4038 8.52583 11.5691 8.58039 11.6966 8.68944L14.4743 11.526L19.3755 6.66449C19.4319 6.60158 19.5001 6.55045 19.5764 6.51406C19.6526 6.47768 19.7353 6.45676 19.8197 6.4525C19.9041 6.44825 19.9884 6.46075 20.0679 6.48929C20.1475 6.51782 20.2205 6.56183 20.2829 6.61876C20.3454 6.67569 20.3959 6.74442 20.4316 6.82098C20.4673 6.89754 20.4875 6.98041 20.491 7.06482C20.4945 7.14923 20.4813 7.23349 20.452 7.31275C20.4228 7.39201 20.3781 7.46469 20.3207 7.5266L15.0021 12.8458C14.8902 12.9685 14.7349 13.0428 14.5691 13.0531C14.4034 13.0634 14.2401 13.0088 14.1139 12.9009L11.3434 10.0707V10.0706Z",
16
+ d: "M4.12402 3.41602C4.53519 3.41602 4.85057 3.75048 4.85059 4.15625V19.1582H19.877C20.2812 19.1582 20.6172 19.4642 20.6172 19.877C20.6171 20.0729 20.539 20.2618 20.4004 20.4004C20.2617 20.5388 20.0729 20.6162 19.877 20.6162H4.12402C3.92799 20.6162 3.73925 20.539 3.60059 20.4004C3.46199 20.2618 3.3849 20.0729 3.38477 19.877V4.15625C3.38477 3.96023 3.46207 3.77149 3.60059 3.63281C3.73927 3.49413 3.9279 3.41605 4.12402 3.41602ZM19.8145 6.35352C19.912 6.3486 20.0096 6.36253 20.1016 6.39551C20.1935 6.4285 20.2784 6.47911 20.3506 6.54492C20.4227 6.61072 20.4812 6.69084 20.5225 6.7793C20.5636 6.86767 20.5868 6.96413 20.5908 7.06152C20.5947 7.15876 20.5796 7.25634 20.5459 7.34766C20.5121 7.43909 20.4599 7.52328 20.3936 7.59473L20.3916 7.59766L15.0752 12.9131C14.9458 13.0548 14.7667 13.1414 14.5752 13.1533C14.3837 13.1652 14.1947 13.1021 14.0488 12.9775L14.042 12.9717L11.3408 10.2129L7.23242 14.292L7.23145 14.291C7.10145 14.4337 6.92139 14.5209 6.72852 14.5322C6.53369 14.5435 6.34159 14.4778 6.19531 14.3486C6.04911 14.2193 5.95998 14.0365 5.94727 13.8418C5.93472 13.6471 5.99972 13.4547 6.12793 13.3076L6.13281 13.3027L10.7305 8.68164C10.8587 8.53891 11.0379 8.45188 11.2295 8.43848C11.3747 8.42838 11.5185 8.46092 11.6436 8.53125L11.7617 8.61426L11.7686 8.62012L14.4746 11.3838L19.3047 6.59375C19.369 6.52308 19.4469 6.46505 19.5332 6.42383C19.6212 6.38185 19.717 6.35846 19.8145 6.35352Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -13,7 +13,7 @@ const ChartUpIcon_ChartUpIcon = ({ size = 16, width = size, height = size, color
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M4.81166 11.6215C4.60456 11.6215 4.40009 11.5258 4.26843 11.3452C4.05041 11.0459 4.11635 10.6261 4.41607 10.4074L9.51117 6.69667C9.76458 6.51324 10.0963 6.47825 10.3794 6.60587L12.975 7.75946L17.5716 4.60184L13.9569 4.34358C13.5868 4.31729 13.3085 3.99613 13.335 3.62643C13.3615 3.25673 13.6907 2.97925 14.0521 3.00453L19.0075 3.35845C19.3768 3.38475 19.6901 3.6424 19.7871 3.99896C19.8842 4.35592 19.7447 4.73694 19.4397 4.94667L13.5186 9.01458C13.269 9.18709 12.9531 9.21743 12.6734 9.09447L10.0813 7.94209L5.20623 11.4931C5.09162 11.5766 4.95346 11.6215 4.81166 11.6215ZM12.7588 7.90811C12.7584 7.90811 12.758 7.90851 12.7576 7.90851L12.7588 7.90811ZM9.83335 7.83207C9.83375 7.83207 9.83416 7.83247 9.83517 7.83247L9.83335 7.83207ZM5.1494 21.0029C4.77889 21.0029 4.47816 20.7022 4.47816 20.3317V16.3833C4.47816 16.0128 4.77889 15.7121 5.1494 15.7121C5.51991 15.7121 5.82065 16.0128 5.82065 16.3833V20.3317C5.82065 20.7022 5.51991 21.0029 5.1494 21.0029ZM9.83112 21.0029C9.46061 21.0029 9.15988 20.7022 9.15988 20.3317V12.7555C9.15988 12.385 9.46061 12.0842 9.83112 12.0842C10.2016 12.0842 10.5024 12.385 10.5024 12.7555V20.3317C10.5024 20.7022 10.2016 21.0029 9.83112 21.0029ZM14.5124 21.0029C14.1419 21.0029 13.8412 20.7022 13.8412 20.3317V14.1093C13.8412 13.7388 14.1419 13.438 14.5124 13.438C14.8829 13.438 15.1837 13.7388 15.1837 14.1093V20.3317C15.1835 20.7022 14.8829 21.0029 14.5124 21.0029ZM19.1942 21.0029C18.8236 21.0029 18.5229 20.7022 18.5229 20.3317V9.87897C18.5229 9.50846 18.8236 9.20772 19.1942 9.20772C19.5647 9.20772 19.8654 9.50846 19.8654 9.87897V20.3317C19.8652 20.7022 19.5647 21.0029 19.1942 21.0029Z",
16
+ d: "M5.14954 15.6321C5.56395 15.6322 5.90025 15.9687 5.90051 16.3831V20.3323C5.90027 20.7467 5.56396 21.0831 5.14954 21.0833C4.73506 21.0832 4.39782 20.7467 4.39758 20.3323V16.3831C4.39785 15.9686 4.73507 15.6322 5.14954 15.6321ZM9.83118 12.0042C10.2458 12.0042 10.5822 12.3415 10.5822 12.7561V20.3323C10.5819 20.7467 10.2456 21.0832 9.83118 21.0833C9.4167 21.0832 9.08044 20.7467 9.0802 20.3323V12.7561C9.0802 12.3415 9.41655 12.0042 9.83118 12.0042ZM14.5118 13.3586C14.9265 13.3586 15.2638 13.6949 15.2638 14.1096V20.3323C15.2634 20.7467 14.9264 21.0833 14.5118 21.0833C14.0976 21.0829 13.7611 20.7466 13.7609 20.3323V14.1096C13.7609 13.6951 14.0974 13.359 14.5118 13.3586ZM19.1945 9.12817C19.6089 9.1284 19.9454 9.46463 19.9454 9.87915V20.3323C19.945 20.7466 19.6089 21.083 19.1945 21.0833C18.78 21.0832 18.4427 20.7467 18.4425 20.3323V9.87915C18.4425 9.46453 18.7799 9.12825 19.1945 9.12817ZM14.0577 2.92505L19.0128 3.27856C19.4159 3.30726 19.7583 3.58859 19.8644 3.97778C19.9703 4.36751 19.8175 4.78396 19.4845 5.01294L13.5636 9.08032C13.2912 9.26852 12.9457 9.30228 12.6407 9.16821L10.09 8.03345L5.25305 11.5579C5.12482 11.6512 4.97026 11.7014 4.81165 11.7014C4.5801 11.7014 4.35055 11.5949 4.20325 11.3928C3.95925 11.0578 4.03405 10.5876 4.36926 10.343L9.46399 6.63208L9.57141 6.5647C9.83006 6.42522 10.1413 6.41138 10.4122 6.53345L12.9659 7.66821L17.338 4.66528L13.9513 4.42407C13.5373 4.39459 13.2256 4.03489 13.255 3.62134C13.2847 3.20696 13.6531 2.89682 14.0577 2.92505Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -13,7 +13,7 @@ const CircleMinusIcon_CircleMinusIcon = ({ size = 16, width = size, height = siz
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M12 2C13.3497 2 14.6593 2.2645 15.8926 2.78613C17.0835 3.28984 18.1531 4.01055 19.0713 4.92871C19.9895 5.84689 20.7102 6.91655 21.2139 8.10742C21.7355 9.34068 22 10.6503 22 12C22 13.3497 21.7355 14.6593 21.2139 15.8926C20.7102 17.0834 19.9894 18.1532 19.0713 19.0713C18.1531 19.9895 17.0834 20.7102 15.8926 21.2139C14.6593 21.7355 13.3497 22 12 22C10.6503 22 9.34068 21.7355 8.10742 21.2139C6.91654 20.7102 5.84687 19.9894 4.92871 19.0713C4.01056 18.1531 3.28984 17.0835 2.78613 15.8926C2.26454 14.6593 2 13.3497 2 12C2 10.6503 2.26452 9.34069 2.78613 8.10742C3.28984 6.91654 4.01055 5.8469 4.92871 4.92871C5.84686 4.01056 6.91658 3.28981 8.10742 2.78613C9.34067 2.26448 10.6503 2 12 2ZM12 3.33301C7.22117 3.33301 3.33301 7.22117 3.33301 12C3.33301 16.7788 7.22117 20.667 12 20.667C16.7788 20.667 20.667 16.7788 20.667 12C20.667 7.22118 16.7788 3.33302 12 3.33301ZM16.2002 11.2002C16.6419 11.2003 17 11.5582 17 12C17 12.4417 16.6419 12.7997 16.2002 12.7998H7.7998C7.35808 12.7997 7.00003 12.4417 7 12C7 11.5582 7.35807 11.2003 7.7998 11.2002H16.2002Z",
16
+ d: "M12 1.90039C13.3629 1.90039 14.686 2.16744 15.9316 2.69434C17.1343 3.20307 18.2144 3.93121 19.1416 4.8584C20.0688 5.78561 20.797 6.86567 21.3057 8.06836C21.8326 9.31405 22.0996 10.637 22.0996 12C22.0996 13.3629 21.8325 14.686 21.3057 15.9316C20.7969 17.1343 20.0688 18.2144 19.1416 19.1416C18.2144 20.0688 17.1343 20.797 15.9316 21.3057C14.6859 21.8326 13.3629 22.0996 12 22.0996C10.637 22.0996 9.31404 21.8325 8.06836 21.3057C6.86566 20.797 5.78559 20.0688 4.8584 19.1416C3.93121 18.2144 3.20307 17.1343 2.69434 15.9316C2.23329 14.8416 1.97041 13.6923 1.91211 12.5088L1.90039 12C1.90039 10.6371 2.16746 9.31405 2.69434 8.06836C3.20307 6.86566 3.93121 5.78562 4.8584 4.8584C5.78558 3.93122 6.8657 3.20304 8.06836 2.69434C9.31404 2.16743 10.6371 1.90039 12 1.90039ZM12 3.43262C7.2764 3.43262 3.43262 7.2764 3.43262 12C3.43262 16.7236 7.2764 20.5674 12 20.5674L12.4404 20.5557C16.9602 20.3256 20.5674 16.5759 20.5674 12C20.5674 7.42412 16.9602 3.67439 12.4404 3.44434L12 3.43262ZM16.2002 11.1006C16.6971 11.1007 17.0996 11.503 17.0996 12C17.0996 12.497 16.6971 12.8993 16.2002 12.8994H7.7998C7.30289 12.8993 6.90042 12.497 6.90039 12C6.90039 11.503 7.30288 11.1007 7.7998 11.1006H16.2002Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -13,7 +13,7 @@ const CirclePlusIcon_CirclePlusIcon = ({ size = 16, width = size, height = size,
13
13
  fill: "none",
14
14
  ...props,
15
15
  children: /*#__PURE__*/ jsx(Path, {
16
- d: "M12 2C13.3497 2 14.6593 2.2645 15.8926 2.78613C17.0835 3.28984 18.1531 4.01055 19.0713 4.92871C19.9895 5.84689 20.7102 6.91655 21.2139 8.10742C21.7355 9.34068 22 10.6503 22 12C22 13.3497 21.7355 14.6593 21.2139 15.8926C20.7102 17.0834 19.9894 18.1532 19.0713 19.0713C18.1531 19.9895 17.0834 20.7102 15.8926 21.2139C14.6593 21.7355 13.3497 22 12 22C10.6503 22 9.34068 21.7355 8.10742 21.2139C6.91654 20.7102 5.84687 19.9894 4.92871 19.0713C4.01056 18.1531 3.28984 17.0835 2.78613 15.8926C2.26454 14.6593 2 13.3497 2 12C2 10.6503 2.26452 9.34069 2.78613 8.10742C3.28984 6.91654 4.01055 5.8469 4.92871 4.92871C5.84686 4.01056 6.91658 3.28981 8.10742 2.78613C9.34067 2.26448 10.6503 2 12 2ZM12 3.33301C7.22117 3.33301 3.33301 7.22117 3.33301 12C3.33301 16.7788 7.22117 20.667 12 20.667C16.7788 20.667 20.667 16.7788 20.667 12C20.667 7.22118 16.7788 3.33302 12 3.33301ZM12.0049 7.00879C12.4465 7.00879 12.8054 7.36698 12.8057 7.80859V11.2021H16.1982C16.64 11.2021 16.9979 11.5603 16.998 12.002C16.998 12.4438 16.6401 12.8018 16.1982 12.8018H12.8057V16.1953C12.8057 16.6371 12.4467 16.9951 12.0049 16.9951C11.5632 16.9949 11.2051 16.637 11.2051 16.1953V12.8018H7.81152C7.36991 12.8015 7.01172 12.4436 7.01172 12.002C7.01187 11.5604 7.37001 11.2024 7.81152 11.2021H11.2051V7.80859C11.2053 7.3671 11.5634 7.00898 12.0049 7.00879Z",
16
+ d: "M12 1.90039C13.3629 1.90039 14.686 2.16744 15.9316 2.69434C17.1343 3.20307 18.2144 3.93121 19.1416 4.8584C20.0688 5.78561 20.797 6.86567 21.3057 8.06836C21.8326 9.31405 22.0996 10.637 22.0996 12C22.0996 13.3629 21.8325 14.686 21.3057 15.9316C20.7969 17.1343 20.0688 18.2144 19.1416 19.1416C18.2144 20.0688 17.1343 20.797 15.9316 21.3057C14.6859 21.8326 13.3629 22.0996 12 22.0996C10.637 22.0996 9.31404 21.8325 8.06836 21.3057C6.86566 20.797 5.78559 20.0688 4.8584 19.1416C3.93121 18.2144 3.20307 17.1343 2.69434 15.9316C2.16749 14.686 1.90039 13.363 1.90039 12C1.90039 10.6371 2.16746 9.31405 2.69434 8.06836C3.20307 6.86566 3.93121 5.78562 4.8584 4.8584C5.78558 3.93122 6.8657 3.20304 8.06836 2.69434C9.31404 2.16743 10.6371 1.90039 12 1.90039ZM12 3.43262C7.2764 3.43262 3.43262 7.2764 3.43262 12C3.43262 16.7236 7.2764 20.5674 12 20.5674C16.7236 20.5674 20.5674 16.7236 20.5674 12C20.5674 7.27641 16.7236 3.43263 12 3.43262ZM12.0967 6.91309C12.5505 6.95906 12.905 7.34267 12.9053 7.80859V11.1025H16.1982C16.6952 11.1025 17.0975 11.5051 17.0977 12.002L17.0938 12.0938C17.0478 12.5477 16.6643 12.9014 16.1982 12.9014H12.9053V16.1953C12.9053 16.6615 12.5506 17.0449 12.0967 17.0908L12.0049 17.0947C11.5081 17.0945 11.1055 16.6923 11.1055 16.1953V12.9014H7.81152C7.34575 12.9011 6.962 12.5476 6.91602 12.0938L6.91211 12.002C6.91228 11.5052 7.31484 11.1028 7.81152 11.1025H11.1055V7.80859C11.1057 7.31193 11.5082 6.9094 12.0049 6.90918L12.0967 6.91309Z",
17
17
  fill: fill
18
18
  })
19
19
  });
@@ -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,22 +6,16 @@ const CircleQuestionIcon_CircleQuestionIcon = ({ size = 16, width = size, height
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: "M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3.2959C7.19308 3.2959 3.2959 7.19308 3.2959 12C3.2959 16.8069 7.19308 20.7041 12 20.7041C16.8069 20.7041 20.7041 16.8069 20.7041 12C20.7041 7.19308 16.8069 3.2959 12 3.2959ZM11.6162 15.6572C11.8523 15.5203 12.1428 15.5203 12.3789 15.6572C12.4945 15.7243 12.5904 15.8208 12.6572 15.9365C12.7241 16.0525 12.7597 16.1845 12.7598 16.3184C12.7596 16.7389 12.4176 17.0801 11.9971 17.0801C11.5767 17.0798 11.2355 16.7387 11.2354 16.3184C11.2354 16.0446 11.3802 15.7942 11.6162 15.6572ZM11.9893 6.9209C12.8821 6.9189 13.7454 7.27072 14.3545 7.88184C14.9199 8.45127 15.2096 9.18345 15.168 9.94336C15.1243 10.723 14.872 11.3379 13.6182 12.5322C12.9813 13.1373 12.5807 13.5944 12.541 13.9932C12.509 14.3064 12.2315 14.54 11.9082 14.54C11.8864 14.54 11.8665 14.5381 11.8447 14.5361C11.4957 14.5044 11.2399 14.2072 11.2734 13.874C11.3607 13.0347 12.0074 12.3553 12.7197 11.6768C13.8601 10.5919 13.8786 10.2468 13.8984 9.88184C13.9222 9.45524 13.757 9.04217 13.4316 8.71875C13.0626 8.34789 12.5386 8.13574 11.9971 8.13574H11.9932C10.9497 8.13793 10.0967 8.94941 10.0967 9.94531C10.0965 10.2805 9.81297 10.5497 9.45996 10.5498C9.10689 10.5498 8.82339 10.2786 8.82324 9.94336C8.82324 9.13801 9.15209 8.37998 9.74902 7.80859C10.3462 7.23723 11.1422 6.92296 11.9893 6.9209Z",
18
- fill: fill
19
- }),
20
- /*#__PURE__*/ jsx(Path, {
21
- d: "M11.6162 15.6572L11.5961 15.6226L11.5961 15.6226L11.6162 15.6572ZM12.3789 15.6572L12.399 15.6226L12.399 15.6226L12.3789 15.6572ZM12.6572 15.9365L12.6919 15.9165L12.6919 15.9165L12.6572 15.9365ZM12.7598 16.3184L12.7998 16.3184V16.3183L12.7598 16.3184ZM11.9971 17.0801L11.997 17.1201H11.9971V17.0801ZM11.2354 16.3184H11.1954V16.3184L11.2354 16.3184ZM11.9893 6.9209L11.9892 6.8809H11.9892L11.9893 6.9209ZM14.3545 7.88184L14.3829 7.85365L14.3828 7.8536L14.3545 7.88184ZM15.168 9.94336L15.2079 9.9456L15.2079 9.94555L15.168 9.94336ZM13.6182 12.5322L13.6457 12.5612L13.6458 12.5612L13.6182 12.5322ZM12.541 13.9932L12.5808 13.9972L12.5808 13.9971L12.541 13.9932ZM11.9082 14.54L11.9082 14.58H11.9082V14.54ZM11.8447 14.5361L11.8411 14.576L11.8411 14.576L11.8447 14.5361ZM11.2734 13.874L11.2337 13.8699L11.2336 13.87L11.2734 13.874ZM12.7197 11.6768L12.6922 11.6478L12.6921 11.6478L12.7197 11.6768ZM13.8984 9.88184L13.8585 9.87961L13.8585 9.87966L13.8984 9.88184ZM13.4316 8.71875L13.4033 8.74697L13.4034 8.74712L13.4316 8.71875ZM11.9932 8.13574V8.09574H11.9931L11.9932 8.13574ZM10.0967 9.94531L10.1367 9.94533V9.94531H10.0967ZM9.45996 10.5498V10.5898H9.45997L9.45996 10.5498ZM8.82324 9.94336H8.78324V9.94338L8.82324 9.94336ZM9.74902 7.80859L9.72137 7.77969L9.72136 7.7797L9.74902 7.80859ZM12 2V2.04C17.5008 2.04 21.96 6.49924 21.96 12H22H22.04C22.04 6.45506 17.5449 1.96 12 1.96V2ZM22 12H21.96C21.96 17.5008 17.5008 21.96 12 21.96V22V22.04C17.5449 22.04 22.04 17.5449 22.04 12H22ZM12 22V21.96C6.49924 21.96 2.04 17.5008 2.04 12H2H1.96C1.96 17.5449 6.45506 22.04 12 22.04V22ZM2 12H2.04C2.04 6.49924 6.49924 2.04 12 2.04V2V1.96C6.45506 1.96 1.96 6.45506 1.96 12H2ZM12 3.2959V3.2559C7.17099 3.2559 3.2559 7.17099 3.2559 12H3.2959H3.3359C3.3359 7.21517 7.21517 3.3359 12 3.3359V3.2959ZM3.2959 12H3.2559C3.2559 16.829 7.17099 20.7441 12 20.7441V20.7041V20.6641C7.21517 20.6641 3.3359 16.7848 3.3359 12H3.2959ZM12 20.7041V20.7441C16.829 20.7441 20.7441 16.829 20.7441 12H20.7041H20.6641C20.6641 16.7848 16.7848 20.6641 12 20.6641V20.7041ZM20.7041 12H20.7441C20.7441 7.17099 16.829 3.2559 12 3.2559V3.2959V3.3359C16.7848 3.3359 20.6641 7.21517 20.6641 12H20.7041ZM11.6162 15.6572L11.6363 15.6918C11.86 15.5621 12.1351 15.5621 12.3588 15.6918L12.3789 15.6572L12.399 15.6226C12.1505 15.4785 11.8447 15.4785 11.5961 15.6226L11.6162 15.6572ZM12.3789 15.6572L12.3588 15.6918C12.4684 15.7553 12.5592 15.8468 12.6226 15.9565L12.6572 15.9365L12.6919 15.9165C12.6216 15.7948 12.5207 15.6932 12.399 15.6226L12.3789 15.6572ZM12.6572 15.9365L12.6226 15.9565C12.686 16.0664 12.7197 16.1916 12.7198 16.3184L12.7598 16.3184L12.7998 16.3183C12.7997 16.1774 12.7622 16.0385 12.6919 15.9165L12.6572 15.9365ZM12.7598 16.3184L12.7198 16.3183C12.7196 16.7167 12.3956 17.0401 11.9971 17.0401V17.0801V17.1201C12.4397 17.1201 12.7996 16.761 12.7998 16.3184L12.7598 16.3184ZM11.9971 17.0801L11.9971 17.0401C11.5988 17.0398 11.2755 16.7166 11.2754 16.3183L11.2354 16.3184L11.1954 16.3184C11.1955 16.7608 11.5546 17.1198 11.997 17.1201L11.9971 17.0801ZM11.2354 16.3184H11.2754C11.2754 16.0589 11.4126 15.8216 11.6363 15.6918L11.6162 15.6572L11.5961 15.6226C11.3478 15.7667 11.1954 16.0303 11.1954 16.3184H11.2354ZM11.9893 6.9209L11.9893 6.9609C12.8719 6.95892 13.7248 7.30677 14.3262 7.91007L14.3545 7.88184L14.3828 7.8536C13.7659 7.23468 12.8923 6.87888 11.9892 6.8809L11.9893 6.9209ZM14.3545 7.88184L14.3261 7.91002C14.8841 8.47195 15.169 9.19328 15.128 9.94117L15.168 9.94336L15.2079 9.94555C15.2502 9.17362 14.9558 8.4306 14.3829 7.85365L14.3545 7.88184ZM15.168 9.94336L15.128 9.94112C15.1064 10.3262 15.0336 10.6686 14.812 11.0627C14.5896 11.4581 14.2164 11.9072 13.5906 12.5033L13.6182 12.5322L13.6458 12.5612C14.2738 11.963 14.6536 11.5075 14.8817 11.1019C15.1106 10.695 15.1858 10.3401 15.2079 9.9456L15.168 9.94336ZM13.6182 12.5322L13.5906 12.5032C13.2719 12.806 13.0107 13.0733 12.824 13.3156C12.6377 13.5574 12.5222 13.7787 12.5012 13.9892L12.541 13.9932L12.5808 13.9971C12.5996 13.8089 12.7042 13.6022 12.8873 13.3645C13.0701 13.1273 13.3276 12.8635 13.6457 12.5612L13.6182 12.5322ZM12.541 13.9932L12.5012 13.9891C12.4715 14.2801 12.2128 14.5 11.9082 14.5V14.54V14.58C12.2501 14.58 12.5466 14.3327 12.5808 13.9972L12.541 13.9932ZM11.9082 14.54L11.9082 14.5C11.8886 14.5 11.8706 14.4983 11.8483 14.4963L11.8447 14.5361L11.8411 14.576C11.8625 14.5779 11.8842 14.58 11.9082 14.58L11.9082 14.54ZM11.8447 14.5361L11.8483 14.4963C11.5198 14.4664 11.2821 14.1875 11.3132 13.878L11.2734 13.874L11.2336 13.87C11.1977 14.2269 11.4715 14.5424 11.8411 14.576L11.8447 14.5361ZM11.2734 13.874L11.3132 13.8782C11.3988 13.0558 12.0332 12.386 12.7473 11.7057L12.7197 11.6768L12.6921 11.6478C11.9817 12.3246 11.3227 13.0137 11.2337 13.8699L11.2734 13.874ZM12.7197 11.6768L12.7473 11.7057C13.3184 11.1625 13.6116 10.8017 13.7642 10.5288C13.9183 10.2534 13.9283 10.0686 13.9384 9.88401L13.8984 9.88184L13.8585 9.87966C13.8487 10.06 13.8396 10.2302 13.6944 10.4898C13.5477 10.752 13.2615 11.1061 12.6922 11.6478L12.7197 11.6768ZM13.8984 9.88184L13.9384 9.88406C13.9629 9.4452 13.7927 9.02123 13.4598 8.69038L13.4316 8.71875L13.4034 8.74712C13.7214 9.06311 13.8816 9.46528 13.8585 9.87961L13.8984 9.88184ZM13.4316 8.71875L13.46 8.69054C13.0831 8.3118 12.5488 8.09574 11.9971 8.09574V8.13574V8.17574C12.5284 8.17574 13.0421 8.38399 13.4033 8.74696L13.4316 8.71875ZM11.9971 8.13574V8.09574H11.9932V8.13574V8.17574H11.9971V8.13574ZM11.9932 8.13574L11.9931 8.09574C10.9295 8.09798 10.0567 8.92549 10.0567 9.94531H10.0967H10.1367C10.1367 8.97332 10.9699 8.17789 11.9932 8.17574L11.9932 8.13574ZM10.0967 9.94531L10.0567 9.9453C10.0566 10.2565 9.79286 10.5097 9.45995 10.5098L9.45996 10.5498L9.45997 10.5898C9.83309 10.5897 10.1365 10.3045 10.1367 9.94533L10.0967 9.94531ZM9.45996 10.5498V10.5098C9.12719 10.5098 8.86338 10.2547 8.86324 9.94334L8.82324 9.94336L8.78324 9.94338C8.7834 10.3024 9.0866 10.5898 9.45996 10.5898V10.5498ZM8.82324 9.94336H8.86324C8.86324 9.14925 9.1874 8.40156 9.77668 7.83749L9.74902 7.80859L9.72136 7.7797C9.11679 8.35841 8.78324 9.12678 8.78324 9.94336H8.82324ZM9.74902 7.80859L9.77668 7.83749C10.3662 7.27346 11.1522 6.96293 11.9894 6.9609L11.9893 6.9209L11.9892 6.8809C11.1321 6.88298 10.3262 7.20099 9.72137 7.77969L9.74902 7.80859Z",
22
- fill: fill
23
- })
24
- ]
15
+ children: /*#__PURE__*/ jsx(Path, {
16
+ d: "M12 1.90039C17.5781 1.90039 22.0996 6.42192 22.0996 12C22.0996 17.5781 17.5781 22.0996 12 22.0996C6.42192 22.0996 1.90039 17.5781 1.90039 12C1.90039 6.42192 6.42192 1.90039 12 1.90039ZM12 3.39551C7.24831 3.39551 3.39551 7.24831 3.39551 12C3.39551 16.7517 7.24831 20.6045 12 20.6045C16.7517 20.6045 20.6045 16.7517 20.6045 12C20.6045 7.24831 16.7517 3.39551 12 3.39551ZM11.5664 15.5703C11.8333 15.4158 12.1618 15.4158 12.4287 15.5703C12.5596 15.6462 12.6687 15.7559 12.7441 15.8867C12.8196 16.0177 12.8593 16.1669 12.8594 16.3184L12.8555 16.4062C12.8141 16.8119 12.4906 17.1347 12.085 17.1758L11.9971 17.1797C11.5216 17.1794 11.1359 16.7939 11.1357 16.3184C11.1357 16.0089 11.2997 15.7251 11.5664 15.5703ZM11.9893 6.82129C12.9078 6.81929 13.7973 7.18095 14.4258 7.81152C15.0097 8.3997 15.3109 9.15936 15.2676 9.94922C15.2451 10.3506 15.1678 10.7145 14.9336 11.1309C14.7012 11.544 14.317 12.0048 13.6875 12.6045C13.3697 12.9064 13.1143 13.1681 12.9346 13.4014C12.754 13.6358 12.6577 13.8315 12.6406 14.0029C12.6077 14.3258 12.3546 14.5717 12.0439 14.6279L11.9082 14.6396C11.8811 14.6396 11.8565 14.6376 11.8359 14.6357C11.4356 14.5993 11.1343 14.2558 11.1738 13.8633C11.2657 12.9821 11.9428 12.2786 12.6504 11.6045C13.218 11.0645 13.4993 10.7151 13.6416 10.4609C13.7801 10.2133 13.7892 10.0531 13.7988 9.87598C13.8208 9.48028 13.6678 9.09478 13.3613 8.79004L13.3604 8.78906C13.0109 8.4381 12.5131 8.23535 11.9971 8.23535H11.9932C11.0002 8.23755 10.1963 9.00926 10.1963 9.94531C10.1961 10.3405 9.86325 10.6493 9.45996 10.6494C9.05615 10.6494 8.72381 10.3381 8.72363 9.94336C8.72363 9.10996 9.06369 8.32601 9.67969 7.73633C10.296 7.14663 11.1173 6.82341 11.9893 6.82129Z",
17
+ fill: fill
18
+ })
25
19
  });
26
20
  };
27
21
  CircleQuestionIcon_CircleQuestionIcon.displayName = 'CircleQuestionIcon|circle-question';
@@ -9,19 +9,19 @@ const ColorGoogleIcon = ({ size = 16, width = size, height = size, ...props })=>
9
9
  ...props,
10
10
  children: [
11
11
  /*#__PURE__*/ jsx(Path, {
12
- d: "M5.84882 11.9999C5.84882 11.3125 5.96609 10.6531 6.17357 10.0352L2.53096 7.31085C1.7991 8.76544 1.41904 10.3716 1.4214 11.9999C1.4214 13.6849 1.82012 15.2744 2.52916 16.6853L6.16996 13.9565C5.95767 13.326 5.84922 12.6652 5.84882 11.9999Z",
12
+ d: "M6.88571 11.9999C6.88571 11.4284 6.98321 10.8802 7.15572 10.3664L4.12713 8.10132C3.51863 9.31072 3.20264 10.6461 3.2046 11.9999C3.2046 13.401 3.53611 14.7225 4.12563 15.8955L7.15272 13.6267C6.97621 13.1025 6.88604 12.5531 6.88571 11.9999Z",
13
13
  fill: "#FBBC05"
14
14
  }),
15
15
  /*#__PURE__*/ jsx(Path, {
16
- d: "M12.2463 5.74577C13.7708 5.74577 15.1483 6.27439 16.2308 7.14039L19.38 4.06158C17.4613 2.4261 15.0013 1.41577 12.2463 1.41577C7.96864 1.41577 4.29182 3.81077 2.53096 7.31085L6.1753 10.0352C7.01424 7.54002 9.40656 5.74577 12.2463 5.74577Z",
16
+ d: "M12.2048 6.80006C13.4724 6.80006 14.6176 7.23957 15.5177 7.9596L18.136 5.39977C16.5407 4.03998 14.4954 3.19995 12.2048 3.19995C8.6482 3.19995 5.59117 5.19123 4.12713 8.10132L7.15715 10.3664C7.85468 8.29186 9.84373 6.80006 12.2048 6.80006Z",
17
17
  fill: "#EA4335"
18
18
  }),
19
19
  /*#__PURE__*/ jsx(Path, {
20
- d: "M12.2463 18.254C9.40565 18.254 7.01333 16.4598 6.1735 13.9646L2.53088 16.6888C4.29085 20.1889 7.96774 22.584 12.2463 22.584C14.8858 22.584 17.4062 21.6667 19.2988 19.9464L15.8402 17.3285C14.8651 17.9301 13.6373 18.254 12.2463 18.254Z",
20
+ d: "M12.2048 17.1998C9.84298 17.1998 7.85392 15.7081 7.15566 13.6335L4.12706 15.8985C5.59036 18.8086 8.64745 20.8 12.2048 20.8C14.3994 20.8 16.4949 20.0372 18.0685 18.6069L15.1929 16.4303C14.3821 16.9306 13.3613 17.1998 12.2048 17.1998Z",
21
21
  fill: "#34A853"
22
22
  }),
23
23
  /*#__PURE__*/ jsx(Path, {
24
- d: "M22.5786 11.9999C22.5786 11.3747 22.4795 10.7009 22.3323 10.0758H12.2453V14.1649H18.051C17.7616 15.5595 16.9705 16.6311 15.8402 17.3285L19.2988 19.9464C21.2861 18.1404 22.5786 15.4504 22.5786 11.9999Z",
24
+ d: "M20.7955 12C20.7955 11.4802 20.713 10.9199 20.5906 10.4002H12.2039V13.8H17.031C16.7904 14.9595 16.1327 15.8505 15.1929 16.4303L18.0685 18.6069C19.7208 17.1053 20.7955 14.8688 20.7955 12Z",
25
25
  fill: "#4285F4"
26
26
  })
27
27
  ]
@@ -9,25 +9,25 @@ const ColorInstagramIcon = ({ size = 16, width = size, height = size, ...props }
9
9
  ...props,
10
10
  children: [
11
11
  /*#__PURE__*/ jsx(Path, {
12
- d: "M15.0478 3.82617H8.89992C6.07104 3.82617 3.79102 6.10651 3.79102 8.92235V15.0423C3.79102 17.8583 6.07104 20.1738 8.89992 20.1738H15.0478C17.8767 20.1738 20.209 17.8583 20.209 15.0423V8.92235C20.209 6.10651 17.8767 3.82617 15.0478 3.82617ZM18.6621 15.0423C18.6621 17.0106 17.0252 18.627 15.0478 18.627H8.89992C6.92242 18.627 5.30273 17.0106 5.30273 15.0423V8.92235C5.30273 6.95413 6.92242 5.33789 8.89992 5.33789H15.0478C17.0252 5.33789 18.6621 6.95413 18.6621 8.92235V15.0423Z",
12
+ d: "M15.2812 3.19995H8.66239C5.6168 3.19995 3.16211 5.65498 3.16211 8.68653V15.2753C3.16211 18.3071 5.6168 20.8 8.66239 20.8H15.2812C18.3269 20.8 20.8378 18.3071 20.8378 15.2753V8.68653C20.8378 5.65498 18.3269 3.19995 15.2812 3.19995ZM19.1724 15.2753C19.1724 17.3944 17.4101 19.1346 15.2812 19.1346H8.66239C6.5334 19.1346 4.78964 17.3944 4.78964 15.2753V8.68653C4.78964 6.56753 6.5334 4.82748 8.66239 4.82748H15.2812C17.4101 4.82748 19.1724 6.56753 19.1724 8.68653V15.2753Z",
13
13
  fill: "url(#prefix__paint0_linear_27039_91598)"
14
14
  }),
15
15
  /*#__PURE__*/ jsx(Path, {
16
- d: "M11.9738 7.90234C9.71036 7.90234 7.87524 9.7291 7.87524 11.9824C7.87524 14.2354 9.71036 16.0621 11.9738 16.0621C14.2373 16.0621 16.0723 14.2354 16.0723 11.9824C16.0723 9.7291 14.2373 7.90234 11.9738 7.90234ZM11.9738 14.5322C10.5618 14.5322 9.41231 13.3879 9.41231 11.9824C9.41231 10.5756 10.5618 9.43238 11.9738 9.43238C13.3857 9.43238 14.5353 10.5756 14.5353 11.9824C14.5353 13.3879 13.3857 14.5322 11.9738 14.5322Z",
16
+ d: "M11.9719 7.58838C9.53503 7.58838 7.55933 9.55507 7.55933 11.981C7.55933 14.4066 9.53503 16.3732 11.9719 16.3732C14.4087 16.3732 16.3843 14.4066 16.3843 11.981C16.3843 9.55507 14.4087 7.58838 11.9719 7.58838ZM11.9719 14.7262C10.4517 14.7262 9.21414 13.4941 9.21414 11.981C9.21414 10.4664 10.4517 9.23563 11.9719 9.23563C13.492 9.23563 14.7296 10.4665 14.7296 11.981C14.7296 13.4941 13.492 14.7262 11.9719 14.7262Z",
17
17
  fill: "url(#prefix__paint1_linear_27039_91598)"
18
18
  }),
19
19
  /*#__PURE__*/ jsx(Path, {
20
- d: "M16.3798 7.05273C16.0781 7.05273 15.8335 7.29616 15.8335 7.59636C15.8335 7.89659 16.0781 8.14012 16.3798 8.14012C16.6811 8.14012 16.9258 7.89659 16.9258 7.59636C16.9258 7.29616 16.6811 7.05273 16.3798 7.05273Z",
20
+ d: "M16.7153 6.67358C16.3905 6.67358 16.1272 6.93565 16.1272 7.25885C16.1272 7.58208 16.3905 7.84427 16.7153 7.84427C17.0398 7.84427 17.3032 7.58208 17.3032 7.25885C17.3032 6.93565 17.0398 6.67358 16.7153 6.67358Z",
21
21
  fill: "url(#prefix__paint2_linear_27039_91598)"
22
22
  }),
23
23
  /*#__PURE__*/ jsxs(Defs, {
24
24
  children: [
25
25
  /*#__PURE__*/ jsxs(LinearGradient, {
26
26
  id: "prefix__paint0_linear_27039_91598",
27
- x1: 5.29935,
28
- y1: 18.6789,
29
- x2: 18.6747,
30
- y2: 5.30355,
27
+ x1: 4.786,
28
+ y1: 19.1905,
29
+ x2: 19.186,
30
+ y2: 4.7905,
31
31
  gradientUnits: "userSpaceOnUse",
32
32
  children: [
33
33
  /*#__PURE__*/ jsx(Stop, {
@@ -53,10 +53,10 @@ const ColorInstagramIcon = ({ size = 16, width = size, height = size, ...props }
53
53
  }),
54
54
  /*#__PURE__*/ jsxs(LinearGradient, {
55
55
  id: "prefix__paint1_linear_27039_91598",
56
- x1: 9.08236,
57
- y1: 14.8738,
58
- x2: 14.8653,
59
- y2: 9.09083,
56
+ x1: 8.85891,
57
+ y1: 15.0939,
58
+ x2: 15.0849,
59
+ y2: 8.86791,
60
60
  gradientUnits: "userSpaceOnUse",
61
61
  children: [
62
62
  /*#__PURE__*/ jsx(Stop, {
@@ -82,10 +82,10 @@ const ColorInstagramIcon = ({ size = 16, width = size, height = size, ...props }
82
82
  }),
83
83
  /*#__PURE__*/ jsxs(LinearGradient, {
84
84
  id: "prefix__paint2_linear_27039_91598",
85
- x1: 15.9944,
86
- y1: 7.98171,
87
- x2: 16.765,
88
- y2: 7.21112,
85
+ x1: 16.3004,
86
+ y1: 7.67372,
87
+ x2: 17.13,
88
+ y2: 6.84411,
89
89
  gradientUnits: "userSpaceOnUse",
90
90
  children: [
91
91
  /*#__PURE__*/ jsx(Stop, {
@@ -0,0 +1,7 @@
1
+ import { type IconColor } from '../core';
2
+ import { type IconProps } from './types';
3
+ declare const Draggable2Icon: {
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 Draggable2Icon;