xzx-icon-vue2 0.0.5 → 0.1.0

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 CHANGED
@@ -1,148 +1,162 @@
1
- # xzx-icon-vue2
1
+ # XZX Icon Vue2
2
2
 
3
- Vue2 图标组件库,支持内联SVG,无需外部文件。基于 `@xzx-design/icons-svg` 包中的70+个精美图标。
3
+ 基于 Vue2 的内联 SVG 图标组件库,提供 75+ 精美图标。
4
4
 
5
5
  ## ✨ 特性
6
6
 
7
- - 🚀 **内联SVG** - 所有图标直接内嵌在组件中,无需加载外部文件
8
- - 📦 **轻量级** - 只包含必要的图标数据
9
- - 🎨 **可定制** - 支持自定义尺寸和颜色
10
- - 🔧 **易使用** - 简单的API,支持多种安装方式
11
- - 📱 **响应式** - 支持不同尺寸的图标显示
12
- - 🌐 **CDN友好** - 支持CDN引入,自动安装
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 XzxIcon from 'xzx-icon-vue2'
24
+ import XzxIconVue2 from 'xzx-icon-vue2'
27
25
 
28
- Vue.use(XzxIcon)
29
-
30
- // 现在可以在任何组件中使用
31
- // <xzx-icon name="camera" size="24" color="#1890ff"></xzx-icon>
26
+ Vue.use(XzxIconVue2)
32
27
  ```
33
28
 
34
- ### 方式2: 按需引入
29
+ ### 预览所有图标
35
30
 
36
- ```javascript
37
- import { XzxIcon } from 'xzx-icon-vue2'
31
+ 安装后可以使用CLI命令启动本地预览服务器:
38
32
 
39
- export default {
40
- components: {
41
- XzxIcon
42
- }
43
- }
44
- ```
33
+ ```bash
34
+ # 使用 npx
35
+ npx xzx-icon-vue2 preview
45
36
 
46
- ### 方式3: CDN引入
37
+ # 或者全局安装后使用
38
+ npm install -g xzx-icon-vue2
39
+ xzx-icon-vue2 preview
47
40
 
48
- ```html
49
- <!DOCTYPE html>
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>
58
- </div>
41
+ # 使用 yarn
42
+ yarn xzx-icon-vue2 preview
59
43
 
60
- <script>
61
- new Vue({
62
- el: '#app'
63
- })
64
- </script>
65
- </body>
66
- </html>
44
+ # 使用 pnpm
45
+ pnpm xzx-icon-vue2 preview
67
46
  ```
68
47
 
69
- ## 📖 组件API
48
+ 预览功能特性:
49
+ - 🔍 **实时搜索**:按 `/` 快速聚焦搜索框,ESC 清空搜索
50
+ - 🏷️ **分类筛选**:按类型快速筛选图标
51
+ - 📋 **一键复制**:点击图标即可复制Vue代码
52
+ - 📱 **响应式设计**:支持移动端浏览
70
53
 
71
- ### Props
54
+ ### CDN 使用
55
+
56
+ ```html
57
+ <!-- Vue2 -->
58
+ <script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
59
+ <!-- XZX Icon Vue2 -->
60
+ <script src="https://cdn.jsdelivr.net/npm/xzx-icon-vue2/lib/index.umd.min.js"></script>
61
+ ```
72
62
 
73
- | 参数 | 说明 | 类型 | 默认值 |
74
- |------|------|------|--------|
75
- | name | 图标名称 | `string` | - |
76
- | size | 图标尺寸 | `string \| number` | `'1em'` |
77
- | color | 图标颜色 | `string` | `'currentColor'` |
63
+ 组件会自动注册为全局组件。
78
64
 
79
- ### 示例
65
+ ## 📖 使用方法
66
+
67
+ ### 基础用法
80
68
 
81
69
  ```vue
82
70
  <template>
83
71
  <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>
72
+ <!-- 基本图标 -->
73
+ <xzx-icon name="camera" size="24"></xzx-icon>
74
+
75
+ <!-- 设置颜色 -->
76
+ <xzx-icon name="search" color="#1890ff" size="32"></xzx-icon>
100
77
  </div>
101
78
  </template>
102
79
  ```
103
80
 
104
- ## 🎨 可用图标
81
+ ### 高级颜色控制
105
82
 
106
- 本库包含70+个图标,包括:
83
+ ```vue
84
+ <template>
85
+ <div>
86
+ <!-- 描边颜色控制 -->
87
+ <xzx-icon name="camera" color="#1890ff" size="32"></xzx-icon>
107
88
 
108
- - **基础图标**: `camera`, `search`, `upload`, `download`, `delete`, `edit`
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`
89
+ <!-- 填充颜色控制 -->
90
+ <xzx-icon name="add-one-filled" fill-color="#52c41a" size="32"></xzx-icon>
114
91
 
115
- ### 获取所有图标名称
92
+ <!-- 同时控制描边和填充 -->
93
+ <xzx-icon name="like" color="#ff4d4f" fill-color="#fff1f0" size="32"></xzx-icon>
94
+ </div>
95
+ </template>
96
+ ```
116
97
 
117
- ```javascript
118
- import { getIconNames } from 'xzx-icon-vue2'
98
+ ### CSS 继承颜色
119
99
 
120
- const allIcons = getIconNames()
121
- console.log(allIcons) // ['camera', 'search', 'upload', ...]
100
+ ```vue
101
+ <template>
102
+ <div style="color: #1890ff;">
103
+ <!-- 图标会自动继承父元素的颜色 -->
104
+ <xzx-icon name="camera" size="24"></xzx-icon>
105
+ </div>
106
+ </template>
122
107
  ```
123
108
 
124
- ## 🔧 高级用法
109
+ ## 🎨 属性说明
125
110
 
