@particle-network/icons 0.0.4 → 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.
- package/README.md +4 -180
- package/dist/native/AllTokensIcon.js +1 -1
- package/dist/native/AppleIcon.js +1 -1
- package/dist/native/BoxesIcon.js +1 -1
- package/dist/native/CabalLeaderIcon.js +4 -4
- package/dist/native/CameraIcon.js +3 -6
- package/dist/native/ChartLineIcon.js +1 -1
- package/dist/native/ChartUpIcon.js +1 -1
- package/dist/native/CircleMinusIcon.js +1 -1
- package/dist/native/CirclePlusIcon.js +1 -1
- package/dist/native/CircleQuestionIcon.js +6 -12
- package/dist/native/ColorGoogleIcon.js +4 -4
- package/dist/native/ColorInstagramIcon.js +15 -15
- package/dist/native/Draggable2Icon.d.ts +7 -0
- package/dist/native/Draggable2Icon.js +23 -0
- package/dist/native/EllipsisIcon.d.ts +7 -0
- package/dist/native/EllipsisIcon.js +23 -0
- package/dist/native/ExpandIcon.js +1 -1
- package/dist/native/HoneyPotIcon.js +1 -1
- package/dist/native/InstagramIcon.js +1 -1
- package/dist/native/LayoutDownIcon.js +1 -1
- package/dist/native/LayoutLeftIcon.js +1 -1
- package/dist/native/LinkIcon.js +12 -6
- package/dist/native/Lock2Icon.js +1 -1
- package/dist/native/SunIcon.js +1 -1
- package/dist/native/ThemeSwitchIcon.js +12 -6
- package/dist/native/TiktokIcon.js +1 -1
- package/dist/native/TrackIcon.js +2 -5
- package/dist/native/TradeMainIcon.js +1 -1
- package/dist/native/TrenchIcon.js +1 -1
- package/dist/native/WalletIcon.js +1 -1
- package/dist/native/index.d.ts +2 -0
- package/dist/native/index.js +3 -1
- package/dist/web/AllTokensIcon.js +1 -1
- package/dist/web/AppleIcon.js +1 -1
- package/dist/web/BoxesIcon.js +1 -1
- package/dist/web/CabalLeaderIcon.js +4 -4
- package/dist/web/CameraIcon.js +3 -6
- package/dist/web/ChartLineIcon.js +1 -1
- package/dist/web/ChartUpIcon.js +1 -1
- package/dist/web/CircleMinusIcon.js +1 -1
- package/dist/web/CirclePlusIcon.js +1 -1
- package/dist/web/CircleQuestionIcon.js +6 -12
- package/dist/web/ColorGoogleIcon.js +4 -4
- package/dist/web/ColorInstagramIcon.js +15 -15
- package/dist/web/Draggable2Icon.d.ts +7 -0
- package/dist/web/Draggable2Icon.js +22 -0
- package/dist/web/EllipsisIcon.d.ts +7 -0
- package/dist/web/EllipsisIcon.js +22 -0
- package/dist/web/ExpandIcon.js +1 -1
- package/dist/web/HoneyPotIcon.js +1 -1
- package/dist/web/InstagramIcon.js +1 -1
- package/dist/web/LayoutDownIcon.js +1 -1
- package/dist/web/LayoutLeftIcon.js +1 -1
- package/dist/web/LinkIcon.js +12 -6
- package/dist/web/Lock2Icon.js +1 -1
- package/dist/web/SunIcon.js +1 -1
- package/dist/web/ThemeSwitchIcon.js +12 -6
- package/dist/web/TiktokIcon.js +1 -1
- package/dist/web/TrackIcon.js +2 -5
- package/dist/web/TradeMainIcon.js +1 -1
- package/dist/web/TrenchIcon.js +1 -1
- package/dist/web/WalletIcon.js +1 -1
- package/dist/web/index.d.ts +2 -0
- package/dist/web/index.js +3 -1
- 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.
|
|
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
|
]
|
package/dist/native/AppleIcon.js
CHANGED
|
@@ -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.
|
|
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
|
});
|
package/dist/native/BoxesIcon.js
CHANGED
|
@@ -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.
|
|
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
|
});
|
|
@@ -4,8 +4,8 @@ import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
|
4
4
|
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
5
|
const CabalLeaderIcon_CabalLeaderIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
6
|
const { getColor } = useIconsContext();
|
|
7
|
-
isThemeColor(color)
|
|
8
|
-
props.fill;
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
9
|
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
10
10
|
width: width,
|
|
11
11
|
height: height,
|
|
@@ -15,11 +15,11 @@ const CabalLeaderIcon_CabalLeaderIcon = ({ size = 16, width = size, height = siz
|
|
|
15
15
|
children: [
|
|
16
16
|
/*#__PURE__*/ jsx(Path, {
|
|
17
17
|
d: "M14.1523 17.3436C13.3722 17.3436 12.5909 17.3157 11.8124 17.3541C11.3596 17.3762 11.1223 17.2646 11.029 16.7959C10.9457 16.3778 10.7612 15.9785 10.6166 15.5727C10.4779 15.1837 10.4365 14.7626 9.93037 14.5672C9.78145 14.51 9.68112 14.014 9.76267 13.792C9.82566 13.6202 10.2424 13.4343 10.437 13.487C10.6512 13.5455 10.9101 13.8535 10.9409 14.0802C11.0189 14.6508 11.2717 14.9966 11.9867 15.2376C12.5335 15.4225 12.9716 15.2532 13.2704 14.7935C13.4838 14.4651 13.6558 14.1045 13.7966 13.7396C13.8464 13.6097 13.7969 13.3929 13.7115 13.2708C13.4736 12.9302 13.4116 12.5533 13.744 12.3253C13.9445 12.1873 14.3891 12.1858 14.5993 12.3173C14.9459 12.5339 14.9154 12.9001 14.6559 13.25C14.5584 13.3819 14.5601 13.6094 14.5721 13.7895C14.5815 13.9317 14.6709 14.0703 14.734 14.2063C15.3283 15.4872 16.2275 15.6619 17.2786 14.6851C17.3681 14.6018 17.393 14.4002 17.3742 14.2638C17.3203 13.8713 17.4423 13.5806 17.8323 13.4737C18.2063 13.3716 18.5232 13.4938 18.6513 13.8848C18.7763 14.2665 18.5883 14.515 18.2577 14.7137C18.1034 14.8065 17.9475 14.9637 17.886 15.1265C17.6727 15.6863 17.4776 16.2556 17.3209 16.8332C17.2152 17.223 17.0302 17.3727 16.6064 17.3542C15.7896 17.318 14.9705 17.3436 14.1523 17.3436Z",
|
|
18
|
-
fill:
|
|
18
|
+
fill: fill
|
|
19
19
|
}),
|
|
20
20
|
/*#__PURE__*/ jsx(Path, {
|
|
21
21
|
d: "M9.10967 15.0105C9.10967 14.1561 9.52449 13.3898 10.1809 12.8688C10.2161 12.3431 10.2614 11.8552 10.1884 11.8439C10.2116 11.3449 10.5793 11.32 10.7044 10.937C10.8087 10.6011 10.7138 10.1654 10.8822 9.85266C10.9978 9.63558 11.267 9.6328 11.3996 9.44785C11.5191 9.27858 11.5991 8.98496 11.6368 8.77804C11.7067 8.40094 11.7638 7.88421 11.586 7.51172C11.4795 7.29661 11.4151 7.27626 11.3874 7.01486C11.3537 6.70089 11.4807 5.45112 11.4872 5.22791C11.5015 4.6504 11.4858 4.60294 11.3473 4.03946L11.3483 4.03938C11.3483 4.03938 11.0608 3.53046 10.7945 3.37711L10.2615 3.28509L9.93725 2.98071C8.61309 2.16932 7.15538 2.73788 6.39597 3.04537C5.30237 3.40161 4.60922 4.69121 5.0926 6.9788C5.17766 7.3701 4.88014 7.54552 4.89827 7.75913C4.941 8.22508 4.95019 9.34724 5.39087 9.62281C5.43017 9.64783 5.74293 9.72764 5.74287 9.7057C5.78511 10.1584 5.8297 10.6126 5.87285 11.0658C5.98323 11.3705 6.32794 11.4016 6.40287 11.8283C6.40287 11.8283 6.5075 13.9548 6.22339 14.1517C5.98533 14.2138 1.26703 15.3472 1.26703 16.9479H7.70402V16.9483H8.85734V16.9479H9.9488C9.42834 16.4402 9.10967 15.7593 9.10967 15.0105ZM14.5231 16.9479H15.3191C15.2594 16.7196 15.1546 16.5085 15.015 16.3134C14.8832 16.5454 14.7171 16.7586 14.5231 16.9479Z",
|
|
22
|
-
fill:
|
|
22
|
+
fill: fill
|
|
23
23
|
})
|
|
24
24
|
]
|
|
25
25
|
});
|
|
@@ -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
|
|
12
|
+
viewBox: "0 0 24 23",
|
|
14
13
|
fill: "none",
|
|
15
14
|
...props,
|
|
16
15
|
children: /*#__PURE__*/ jsx(Path, {
|
|
17
|
-
d: "
|
|
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.
|
|
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: "
|
|
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
|
|
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
|
|
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
|
|
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__*/
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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: "
|
|
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.
|
|
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.
|
|
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: "
|
|
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
|
]
|