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 +111 -101
- package/bin/cli.js +57 -0
- package/lib/index.esm.js +25 -1
- package/lib/index.js +26 -2
- package/lib/index.umd.js +26 -2
- package/lib/index.umd.min.js +1 -1
- package/package.json +17 -12
- package/preview/index.html +578 -0
- package/preview/server.js +145 -0
- package/src/inline-icons.js +25 -1
@@ -0,0 +1,145 @@
|
|
1
|
+
const express = require('express')
|
2
|
+
const path = require('path')
|
3
|
+
const open = require('open')
|
4
|
+
const fs = require('fs')
|
5
|
+
|
6
|
+
const app = express()
|
7
|
+
const PORT = 3005
|
8
|
+
|
9
|
+
// 静态文件服务
|
10
|
+
app.use(express.static(path.join(__dirname)))
|
11
|
+
app.use('/lib', express.static(path.join(__dirname, '../lib')))
|
12
|
+
app.use('/src', express.static(path.join(__dirname, '../src')))
|
13
|
+
|
14
|
+
// 主页面路由
|
15
|
+
app.get('/', (req, res) => {
|
16
|
+
res.sendFile(path.join(__dirname, 'index.html'))
|
17
|
+
})
|
18
|
+
|
19
|
+
// API: 获取所有图标列表
|
20
|
+
app.get('/api/icons', (req, res) => {
|
21
|
+
try {
|
22
|
+
// 读取内联图标文件内容
|
23
|
+
const iconFilePath = path.join(__dirname, '../src/inline-icons.js')
|
24
|
+
const iconFileContent = fs.readFileSync(iconFilePath, 'utf-8')
|
25
|
+
|
26
|
+
// 提取iconData对象
|
27
|
+
const iconDataMatch = iconFileContent.match(/export const iconData = (\{[\s\S]*?\n\})/)
|
28
|
+
if (!iconDataMatch) {
|
29
|
+
throw new Error('无法解析iconData')
|
30
|
+
}
|
31
|
+
|
32
|
+
// 使用eval来解析JSON对象 (注意:这只在服务器端安全)
|
33
|
+
const iconDataStr = iconDataMatch[1]
|
34
|
+
const iconData = eval('(' + iconDataStr + ')')
|
35
|
+
const icons = Object.keys(iconData)
|
36
|
+
|
37
|
+
res.json({ icons, count: icons.length })
|
38
|
+
console.log(`✅ 成功加载 ${icons.length} 个图标`)
|
39
|
+
} catch (error) {
|
40
|
+
console.error('获取图标列表失败:', error.message)
|
41
|
+
res.status(500).json({ error: '获取图标列表失败: ' + error.message })
|
42
|
+
}
|
43
|
+
})
|
44
|
+
|
45
|
+
app.get('/simple', (req, res) => {
|
46
|
+
const simplePage = `<!DOCTYPE html>
|
47
|
+
<html lang="zh-CN">
|
48
|
+
<head>
|
49
|
+
<meta charset="UTF-8">
|
50
|
+
<title>简化图标预览</title>
|
51
|
+
<style>
|
52
|
+
body { font-family: Arial, sans-serif; padding: 20px; }
|
53
|
+
.icons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; }
|
54
|
+
.icon-item { text-align: center; padding: 15px; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; }
|
55
|
+
.icon-item:hover { background: #f5f5f5; }
|
56
|
+
.icon-display { margin-bottom: 8px; }
|
57
|
+
.icon-name { font-size: 12px; color: #666; }
|
58
|
+
</style>
|
59
|
+
</head>
|
60
|
+
<body>
|
61
|
+
<div id="app">
|
62
|
+
<h1>图标预览 ({{ filteredIcons.length }})</h1>
|
63
|
+
<input v-model="searchQuery" placeholder="搜索..." @input="filterIcons" style="width: 100%; padding: 8px; margin-bottom: 20px;">
|
64
|
+
|
65
|
+
<div class="icons-grid">
|
66
|
+
<div class="icon-item" v-for="iconName in filteredIcons" :key="iconName" @click="copy(iconName)">
|
67
|
+
<div class="icon-display">
|
68
|
+
<xzx-icon :name="iconName" size="32"></xzx-icon>
|
69
|
+
</div>
|
70
|
+
<div class="icon-name">{{ iconName }}</div>
|
71
|
+
</div>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
|
75
|
+
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
|
76
|
+
<script src="/lib/index.umd.js"></script>
|
77
|
+
<script>
|
78
|
+
if (window.XzxIconVue2) {
|
79
|
+
if (window.XzxIconVue2.default) {
|
80
|
+
Vue.use(window.XzxIconVue2.default)
|
81
|
+
console.log('✅ 注册组件成功')
|
82
|
+
} else {
|
83
|
+
Vue.use(window.XzxIconVue2)
|
84
|
+
console.log('✅ 注册组件成功')
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
new Vue({
|
89
|
+
el: '#app',
|
90
|
+
data: {
|
91
|
+
allIcons: [],
|
92
|
+
filteredIcons: [],
|
93
|
+
searchQuery: ''
|
94
|
+
},
|
95
|
+
async mounted() {
|
96
|
+
const response = await fetch('/api/icons')
|
97
|
+
const data = await response.json()
|
98
|
+
this.allIcons = data.icons || []
|
99
|
+
this.filteredIcons = [...this.allIcons]
|
100
|
+
console.log('加载图标:', this.allIcons.length)
|
101
|
+
},
|
102
|
+
methods: {
|
103
|
+
filterIcons() {
|
104
|
+
this.filteredIcons = this.searchQuery
|
105
|
+
? this.allIcons.filter(icon => icon.includes(this.searchQuery.toLowerCase()))
|
106
|
+
: [...this.allIcons]
|
107
|
+
},
|
108
|
+
copy(name) {
|
109
|
+
navigator.clipboard.writeText(\`<xzx-icon name="\${name}" size="24"></xzx-icon>\`)
|
110
|
+
console.log('复制:', name)
|
111
|
+
}
|
112
|
+
}
|
113
|
+
})
|
114
|
+
</script>
|
115
|
+
</body>
|
116
|
+
</html>`
|
117
|
+
res.send(simplePage)
|
118
|
+
})
|
119
|
+
|
120
|
+
// 启动服务器
|
121
|
+
app.listen(PORT, () => {
|
122
|
+
console.log(`
|
123
|
+
🎉 图标预览服务器已启动!
|
124
|
+
|
125
|
+
📍 本地地址: http://localhost:${PORT}
|
126
|
+
🌐 自动打开浏览器中...
|
127
|
+
|
128
|
+
按 Ctrl+C 停止服务器
|
129
|
+
`)
|
130
|
+
|
131
|
+
// 自动打开浏览器
|
132
|
+
open(`http://localhost:${PORT}`).catch(() => {
|
133
|
+
console.log('💡 请手动打开浏览器访问: http://localhost:' + PORT)
|
134
|
+
})
|
135
|
+
})
|
136
|
+
|
137
|
+
// 错误处理
|
138
|
+
app.on('error', (err) => {
|
139
|
+
if (err.code === 'EADDRINUSE') {
|
140
|
+
console.error(`❌ 端口 ${PORT} 已被占用,请先关闭其他服务或稍后重试`)
|
141
|
+
} else {
|
142
|
+
console.error('❌ 服务器启动失败:', err.message)
|
143
|
+
}
|
144
|
+
process.exit(1)
|
145
|
+
})
|
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\" />"
|