xzx-icon-vue2 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.
- package/README.md +87 -102
- package/lib/index.esm.js +25 -1
- package/lib/index.js +25 -1
- package/lib/index.umd.js +25 -1
- package/lib/index.umd.min.js +1 -1
- package/package.json +2 -2
- package/src/inline-icons.js +25 -1
package/README.md
CHANGED
@@ -1,148 +1,137 @@
|
|
1
|
-
#
|
1
|
+
# XZX Icon Vue2
|
2
2
|
|
3
|
-
Vue2
|
3
|
+
基于 Vue2 的内联 SVG 图标组件库,提供 75+ 精美图标。
|
4
4
|
|
5
5
|
## ✨ 特性
|
6
6
|
|
7
|
-
-
|
8
|
-
- 📦
|
9
|
-
- 🎨
|
10
|
-
- 🔧
|
11
|
-
-
|
12
|
-
-
|
7
|
+
- 🎯 **Vue2 专用**:完全兼容 Vue2
|
8
|
+
- 📦 **内联 SVG**:无需额外网络请求,渲染性能优异
|
9
|
+
- 🎨 **灵活着色**:支持 `color` 和 `fill-color` 独立控制
|
10
|
+
- 🔧 **自动优化**:自动将 SVG 固定颜色替换为 `currentColor`
|
11
|
+
- 💾 **体积小巧**:~45KB 压缩后大小
|
12
|
+
- 🌍 **CDN 友好**:支持 UMD 格式,可直接在浏览器中使用
|
13
13
|
|
14
|
-
##
|
14
|
+
## 🚀 快速开始
|
15
|
+
|
16
|
+
### NPM 安装
|
15
17
|
|
16
18
|
```bash
|
17
19
|
npm install xzx-icon-vue2
|
18
20
|
```
|
19
21
|
|
20
|
-
## 🚀 使用方法
|
21
|
-
|
22
|
-
### 方式1: 全局注册 (推荐)
|
23
|
-
|
24
22
|
```javascript
|
25
23
|
import Vue from 'vue'
|
26
|
-
import
|
24
|
+
import XzxIconVue2 from 'xzx-icon-vue2'
|
25
|
+
|
26
|
+
Vue.use(XzxIconVue2)
|
27
|
+
```
|
27
28
|
|
28
|
-
|
29
|
+
### CDN 使用
|
29
30
|
|
30
|
-
|
31
|
-
|
31
|
+
```html
|
32
|
+
<!-- Vue2 -->
|
33
|
+
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
|
34
|
+
<!-- XZX Icon Vue2 -->
|
35
|
+
<script src="https://cdn.jsdelivr.net/npm/xzx-icon-vue2/lib/index.umd.min.js"></script>
|
32
36
|
```
|
33
37
|
|
34
|
-
|
38
|
+
组件会自动注册为全局组件。
|
35
39
|
|
36
|
-
|
37
|
-
import { XzxIcon } from 'xzx-icon-vue2'
|
40
|
+
## 📖 使用方法
|
38
41
|
|
39
|
-
|
40
|
-
components: {
|
41
|
-
XzxIcon
|
42
|
-
}
|
43
|
-
}
|
44
|
-
```
|
42
|
+
### 基础用法
|
45
43
|
|
46
|
-
|
44
|
+
```vue
|
45
|
+
<template>
|
46
|
+
<div>
|
47
|
+
<!-- 基本图标 -->
|
48
|
+
<xzx-icon name="camera" size="24"></xzx-icon>
|
47
49
|
|
48
|
-
|
49
|
-
|
50
|
-
<html>
|
51
|
-
<head>
|
52
|
-
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
|
53
|
-
<script src="https://cdn.jsdelivr.net/npm/xzx-icon-vue2/lib/index.umd.js"></script>
|
54
|
-
</head>
|
55
|
-
<body>
|
56
|
-
<div id="app">
|
57
|
-
<xzx-icon name="camera" size="32" color="#1890ff"></xzx-icon>
|
50
|
+
<!-- 设置颜色 -->
|
51
|
+
<xzx-icon name="search" color="#1890ff" size="32"></xzx-icon>
|
58
52
|
</div>
|
59
|
-
|
60
|
-
<script>
|
61
|
-
new Vue({
|
62
|
-
el: '#app'
|
63
|
-
})
|
64
|
-
</script>
|
65
|
-
</body>
|
66
|
-
</html>
|
53
|
+
</template>
|
67
54
|
```
|
68
55
|
|
69
|
-
|
56
|
+
### 高级颜色控制
|
70
57
|
|
71
|
-
|
58
|
+
```vue
|
59
|
+
<template>
|
60
|
+
<div>
|
61
|
+
<!-- 描边颜色控制 -->
|
62
|
+
<xzx-icon name="camera" color="#1890ff" size="32"></xzx-icon>
|
72
63
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
64
|
+
<!-- 填充颜色控制 -->
|
65
|
+
<xzx-icon name="add-one-filled" fill-color="#52c41a" size="32"></xzx-icon>
|
66
|
+
|
67
|
+
<!-- 同时控制描边和填充 -->
|
68
|
+
<xzx-icon name="like" color="#ff4d4f" fill-color="#fff1f0" size="32"></xzx-icon>
|
69
|
+
</div>
|
70
|
+
</template>
|
71
|
+
```
|
78
72
|
|
79
|
-
###
|
73
|
+
### CSS 继承颜色
|
80
74
|
|
81
75
|
```vue
|
82
76
|
<template>
|
83
|
-
<div>
|
84
|
-
<!--
|
85
|
-
<xzx-icon name="camera"></xzx-icon>
|
86
|
-
|
87
|
-
<!-- 自定义尺寸 -->
|
88
|
-
<xzx-icon name="like" size="32"></xzx-icon>
|
89
|
-
<xzx-icon name="search" size="1.5em"></xzx-icon>
|
90
|
-
|
91
|
-
<!-- 自定义颜色 -->
|
92
|
-
<xzx-icon name="heart" color="#ff4d4f"></xzx-icon>
|
93
|
-
<xzx-icon name="star" color="rgb(24, 144, 255)"></xzx-icon>
|
94
|
-
|
95
|
-
<!-- 在按钮中使用 -->
|
96
|
-
<button>
|
97
|
-
<xzx-icon name="upload" size="16"></xzx-icon>
|
98
|
-
上传文件
|
99
|
-
</button>
|
77
|
+
<div style="color: #1890ff;">
|
78
|
+
<!-- 图标会自动继承父元素的颜色 -->
|
79
|
+
<xzx-icon name="camera" size="24"></xzx-icon>
|
100
80
|
</div>
|
101
81
|
</template>
|
102
82
|
```
|
103
83
|
|
104
|
-
## 🎨
|
84
|
+
## 🎨 属性说明
|
105
85
|
|
106
|
-
|
86
|
+
| 属性 | 类型 | 默认值 | 说明 |
|
87
|
+
|------|------|--------|------|
|
88
|
+
| name | String | - | 图标名称(必填) |
|
89
|
+
| size | String/Number | '1em' | 图标大小 |
|
90
|
+
| color | String | 'currentColor' | 描边颜色 |
|
91
|
+
| fill-color | String | null | 填充颜色 |
|
107
92
|
|
108
|
-
|
109
|
-
- **导航图标**: `left`, `right`, `up`, `down`, `close`, `more`
|
110
|
-
- **状态图标**: `check`, `error`, `warning`, `info`, `loading`
|
111
|
-
- **社交图标**: `like`, `share`, `comment`, `star`
|
112
|
-
- **文件图标**: `file`, `folder`, `image`, `video`, `audio`
|
113
|
-
- **业务图标**: `user`, `setting`, `home`, `mail`, `phone`
|
93
|
+
**注意**:在 HTML 中使用 `fill-color`,在 JavaScript 中对应 `fillColor` 属性。
|
114
94
|
|
115
|
-
|
95
|
+
## 🔧 自动颜色优化
|
116
96
|
|
117
|
-
|
118
|
-
import { getIconNames } from 'xzx-icon-vue2'
|
97
|
+
构建过程中会自动优化 SVG 图标:
|
119
98
|
|
120
|
-
|
121
|
-
|
122
|
-
|
99
|
+
- **十六进制颜色** (`#000`, `#FF0000`) → `currentColor`
|
100
|
+
- **RGB/RGBA 颜色** (`rgb(0,0,0)`, `rgba(0,0,0,1)`) → `currentColor`
|
101
|
+
- **命名颜色** (`black`, `red`) → `currentColor`
|
102
|
+
- **HSL 颜色** (`hsl(0,0%,0%)`) → `currentColor`
|
123
103
|
|
124
|
-
|
104
|
+
保留以下属性不变:`none`, `inherit`, `currentColor`, `transparent`
|
125
105
|
|
126
|
-
|
106
|
+
## 📊 图标列表
|
127
107
|
|
128
|
-
|
129
|
-
Vue.use(XzxIcon, {
|
130
|
-
componentName: 'MyIcon' // 默认是 'XzxIcon'
|
131
|
-
})
|
108
|
+
当前提供 75+ 个图标,包括:
|
132
109
|
|
133
|
-
|
134
|
-
|
135
|
-
|
110
|
+
- 基础图标:camera, search, like, setting-one 等
|
111
|
+
- 文件图标:file-code, file-lock-one, file-editing-one 等
|
112
|
+
- 界面图标:close, add, minus, more 等
|
113
|
+
- 箭头图标:left, right, up, down 等
|
136
114
|
|
137
|
-
|
115
|
+
## 🛠️ 开发
|
138
116
|
|
139
|
-
```
|
140
|
-
|
117
|
+
```bash
|
118
|
+
# 安装依赖
|
119
|
+
npm install
|
120
|
+
|
121
|
+
# 生成图标文件
|
122
|
+
npm run generate
|
141
123
|
|
142
|
-
|
143
|
-
|
124
|
+
# 构建
|
125
|
+
npm run build
|
126
|
+
|
127
|
+
# 测试
|
128
|
+
npm test
|
144
129
|
```
|
145
130
|
|
131
|
+
## 📄 许可证
|
132
|
+
|
133
|
+
MIT License
|
134
|
+
|
146
135
|
## 🎯 与旧版本的区别
|
147
136
|
|
148
137
|
### v1.1.0+ (内联版本)
|
@@ -168,10 +157,6 @@ console.log(iconData['camera'])
|
|
168
157
|
- [图标源文件](https://www.npmjs.com/package/@xzx-design/icons-svg)
|
169
158
|
- [Vue.js 官网](https://vuejs.org/)
|
170
159
|
|
171
|
-
## 📄 许可证
|
172
|
-
|
173
|
-
MIT License
|
174
|
-
|
175
160
|
## 🤝 贡献
|
176
161
|
|
177
162
|
欢迎提交 Issues 和 Pull Requests!
|
package/lib/index.esm.js
CHANGED
@@ -14,6 +14,10 @@ var iconData = {
|
|
14
14
|
"viewBox": "0 0 48 48",
|
15
15
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-9a2 2 0 1 0-4 0v13.172l-5.586-5.586a2 2 0 1 0-2.828 2.828l9 9a2 2 0 0 0 2.828 0l9-9a2 2 0 1 0-2.828-2.828L26 28.172V15Z\"\n fill=\"currentColor\"\n />"
|
16
16
|
},
|
17
|
+
"basicinformation": {
|
18
|
+
"viewBox": "0 0 24 24",
|
19
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5 22h14a1 1 0 0 0 1-1V7h-5V2H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8 18.5h8\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m15 2 5 5\"\n data-follow-stroke=\"currentColor\"\n />"
|
20
|
+
},
|
17
21
|
"bus-filled": {
|
18
22
|
"viewBox": "0 0 16 16",
|
19
23
|
"content": "<path data-follow-fill=\"currentColor\"\n d=\"M11.333 13.333H4.667V14a.667.667 0 0 1-.667.667H2.667A.667.667 0 0 1 2 14V8h-.667V5.333H2v-2C2 2.597 2.597 2 3.333 2h9.334C13.403 2 14 2.597 14 3.333v2h.667V8H14v6a.667.667 0 0 1-.667.667H12a.667.667 0 0 1-.667-.667v-.667Zm-8-10V8h9.334V3.333H3.333ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"\n fill=\"currentColor\" />"
|
@@ -22,10 +26,18 @@ var iconData = {
|
|
22
26
|
"viewBox": "0 0 48 48",
|
23
27
|
"content": "<rect stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"2\" height=\"36\"\n width=\"40\" y=\"8\" x=\"4\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M4 20h40M4 32h40M17 4v8M31 4v8M17 20v24M31 20v24M44 13v26M4 13v26M14 44h20\" data-follow-stroke=\"currentColor\" />"
|
24
28
|
},
|
29
|
+
"calendar2": {
|
30
|
+
"viewBox": "0 0 24 24",
|
31
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8.5 2v4M15.5 2v4M22 11H3\"\n data-follow-stroke=\"currentColor\"\n />"
|
32
|
+
},
|
25
33
|
"camera": {
|
26
34
|
"viewBox": "0 0 48 48",
|
27
35
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"m15 12 3-6h12l3 6H15Z\"\n data-follow-stroke=\"currentColor\" />\n <rect stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"3\" height=\"30\" width=\"40\" y=\"12\" x=\"4\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\"\n data-follow-stroke=\"currentColor\" />"
|
28
36
|
},
|
37
|
+
"campus": {
|
38
|
+
"viewBox": "0 0 24 24",
|
39
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m12 3 7.5 6v12h-15V9L12 3Zm0 0L2 11m10-8 10 8M9 16.5h6\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 21h15\"\n />"
|
40
|
+
},
|
29
41
|
"caution": {
|
30
42
|
"viewBox": "0 0 48 48",
|
31
43
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 5 2 43h44L24 5Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35v1M24 19l.008 10\"\n data-follow-stroke=\"currentColor\" />"
|
@@ -84,7 +96,7 @@ var iconData = {
|
|
84
96
|
},
|
85
97
|
"female-filled": {
|
86
98
|
"viewBox": "0 0 48 48",
|
87
|
-
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"
|
99
|
+
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"currentColor\" />\n </clipPath>\n </defs>"
|
88
100
|
},
|
89
101
|
"female": {
|
90
102
|
"viewBox": "0 0 48 48",
|
@@ -122,6 +134,10 @@ var iconData = {
|
|
122
134
|
"viewBox": "0 0 48 48",
|
123
135
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m26 38 6 5 9-11M30 4v10h10\" data-follow-stroke=\"currentColor\" />"
|
124
136
|
},
|
137
|
+
"groupchat": {
|
138
|
+
"viewBox": "0 0 24 24",
|
139
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5.55 17.524v3l3-2s9.5.5 10-7.5c0-5.215-4.5-7.167-7-7.5-6-.5-10 2.972-10 7.5 0 4 2.5 5.833 4 6.5Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M21.05 9.524c1.333 1.667 2.9 5.7-1.5 8.5v2l-2.5-1.5\"\n data-follow-stroke=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"6.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"10.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"14.05\"\n data-follow-fill=\"currentColor\"\n />"
|
140
|
+
},
|
125
141
|
"help-filled": {
|
126
142
|
"viewBox": "0 0 48 48",
|
127
143
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill=\"currentColor\"\n d=\"M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34ZM20.939 11.234A8 8 0 1 1 26 26.371v2.254a2 2 0 1 1-4 0v-4a2 2 0 0 1 2-2 4 4 0 1 0-4-4 2 2 0 1 1-4 0 8 8 0 0 1 4.939-7.391ZM24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"\n clip-rule=\"evenodd\"\n fill-rule=\"evenodd\"\n />"
|
@@ -186,6 +202,10 @@ var iconData = {
|
|
186
202
|
"viewBox": "0 0 48 48",
|
187
203
|
"content": "<circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"12\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"24\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"36\" data-follow-fill=\"currentColor\" />"
|
188
204
|
},
|
205
|
+
"oneclickprocessing": {
|
206
|
+
"viewBox": "0 0 25 24",
|
207
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 15 4 20l5-1.5L18.5 9l-4-4-10 10Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M16.5 17H22m-9 3h9M17 3l3.5 3.5\"\n data-follow-stroke=\"currentColor\"\n />"
|
208
|
+
},
|
189
209
|
"pic": {
|
190
210
|
"viewBox": "0 0 48 48",
|
191
211
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V10Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m15 24 5 4 6-7 17 13v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4l10-10Z\" data-follow-stroke=\"currentColor\" />"
|
@@ -262,6 +282,10 @@ var iconData = {
|
|
262
282
|
"viewBox": "0 0 48 48",
|
263
283
|
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"m17 32 2.188-5M31 32l-2.188-5m-9.625 0L24 16l4.813 11m-9.625 0h9.625\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"M43.2 20c-1.853-9.129-9.924-16-19.6-16C13.924 4 5.853 10.871 4 20l6-2M4 28c1.853 9.129 9.924 16 19.6 16 9.676 0 17.747-6.871 19.6-16L38 30\"\n data-follow-stroke=\"currentColor\"\n />"
|
264
284
|
},
|
285
|
+
"translation2": {
|
286
|
+
"viewBox": "0 0 24 24",
|
287
|
+
"content": "<path\n stroke-width=\".1\"\n stroke=\"currentColor\"\n fill=\"currentColor\"\n d=\"M10.578 10.065a.451.451 0 0 1 .201.19c.085.143.168.395.25.75l.07.259c.077.258.178.513.301.765.156.318.379.665.665 1.042.066-.1.14-.216.224-.353l.043.026-.042-.026c.1-.164.203-.412.307-.745v-.001a8.99 8.99 0 0 0 .257-1.005l.079-.42c.017-.112.026-.193.028-.246a1.91 1.91 0 0 1 .014-.176.122.122 0 0 1 .011-.03l.014-.03h-2.422Zm2.273-1.432a.56.56 0 0 1-.017.162l-.001.002-.024.065H15.7c.188 0 .346.05.468.158.12.106.19.243.207.408a.536.536 0 0 1-.165.445c-.126.13-.298.192-.51.192h-1.458l.01.014.02.042a.366.366 0 0 1 .011.05c.006.036.01.08.012.133.003.056-.003.143-.019.256-.015.114-.04.26-.075.435l-.156.769c-.018.08-.045.176-.08.29l-.126.398c-.098.298-.201.548-.307.75-.102.191-.27.45-.5.778.346.3.75.54 1.216.715.484.181.891.31 1.223.383h.002c.336.078.556.138.652.18a.711.711 0 0 1 .257.187l.054.08c.047.09.068.213.07.362.008.207-.057.372-.199.485a.8.8 0 0 1-.524.166c-.156.003-.372-.035-.647-.114l-.296-.093a12.5 12.5 0 0 1-.913-.339l-.293-.127a5.379 5.379 0 0 1-1.011-.585v-.001l-.532-.374c-.48.346-.938.628-1.378.843-.448.222-.9.417-1.358.583-.456.166-.803.253-1.037.256v.001a1.04 1.04 0 0 1-.423-.059.388.388 0 0 1-.187-.152l-.033-.072c-.06-.174-.089-.312-.081-.41l.01-.074a.685.685 0 0 1 .084-.216l.001-.002a.808.808 0 0 1 .312-.261c.146-.075.429-.171.845-.288a7.147 7.147 0 0 0 1.188-.445l.283-.145c.27-.146.539-.317.809-.51-.442-.562-.738-1.03-.887-1.401-.15-.375-.295-.766-.435-1.17a5.14 5.14 0 0 1-.154-.515 1.054 1.054 0 0 1-.035-.327.628.628 0 0 1 .207-.387.53.53 0 0 1 .14-.09H8.25a.662.662 0 0 1-.495-.19l-.001-.002a.596.596 0 0 1-.16-.466v-.001a.556.556 0 0 1 .205-.396l.098-.065a.735.735 0 0 1 .353-.082h3.334c-.03-.045-.056-.079-.071-.106l-.001-.002c-.024-.044-.09-.184-.197-.418a6.62 6.62 0 0 1-.12-.287 1.497 1.497 0 0 1-.032-.092.305.305 0 0 1-.014-.063V7.89c0-.053.013-.119.036-.195l.033-.07a.7.7 0 0 1 .217-.202.717.717 0 0 1 .431-.125h.001c.14.01.263.06.366.149.105.085.219.249.34.483.12.233.194.389.225.463.031.076.049.155.053.236v.003Z\"\n data-follow-fill=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20.8 10.5c-.851-4.28-4.557-7.5-9-7.5s-8.15 3.22-9 7.5l2.755-.938M2.8 13.5c.85 4.28 4.557 7.5 9 7.5s8.149-3.22 9-7.5l-2.388.938\"\n />"
|
288
|
+
},
|
265
289
|
"tushuguan": {
|
266
290
|
"viewBox": "0 0 24 24",
|
267
291
|
"content": "<rect stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\" rx=\"2\" height=\"18\" width=\"5\" y=\"3\" x=\"3\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M7 7H4M7 17H4M16.855 21h-4a2 2 0 0 1-2-2V7M14 17h-2\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M10.691 6.39A2.118 2.118 0 0 1 11.86 3.73l1.543-.638a1.888 1.888 0 0 1 2.52 1.106l4.93 13.477a2.118 2.118 0 0 1-1.169 2.659l-1.544.638a1.888 1.888 0 0 1-2.52-1.107L10.692 6.39Z\"\n data-follow-stroke=\"currentColor\" />"
|
package/lib/index.js
CHANGED
@@ -18,6 +18,10 @@ var iconData = {
|
|
18
18
|
"viewBox": "0 0 48 48",
|
19
19
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-9a2 2 0 1 0-4 0v13.172l-5.586-5.586a2 2 0 1 0-2.828 2.828l9 9a2 2 0 0 0 2.828 0l9-9a2 2 0 1 0-2.828-2.828L26 28.172V15Z\"\n fill=\"currentColor\"\n />"
|
20
20
|
},
|
21
|
+
"basicinformation": {
|
22
|
+
"viewBox": "0 0 24 24",
|
23
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5 22h14a1 1 0 0 0 1-1V7h-5V2H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8 18.5h8\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m15 2 5 5\"\n data-follow-stroke=\"currentColor\"\n />"
|
24
|
+
},
|
21
25
|
"bus-filled": {
|
22
26
|
"viewBox": "0 0 16 16",
|
23
27
|
"content": "<path data-follow-fill=\"currentColor\"\n d=\"M11.333 13.333H4.667V14a.667.667 0 0 1-.667.667H2.667A.667.667 0 0 1 2 14V8h-.667V5.333H2v-2C2 2.597 2.597 2 3.333 2h9.334C13.403 2 14 2.597 14 3.333v2h.667V8H14v6a.667.667 0 0 1-.667.667H12a.667.667 0 0 1-.667-.667v-.667Zm-8-10V8h9.334V3.333H3.333ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"\n fill=\"currentColor\" />"
|
@@ -26,10 +30,18 @@ var iconData = {
|
|
26
30
|
"viewBox": "0 0 48 48",
|
27
31
|
"content": "<rect stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"2\" height=\"36\"\n width=\"40\" y=\"8\" x=\"4\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M4 20h40M4 32h40M17 4v8M31 4v8M17 20v24M31 20v24M44 13v26M4 13v26M14 44h20\" data-follow-stroke=\"currentColor\" />"
|
28
32
|
},
|
33
|
+
"calendar2": {
|
34
|
+
"viewBox": "0 0 24 24",
|
35
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8.5 2v4M15.5 2v4M22 11H3\"\n data-follow-stroke=\"currentColor\"\n />"
|
36
|
+
},
|
29
37
|
"camera": {
|
30
38
|
"viewBox": "0 0 48 48",
|
31
39
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"m15 12 3-6h12l3 6H15Z\"\n data-follow-stroke=\"currentColor\" />\n <rect stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"3\" height=\"30\" width=\"40\" y=\"12\" x=\"4\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\"\n data-follow-stroke=\"currentColor\" />"
|
32
40
|
},
|
41
|
+
"campus": {
|
42
|
+
"viewBox": "0 0 24 24",
|
43
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m12 3 7.5 6v12h-15V9L12 3Zm0 0L2 11m10-8 10 8M9 16.5h6\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 21h15\"\n />"
|
44
|
+
},
|
33
45
|
"caution": {
|
34
46
|
"viewBox": "0 0 48 48",
|
35
47
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 5 2 43h44L24 5Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35v1M24 19l.008 10\"\n data-follow-stroke=\"currentColor\" />"
|
@@ -88,7 +100,7 @@ var iconData = {
|
|
88
100
|
},
|
89
101
|
"female-filled": {
|
90
102
|
"viewBox": "0 0 48 48",
|
91
|
-
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"
|
103
|
+
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"currentColor\" />\n </clipPath>\n </defs>"
|
92
104
|
},
|
93
105
|
"female": {
|
94
106
|
"viewBox": "0 0 48 48",
|
@@ -126,6 +138,10 @@ var iconData = {
|
|
126
138
|
"viewBox": "0 0 48 48",
|
127
139
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m26 38 6 5 9-11M30 4v10h10\" data-follow-stroke=\"currentColor\" />"
|
128
140
|
},
|
141
|
+
"groupchat": {
|
142
|
+
"viewBox": "0 0 24 24",
|
143
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5.55 17.524v3l3-2s9.5.5 10-7.5c0-5.215-4.5-7.167-7-7.5-6-.5-10 2.972-10 7.5 0 4 2.5 5.833 4 6.5Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M21.05 9.524c1.333 1.667 2.9 5.7-1.5 8.5v2l-2.5-1.5\"\n data-follow-stroke=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"6.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"10.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"14.05\"\n data-follow-fill=\"currentColor\"\n />"
|
144
|
+
},
|
129
145
|
"help-filled": {
|
130
146
|
"viewBox": "0 0 48 48",
|
131
147
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill=\"currentColor\"\n d=\"M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34ZM20.939 11.234A8 8 0 1 1 26 26.371v2.254a2 2 0 1 1-4 0v-4a2 2 0 0 1 2-2 4 4 0 1 0-4-4 2 2 0 1 1-4 0 8 8 0 0 1 4.939-7.391ZM24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"\n clip-rule=\"evenodd\"\n fill-rule=\"evenodd\"\n />"
|
@@ -190,6 +206,10 @@ var iconData = {
|
|
190
206
|
"viewBox": "0 0 48 48",
|
191
207
|
"content": "<circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"12\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"24\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"36\" data-follow-fill=\"currentColor\" />"
|
192
208
|
},
|
209
|
+
"oneclickprocessing": {
|
210
|
+
"viewBox": "0 0 25 24",
|
211
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 15 4 20l5-1.5L18.5 9l-4-4-10 10Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M16.5 17H22m-9 3h9M17 3l3.5 3.5\"\n data-follow-stroke=\"currentColor\"\n />"
|
212
|
+
},
|
193
213
|
"pic": {
|
194
214
|
"viewBox": "0 0 48 48",
|
195
215
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V10Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m15 24 5 4 6-7 17 13v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4l10-10Z\" data-follow-stroke=\"currentColor\" />"
|
@@ -266,6 +286,10 @@ var iconData = {
|
|
266
286
|
"viewBox": "0 0 48 48",
|
267
287
|
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"m17 32 2.188-5M31 32l-2.188-5m-9.625 0L24 16l4.813 11m-9.625 0h9.625\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"M43.2 20c-1.853-9.129-9.924-16-19.6-16C13.924 4 5.853 10.871 4 20l6-2M4 28c1.853 9.129 9.924 16 19.6 16 9.676 0 17.747-6.871 19.6-16L38 30\"\n data-follow-stroke=\"currentColor\"\n />"
|
268
288
|
},
|
289
|
+
"translation2": {
|
290
|
+
"viewBox": "0 0 24 24",
|
291
|
+
"content": "<path\n stroke-width=\".1\"\n stroke=\"currentColor\"\n fill=\"currentColor\"\n d=\"M10.578 10.065a.451.451 0 0 1 .201.19c.085.143.168.395.25.75l.07.259c.077.258.178.513.301.765.156.318.379.665.665 1.042.066-.1.14-.216.224-.353l.043.026-.042-.026c.1-.164.203-.412.307-.745v-.001a8.99 8.99 0 0 0 .257-1.005l.079-.42c.017-.112.026-.193.028-.246a1.91 1.91 0 0 1 .014-.176.122.122 0 0 1 .011-.03l.014-.03h-2.422Zm2.273-1.432a.56.56 0 0 1-.017.162l-.001.002-.024.065H15.7c.188 0 .346.05.468.158.12.106.19.243.207.408a.536.536 0 0 1-.165.445c-.126.13-.298.192-.51.192h-1.458l.01.014.02.042a.366.366 0 0 1 .011.05c.006.036.01.08.012.133.003.056-.003.143-.019.256-.015.114-.04.26-.075.435l-.156.769c-.018.08-.045.176-.08.29l-.126.398c-.098.298-.201.548-.307.75-.102.191-.27.45-.5.778.346.3.75.54 1.216.715.484.181.891.31 1.223.383h.002c.336.078.556.138.652.18a.711.711 0 0 1 .257.187l.054.08c.047.09.068.213.07.362.008.207-.057.372-.199.485a.8.8 0 0 1-.524.166c-.156.003-.372-.035-.647-.114l-.296-.093a12.5 12.5 0 0 1-.913-.339l-.293-.127a5.379 5.379 0 0 1-1.011-.585v-.001l-.532-.374c-.48.346-.938.628-1.378.843-.448.222-.9.417-1.358.583-.456.166-.803.253-1.037.256v.001a1.04 1.04 0 0 1-.423-.059.388.388 0 0 1-.187-.152l-.033-.072c-.06-.174-.089-.312-.081-.41l.01-.074a.685.685 0 0 1 .084-.216l.001-.002a.808.808 0 0 1 .312-.261c.146-.075.429-.171.845-.288a7.147 7.147 0 0 0 1.188-.445l.283-.145c.27-.146.539-.317.809-.51-.442-.562-.738-1.03-.887-1.401-.15-.375-.295-.766-.435-1.17a5.14 5.14 0 0 1-.154-.515 1.054 1.054 0 0 1-.035-.327.628.628 0 0 1 .207-.387.53.53 0 0 1 .14-.09H8.25a.662.662 0 0 1-.495-.19l-.001-.002a.596.596 0 0 1-.16-.466v-.001a.556.556 0 0 1 .205-.396l.098-.065a.735.735 0 0 1 .353-.082h3.334c-.03-.045-.056-.079-.071-.106l-.001-.002c-.024-.044-.09-.184-.197-.418a6.62 6.62 0 0 1-.12-.287 1.497 1.497 0 0 1-.032-.092.305.305 0 0 1-.014-.063V7.89c0-.053.013-.119.036-.195l.033-.07a.7.7 0 0 1 .217-.202.717.717 0 0 1 .431-.125h.001c.14.01.263.06.366.149.105.085.219.249.34.483.12.233.194.389.225.463.031.076.049.155.053.236v.003Z\"\n data-follow-fill=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20.8 10.5c-.851-4.28-4.557-7.5-9-7.5s-8.15 3.22-9 7.5l2.755-.938M2.8 13.5c.85 4.28 4.557 7.5 9 7.5s8.149-3.22 9-7.5l-2.388.938\"\n />"
|
292
|
+
},
|
269
293
|
"tushuguan": {
|
270
294
|
"viewBox": "0 0 24 24",
|
271
295
|
"content": "<rect stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\" rx=\"2\" height=\"18\" width=\"5\" y=\"3\" x=\"3\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M7 7H4M7 17H4M16.855 21h-4a2 2 0 0 1-2-2V7M14 17h-2\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M10.691 6.39A2.118 2.118 0 0 1 11.86 3.73l1.543-.638a1.888 1.888 0 0 1 2.52 1.106l4.93 13.477a2.118 2.118 0 0 1-1.169 2.659l-1.544.638a1.888 1.888 0 0 1-2.52-1.107L10.692 6.39Z\"\n data-follow-stroke=\"currentColor\" />"
|
package/lib/index.umd.js
CHANGED
@@ -20,6 +20,10 @@
|
|
20
20
|
"viewBox": "0 0 48 48",
|
21
21
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-9a2 2 0 1 0-4 0v13.172l-5.586-5.586a2 2 0 1 0-2.828 2.828l9 9a2 2 0 0 0 2.828 0l9-9a2 2 0 1 0-2.828-2.828L26 28.172V15Z\"\n fill=\"currentColor\"\n />"
|
22
22
|
},
|
23
|
+
"basicinformation": {
|
24
|
+
"viewBox": "0 0 24 24",
|
25
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5 22h14a1 1 0 0 0 1-1V7h-5V2H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8 18.5h8\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m15 2 5 5\"\n data-follow-stroke=\"currentColor\"\n />"
|
26
|
+
},
|
23
27
|
"bus-filled": {
|
24
28
|
"viewBox": "0 0 16 16",
|
25
29
|
"content": "<path data-follow-fill=\"currentColor\"\n d=\"M11.333 13.333H4.667V14a.667.667 0 0 1-.667.667H2.667A.667.667 0 0 1 2 14V8h-.667V5.333H2v-2C2 2.597 2.597 2 3.333 2h9.334C13.403 2 14 2.597 14 3.333v2h.667V8H14v6a.667.667 0 0 1-.667.667H12a.667.667 0 0 1-.667-.667v-.667Zm-8-10V8h9.334V3.333H3.333ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"\n fill=\"currentColor\" />"
|
@@ -28,10 +32,18 @@
|
|
28
32
|
"viewBox": "0 0 48 48",
|
29
33
|
"content": "<rect stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"2\" height=\"36\"\n width=\"40\" y=\"8\" x=\"4\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M4 20h40M4 32h40M17 4v8M31 4v8M17 20v24M31 20v24M44 13v26M4 13v26M14 44h20\" data-follow-stroke=\"currentColor\" />"
|
30
34
|
},
|
35
|
+
"calendar2": {
|
36
|
+
"viewBox": "0 0 24 24",
|
37
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8.5 2v4M15.5 2v4M22 11H3\"\n data-follow-stroke=\"currentColor\"\n />"
|
38
|
+
},
|
31
39
|
"camera": {
|
32
40
|
"viewBox": "0 0 48 48",
|
33
41
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"m15 12 3-6h12l3 6H15Z\"\n data-follow-stroke=\"currentColor\" />\n <rect stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"3\" height=\"30\" width=\"40\" y=\"12\" x=\"4\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\"\n data-follow-stroke=\"currentColor\" />"
|
34
42
|
},
|
43
|
+
"campus": {
|
44
|
+
"viewBox": "0 0 24 24",
|
45
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m12 3 7.5 6v12h-15V9L12 3Zm0 0L2 11m10-8 10 8M9 16.5h6\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 21h15\"\n />"
|
46
|
+
},
|
35
47
|
"caution": {
|
36
48
|
"viewBox": "0 0 48 48",
|
37
49
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 5 2 43h44L24 5Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35v1M24 19l.008 10\"\n data-follow-stroke=\"currentColor\" />"
|
@@ -90,7 +102,7 @@
|
|
90
102
|
},
|
91
103
|
"female-filled": {
|
92
104
|
"viewBox": "0 0 48 48",
|
93
|
-
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"
|
105
|
+
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"currentColor\" />\n </clipPath>\n </defs>"
|
94
106
|
},
|
95
107
|
"female": {
|
96
108
|
"viewBox": "0 0 48 48",
|
@@ -128,6 +140,10 @@
|
|
128
140
|
"viewBox": "0 0 48 48",
|
129
141
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m26 38 6 5 9-11M30 4v10h10\" data-follow-stroke=\"currentColor\" />"
|
130
142
|
},
|
143
|
+
"groupchat": {
|
144
|
+
"viewBox": "0 0 24 24",
|
145
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5.55 17.524v3l3-2s9.5.5 10-7.5c0-5.215-4.5-7.167-7-7.5-6-.5-10 2.972-10 7.5 0 4 2.5 5.833 4 6.5Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M21.05 9.524c1.333 1.667 2.9 5.7-1.5 8.5v2l-2.5-1.5\"\n data-follow-stroke=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"6.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"10.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"14.05\"\n data-follow-fill=\"currentColor\"\n />"
|
146
|
+
},
|
131
147
|
"help-filled": {
|
132
148
|
"viewBox": "0 0 48 48",
|
133
149
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill=\"currentColor\"\n d=\"M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34ZM20.939 11.234A8 8 0 1 1 26 26.371v2.254a2 2 0 1 1-4 0v-4a2 2 0 0 1 2-2 4 4 0 1 0-4-4 2 2 0 1 1-4 0 8 8 0 0 1 4.939-7.391ZM24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"\n clip-rule=\"evenodd\"\n fill-rule=\"evenodd\"\n />"
|
@@ -192,6 +208,10 @@
|
|
192
208
|
"viewBox": "0 0 48 48",
|
193
209
|
"content": "<circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"12\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"24\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"36\" data-follow-fill=\"currentColor\" />"
|
194
210
|
},
|
211
|
+
"oneclickprocessing": {
|
212
|
+
"viewBox": "0 0 25 24",
|
213
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 15 4 20l5-1.5L18.5 9l-4-4-10 10Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M16.5 17H22m-9 3h9M17 3l3.5 3.5\"\n data-follow-stroke=\"currentColor\"\n />"
|
214
|
+
},
|
195
215
|
"pic": {
|
196
216
|
"viewBox": "0 0 48 48",
|
197
217
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V10Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m15 24 5 4 6-7 17 13v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4l10-10Z\" data-follow-stroke=\"currentColor\" />"
|
@@ -268,6 +288,10 @@
|
|
268
288
|
"viewBox": "0 0 48 48",
|
269
289
|
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"m17 32 2.188-5M31 32l-2.188-5m-9.625 0L24 16l4.813 11m-9.625 0h9.625\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"M43.2 20c-1.853-9.129-9.924-16-19.6-16C13.924 4 5.853 10.871 4 20l6-2M4 28c1.853 9.129 9.924 16 19.6 16 9.676 0 17.747-6.871 19.6-16L38 30\"\n data-follow-stroke=\"currentColor\"\n />"
|
270
290
|
},
|
291
|
+
"translation2": {
|
292
|
+
"viewBox": "0 0 24 24",
|
293
|
+
"content": "<path\n stroke-width=\".1\"\n stroke=\"currentColor\"\n fill=\"currentColor\"\n d=\"M10.578 10.065a.451.451 0 0 1 .201.19c.085.143.168.395.25.75l.07.259c.077.258.178.513.301.765.156.318.379.665.665 1.042.066-.1.14-.216.224-.353l.043.026-.042-.026c.1-.164.203-.412.307-.745v-.001a8.99 8.99 0 0 0 .257-1.005l.079-.42c.017-.112.026-.193.028-.246a1.91 1.91 0 0 1 .014-.176.122.122 0 0 1 .011-.03l.014-.03h-2.422Zm2.273-1.432a.56.56 0 0 1-.017.162l-.001.002-.024.065H15.7c.188 0 .346.05.468.158.12.106.19.243.207.408a.536.536 0 0 1-.165.445c-.126.13-.298.192-.51.192h-1.458l.01.014.02.042a.366.366 0 0 1 .011.05c.006.036.01.08.012.133.003.056-.003.143-.019.256-.015.114-.04.26-.075.435l-.156.769c-.018.08-.045.176-.08.29l-.126.398c-.098.298-.201.548-.307.75-.102.191-.27.45-.5.778.346.3.75.54 1.216.715.484.181.891.31 1.223.383h.002c.336.078.556.138.652.18a.711.711 0 0 1 .257.187l.054.08c.047.09.068.213.07.362.008.207-.057.372-.199.485a.8.8 0 0 1-.524.166c-.156.003-.372-.035-.647-.114l-.296-.093a12.5 12.5 0 0 1-.913-.339l-.293-.127a5.379 5.379 0 0 1-1.011-.585v-.001l-.532-.374c-.48.346-.938.628-1.378.843-.448.222-.9.417-1.358.583-.456.166-.803.253-1.037.256v.001a1.04 1.04 0 0 1-.423-.059.388.388 0 0 1-.187-.152l-.033-.072c-.06-.174-.089-.312-.081-.41l.01-.074a.685.685 0 0 1 .084-.216l.001-.002a.808.808 0 0 1 .312-.261c.146-.075.429-.171.845-.288a7.147 7.147 0 0 0 1.188-.445l.283-.145c.27-.146.539-.317.809-.51-.442-.562-.738-1.03-.887-1.401-.15-.375-.295-.766-.435-1.17a5.14 5.14 0 0 1-.154-.515 1.054 1.054 0 0 1-.035-.327.628.628 0 0 1 .207-.387.53.53 0 0 1 .14-.09H8.25a.662.662 0 0 1-.495-.19l-.001-.002a.596.596 0 0 1-.16-.466v-.001a.556.556 0 0 1 .205-.396l.098-.065a.735.735 0 0 1 .353-.082h3.334c-.03-.045-.056-.079-.071-.106l-.001-.002c-.024-.044-.09-.184-.197-.418a6.62 6.62 0 0 1-.12-.287 1.497 1.497 0 0 1-.032-.092.305.305 0 0 1-.014-.063V7.89c0-.053.013-.119.036-.195l.033-.07a.7.7 0 0 1 .217-.202.717.717 0 0 1 .431-.125h.001c.14.01.263.06.366.149.105.085.219.249.34.483.12.233.194.389.225.463.031.076.049.155.053.236v.003Z\"\n data-follow-fill=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20.8 10.5c-.851-4.28-4.557-7.5-9-7.5s-8.15 3.22-9 7.5l2.755-.938M2.8 13.5c.85 4.28 4.557 7.5 9 7.5s8.149-3.22 9-7.5l-2.388.938\"\n />"
|
294
|
+
},
|
271
295
|
"tushuguan": {
|
272
296
|
"viewBox": "0 0 24 24",
|
273
297
|
"content": "<rect stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\" rx=\"2\" height=\"18\" width=\"5\" y=\"3\" x=\"3\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M7 7H4M7 17H4M16.855 21h-4a2 2 0 0 1-2-2V7M14 17h-2\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M10.691 6.39A2.118 2.118 0 0 1 11.86 3.73l1.543-.638a1.888 1.888 0 0 1 2.52 1.106l4.93 13.477a2.118 2.118 0 0 1-1.169 2.659l-1.544.638a1.888 1.888 0 0 1-2.52-1.107L10.692 6.39Z\"\n data-follow-stroke=\"currentColor\" />"
|
package/lib/index.umd.min.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
!function(o,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports):"function"==typeof define&&define.amd?define(["exports"],r):r((o="undefined"!=typeof globalThis?globalThis:o||self).XzxIconVue2={})}(this,function(o){"use strict";var r={"add-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-8a2 2 0 1 0-4 0v6h-6a2 2 0 1 0 0 4h6v6a2 2 0 1 0 4 0v-6h6a2 2 0 1 0 0-4h-6v-6Z"\n fill="currentColor"\n />'},"all-application":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M18 6H8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2ZM18 28H8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V30a2 2 0 0 0-2-2ZM40 6H30a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2ZM40 28H30a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V30a2 2 0 0 0-2-2Z"\n data-follow-stroke="currentColor" />'},"arrow-circle-down-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-9a2 2 0 1 0-4 0v13.172l-5.586-5.586a2 2 0 1 0-2.828 2.828l9 9a2 2 0 0 0 2.828 0l9-9a2 2 0 1 0-2.828-2.828L26 28.172V15Z"\n fill="currentColor"\n />'},"bus-filled":{viewBox:"0 0 16 16",content:'<path data-follow-fill="currentColor"\n d="M11.333 13.333H4.667V14a.667.667 0 0 1-.667.667H2.667A.667.667 0 0 1 2 14V8h-.667V5.333H2v-2C2 2.597 2.597 2 3.333 2h9.334C13.403 2 14 2.597 14 3.333v2h.667V8H14v6a.667.667 0 0 1-.667.667H12a.667.667 0 0 1-.667-.667v-.667Zm-8-10V8h9.334V3.333H3.333ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"\n fill="currentColor" />'},"calendar-three":{viewBox:"0 0 48 48",content:'<rect stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" rx="2" height="36"\n width="40" y="8" x="4" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M4 20h40M4 32h40M17 4v8M31 4v8M17 20v24M31 20v24M44 13v26M4 13v26M14 44h20" data-follow-stroke="currentColor" />'},camera:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="m15 12 3-6h12l3 6H15Z"\n data-follow-stroke="currentColor" />\n <rect stroke-linejoin="round" stroke-width="4" stroke="currentColor" rx="3" height="30" width="40" y="12" x="4"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 35a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z"\n data-follow-stroke="currentColor" />'},caution:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 5 2 43h44L24 5Z" clip-rule="evenodd"\n data-follow-stroke="currentColor" />\n <path stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M24 35v1M24 19l.008 10"\n data-follow-stroke="currentColor" />'},"check-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34Zm3.758-23.068a2 2 0 1 0-2.828-2.828L22 27.172l-4.586-4.586a2 2 0 1 0-2.828 2.828l6 6a2 2 0 0 0 2.828 0l12-12Z"\n fill="currentColor"\n />'},"check-small":{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2.069" stroke="currentColor"\n d="m4.5 10.819 5.431 5.431L19.5 6.681" data-follow-stroke="currentColor" />'},"close-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-24.243-7.071a2 2 0 0 0-2.828 2.828L21.172 24l-4.243 4.243a2 2 0 0 0 2.828 2.828L24 26.828l4.243 4.243a2 2 0 1 0 2.828-2.828L26.828 24l4.243-4.243a2 2 0 1 0-2.828-2.828L24 21.172l-4.243-4.243Z"\n fill="currentColor"\n />'},"close-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M29.657 18.343 18.343 29.657M18.343 18.343l11.314 11.314" data-follow-stroke="currentColor" />'},"close-small":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m14 14 20 20M14 34l20-20" data-follow-stroke="currentColor" />'},close:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m8 8 32 32M8 40 40 8"\n data-follow-stroke="currentColor" />'},delete:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M9 10v34h30V10H9Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M20 20v13M28 20v13M4 10h40" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="m16 10 3.289-6h9.488L32 10H16Z"\n data-follow-stroke="currentColor" />'},dianfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M10 3h8.182l-5 6.3H20L9.09 21l2.274-8.55H5L10 3Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m19.827 15.21-4.098 4.781M6.444 3 3.969 7.5" data-follow-stroke="currentColor" />'},dianhuafei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M17 6.6V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-2.95M12 18H8"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M10 9a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3.784a2 2 0 0 1-2 2h-1.375v0c-.386 0-.74.21-.927.547l-.106.192a1.141 1.141 0 0 1-2.036-.075v0a1.142 1.142 0 0 0-1.037-.664H12a2 2 0 0 1-2-2V9ZM7 6l3 3M7 10h3M7 13h3M10 10v5"\n data-follow-stroke="currentColor" />'},"dislike-two":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M15 8C8.925 8 4 12.925 4 19c0 11 13 21 20 23.326C31 40 44 30 44 19c0-6.075-4.925-11-11-11-3.72 0-7.01 1.847-9 4.674A10.987 10.987 0 0 0 15 8Z"\n data-follow-stroke="currentColor" />\n <path d="m28 20-8 8 8-8Z" clip-rule="evenodd" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m28 20-8 8"\n data-follow-stroke="currentColor" />\n <path d="m20 20 8 8-8-8Z" clip-rule="evenodd" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m20 20 8 8"\n data-follow-stroke="currentColor" />'},"down-one-filled":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor" data-follow-fill="currentColor" d="M36 19 24 31 12 19h24Z" fill="currentColor"\n stroke="currentColor" stroke-width="4" stroke-linejoin="round" />'},down:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M36 18 24 30 12 18"\n data-follow-stroke="currentColor" />'},download:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M6 24.008V42h36V24"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="m33 23-9 9-9-9M23.992 6v26"\n data-follow-stroke="currentColor"\n />'},"female-filled":{viewBox:"0 0 48 48",content:'<g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="4" stroke-linejoin="round"\n clip-path="url(#a)">\n <path data-follow-fill="currentColor"\n d="M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z"\n fill="currentColor" />\n <path d="M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828" stroke-linecap="round" />\n </g>\n <defs>\n <clipPath id="a">\n <path d="M0 0h48v48H0z" fill="#FFF" />\n </clipPath>\n </defs>'},female:{viewBox:"0 0 48 48",content:'<g clip-path="url(#a)" stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n data-follow-stroke="currentColor">\n <path\n d="M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9c0 3.583 1.367 7.166 4.1 9.9 5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z" />\n <path stroke-linecap="round" d="M18.464 29.535 5.736 42.263M19.171 41.556 6.443 28.828" />\n </g>\n <defs>\n <clipPath id="a">\n <path fill="currentColor" d="M0 0h48v48H0z" data-follow-fill="currentColor" />\n </clipPath>\n </defs>'},"file-code":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M10 44h28a2 2 0 0 0 2-2V14H30V4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2ZM30 4l10 10"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m27 24 5 5-5 5M21 24l-5 5 5 5" data-follow-stroke="currentColor" />'},"file-conversion-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12M27 33h14M27 39h14M41 33l-5-5M32 44l-5-5"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-date-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <circle stroke-width="4" stroke="currentColor" r="8" cy="36" cx="34" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M33 33v4h4M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-editing-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12M32 44l10-10-4-4-10 10v4h4Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-focus-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m34 27 2.523 5.527 6.036.692-4.476 4.108 1.207 5.954L34 40.293l-5.29 2.988 1.207-5.954-4.477-4.108 6.037-.692L34 27ZM30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-hiding-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M25 30a8.64 8.64 0 0 0 1.255 2.517C27.783 34.63 30.235 36 33 36s5.217-1.37 6.745-3.483A8.64 8.64 0 0 0 41 30M30.521 36.068l-1.035 3.864M35.486 36.068l1.036 3.864M39.353 34.354l2.829 2.828M24 37.01l2.828-2.828M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-lock-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M28 34h14v8H28zM38 34v-3a3 3 0 1 0-6 0v3M30 4v10h10" data-follow-stroke="currentColor" />'},"file-success-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m26 38 6 5 9-11M30 4v10h10" data-follow-stroke="currentColor" />'},"help-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill="currentColor"\n d="M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34ZM20.939 11.234A8 8 0 1 1 26 26.371v2.254a2 2 0 1 1-4 0v-4a2 2 0 0 1 2-2 4 4 0 1 0-4-4 2 2 0 1 1-4 0 8 8 0 0 1 4.939-7.391ZM24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n />'},help:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-width="4"\n stroke="currentColor"\n d="M24 44a19.937 19.937 0 0 0 14.142-5.858A19.937 19.937 0 0 0 44 24a19.938 19.938 0 0 0-5.858-14.142A19.937 19.937 0 0 0 24 4 19.938 19.938 0 0 0 9.858 9.858 19.938 19.938 0 0 0 4 24a19.937 19.937 0 0 0 5.858 14.142A19.938 19.938 0 0 0 24 44Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M24 28.625v-4a6 6 0 1 0-6-6"\n data-follow-stroke="currentColor"\n />\n <path\n fill="currentColor"\n d="M24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n data-follow-fill="currentColor"\n />'},"infor-filled":{viewBox:"0 0 24 24",content:'<path\n fill="currentColor"\n d="M5.604 5.604A8.861 8.861 0 0 1 11.889 3c2.455 0 4.677.995 6.285 2.604a8.861 8.861 0 0 1 2.604 6.285 8.861 8.861 0 0 1-2.604 6.285 8.861 8.861 0 0 1-6.285 2.604 8.861 8.861 0 0 1-6.285-2.604A8.861 8.861 0 0 1 3 11.89c0-2.455.995-4.677 2.604-6.285Zm6.285 11.73a1 1 0 0 1-1-1V11.5a1 1 0 1 1 2 0v4.833a1 1 0 0 1-1 1Zm0-10.89a1 1 0 0 1 1 1v.445a1 1 0 1 1-2 0v-.445a1 1 0 0 1 1-1Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n data-follow-fill="currentColor"\n />'},infor:{viewBox:"0 0 24 24",content:'<path\n stroke-linejoin="round"\n stroke-width="2"\n stroke="currentColor"\n d="M11.889 3a8.861 8.861 0 0 0-6.285 2.604A8.861 8.861 0 0 0 3 11.889c0 2.455.995 4.677 2.604 6.285a8.861 8.861 0 0 0 6.285 2.604 8.861 8.861 0 0 0 6.285-2.604 8.861 8.861 0 0 0 2.604-6.285 8.861 8.861 0 0 0-2.604-6.285A8.861 8.861 0 0 0 11.89 3Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M11.889 16.333V11.5M11.889 7.444v.445"\n data-follow-stroke="currentColor"\n />'},jiaocaifei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M3 3h16.105S21 4 21 6.5 19.105 10 19.105 10H3s1.895-1 1.895-3.5S3 3 3 3ZM21 14H5.39c-.325 0-.648.076-.901.281C3.932 14.731 3 15.747 3 17.5s.932 2.769 1.489 3.219c.253.205.576.281.901.281H21s-1.895-1-1.895-3.5S21 14 21 14ZM8 17h8M8 7h8"\n data-follow-stroke="currentColor" />'},juanzeng:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M11.556 20C8.56 18.848 3 13.896 3 8.448 3 5.439 5.107 3 7.706 3c1.591 0 2.998.915 3.85 2.315.851-1.4 2.258-2.315 3.85-2.315C17.654 3 19.534 4.825 20 7.266"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m15 11 3 3 3-3M15 15h6M15 18h6M18 15v5" data-follow-stroke="currentColor" />'},kecheng:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" d="M8 3h8v9l-4-2-4 2V3Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M8.4 15.15H21V3H5c-1.105 0-2 .806-2 1.8v13.5C3 19.791 4.343 21 6 21h15v-3.15H8.4a1.35 1.35 0 1 1 0-2.7Z"\n data-follow-stroke="currentColor" />'},keyanfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M16.923 3v2.016h-.98v1.109c0 1.167.246 2.32.722 3.38l4.2 9.35c.34.758.018 1.656-.72 2.006-.194.091-.404.139-.617.139H6.471C5.66 21 5 20.323 5 19.488c0-.219.046-.435.135-.634l4.2-9.35a8.252 8.252 0 0 0 .722-3.38V5.017h-.98V3h7.846Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M9 5.525H6.057v1.232h.736v.678c0 .713-.185 1.418-.542 2.065l-3.15 5.189a.8.8 0 0 0-.101.387c0 .51.494.924 1.103.924h1.954"\n data-follow-stroke="currentColor" />\n <circle stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" r="2" cy="15" cx="12"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M17.854 11A2.5 2.5 0 1 0 16 6.823" data-follow-stroke="currentColor" />'},left:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M31 36 19 24l12-12"\n data-follow-stroke="currentColor" />'},like:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M15 8C8.925 8 4 12.925 4 19c0 11 13 21 20 23.326C31 40 44 30 44 19c0-6.075-4.925-11-11-11-3.72 0-7.01 1.847-9 4.674A10.987 10.987 0 0 0 15 8Z"\n data-follow-stroke="currentColor" />'},link:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M24.707 9.565 9.858 24.415a9 9 0 0 0 0 12.727v0a9 9 0 0 0 12.728 0l17.678-17.677a6 6 0 0 0 0-8.486v0a6 6 0 0 0-8.486 0L14.101 28.657a3 3 0 0 0 0 4.243v0a3 3 0 0 0 4.242 0l14.85-14.85"\n data-follow-stroke="currentColor" />'},"male-filled":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor" d="M41.952 15.048v-9h-9" stroke="currentColor" stroke-width="4"\n stroke-linecap="round" stroke-linejoin="round" />\n <path data-follow-stroke="currentColor" data-follow-fill="currentColor"\n d="M10.414 38c5.467 5.468 14.331 5.468 19.799 0a13.956 13.956 0 0 0 4.1-9.899 13.96 13.96 0 0 0-4.1-9.9c-5.468-5.467-14.332-5.467-19.8 0-5.467 5.468-5.467 14.332 0 19.8Z"\n fill="currentColor" stroke="currentColor" stroke-width="4" stroke-linejoin="round" />\n <path data-follow-stroke="currentColor" d="m30 18 9.952-9.952" stroke="currentColor" stroke-width="4"\n stroke-linecap="round" stroke-linejoin="round" />'},male:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M41.952 15.048v-9h-9"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M10.414 38c5.467 5.468 14.331 5.468 19.799 0a13.956 13.956 0 0 0 4.1-9.899c0-3.583-1.367-7.166-4.1-9.9-5.468-5.467-14.332-5.467-19.8 0-5.467 5.468-5.467 14.332 0 19.8Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m30 18 9.952-9.952"\n data-follow-stroke="currentColor" />'},minus:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M10.5 24h28"\n data-follow-stroke="currentColor"\n />'},"more-one":{viewBox:"0 0 48 48",content:'<circle fill="currentColor" r="3" cy="12" cx="24" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="24" cx="24" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="35" cx="24" data-follow-fill="currentColor" />'},more:{viewBox:"0 0 48 48",content:'<circle fill="currentColor" r="3" cy="24" cx="12" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="24" cx="24" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="24" cx="36" data-follow-fill="currentColor" />'},pic:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V10Z" clip-rule="evenodd"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="m15 24 5 4 6-7 17 13v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4l10-10Z" data-follow-stroke="currentColor" />'},plan:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M5 19h38v22a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V19ZM5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v9H5v-9Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m16 31 6 6 12-12"\n data-follow-stroke="currentColor" />\n <path stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M16 5v8M32 5v8"\n data-follow-stroke="currentColor" />'},plus:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="m24.06 10-.036 28M10 24h28"\n data-follow-stroke="currentColor"\n />'},power:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M14.5 8a19.05 19.05 0 0 0-4.75 3.84C6.794 15.146 5 19.49 5 24.245 5 34.603 13.507 43 24 43s19-8.397 19-18.755c0-4.756-1.794-9.099-4.75-12.405A19.02 19.02 0 0 0 33.5 8M24 4v20"\n data-follow-stroke="currentColor" />'},"preview-close-one":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor"\n d="M9.858 18C6.238 21 4 24 4 24s8.954 12 20 12c1.37 0 2.708-.185 4-.508M20.032 12.5c1.282-.318 2.61-.5 3.968-.5 11.046 0 20 12 20 12s-2.239 3-5.858 6m-17.828-9.379a5 5 0 0 0 7.186 6.95M42 42 6 6"\n stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" />'},"preview-open":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M24 36c11.046 0 20-12 20-12s-8.954-12-20-12S4 24 4 24s8.954 12 20 12Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 29a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"\n data-follow-stroke="currentColor" />'},"reduce-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill="currentColor"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-28-2a2 2 0 1 0 0 4h16a2 2 0 1 0 0-4H16Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n />'},refresh:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M42 8v16M6 24v16M42 24c0-9.941-8.059-18-18-18a17.947 17.947 0 0 0-12.952 5.5M6 24c0 9.941 8.059 18 18 18a17.94 17.94 0 0 0 12.5-5.048"\n data-follow-stroke="currentColor" />'},right:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m19 12 12 12-12 12"\n data-follow-stroke="currentColor" />'},rss:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M8 44V6a2 2 0 0 1 2-2h28a2 2 0 0 1 2 2v38l-16-8.273L8 44Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M23.95 13.95v12M17.95 19.95h12" data-follow-stroke="currentColor" />'},search:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4 4 11.611 4 21s7.611 17 17 17Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M26.657 14.343A7.975 7.975 0 0 0 21 12c-2.209 0-4.209.895-5.657 2.343M33.222 33.222l8.485 8.485"\n data-follow-stroke="currentColor" />'},"setting-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="m34 41 10-17L34 7H14L4 24l10 17h20Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 29a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"\n data-follow-stroke="currentColor" />'},share:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M28 6h14v14M42 29.474V39a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h9M25.8 22.2 41.1 6.9"\n data-follow-stroke="currentColor"\n />'},shuifei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M13 21c3.866 0 7-2.93 7-6.546C20 10.91 17.667 7.091 13 3c-4.667 4.09-7 7.91-7 11.454C6 18.07 9.134 21 13 21Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m11 9 2 2 2-2M10 12h6M10 15h6M13 13v4M7 3C5.667 4.385 3.889 6.23 3 9" data-follow-stroke="currentColor" />'},siliujikaoshi:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M17 8h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2" data-follow-stroke="currentColor" />\n <rect stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" rx="2" height="18"\n width="14" y="3" x="3" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" d="M13 17H6"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M6.5 14H8l4.5-5.25-2-1.75L6 12.25 6.5 14Z" clip-rule="evenodd" data-follow-stroke="currentColor" />'},switch:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M42 19H6M30 7l12 12M6.799 29h36M6.799 29l12 12" data-follow-stroke="currentColor" />'},"tag-one":{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-width="4"\n stroke="currentColor"\n d="M42.17 29.245 29.262 42.151a3.6 3.6 0 0 1-5.094 0L8 26V8h18l16.17 16.17a3.6 3.6 0 0 1 0 5.075Z"\n data-follow-stroke="currentColor"\n />\n <path\n fill="currentColor"\n d="M18.5 21a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n data-follow-fill="currentColor"\n />'},tijianfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M12.942 20C15.222 18.555 21 16.523 21 9.78 21 6.408 18.755 4 15.986 4c-.883 0-1.712.261-2.432.647a3.634 3.634 0 0 1-3.342 0C9.492 4.261 8.663 4 7.78 4 5.794 4 4.05 5.27 3.241 7.257a1.49 1.49 0 0 0-.083.282c-.136.717-.287 2.147.03 3.144"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M13.15 8C15.276 8 17 9.757 17 12.216c0 4.157-3.748 6.808-5.966 8.166a1.986 1.986 0 0 1-2.068 0C6.748 19.024 3 16.372 3 12.216 3 9.756 4.75 8 6.85 8c.528 0 1.032.116 1.49.3a4.596 4.596 0 0 0 3.32 0c.458-.184.961-.3 1.49-.3Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M4 13.53h1.895L6.842 15l1.421-3 1.421 3 1.421-1.102H13" data-follow-stroke="currentColor" />'},translation:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="m17 32 2.188-5M31 32l-2.188-5m-9.625 0L24 16l4.813 11m-9.625 0h9.625"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M43.2 20c-1.853-9.129-9.924-16-19.6-16C13.924 4 5.853 10.871 4 20l6-2M4 28c1.853 9.129 9.924 16 19.6 16 9.676 0 17.747-6.871 19.6-16L38 30"\n data-follow-stroke="currentColor"\n />'},tushuguan:{viewBox:"0 0 24 24",content:'<rect stroke-linejoin="round" stroke-width="2" stroke="currentColor" rx="2" height="18" width="5" y="3" x="3"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M7 7H4M7 17H4M16.855 21h-4a2 2 0 0 1-2-2V7M14 17h-2" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M10.691 6.39A2.118 2.118 0 0 1 11.86 3.73l1.543-.638a1.888 1.888 0 0 1 2.52 1.106l4.93 13.477a2.118 2.118 0 0 1-1.169 2.659l-1.544.638a1.888 1.888 0 0 1-2.52-1.107L10.692 6.39Z"\n data-follow-stroke="currentColor" />'},upload:{viewBox:"0 0 48 48",content:'<mask style="mask-type:alpha" height="48" width="48" y="0" x="0" maskUnits="userSpaceOnUse" id="a">\n <path fill="currentColor" d="M48 0H0v48h48V0Z" data-follow-fill="currentColor" />\n </mask>\n <g mask="url(#a)" stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n data-follow-stroke="currentColor">\n <path d="M6 24.008V42h36V24M33 15l-9-9-9 9M23.992 32V6" />\n </g>'},wangfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M19.65 3H4.35C3.604 3 3 3.672 3 4.5v12c0 .828.604 1.5 1.35 1.5h15.3c.746 0 1.35-.672 1.35-1.5v-12c0-.828-.604-1.5-1.35-1.5ZM12 18v3M10.5 8 6 13M16.5 8 12 13M5 21h14"\n data-follow-stroke="currentColor" />'},wodedaijiao:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M3 7.933C3 7.418 3.403 7 3.9 7h16.2c.497 0 .9.418.9.933v12.134c0 .515-.403.933-.9.933H3.9c-.497 0-.9-.418-.9-.933V7.933Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m9.5 10 2.5 2.5 2.5-2.5M9 13h6M9 16h6M12 13v5M5 3h14" data-follow-stroke="currentColor" />'},xuefei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M19.1 9v0c1.05 0 1.9.85 1.9 1.9V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-8.65C3 9.604 3.604 9 4.35 9v0"\n data-follow-stroke="currentColor" />\n <path fill="currentColor"\n d="M5.138 4.083 6.135 4l-.997.083Zm.76 9.153.997-.082-.997.082Zm4.294 3.214.611-.792-.611.792Zm3.811 0-.611-.792.611.792Zm4.294-3.214.997.083-.997-.083Zm.76-9.153L18.061 4l.996.083ZM15.218 2a1 1 0 1 0 0 2V2Zm.97 13.512.159.987-.16-.987Zm.006-.001.16.987-.16-.987Zm-4.05 2.432-.638-.77.639.77Zm-.093 0 .639-.77-.64.77ZM8 15.51l-.16.987.16-.987Zm.007 0 .159-.986-.16.987ZM6.135 4V2a2 2 0 0 0-1.993 2.165L6.135 4Zm.76 9.154L6.135 4l-1.993.165.76 9.154 1.992-.165Zm1.267 1.37a1.515 1.515 0 0 1-1.268-1.37l-1.993.165a3.515 3.515 0 0 0 2.94 3.18l.32-1.975Zm2.641 1.134c-1.152-.89-2.538-1.117-2.636-1.133l-.319 1.974c-.004 0 .249.04.601.16.358.12.776.308 1.132.582l1.222-1.583Zm1.887 1.516a74.12 74.12 0 0 0-1.887-1.516l-1.222 1.583a72.39 72.39 0 0 1 1.83 1.471l1.279-1.538Zm-1.63.787v.017h2v-.017h-2Zm.076 0v.017h2v-.017h-2Zm1.647.751a72.306 72.306 0 0 1 1.832-1.47l-1.223-1.584a74.12 74.12 0 0 0-1.886 1.516l1.277 1.538Zm1.832-1.47a3.946 3.946 0 0 1 1.131-.584c.353-.119.605-.16.6-.159l-.318-1.974c-.098.015-1.483.243-2.636 1.133l1.223 1.583Zm1.739-.744a3.515 3.515 0 0 0 2.94-3.179l-1.993-.165a1.515 1.515 0 0 1-1.268 1.37l.32 1.974Zm2.94-3.179.76-9.154L18.06 4l-.76 9.154 1.993.165Zm.76-9.154A2 2 0 0 0 18.06 2v2l1.993.165ZM18.06 2h-1.385v2h1.385V2Zm-1.385 0h-1.458v2h1.458V2ZM7.52 4h1.458V2H7.519v2ZM6.135 4h1.384V2H6.135v2Zm10.212 12.5.001-.001h.006l-.32-1.975h-.006l.319 1.975Zm-3.211 1.461a.976.976 0 0 1-.353.751l-1.277-1.538c-.251.208-.37.505-.37.787h2Zm-.416.804a.993.993 0 0 1-.622.228.944.944 0 0 1-.344-.064.991.991 0 0 1-.278-.164l1.28-1.536c-.2-.167-.408-.207-.45-.215a1.056 1.056 0 0 0-.416 0c-.043.008-.25.048-.451.215l1.28 1.536ZM15.218 2H8.977v2H15.218V2ZM11.06 17.978c0 .178.049.444.256.68a1.01 1.01 0 0 0 1.405.107l-1.281-1.536a.99.99 0 0 1 1.62.749h-2Zm.353.734a.976.976 0 0 1-.353-.75h2c0-.283-.118-.58-.37-.788l-1.277 1.538Zm.063.053a1.01 1.01 0 0 0 1.405-.108c.207-.235.256-.501.256-.68h-2c0-.163.044-.415.244-.642a.99.99 0 0 1 1.376-.106l-1.28 1.536Zm-3.633-2.267.005.001h.001l.319-1.974-.005-.001-.32 1.974Z"\n data-follow-fill="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M10.806 11.468h2.823M13 7l-2.194 4.468" data-follow-stroke="currentColor" />'},xuezafei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M13.5 4H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h13a2 2 0 0 0 2-2v-8M17 8v5M14 11h6M14 8h6M7 17h9M7 13h5M14 4l1.586 1.586a2 2 0 0 0 2.828 0L20 4"\n data-follow-stroke="currentColor" />'},yiliaobaoxianfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m11.542 4.391-.49-.49a4.1 4.1 0 0 0-5.797 0v0a4.1 4.1 0 0 0 0 5.797l.926.927m13.428 1.833.472.472a4.1 4.1 0 0 1 0 5.797v0a4.1 4.1 0 0 1-5.797 0l-.45-.45"\n data-follow-stroke="currentColor" />\n <rect stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n transform="rotate(45 15.826 1)" rx="5.073" height="20.967" width="10.146" y="1" x="15.826"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M14.691 7a1.633 1.633 0 0 1 2.31 0v0a1.633 1.633 0 0 1 0 2.31l-3.11 3.108-2.309-2.31L14.692 7ZM11.5 15.349 9.588 17.26"\n data-follow-stroke="currentColor" />'},zhusu:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M3.824 12.401A2 2 0 0 0 3 14.018V19a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4.982a2 2 0 0 0-.824-1.617l-3.5-2.545a2 2 0 0 0-2.352 0l-3.5 2.545Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M7 9.5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-5M12.5 7.25h5.75M16 11h2"\n data-follow-stroke="currentColor" />'},"zoom-in":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor" d="M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4 4 11.611 4 21s7.611 17 17 17Z"\n stroke="currentColor" stroke-width="4" stroke-linejoin="round" />\n <path data-follow-stroke="currentColor" d="M21 15v12m-5.984-5.984L27 21m6.222 12.222 8.485 8.485"\n stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" />'},"zoom-out":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4 4 11.611 4 21s7.611 17 17 17Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M15 21h12M33.222 33.222l8.485 8.485" data-follow-stroke="currentColor" />'}},t={name:"XzxIcon",props:{name:{type:String,required:!0},size:{type:[String,Number],default:"1em"},color:{type:String,default:"currentColor"},fillColor:{type:String,default:null}},render:function(o){var t=r[this.name];if(!t)return console.warn('Icon "'.concat(this.name,'" not found')),null;var e={verticalAlign:"middle",display:"inline-block"};return this.color&&(e.color=this.color),o("svg",{attrs:{class:"xzx-icon",width:this.size,height:this.size,viewBox:t.viewBox,fill:this.fillColor||"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":!0},style:e,domProps:{innerHTML:t.content}})}};function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o.component(r.componentName||"XzxIcon",t)}function n(){return Object.keys(r)}var l={install:e,XzxIcon:t,iconData:r,getIconNames:n};"undefined"!=typeof window&&window.Vue&&e(window.Vue),o.XzxIcon=t,o.default=l,o.getIconNames=n,o.iconData=r,Object.defineProperty(o,"__esModule",{value:!0})});
|
1
|
+
!function(o,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports):"function"==typeof define&&define.amd?define(["exports"],r):r((o="undefined"!=typeof globalThis?globalThis:o||self).XzxIconVue2={})}(this,function(o){"use strict";var r={"add-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-8a2 2 0 1 0-4 0v6h-6a2 2 0 1 0 0 4h6v6a2 2 0 1 0 4 0v-6h6a2 2 0 1 0 0-4h-6v-6Z"\n fill="currentColor"\n />'},"all-application":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M18 6H8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2ZM18 28H8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V30a2 2 0 0 0-2-2ZM40 6H30a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2ZM40 28H30a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V30a2 2 0 0 0-2-2Z"\n data-follow-stroke="currentColor" />'},"arrow-circle-down-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-9a2 2 0 1 0-4 0v13.172l-5.586-5.586a2 2 0 1 0-2.828 2.828l9 9a2 2 0 0 0 2.828 0l9-9a2 2 0 1 0-2.828-2.828L26 28.172V15Z"\n fill="currentColor"\n />'},basicinformation:{viewBox:"0 0 24 24",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M5 22h14a1 1 0 0 0 1-1V7h-5V2H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M8 18.5h8"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="m15 2 5 5"\n data-follow-stroke="currentColor"\n />'},"bus-filled":{viewBox:"0 0 16 16",content:'<path data-follow-fill="currentColor"\n d="M11.333 13.333H4.667V14a.667.667 0 0 1-.667.667H2.667A.667.667 0 0 1 2 14V8h-.667V5.333H2v-2C2 2.597 2.597 2 3.333 2h9.334C13.403 2 14 2.597 14 3.333v2h.667V8H14v6a.667.667 0 0 1-.667.667H12a.667.667 0 0 1-.667-.667v-.667Zm-8-10V8h9.334V3.333H3.333ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"\n fill="currentColor" />'},"calendar-three":{viewBox:"0 0 48 48",content:'<rect stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" rx="2" height="36"\n width="40" y="8" x="4" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M4 20h40M4 32h40M17 4v8M31 4v8M17 20v24M31 20v24M44 13v26M4 13v26M14 44h20" data-follow-stroke="currentColor" />'},calendar2:{viewBox:"0 0 24 24",content:'<path\n stroke-linejoin="round"\n stroke-width="2"\n stroke="currentColor"\n d="M20 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M8.5 2v4M15.5 2v4M22 11H3"\n data-follow-stroke="currentColor"\n />'},camera:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="m15 12 3-6h12l3 6H15Z"\n data-follow-stroke="currentColor" />\n <rect stroke-linejoin="round" stroke-width="4" stroke="currentColor" rx="3" height="30" width="40" y="12" x="4"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 35a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z"\n data-follow-stroke="currentColor" />'},campus:{viewBox:"0 0 24 24",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="m12 3 7.5 6v12h-15V9L12 3Zm0 0L2 11m10-8 10 8M9 16.5h6"\n />\n <path\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M4.5 21h15"\n />'},caution:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 5 2 43h44L24 5Z" clip-rule="evenodd"\n data-follow-stroke="currentColor" />\n <path stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M24 35v1M24 19l.008 10"\n data-follow-stroke="currentColor" />'},"check-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34Zm3.758-23.068a2 2 0 1 0-2.828-2.828L22 27.172l-4.586-4.586a2 2 0 1 0-2.828 2.828l6 6a2 2 0 0 0 2.828 0l12-12Z"\n fill="currentColor"\n />'},"check-small":{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2.069" stroke="currentColor"\n d="m4.5 10.819 5.431 5.431L19.5 6.681" data-follow-stroke="currentColor" />'},"close-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-24.243-7.071a2 2 0 0 0-2.828 2.828L21.172 24l-4.243 4.243a2 2 0 0 0 2.828 2.828L24 26.828l4.243 4.243a2 2 0 1 0 2.828-2.828L26.828 24l4.243-4.243a2 2 0 1 0-2.828-2.828L24 21.172l-4.243-4.243Z"\n fill="currentColor"\n />'},"close-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M29.657 18.343 18.343 29.657M18.343 18.343l11.314 11.314" data-follow-stroke="currentColor" />'},"close-small":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m14 14 20 20M14 34l20-20" data-follow-stroke="currentColor" />'},close:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m8 8 32 32M8 40 40 8"\n data-follow-stroke="currentColor" />'},delete:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M9 10v34h30V10H9Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M20 20v13M28 20v13M4 10h40" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="m16 10 3.289-6h9.488L32 10H16Z"\n data-follow-stroke="currentColor" />'},dianfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M10 3h8.182l-5 6.3H20L9.09 21l2.274-8.55H5L10 3Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m19.827 15.21-4.098 4.781M6.444 3 3.969 7.5" data-follow-stroke="currentColor" />'},dianhuafei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M17 6.6V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-2.95M12 18H8"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M10 9a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3.784a2 2 0 0 1-2 2h-1.375v0c-.386 0-.74.21-.927.547l-.106.192a1.141 1.141 0 0 1-2.036-.075v0a1.142 1.142 0 0 0-1.037-.664H12a2 2 0 0 1-2-2V9ZM7 6l3 3M7 10h3M7 13h3M10 10v5"\n data-follow-stroke="currentColor" />'},"dislike-two":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M15 8C8.925 8 4 12.925 4 19c0 11 13 21 20 23.326C31 40 44 30 44 19c0-6.075-4.925-11-11-11-3.72 0-7.01 1.847-9 4.674A10.987 10.987 0 0 0 15 8Z"\n data-follow-stroke="currentColor" />\n <path d="m28 20-8 8 8-8Z" clip-rule="evenodd" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m28 20-8 8"\n data-follow-stroke="currentColor" />\n <path d="m20 20 8 8-8-8Z" clip-rule="evenodd" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m20 20 8 8"\n data-follow-stroke="currentColor" />'},"down-one-filled":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor" data-follow-fill="currentColor" d="M36 19 24 31 12 19h24Z" fill="currentColor"\n stroke="currentColor" stroke-width="4" stroke-linejoin="round" />'},down:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M36 18 24 30 12 18"\n data-follow-stroke="currentColor" />'},download:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M6 24.008V42h36V24"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="m33 23-9 9-9-9M23.992 6v26"\n data-follow-stroke="currentColor"\n />'},"female-filled":{viewBox:"0 0 48 48",content:'<g data-follow-stroke="currentColor" stroke="currentColor" stroke-width="4" stroke-linejoin="round"\n clip-path="url(#a)">\n <path data-follow-fill="currentColor"\n d="M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z"\n fill="currentColor" />\n <path d="M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828" stroke-linecap="round" />\n </g>\n <defs>\n <clipPath id="a">\n <path d="M0 0h48v48H0z" fill="currentColor" />\n </clipPath>\n </defs>'},female:{viewBox:"0 0 48 48",content:'<g clip-path="url(#a)" stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n data-follow-stroke="currentColor">\n <path\n d="M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9c0 3.583 1.367 7.166 4.1 9.9 5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z" />\n <path stroke-linecap="round" d="M18.464 29.535 5.736 42.263M19.171 41.556 6.443 28.828" />\n </g>\n <defs>\n <clipPath id="a">\n <path fill="currentColor" d="M0 0h48v48H0z" data-follow-fill="currentColor" />\n </clipPath>\n </defs>'},"file-code":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M10 44h28a2 2 0 0 0 2-2V14H30V4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2ZM30 4l10 10"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m27 24 5 5-5 5M21 24l-5 5 5 5" data-follow-stroke="currentColor" />'},"file-conversion-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12M27 33h14M27 39h14M41 33l-5-5M32 44l-5-5"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-date-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <circle stroke-width="4" stroke="currentColor" r="8" cy="36" cx="34" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M33 33v4h4M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-editing-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12M32 44l10-10-4-4-10 10v4h4Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-focus-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m34 27 2.523 5.527 6.036.692-4.476 4.108 1.207 5.954L34 40.293l-5.29 2.988 1.207-5.954-4.477-4.108 6.037-.692L34 27ZM30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-hiding-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M25 30a8.64 8.64 0 0 0 1.255 2.517C27.783 34.63 30.235 36 33 36s5.217-1.37 6.745-3.483A8.64 8.64 0 0 0 41 30M30.521 36.068l-1.035 3.864M35.486 36.068l1.036 3.864M39.353 34.354l2.829 2.828M24 37.01l2.828-2.828M30 4v10h10"\n data-follow-stroke="currentColor" />'},"file-lock-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M28 34h14v8H28zM38 34v-3a3 3 0 1 0-6 0v3M30 4v10h10" data-follow-stroke="currentColor" />'},"file-success-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="m26 38 6 5 9-11M30 4v10h10" data-follow-stroke="currentColor" />'},groupchat:{viewBox:"0 0 24 24",content:'<path\n stroke-linejoin="round"\n stroke-width="2"\n stroke="currentColor"\n d="M5.55 17.524v3l3-2s9.5.5 10-7.5c0-5.215-4.5-7.167-7-7.5-6-.5-10 2.972-10 7.5 0 4 2.5 5.833 4 6.5Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M21.05 9.524c1.333 1.667 2.9 5.7-1.5 8.5v2l-2.5-1.5"\n data-follow-stroke="currentColor"\n />\n <circle\n fill="currentColor"\n r="1"\n cy="10.524"\n cx="6.05"\n data-follow-fill="currentColor"\n />\n <circle\n fill="currentColor"\n r="1"\n cy="10.524"\n cx="10.05"\n data-follow-fill="currentColor"\n />\n <circle\n fill="currentColor"\n r="1"\n cy="10.524"\n cx="14.05"\n data-follow-fill="currentColor"\n />'},"help-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill="currentColor"\n d="M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34ZM20.939 11.234A8 8 0 1 1 26 26.371v2.254a2 2 0 1 1-4 0v-4a2 2 0 0 1 2-2 4 4 0 1 0-4-4 2 2 0 1 1-4 0 8 8 0 0 1 4.939-7.391ZM24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n />'},help:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-width="4"\n stroke="currentColor"\n d="M24 44a19.937 19.937 0 0 0 14.142-5.858A19.937 19.937 0 0 0 44 24a19.938 19.938 0 0 0-5.858-14.142A19.937 19.937 0 0 0 24 4 19.938 19.938 0 0 0 9.858 9.858 19.938 19.938 0 0 0 4 24a19.937 19.937 0 0 0 5.858 14.142A19.938 19.938 0 0 0 24 44Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M24 28.625v-4a6 6 0 1 0-6-6"\n data-follow-stroke="currentColor"\n />\n <path\n fill="currentColor"\n d="M24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n data-follow-fill="currentColor"\n />'},"infor-filled":{viewBox:"0 0 24 24",content:'<path\n fill="currentColor"\n d="M5.604 5.604A8.861 8.861 0 0 1 11.889 3c2.455 0 4.677.995 6.285 2.604a8.861 8.861 0 0 1 2.604 6.285 8.861 8.861 0 0 1-2.604 6.285 8.861 8.861 0 0 1-6.285 2.604 8.861 8.861 0 0 1-6.285-2.604A8.861 8.861 0 0 1 3 11.89c0-2.455.995-4.677 2.604-6.285Zm6.285 11.73a1 1 0 0 1-1-1V11.5a1 1 0 1 1 2 0v4.833a1 1 0 0 1-1 1Zm0-10.89a1 1 0 0 1 1 1v.445a1 1 0 1 1-2 0v-.445a1 1 0 0 1 1-1Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n data-follow-fill="currentColor"\n />'},infor:{viewBox:"0 0 24 24",content:'<path\n stroke-linejoin="round"\n stroke-width="2"\n stroke="currentColor"\n d="M11.889 3a8.861 8.861 0 0 0-6.285 2.604A8.861 8.861 0 0 0 3 11.889c0 2.455.995 4.677 2.604 6.285a8.861 8.861 0 0 0 6.285 2.604 8.861 8.861 0 0 0 6.285-2.604 8.861 8.861 0 0 0 2.604-6.285 8.861 8.861 0 0 0-2.604-6.285A8.861 8.861 0 0 0 11.89 3Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M11.889 16.333V11.5M11.889 7.444v.445"\n data-follow-stroke="currentColor"\n />'},jiaocaifei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M3 3h16.105S21 4 21 6.5 19.105 10 19.105 10H3s1.895-1 1.895-3.5S3 3 3 3ZM21 14H5.39c-.325 0-.648.076-.901.281C3.932 14.731 3 15.747 3 17.5s.932 2.769 1.489 3.219c.253.205.576.281.901.281H21s-1.895-1-1.895-3.5S21 14 21 14ZM8 17h8M8 7h8"\n data-follow-stroke="currentColor" />'},juanzeng:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M11.556 20C8.56 18.848 3 13.896 3 8.448 3 5.439 5.107 3 7.706 3c1.591 0 2.998.915 3.85 2.315.851-1.4 2.258-2.315 3.85-2.315C17.654 3 19.534 4.825 20 7.266"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m15 11 3 3 3-3M15 15h6M15 18h6M18 15v5" data-follow-stroke="currentColor" />'},kecheng:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" d="M8 3h8v9l-4-2-4 2V3Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M8.4 15.15H21V3H5c-1.105 0-2 .806-2 1.8v13.5C3 19.791 4.343 21 6 21h15v-3.15H8.4a1.35 1.35 0 1 1 0-2.7Z"\n data-follow-stroke="currentColor" />'},keyanfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M16.923 3v2.016h-.98v1.109c0 1.167.246 2.32.722 3.38l4.2 9.35c.34.758.018 1.656-.72 2.006-.194.091-.404.139-.617.139H6.471C5.66 21 5 20.323 5 19.488c0-.219.046-.435.135-.634l4.2-9.35a8.252 8.252 0 0 0 .722-3.38V5.017h-.98V3h7.846Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M9 5.525H6.057v1.232h.736v.678c0 .713-.185 1.418-.542 2.065l-3.15 5.189a.8.8 0 0 0-.101.387c0 .51.494.924 1.103.924h1.954"\n data-follow-stroke="currentColor" />\n <circle stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" r="2" cy="15" cx="12"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M17.854 11A2.5 2.5 0 1 0 16 6.823" data-follow-stroke="currentColor" />'},left:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M31 36 19 24l12-12"\n data-follow-stroke="currentColor" />'},like:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M15 8C8.925 8 4 12.925 4 19c0 11 13 21 20 23.326C31 40 44 30 44 19c0-6.075-4.925-11-11-11-3.72 0-7.01 1.847-9 4.674A10.987 10.987 0 0 0 15 8Z"\n data-follow-stroke="currentColor" />'},link:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M24.707 9.565 9.858 24.415a9 9 0 0 0 0 12.727v0a9 9 0 0 0 12.728 0l17.678-17.677a6 6 0 0 0 0-8.486v0a6 6 0 0 0-8.486 0L14.101 28.657a3 3 0 0 0 0 4.243v0a3 3 0 0 0 4.242 0l14.85-14.85"\n data-follow-stroke="currentColor" />'},"male-filled":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor" d="M41.952 15.048v-9h-9" stroke="currentColor" stroke-width="4"\n stroke-linecap="round" stroke-linejoin="round" />\n <path data-follow-stroke="currentColor" data-follow-fill="currentColor"\n d="M10.414 38c5.467 5.468 14.331 5.468 19.799 0a13.956 13.956 0 0 0 4.1-9.899 13.96 13.96 0 0 0-4.1-9.9c-5.468-5.467-14.332-5.467-19.8 0-5.467 5.468-5.467 14.332 0 19.8Z"\n fill="currentColor" stroke="currentColor" stroke-width="4" stroke-linejoin="round" />\n <path data-follow-stroke="currentColor" d="m30 18 9.952-9.952" stroke="currentColor" stroke-width="4"\n stroke-linecap="round" stroke-linejoin="round" />'},male:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M41.952 15.048v-9h-9"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M10.414 38c5.467 5.468 14.331 5.468 19.799 0a13.956 13.956 0 0 0 4.1-9.899c0-3.583-1.367-7.166-4.1-9.9-5.468-5.467-14.332-5.467-19.8 0-5.467 5.468-5.467 14.332 0 19.8Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m30 18 9.952-9.952"\n data-follow-stroke="currentColor" />'},minus:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M10.5 24h28"\n data-follow-stroke="currentColor"\n />'},"more-one":{viewBox:"0 0 48 48",content:'<circle fill="currentColor" r="3" cy="12" cx="24" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="24" cx="24" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="35" cx="24" data-follow-fill="currentColor" />'},more:{viewBox:"0 0 48 48",content:'<circle fill="currentColor" r="3" cy="24" cx="12" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="24" cx="24" data-follow-fill="currentColor" />\n <circle fill="currentColor" r="3" cy="24" cx="36" data-follow-fill="currentColor" />'},oneclickprocessing:{viewBox:"0 0 25 24",content:'<path\n stroke-linejoin="round"\n stroke-width="2"\n stroke="currentColor"\n d="M4.5 15 4 20l5-1.5L18.5 9l-4-4-10 10Z"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M16.5 17H22m-9 3h9M17 3l3.5 3.5"\n data-follow-stroke="currentColor"\n />'},pic:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V10Z" clip-rule="evenodd"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" clip-rule="evenodd" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="m15 24 5 4 6-7 17 13v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4l10-10Z" data-follow-stroke="currentColor" />'},plan:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M5 19h38v22a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V19ZM5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v9H5v-9Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m16 31 6 6 12-12"\n data-follow-stroke="currentColor" />\n <path stroke-linecap="round" stroke-width="4" stroke="currentColor" d="M16 5v8M32 5v8"\n data-follow-stroke="currentColor" />'},plus:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="m24.06 10-.036 28M10 24h28"\n data-follow-stroke="currentColor"\n />'},power:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M14.5 8a19.05 19.05 0 0 0-4.75 3.84C6.794 15.146 5 19.49 5 24.245 5 34.603 13.507 43 24 43s19-8.397 19-18.755c0-4.756-1.794-9.099-4.75-12.405A19.02 19.02 0 0 0 33.5 8M24 4v20"\n data-follow-stroke="currentColor" />'},"preview-close-one":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor"\n d="M9.858 18C6.238 21 4 24 4 24s8.954 12 20 12c1.37 0 2.708-.185 4-.508M20.032 12.5c1.282-.318 2.61-.5 3.968-.5 11.046 0 20 12 20 12s-2.239 3-5.858 6m-17.828-9.379a5 5 0 0 0 7.186 6.95M42 42 6 6"\n stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" />'},"preview-open":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M24 36c11.046 0 20-12 20-12s-8.954-12-20-12S4 24 4 24s8.954 12 20 12Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 29a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"\n data-follow-stroke="currentColor" />'},"reduce-one-filled":{viewBox:"0 0 48 48",content:'<path\n data-follow-fill="currentColor"\n fill="currentColor"\n d="M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-28-2a2 2 0 1 0 0 4h16a2 2 0 1 0 0-4H16Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n />'},refresh:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M42 8v16M6 24v16M42 24c0-9.941-8.059-18-18-18a17.947 17.947 0 0 0-12.952 5.5M6 24c0 9.941 8.059 18 18 18a17.94 17.94 0 0 0 12.5-5.048"\n data-follow-stroke="currentColor" />'},right:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor" d="m19 12 12 12-12 12"\n data-follow-stroke="currentColor" />'},rss:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M8 44V6a2 2 0 0 1 2-2h28a2 2 0 0 1 2 2v38l-16-8.273L8 44Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M23.95 13.95v12M17.95 19.95h12" data-follow-stroke="currentColor" />'},search:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4 4 11.611 4 21s7.611 17 17 17Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M26.657 14.343A7.975 7.975 0 0 0 21 12c-2.209 0-4.209.895-5.657 2.343M33.222 33.222l8.485 8.485"\n data-follow-stroke="currentColor" />'},"setting-one":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="m34 41 10-17L34 7H14L4 24l10 17h20Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="4" stroke="currentColor" d="M24 29a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z"\n data-follow-stroke="currentColor" />'},share:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M28 6h14v14M42 29.474V39a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h9M25.8 22.2 41.1 6.9"\n data-follow-stroke="currentColor"\n />'},shuifei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M13 21c3.866 0 7-2.93 7-6.546C20 10.91 17.667 7.091 13 3c-4.667 4.09-7 7.91-7 11.454C6 18.07 9.134 21 13 21Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m11 9 2 2 2-2M10 12h6M10 15h6M13 13v4M7 3C5.667 4.385 3.889 6.23 3 9" data-follow-stroke="currentColor" />'},siliujikaoshi:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M17 8h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2" data-follow-stroke="currentColor" />\n <rect stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" rx="2" height="18"\n width="14" y="3" x="3" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" d="M13 17H6"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M6.5 14H8l4.5-5.25-2-1.75L6 12.25 6.5 14Z" clip-rule="evenodd" data-follow-stroke="currentColor" />'},switch:{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M42 19H6M30 7l12 12M6.799 29h36M6.799 29l12 12" data-follow-stroke="currentColor" />'},"tag-one":{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-width="4"\n stroke="currentColor"\n d="M42.17 29.245 29.262 42.151a3.6 3.6 0 0 1-5.094 0L8 26V8h18l16.17 16.17a3.6 3.6 0 0 1 0 5.075Z"\n data-follow-stroke="currentColor"\n />\n <path\n fill="currentColor"\n d="M18.5 21a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"\n clip-rule="evenodd"\n fill-rule="evenodd"\n data-follow-fill="currentColor"\n />'},tijianfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M12.942 20C15.222 18.555 21 16.523 21 9.78 21 6.408 18.755 4 15.986 4c-.883 0-1.712.261-2.432.647a3.634 3.634 0 0 1-3.342 0C9.492 4.261 8.663 4 7.78 4 5.794 4 4.05 5.27 3.241 7.257a1.49 1.49 0 0 0-.083.282c-.136.717-.287 2.147.03 3.144"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M13.15 8C15.276 8 17 9.757 17 12.216c0 4.157-3.748 6.808-5.966 8.166a1.986 1.986 0 0 1-2.068 0C6.748 19.024 3 16.372 3 12.216 3 9.756 4.75 8 6.85 8c.528 0 1.032.116 1.49.3a4.596 4.596 0 0 0 3.32 0c.458-.184.961-.3 1.49-.3Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M4 13.53h1.895L6.842 15l1.421-3 1.421 3 1.421-1.102H13" data-follow-stroke="currentColor" />'},translation:{viewBox:"0 0 48 48",content:'<path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="m17 32 2.188-5M31 32l-2.188-5m-9.625 0L24 16l4.813 11m-9.625 0h9.625"\n data-follow-stroke="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="4"\n stroke="currentColor"\n d="M43.2 20c-1.853-9.129-9.924-16-19.6-16C13.924 4 5.853 10.871 4 20l6-2M4 28c1.853 9.129 9.924 16 19.6 16 9.676 0 17.747-6.871 19.6-16L38 30"\n data-follow-stroke="currentColor"\n />'},translation2:{viewBox:"0 0 24 24",content:'<path\n stroke-width=".1"\n stroke="currentColor"\n fill="currentColor"\n d="M10.578 10.065a.451.451 0 0 1 .201.19c.085.143.168.395.25.75l.07.259c.077.258.178.513.301.765.156.318.379.665.665 1.042.066-.1.14-.216.224-.353l.043.026-.042-.026c.1-.164.203-.412.307-.745v-.001a8.99 8.99 0 0 0 .257-1.005l.079-.42c.017-.112.026-.193.028-.246a1.91 1.91 0 0 1 .014-.176.122.122 0 0 1 .011-.03l.014-.03h-2.422Zm2.273-1.432a.56.56 0 0 1-.017.162l-.001.002-.024.065H15.7c.188 0 .346.05.468.158.12.106.19.243.207.408a.536.536 0 0 1-.165.445c-.126.13-.298.192-.51.192h-1.458l.01.014.02.042a.366.366 0 0 1 .011.05c.006.036.01.08.012.133.003.056-.003.143-.019.256-.015.114-.04.26-.075.435l-.156.769c-.018.08-.045.176-.08.29l-.126.398c-.098.298-.201.548-.307.75-.102.191-.27.45-.5.778.346.3.75.54 1.216.715.484.181.891.31 1.223.383h.002c.336.078.556.138.652.18a.711.711 0 0 1 .257.187l.054.08c.047.09.068.213.07.362.008.207-.057.372-.199.485a.8.8 0 0 1-.524.166c-.156.003-.372-.035-.647-.114l-.296-.093a12.5 12.5 0 0 1-.913-.339l-.293-.127a5.379 5.379 0 0 1-1.011-.585v-.001l-.532-.374c-.48.346-.938.628-1.378.843-.448.222-.9.417-1.358.583-.456.166-.803.253-1.037.256v.001a1.04 1.04 0 0 1-.423-.059.388.388 0 0 1-.187-.152l-.033-.072c-.06-.174-.089-.312-.081-.41l.01-.074a.685.685 0 0 1 .084-.216l.001-.002a.808.808 0 0 1 .312-.261c.146-.075.429-.171.845-.288a7.147 7.147 0 0 0 1.188-.445l.283-.145c.27-.146.539-.317.809-.51-.442-.562-.738-1.03-.887-1.401-.15-.375-.295-.766-.435-1.17a5.14 5.14 0 0 1-.154-.515 1.054 1.054 0 0 1-.035-.327.628.628 0 0 1 .207-.387.53.53 0 0 1 .14-.09H8.25a.662.662 0 0 1-.495-.19l-.001-.002a.596.596 0 0 1-.16-.466v-.001a.556.556 0 0 1 .205-.396l.098-.065a.735.735 0 0 1 .353-.082h3.334c-.03-.045-.056-.079-.071-.106l-.001-.002c-.024-.044-.09-.184-.197-.418a6.62 6.62 0 0 1-.12-.287 1.497 1.497 0 0 1-.032-.092.305.305 0 0 1-.014-.063V7.89c0-.053.013-.119.036-.195l.033-.07a.7.7 0 0 1 .217-.202.717.717 0 0 1 .431-.125h.001c.14.01.263.06.366.149.105.085.219.249.34.483.12.233.194.389.225.463.031.076.049.155.053.236v.003Z"\n data-follow-fill="currentColor"\n />\n <path\n stroke-linejoin="round"\n stroke-linecap="round"\n stroke-width="2"\n stroke="currentColor"\n d="M20.8 10.5c-.851-4.28-4.557-7.5-9-7.5s-8.15 3.22-9 7.5l2.755-.938M2.8 13.5c.85 4.28 4.557 7.5 9 7.5s8.149-3.22 9-7.5l-2.388.938"\n />'},tushuguan:{viewBox:"0 0 24 24",content:'<rect stroke-linejoin="round" stroke-width="2" stroke="currentColor" rx="2" height="18" width="5" y="3" x="3"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M7 7H4M7 17H4M16.855 21h-4a2 2 0 0 1-2-2V7M14 17h-2" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M10.691 6.39A2.118 2.118 0 0 1 11.86 3.73l1.543-.638a1.888 1.888 0 0 1 2.52 1.106l4.93 13.477a2.118 2.118 0 0 1-1.169 2.659l-1.544.638a1.888 1.888 0 0 1-2.52-1.107L10.692 6.39Z"\n data-follow-stroke="currentColor" />'},upload:{viewBox:"0 0 48 48",content:'<mask style="mask-type:alpha" height="48" width="48" y="0" x="0" maskUnits="userSpaceOnUse" id="a">\n <path fill="currentColor" d="M48 0H0v48h48V0Z" data-follow-fill="currentColor" />\n </mask>\n <g mask="url(#a)" stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n data-follow-stroke="currentColor">\n <path d="M6 24.008V42h36V24M33 15l-9-9-9 9M23.992 32V6" />\n </g>'},wangfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M19.65 3H4.35C3.604 3 3 3.672 3 4.5v12c0 .828.604 1.5 1.35 1.5h15.3c.746 0 1.35-.672 1.35-1.5v-12c0-.828-.604-1.5-1.35-1.5ZM12 18v3M10.5 8 6 13M16.5 8 12 13M5 21h14"\n data-follow-stroke="currentColor" />'},wodedaijiao:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-width="2" stroke="currentColor"\n d="M3 7.933C3 7.418 3.403 7 3.9 7h16.2c.497 0 .9.418.9.933v12.134c0 .515-.403.933-.9.933H3.9c-.497 0-.9-.418-.9-.933V7.933Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m9.5 10 2.5 2.5 2.5-2.5M9 13h6M9 16h6M12 13v5M5 3h14" data-follow-stroke="currentColor" />'},xuefei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M19.1 9v0c1.05 0 1.9.85 1.9 1.9V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-8.65C3 9.604 3.604 9 4.35 9v0"\n data-follow-stroke="currentColor" />\n <path fill="currentColor"\n d="M5.138 4.083 6.135 4l-.997.083Zm.76 9.153.997-.082-.997.082Zm4.294 3.214.611-.792-.611.792Zm3.811 0-.611-.792.611.792Zm4.294-3.214.997.083-.997-.083Zm.76-9.153L18.061 4l.996.083ZM15.218 2a1 1 0 1 0 0 2V2Zm.97 13.512.159.987-.16-.987Zm.006-.001.16.987-.16-.987Zm-4.05 2.432-.638-.77.639.77Zm-.093 0 .639-.77-.64.77ZM8 15.51l-.16.987.16-.987Zm.007 0 .159-.986-.16.987ZM6.135 4V2a2 2 0 0 0-1.993 2.165L6.135 4Zm.76 9.154L6.135 4l-1.993.165.76 9.154 1.992-.165Zm1.267 1.37a1.515 1.515 0 0 1-1.268-1.37l-1.993.165a3.515 3.515 0 0 0 2.94 3.18l.32-1.975Zm2.641 1.134c-1.152-.89-2.538-1.117-2.636-1.133l-.319 1.974c-.004 0 .249.04.601.16.358.12.776.308 1.132.582l1.222-1.583Zm1.887 1.516a74.12 74.12 0 0 0-1.887-1.516l-1.222 1.583a72.39 72.39 0 0 1 1.83 1.471l1.279-1.538Zm-1.63.787v.017h2v-.017h-2Zm.076 0v.017h2v-.017h-2Zm1.647.751a72.306 72.306 0 0 1 1.832-1.47l-1.223-1.584a74.12 74.12 0 0 0-1.886 1.516l1.277 1.538Zm1.832-1.47a3.946 3.946 0 0 1 1.131-.584c.353-.119.605-.16.6-.159l-.318-1.974c-.098.015-1.483.243-2.636 1.133l1.223 1.583Zm1.739-.744a3.515 3.515 0 0 0 2.94-3.179l-1.993-.165a1.515 1.515 0 0 1-1.268 1.37l.32 1.974Zm2.94-3.179.76-9.154L18.06 4l-.76 9.154 1.993.165Zm.76-9.154A2 2 0 0 0 18.06 2v2l1.993.165ZM18.06 2h-1.385v2h1.385V2Zm-1.385 0h-1.458v2h1.458V2ZM7.52 4h1.458V2H7.519v2ZM6.135 4h1.384V2H6.135v2Zm10.212 12.5.001-.001h.006l-.32-1.975h-.006l.319 1.975Zm-3.211 1.461a.976.976 0 0 1-.353.751l-1.277-1.538c-.251.208-.37.505-.37.787h2Zm-.416.804a.993.993 0 0 1-.622.228.944.944 0 0 1-.344-.064.991.991 0 0 1-.278-.164l1.28-1.536c-.2-.167-.408-.207-.45-.215a1.056 1.056 0 0 0-.416 0c-.043.008-.25.048-.451.215l1.28 1.536ZM15.218 2H8.977v2H15.218V2ZM11.06 17.978c0 .178.049.444.256.68a1.01 1.01 0 0 0 1.405.107l-1.281-1.536a.99.99 0 0 1 1.62.749h-2Zm.353.734a.976.976 0 0 1-.353-.75h2c0-.283-.118-.58-.37-.788l-1.277 1.538Zm.063.053a1.01 1.01 0 0 0 1.405-.108c.207-.235.256-.501.256-.68h-2c0-.163.044-.415.244-.642a.99.99 0 0 1 1.376-.106l-1.28 1.536Zm-3.633-2.267.005.001h.001l.319-1.974-.005-.001-.32 1.974Z"\n data-follow-fill="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M10.806 11.468h2.823M13 7l-2.194 4.468" data-follow-stroke="currentColor" />'},xuezafei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M13.5 4H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h13a2 2 0 0 0 2-2v-8M17 8v5M14 11h6M14 8h6M7 17h9M7 13h5M14 4l1.586 1.586a2 2 0 0 0 2.828 0L20 4"\n data-follow-stroke="currentColor" />'},yiliaobaoxianfei:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="m11.542 4.391-.49-.49a4.1 4.1 0 0 0-5.797 0v0a4.1 4.1 0 0 0 0 5.797l.926.927m13.428 1.833.472.472a4.1 4.1 0 0 1 0 5.797v0a4.1 4.1 0 0 1-5.797 0l-.45-.45"\n data-follow-stroke="currentColor" />\n <rect stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n transform="rotate(45 15.826 1)" rx="5.073" height="20.967" width="10.146" y="1" x="15.826"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M14.691 7a1.633 1.633 0 0 1 2.31 0v0a1.633 1.633 0 0 1 0 2.31l-3.11 3.108-2.309-2.31L14.692 7ZM11.5 15.349 9.588 17.26"\n data-follow-stroke="currentColor" />'},zhusu:{viewBox:"0 0 24 24",content:'<path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M3.824 12.401A2 2 0 0 0 3 14.018V19a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4.982a2 2 0 0 0-.824-1.617l-3.5-2.545a2 2 0 0 0-2.352 0l-3.5 2.545Z"\n data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor"\n d="M7 9.5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-5M12.5 7.25h5.75M16 11h2"\n data-follow-stroke="currentColor" />'},"zoom-in":{viewBox:"0 0 48 48",content:'<path data-follow-stroke="currentColor" d="M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4 4 11.611 4 21s7.611 17 17 17Z"\n stroke="currentColor" stroke-width="4" stroke-linejoin="round" />\n <path data-follow-stroke="currentColor" d="M21 15v12m-5.984-5.984L27 21m6.222 12.222 8.485 8.485"\n stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" />'},"zoom-out":{viewBox:"0 0 48 48",content:'<path stroke-linejoin="round" stroke-width="4" stroke="currentColor"\n d="M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4 4 11.611 4 21s7.611 17 17 17Z" data-follow-stroke="currentColor" />\n <path stroke-linejoin="round" stroke-linecap="round" stroke-width="4" stroke="currentColor"\n d="M15 21h12M33.222 33.222l8.485 8.485" data-follow-stroke="currentColor" />'}},n={name:"XzxIcon",props:{name:{type:String,required:!0},size:{type:[String,Number],default:"1em"},color:{type:String,default:"currentColor"},fillColor:{type:String,default:null}},render:function(o){var n=r[this.name];if(!n)return console.warn('Icon "'.concat(this.name,'" not found')),null;var t={verticalAlign:"middle",display:"inline-block"};return this.color&&(t.color=this.color),o("svg",{attrs:{class:"xzx-icon",width:this.size,height:this.size,viewBox:n.viewBox,fill:this.fillColor||"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":!0},style:t,domProps:{innerHTML:n.content}})}};function t(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o.component(r.componentName||"XzxIcon",n)}function e(){return Object.keys(r)}var l={install:t,XzxIcon:n,iconData:r,getIconNames:e};"undefined"!=typeof window&&window.Vue&&t(window.Vue),o.XzxIcon=n,o.default=l,o.getIconNames=e,o.iconData=r,Object.defineProperty(o,"__esModule",{value:!0})});
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "xzx-icon-vue2",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.6",
|
4
4
|
"description": "Vue2 icon component with inline SVG support for Xzx Design Icons",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"module": "lib/index.esm.js",
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"vue": "^2.6.0"
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
|
-
"@xzx-design/icons-svg": "^0.0.
|
36
|
+
"@xzx-design/icons-svg": "^0.0.6"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
39
|
"@babel/core": "^7.23.0",
|
package/src/inline-icons.js
CHANGED
@@ -14,6 +14,10 @@ export const iconData = {
|
|
14
14
|
"viewBox": "0 0 48 48",
|
15
15
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M44 24c0 11.046-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4s20 8.954 20 20Zm-18-9a2 2 0 1 0-4 0v13.172l-5.586-5.586a2 2 0 1 0-2.828 2.828l9 9a2 2 0 0 0 2.828 0l9-9a2 2 0 1 0-2.828-2.828L26 28.172V15Z\"\n fill=\"currentColor\"\n />"
|
16
16
|
},
|
17
|
+
"basicinformation": {
|
18
|
+
"viewBox": "0 0 24 24",
|
19
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5 22h14a1 1 0 0 0 1-1V7h-5V2H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8 18.5h8\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m15 2 5 5\"\n data-follow-stroke=\"currentColor\"\n />"
|
20
|
+
},
|
17
21
|
"bus-filled": {
|
18
22
|
"viewBox": "0 0 16 16",
|
19
23
|
"content": "<path data-follow-fill=\"currentColor\"\n d=\"M11.333 13.333H4.667V14a.667.667 0 0 1-.667.667H2.667A.667.667 0 0 1 2 14V8h-.667V5.333H2v-2C2 2.597 2.597 2 3.333 2h9.334C13.403 2 14 2.597 14 3.333v2h.667V8H14v6a.667.667 0 0 1-.667.667H12a.667.667 0 0 1-.667-.667v-.667Zm-8-10V8h9.334V3.333H3.333ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"\n fill=\"currentColor\" />"
|
@@ -22,10 +26,18 @@ export const iconData = {
|
|
22
26
|
"viewBox": "0 0 48 48",
|
23
27
|
"content": "<rect stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"2\" height=\"36\"\n width=\"40\" y=\"8\" x=\"4\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M4 20h40M4 32h40M17 4v8M31 4v8M17 20v24M31 20v24M44 13v26M4 13v26M14 44h20\" data-follow-stroke=\"currentColor\" />"
|
24
28
|
},
|
29
|
+
"calendar2": {
|
30
|
+
"viewBox": "0 0 24 24",
|
31
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M8.5 2v4M15.5 2v4M22 11H3\"\n data-follow-stroke=\"currentColor\"\n />"
|
32
|
+
},
|
25
33
|
"camera": {
|
26
34
|
"viewBox": "0 0 48 48",
|
27
35
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"m15 12 3-6h12l3 6H15Z\"\n data-follow-stroke=\"currentColor\" />\n <rect stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" rx=\"3\" height=\"30\" width=\"40\" y=\"12\" x=\"4\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\"\n data-follow-stroke=\"currentColor\" />"
|
28
36
|
},
|
37
|
+
"campus": {
|
38
|
+
"viewBox": "0 0 24 24",
|
39
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"m12 3 7.5 6v12h-15V9L12 3Zm0 0L2 11m10-8 10 8M9 16.5h6\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 21h15\"\n />"
|
40
|
+
},
|
29
41
|
"caution": {
|
30
42
|
"viewBox": "0 0 48 48",
|
31
43
|
"content": "<path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 5 2 43h44L24 5Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\" d=\"M24 35v1M24 19l.008 10\"\n data-follow-stroke=\"currentColor\" />"
|
@@ -84,7 +96,7 @@ export const iconData = {
|
|
84
96
|
},
|
85
97
|
"female-filled": {
|
86
98
|
"viewBox": "0 0 48 48",
|
87
|
-
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"
|
99
|
+
"content": "<g data-follow-stroke=\"currentColor\" stroke=\"currentColor\" stroke-width=\"4\" stroke-linejoin=\"round\"\n clip-path=\"url(#a)\">\n <path data-follow-fill=\"currentColor\"\n d=\"M38.379 9.851c-5.468-5.467-14.332-5.467-19.8 0a13.956 13.956 0 0 0-4.1 9.9 13.96 13.96 0 0 0 4.1 9.9c5.468 5.467 14.332 5.467 19.8 0 5.467-5.468 5.467-14.332 0-19.8Z\"\n fill=\"currentColor\" />\n <path d=\"M18.464 29.535 5.736 42.263m13.435-.707L6.443 28.828\" stroke-linecap=\"round\" />\n </g>\n <defs>\n <clipPath id=\"a\">\n <path d=\"M0 0h48v48H0z\" fill=\"currentColor\" />\n </clipPath>\n </defs>"
|
88
100
|
},
|
89
101
|
"female": {
|
90
102
|
"viewBox": "0 0 48 48",
|
@@ -122,6 +134,10 @@ export const iconData = {
|
|
122
134
|
"viewBox": "0 0 48 48",
|
123
135
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M40 23v-9L31 4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h12\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m26 38 6 5 9-11M30 4v10h10\" data-follow-stroke=\"currentColor\" />"
|
124
136
|
},
|
137
|
+
"groupchat": {
|
138
|
+
"viewBox": "0 0 24 24",
|
139
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M5.55 17.524v3l3-2s9.5.5 10-7.5c0-5.215-4.5-7.167-7-7.5-6-.5-10 2.972-10 7.5 0 4 2.5 5.833 4 6.5Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M21.05 9.524c1.333 1.667 2.9 5.7-1.5 8.5v2l-2.5-1.5\"\n data-follow-stroke=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"6.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"10.05\"\n data-follow-fill=\"currentColor\"\n />\n <circle\n fill=\"currentColor\"\n r=\"1\"\n cy=\"10.524\"\n cx=\"14.05\"\n data-follow-fill=\"currentColor\"\n />"
|
140
|
+
},
|
125
141
|
"help-filled": {
|
126
142
|
"viewBox": "0 0 48 48",
|
127
143
|
"content": "<path\n data-follow-fill=\"currentColor\"\n fill=\"currentColor\"\n d=\"M31.656 42.482A19.937 19.937 0 0 1 24 44a19.938 19.938 0 0 1-14.142-5.858A19.937 19.937 0 0 1 4 24 19.938 19.938 0 0 1 9.858 9.858 19.938 19.938 0 0 1 24 4a19.936 19.936 0 0 1 14.142 5.858A19.94 19.94 0 0 1 44 24a19.937 19.937 0 0 1-5.858 14.142 19.936 19.936 0 0 1-6.486 4.34ZM20.939 11.234A8 8 0 1 1 26 26.371v2.254a2 2 0 1 1-4 0v-4a2 2 0 0 1 2-2 4 4 0 1 0-4-4 2 2 0 1 1-4 0 8 8 0 0 1 4.939-7.391ZM24 37.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"\n clip-rule=\"evenodd\"\n fill-rule=\"evenodd\"\n />"
|
@@ -186,6 +202,10 @@ export const iconData = {
|
|
186
202
|
"viewBox": "0 0 48 48",
|
187
203
|
"content": "<circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"12\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"24\" data-follow-fill=\"currentColor\" />\n <circle fill=\"currentColor\" r=\"3\" cy=\"24\" cx=\"36\" data-follow-fill=\"currentColor\" />"
|
188
204
|
},
|
205
|
+
"oneclickprocessing": {
|
206
|
+
"viewBox": "0 0 25 24",
|
207
|
+
"content": "<path\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M4.5 15 4 20l5-1.5L18.5 9l-4-4-10 10Z\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M16.5 17H22m-9 3h9M17 3l3.5 3.5\"\n data-follow-stroke=\"currentColor\"\n />"
|
208
|
+
},
|
189
209
|
"pic": {
|
190
210
|
"viewBox": "0 0 48 48",
|
191
211
|
"content": "<path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M5 10a2 2 0 0 1 2-2h34a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V10Z\" clip-rule=\"evenodd\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"M14.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" clip-rule=\"evenodd\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"4\" stroke=\"currentColor\"\n d=\"m15 24 5 4 6-7 17 13v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4l10-10Z\" data-follow-stroke=\"currentColor\" />"
|
@@ -262,6 +282,10 @@ export const iconData = {
|
|
262
282
|
"viewBox": "0 0 48 48",
|
263
283
|
"content": "<path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"m17 32 2.188-5M31 32l-2.188-5m-9.625 0L24 16l4.813 11m-9.625 0h9.625\"\n data-follow-stroke=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"4\"\n stroke=\"currentColor\"\n d=\"M43.2 20c-1.853-9.129-9.924-16-19.6-16C13.924 4 5.853 10.871 4 20l6-2M4 28c1.853 9.129 9.924 16 19.6 16 9.676 0 17.747-6.871 19.6-16L38 30\"\n data-follow-stroke=\"currentColor\"\n />"
|
264
284
|
},
|
285
|
+
"translation2": {
|
286
|
+
"viewBox": "0 0 24 24",
|
287
|
+
"content": "<path\n stroke-width=\".1\"\n stroke=\"currentColor\"\n fill=\"currentColor\"\n d=\"M10.578 10.065a.451.451 0 0 1 .201.19c.085.143.168.395.25.75l.07.259c.077.258.178.513.301.765.156.318.379.665.665 1.042.066-.1.14-.216.224-.353l.043.026-.042-.026c.1-.164.203-.412.307-.745v-.001a8.99 8.99 0 0 0 .257-1.005l.079-.42c.017-.112.026-.193.028-.246a1.91 1.91 0 0 1 .014-.176.122.122 0 0 1 .011-.03l.014-.03h-2.422Zm2.273-1.432a.56.56 0 0 1-.017.162l-.001.002-.024.065H15.7c.188 0 .346.05.468.158.12.106.19.243.207.408a.536.536 0 0 1-.165.445c-.126.13-.298.192-.51.192h-1.458l.01.014.02.042a.366.366 0 0 1 .011.05c.006.036.01.08.012.133.003.056-.003.143-.019.256-.015.114-.04.26-.075.435l-.156.769c-.018.08-.045.176-.08.29l-.126.398c-.098.298-.201.548-.307.75-.102.191-.27.45-.5.778.346.3.75.54 1.216.715.484.181.891.31 1.223.383h.002c.336.078.556.138.652.18a.711.711 0 0 1 .257.187l.054.08c.047.09.068.213.07.362.008.207-.057.372-.199.485a.8.8 0 0 1-.524.166c-.156.003-.372-.035-.647-.114l-.296-.093a12.5 12.5 0 0 1-.913-.339l-.293-.127a5.379 5.379 0 0 1-1.011-.585v-.001l-.532-.374c-.48.346-.938.628-1.378.843-.448.222-.9.417-1.358.583-.456.166-.803.253-1.037.256v.001a1.04 1.04 0 0 1-.423-.059.388.388 0 0 1-.187-.152l-.033-.072c-.06-.174-.089-.312-.081-.41l.01-.074a.685.685 0 0 1 .084-.216l.001-.002a.808.808 0 0 1 .312-.261c.146-.075.429-.171.845-.288a7.147 7.147 0 0 0 1.188-.445l.283-.145c.27-.146.539-.317.809-.51-.442-.562-.738-1.03-.887-1.401-.15-.375-.295-.766-.435-1.17a5.14 5.14 0 0 1-.154-.515 1.054 1.054 0 0 1-.035-.327.628.628 0 0 1 .207-.387.53.53 0 0 1 .14-.09H8.25a.662.662 0 0 1-.495-.19l-.001-.002a.596.596 0 0 1-.16-.466v-.001a.556.556 0 0 1 .205-.396l.098-.065a.735.735 0 0 1 .353-.082h3.334c-.03-.045-.056-.079-.071-.106l-.001-.002c-.024-.044-.09-.184-.197-.418a6.62 6.62 0 0 1-.12-.287 1.497 1.497 0 0 1-.032-.092.305.305 0 0 1-.014-.063V7.89c0-.053.013-.119.036-.195l.033-.07a.7.7 0 0 1 .217-.202.717.717 0 0 1 .431-.125h.001c.14.01.263.06.366.149.105.085.219.249.34.483.12.233.194.389.225.463.031.076.049.155.053.236v.003Z\"\n data-follow-fill=\"currentColor\"\n />\n <path\n stroke-linejoin=\"round\"\n stroke-linecap=\"round\"\n stroke-width=\"2\"\n stroke=\"currentColor\"\n d=\"M20.8 10.5c-.851-4.28-4.557-7.5-9-7.5s-8.15 3.22-9 7.5l2.755-.938M2.8 13.5c.85 4.28 4.557 7.5 9 7.5s8.149-3.22 9-7.5l-2.388.938\"\n />"
|
288
|
+
},
|
265
289
|
"tushuguan": {
|
266
290
|
"viewBox": "0 0 24 24",
|
267
291
|
"content": "<rect stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\" rx=\"2\" height=\"18\" width=\"5\" y=\"3\" x=\"3\"\n data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M7 7H4M7 17H4M16.855 21h-4a2 2 0 0 1-2-2V7M14 17h-2\" data-follow-stroke=\"currentColor\" />\n <path stroke-linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\"\n d=\"M10.691 6.39A2.118 2.118 0 0 1 11.86 3.73l1.543-.638a1.888 1.888 0 0 1 2.52 1.106l4.93 13.477a2.118 2.118 0 0 1-1.169 2.659l-1.544.638a1.888 1.888 0 0 1-2.52-1.107L10.692 6.39Z\"\n data-follow-stroke=\"currentColor\" />"
|