126
- ### 自定义组件名称
111
+ | 属性 | 类型 | 默认值 | 说明 |
112
+ |------|------|--------|------|
113
+ | name | String | - | 图标名称(必填) |
114
+ | size | String/Number | '1em' | 图标大小 |
115
+ | color | String | 'currentColor' | 描边颜色 |
116
+ | fill-color | String | null | 填充颜色 |
127
117
 
128
- ```javascript
129
- Vue.use(XzxIcon, {
130
- componentName: 'MyIcon' // 默认是 'XzxIcon'
131
- })
118
+ **注意**:在 HTML 中使用 `fill-color`,在 JavaScript 中对应 `fillColor` 属性。
132
119
 
133
- // 使用
134
- // <my-icon name="camera"></my-icon>
135
- ```
120
+ ## 🔧 自动颜色优化
136
121
 
137
- ### 访问图标数据
122
+ 构建过程中会自动优化 SVG 图标:
138
123
 
139
- ```javascript
140
- import { iconData } from 'xzx-icon-vue2'
124
+ - **十六进制颜色** (`#000`, `#FF0000`) → `currentColor`
125
+ - **RGB/RGBA 颜色** (`rgb(0,0,0)`, `rgba(0,0,0,1)`) → `currentColor`
126
+ - **命名颜色** (`black`, `red`) → `currentColor`
127
+ - **HSL 颜色** (`hsl(0,0%,0%)`) → `currentColor`
128
+
129
+ 保留以下属性不变:`none`, `inherit`, `currentColor`, `transparent`
130
+
131
+ ## 📊 图标列表
132
+
133
+ 当前提供 75+ 个图标,包括:
134
+
135
+ - 基础图标:camera, search, like, setting-one 等
136
+ - 文件图标:file-code, file-lock-one, file-editing-one 等
137
+ - 界面图标:close, add, minus, more 等
138
+ - 箭头图标:left, right, up, down 等
139
+
140
+ ## 🛠️ 开发
141
+
142
+ ```bash
143
+ # 安装依赖
144
+ npm install
145
+
146
+ # 生成图标文件
147
+ npm run generate
148
+
149
+ # 构建
150
+ npm run build
141
151
 
142
- console.log(iconData['camera'])
143
- // { viewBox: "0 0 48 48", content: "<path...>" }
152
+ # 测试
153
+ npm test
144
154
  ```
145
155
 
156
+ ## 📄 许可证
157
+
158
+ MIT License
159
+
146
160
  ## 🎯 与旧版本的区别
147
161
 
148
162
  ### v1.1.0+ (内联版本)
@@ -168,10 +182,6 @@ console.log(iconData['camera'])
168
182
  - [图标源文件](https://www.npmjs.com/package/@xzx-design/icons-svg)
169
183
  - [Vue.js 官网](https://vuejs.org/)
170
184
 
171
- ## 📄 许可证
172
-
173
- MIT License
174
-
175
185
  ## 🤝 贡献
176
186
 
177
187
  欢迎提交 Issues 和 Pull Requests!
package/bin/cli.js ADDED
@@ -0,0 +1,57 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { spawn } = require('child_process')
4
+ const path = require('path')
5
+
6
+ const command = process.argv[2]
7
+
8
+ if (command === 'preview') {
9
+ console.log('🚀 启动图标预览服务器...')
10
+
11
+ const serverPath = path.join(__dirname, '../preview/server.js')
12
+ const child = spawn('node', [serverPath], {
13
+ stdio: 'inherit',
14
+ cwd: process.cwd()
15
+ })
16
+
17
+ child.on('error', (err) => {
18
+ console.error('❌ 启动预览服务器失败:', err.message)
19
+ process.exit(1)
20
+ })
21
+
22
+ child.on('exit', (code) => {
23
+ if (code !== 0) {
24
+ console.error(`❌ 预览服务器退出,代码: ${code}`)
25
+ process.exit(code)
26
+ }
27
+ })
28
+
29
+ // 优雅关闭
30
+ process.on('SIGINT', () => {
31
+ console.log('\n👋 关闭预览服务器...')
32
+ child.kill('SIGINT')
33
+ process.exit(0)
34
+ })
35
+
36
+ process.on('SIGTERM', () => {
37
+ child.kill('SIGTERM')
38
+ process.exit(0)
39
+ })
40
+
41
+ } else {
42
+ console.log(`
43
+ 🎨 XZX Icon Vue2 CLI
44
+
45
+ 用法:
46
+ xzx-icon-vue2 preview 启动图标预览服务器
47
+
48
+ 选项:
49
+ -h, --help 显示帮助信息
50
+ -v, --version 显示版本信息
51
+ `)
52
+
53
+ if (command === '-v' || command === '--version') {
54
+ const packageJson = require('../package.json')
55
+ console.log(packageJson.version)
56
+ }
57
+ }
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=\"#FFF\" />\n </clipPath>\n </defs>"
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=\"#FFF\" />\n </clipPath>\n </defs>"
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\" />"
@@ -391,6 +415,6 @@ if (typeof window !== 'undefined' && window.Vue) {
391
415
  }
392
416
 
393
417
  exports.XzxIcon = XzxIcon;
394
- exports["default"] = index;
418
+ exports.default = index;
395
419
  exports.getIconNames = getIconNames;
396
420
  exports.iconData = iconData;
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=\"#FFF\" />\n </clipPath>\n </defs>"
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\" />"
@@ -393,7 +417,7 @@
393
417
  }
394
418
 
395
419
  exports.XzxIcon = XzxIcon;
396
- exports["default"] = index;
420
+ exports.default = index;
397
421
  exports.getIconNames = getIconNames;
398
422
  exports.iconData = iconData;
399
423