feat: add next/cloud-icons project (#2821)

This commit is contained in:
ajaxzheng 2025-01-17 20:38:22 +08:00 committed by GitHub
parent 589695b627
commit 3ddfaf2227
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
711 changed files with 12301 additions and 173 deletions

4
.gitignore vendored
View File

@ -69,3 +69,7 @@ examples/sites/public/tiny-vue*.mjs
examples/sites/public/tailwind.css
examples/sites/public/index.css
# next 屏蔽
next/cloud-icons/categorys.ts
next/scene-theme/docs/.vitepress/cache

View File

@ -72,6 +72,21 @@ export default {
mode: ['pc'],
pcDemo: 'multiple-users-tag'
},
{
name: 'hover-expand',
type: 'boolean',
defaultValue: '该属性的默认值为 false',
desc: {
'zh-CN': '默认折叠tag, hover时展示所有tag。多选用户multiple为true时生效',
'en-US':
'By default, tags are collapsed. When tags are hovered, all tags are displayed. This parameter is valid only when multiple is set to true for multiple users.'
},
mode: ['pc'],
pcDemo: '',
meta: {
stable: '3.22.0'
}
},
{
name: 'delay',
type: 'number',

View File

@ -11,14 +11,15 @@ test('PopUpload 限制上传文件类型和大小', async ({ page }) => {
const selectFilesBtn = uploadModal.getByRole('button', { name: '选择文件' })
const uploadsBtn = uploadModal.getByRole('button', { name: '开始上传' })
const lists = uploadModal.locator('.tiny-popupload__dialog-table-item')
// eslint-disable-next-line @typescript-eslint/no-require-imports, @typescript-eslint/no-var-requires
const path = require('node:path')
const path1 = path.resolve(__dirname, '测试.jpg')
const path2 = path.resolve(__dirname, '测试.png')
const path3 = path.resolve(__dirname, '测试.svg')
await modalAppearBtn.click()
await expect(alert.getByText('上传文件大小不超过:9KB')).toBeVisible()
await expect(alert.getByText('上传文件类型限制为:.png,.jpg')).toBeVisible()
await expect(alert.getByText('上传文件大小不超过: 9KB')).toBeVisible()
await expect(alert.getByText('上传文件类型限制为: .png,.jpg')).toBeVisible()
const [fileChooser] = await Promise.all([page.waitForEvent('filechooser'), selectFilesBtn.click()])
await fileChooser.setFiles(path1)
await uploadsBtn.click()

View File

@ -96,3 +96,42 @@ new Vue({
render: (h) => h(App)
}).$mount('#app')
```
## Adding Other Minority Languages
In the component library, Chinese and English are built in by default. In the `@opentiny/vue@3.22.0` and later versions, the Spanish and Portuguese internationalization language packages are added to the component library. You can use the packages during internationalization configuration.
```js {18-26}
import { createI18n } from 'vue-i18n'
import locale from '@opentiny/vue-locale'
// Importing a Package in a Minority Language
import { esLA, ptBR } from '@opentiny/vue-locale'
const initI18n = (i18n) =>
locale.initI18n({
i18n,
createI18n,
messages: {
zhCN: {
test: '项目自用的国际化内容'
},
enUS: {
test: 'project self-use for English'
},
esLA: {
// mix it with the content used by the project.
...esLA,
test: 'Contenido de los propios proyectos'
},
ptBR: {
...ptBR,
test: 'Conteúdo para uso próprio do projeto'
}
}
})
export const i18n = initI18n({ locale: 'esLA' })
```
After the preceding configuration, the Vue3 project supports the internationalization environment of four languages. The method of configuring the Vue2 project is the same. You only need to import the internationalization language package of the minority language and mix the internationalization content of the project.

View File

@ -149,7 +149,6 @@ export default (i18n) =>
import { getCurrentInstance } from 'vue'
const ctx = getCurrentInstance()?.ctx
const changeLang = () => {
ctx.$i18n.locale = ctx.$i18n.locale === 'zhCN' ? 'enUS' : 'zhCN'
}
@ -179,3 +178,42 @@ import { i18n } from './i18n'
const test = i18n.global.t('test')
```
## 添加其它小语种
在组件库中,默认内置了中英 2 种语言。从 `@opentiny/vue@3.22.0` 版本开始,组件库新增了西班牙语和葡萄牙语的国际化语言包,用户可以在配置国际化时使用。
```js {18-26}
import { createI18n } from 'vue-i18n'
import locale from '@opentiny/vue-locale'
// 导入小语种的包
import { esLA, ptBR } from '@opentiny/vue-locale'
const initI18n = (i18n) =>
locale.initI18n({
i18n,
createI18n,
messages: {
zhCN: {
test: '项目自用的国际化内容'
},
enUS: {
test: 'project self-use for English'
},
esLA: {
// 将组件库的国际化语言包混入项目自用的内容
...esLA,
test: 'Contenido de los propios proyectos'
},
ptBR: {
...ptBR,
test: 'Conteúdo para uso próprio do projeto'
}
}
})
export const i18n = initI18n({ locale: 'esLA' }) // 此处指定初始的默认语言
```
通过上述代码Vue3 项目支持四个语种的国际化环境就配置好了。Vue2 的项目配置方法也一样,都是导入小语种的国际化语言包后,混入项目的国际化内容即可。

2
next/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
./cloud-icons/categorys.ts
./scene-theme/docs/.vitepress/cache

3
next/cloud-icons/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/style
/json
/example

View File

@ -0,0 +1,80 @@
# Cloud Design Icons 云规范图标库
该图标库包含云控制台应用开发中的系统图标,各云服务图标和服务扩展图标。其中系统图标是单色的常用图标,具有统一的尺寸和内边距,容易集成到项目中。服务图标和服务扩展图标为明亮艳丽的彩色图标,突出了各服务的特点。
它是跨框架的图标库支持所有前端Web项目 原生的javascript工程Vue/React/Angular等等。
它即支持原始的`CSS` 样式文件引入,也支持与 `Vite` 等构建工程使用,详见使用小节。
## 安装 Installation
```
npm install @opentiny/cloud-icons
```
## 使用 Usage
1. 整体引入css使用:
在工程中引入图标的css文件 `import "@opentiny/cloud-icons/style/all.css"`, 也可以根据使用情况,按类别导入图标,以减小引入样式文件的体积.
- 全量图标: all.css
- 基础图标: base.css
- 服务图标: svc.css
- 服务扩展图标: ext.css
2. 引入 @unocss/preset-icons 插件使用
```javascript
import { defineConfig } from 'vite'
import UnoCSS from 'unocss/vite'
import presetIcons from '@unocss/preset-icons'
export default defineConfig({
plugins: [
UnoCSS({
presets: [
presetIcons({
prefix: '',
extraProperties: {
display: 'inline-block',
'vertical-align': 'middle'
},
collections: {
ci: () => import('@opentiny/cloud-icons/json/icons.json').then((i) => i.default)
}
})
]
})
]
})
```
3. 引入图标
通过图标名引用所需图标: <code>&lt;i class="ci-search"&gt;&lt;/i&gt;</code>
## 浏览所有图标 Browser Icons
[在线预览](https://github.io)
# 开发指南
## 导入图标
将设计师提供的图标导入`svgs` 目录, 文件夹及文件名必须符合以下要求:
1. 子目录名称为大分类,每次增加大分类文件夹后,需要在 `index.html` 中的分类下拉列表中,添加相应的名称
2. 分类目录的子目录名为“图标组名”, 用数字控制组名的排序。
3. 文件名必须符合: 排序#中文名-英文名.svg
图标导入时需要检查,以免导入不符合规范的图标:
1. 图标尺寸是否规范, 是否正方形,是否固定内边距;
2. 不需要顶部的 < ?xml version="1.0" encoding="utf-8"? >
3. 单色图标需要 fill="currentColor"
4. 图标内不允许有 <image> 标签, 比如openkruise.svg
## 已知问题和约束
- `svg` 文件名要统一,尽量小写和连字符, 中文- 英文字母, 不要 @ 不要有空格
- `svg` 文件名涉及专有服务名时,可以大写,但是受`@unocss/preset-icons` 库的限制,它不支持图标类名大写,所以导出的图标名称统一为小写。

148
next/cloud-icons/index.html Normal file
View File

@ -0,0 +1,148 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>云规范图标集预览</title>
<style>
.hide {
display: none;
}
body {
padding: 0 24px 48px;
}
#list .icon-item {
display: inline-block;
text-align: center;
font-size: 12px;
color: #575d6c;
}
#list i {
margin: 20px;
transition: all 0.5s;
}
#list i:hover {
transform: scale(1.5);
cursor: copy;
}
.icon-counts {
color: #0057c3;
text-decoration: underline;
margin-left: 8px;
cursor: pointer;
}
.icons-group {
margin-bottom: 0;
margin-top: 32px;
}
.icon-title,
.icon-name {
cursor: pointer;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#list .base {
font-size: 32px;
}
#list .base ~ div {
width: 80px;
}
#list .svc {
font-size: 72px;
}
#list .svc ~ div {
width: 108px;
}
#list .ext,
#list .stat {
font-size: 80px;
}
#list .ext ~ div,
#list .stat ~ div {
width: 120px;
}
.settings {
display: flex;
justify-content: space-between;
}
.settings label {
margin: 0 16px 12px;
}
.settings label {
font-weight: bold;
}
.dlg-root {
margin: 24px;
}
code {
padding: 4px;
background-color: #e5e5e5;
cursor: pointer;
user-select: all;
}
</style>
<link rel="stylesheet" href="./style/all.css" />
</head>
<body>
<div id="app">
<h1 style="text-align: center">云规范图标集预览</h1>
<div class="settings">
<div>
<label> 选择图标集:</label>
<select id="sel-category" is="ui-select">
<option value="base">系统图标</option>
<option value="svc">服务图标</option>
<option value="ext">扩展图标</option>
<option value="stat">状态图标</option>
</select>
<span class="hide">
<label> 引用方式:</label>
<select id="sel-type" is="ui-select">
<option value="ci">class</option>
<option value="ci">json-data</option>
</select>
</span>
<label> 图标颜色:</label>
<input id="sel-color" type="color" is="ui-color" value="#000000" />
<label> 复制方式:</label>
<select id="sel-copy" is="ui-select">
<option value="all">完整标签</option>
<option value="only-name">图标类名</option>
</select>
<ui-lighttip id="lightTip" type="success">复制成功</ui-lighttip>
</div>
<div>
<button id="btnHelp" type="primary" class="ui-button">使用说明</button>
</div>
</div>
<div id="list"></div>
<dialog id="dlgHelp" is="ui-dialog">
<div class="dlg-root">
<h3>1、安装</h3>
<div>在项目中安装: <code>npm i @opentiny/cloud-icons</code></div>
<h3>2、通过css 引用</h3>
<div>在工程中引入图标的css文件 <code>import "@opentiny/cloud-icons/style/all.css"</code></div>
<h3>3、通过 @unocss/preset-icons 插件按需引用</h3>
<div>
例如vite工程中配置UnoCss的图标插件
<pre id="helpCode"></pre>
</div>
<h3>4、使用图标</h3>
<ul>
<li>
通过图标名引用所需图标: <code>&lt;i class="ci-search"&gt;&lt;/i&gt;</code> 会得到
<i class="ci-search"></i>
</li>
<li>通过修改图标的 <code>color \ font-size</code> 控制图标的大小和颜色。</li>
</ul>
</div>
</dialog>
</div>
<script type="module" src="./main.ts"></script>
</body>
</html>

113
next/cloud-icons/main.ts Normal file
View File

@ -0,0 +1,113 @@
import { categorys } from './categorys.ts'
import hljs from 'highlight.js/lib/core'
import javascript from 'highlight.js/lib/languages/javascript'
import 'lu2/theme/edge/css/common/ui.css'
import 'lu2/theme/edge/js/common/all.js'
import 'highlight.js/styles/default.css'
const list = document.getElementById('list')!
const selCategory = document.getElementById('sel-category')! as HTMLSelectElement
const selType = document.getElementById('sel-type')! as HTMLSelectElement
const selColor = document.getElementById('sel-color')! as HTMLInputElement
const selCopy = document.getElementById('sel-copy')! as HTMLSelectElement
const lightTip = document.getElementById('lightTip')!
const btnHelp = document.getElementById('btnHelp')! as HTMLButtonElement
const dlgHelp = document.getElementById('dlgHelp')! as HTMLDialogElement
const helpCode = document.getElementById('helpCode')! as HTMLDialogElement
const styleSheet = new CSSStyleSheet()
document.adoptedStyleSheets.push(styleSheet)
// 渲染所有图标
function render() {
const cat = selCategory.value as 'base' | 'svc' | 'ext'
const type = selType.value
const color = selColor.value
const icons = categorys[cat]
let html = ''
Object.keys(icons)
.sort((groupName1, groupName2) => {
const num1 = parseInt(groupName1.split('-')[0])
const num2 = parseInt(groupName2.split('-')[0])
return num1 > num2 ? 1 : -1
}) // 按键排序
.forEach((groupName) => {
let groupIcons = icons[groupName] as any[]
groupIcons.sort((g1, g2) => (g1.order > g2.order ? 1 : -1))
html += `<h3 class='icons-group'>${groupName}<sup class='icon-counts' title='图标数'>${groupIcons.length}</sup></h3>`
html += groupIcons
.map(
(item) => `
<div class="icon-item">
<i class="${cat} ${type}-${item.name}" data-name="${item.name}"></i>
<div class='icon-title' title="${item.nameCn}">${item.nameCn}</div>
<div class='icon-name' title="${item.name}">${item.name}</div>
</div>
`
)
.join('')
})
list.innerHTML = html
styleSheet.replaceSync(`i {color: ${color}!important;`)
}
selCategory.addEventListener('change', render)
selType.addEventListener('change', render)
selColor.addEventListener('input', render)
render()
// 点击复制
list.addEventListener('click', function (ev: MouseEvent) {
const target = ev.target as HTMLElement
const name = target.dataset.name
if (name) {
const cls = 'ci-' + name
const tag = `<i class="${cls}></i>`
const copyText = selCopy.value === 'all' ? tag : cls
navigator.clipboard.writeText(copyText)
lightTip.textContent = copyText + ' 复制成功'
lightTip.show()
}
})
// 弹出帮助
btnHelp.addEventListener('click', function () {
dlgHelp.open = true
})
// 高亮代码
hljs.registerLanguage('javascript', javascript)
const highlightedCode = hljs.highlight(
`import { defineConfig } from "vite";
import UnoCSS from "unocss/vite";
import presetIcons from "@unocss/preset-icons";
export default defineConfig({
plugins: [
UnoCSS({
presets: [
presetIcons({
prefix: "",
extraProperties: {
display: "inline-block",
"vertical-align": "middle"
},
collections: {
ci: () => import("@opentiny/cloud-icons/json/icons.json").then((i) => i.default)
}
})
],
})
],
});`,
{ language: 'javascript' }
).value
helpCode.innerHTML = highlightedCode

View File

@ -0,0 +1,45 @@
{
"name": "@opentiny/cloud-icons",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "Cloud Design Icons",
"author": "",
"license": "MIT",
"keywords": [
"icon",
"cloud icons",
"service icons",
"iconify",
"unocss",
"preset-icon"
],
"files": [
"example/",
"svgs/",
"json/",
"style/",
"README.md"
],
"scripts": {
"dev": "vite",
"build:example": "vite build",
"build:icon": "tsx scripts/build.ts",
"test": "vitest"
},
"devDependencies": {
"@iconify/tools": "catalog:",
"@iconify/types": "catalog:",
"@iconify/utils": "catalog:",
"@unocss/preset-icons": "catalog:",
"chalk": "catalog:",
"fast-glob": "catalog:",
"highlight.js": "catalog:",
"lu2": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unocss": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
}
}

View File

@ -0,0 +1,5 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`测试生成css的正确性 1`] = `".ci-click{--v:url("data:image/svg+xml;utf8,%3Csvg width='16.000000' height='16.000000' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23prefix__clip15_952)'%3E%3Cpath id='prefix__&%23x5f62;&%23x72b6;&%23x7ed3;&%23x5408;' d='M6.71 1.11C7.53 1.11 8.19 1.78 8.19 2.59L8.19 4.41C8.36 4.35 8.53 4.31 8.71 4.31C9.34 4.31 9.88 4.7 10.09 5.25C10.28 5.16 10.49 5.11 10.71 5.11C11.34 5.11 11.88 5.5 12.09 6.05C12.28 5.96 12.49 5.91 12.71 5.91C13.53 5.91 14.19 6.58 14.19 7.39L14.19 10.19C14.19 10.22 14.19 10.25 14.19 10.28C14.19 10.31 14.19 10.34 14.19 10.37L14.19 11.19C14.19 13.23 12.55 14.87 10.51 14.87L9.3 14.87C7.9 14.87 6.56 14.32 5.57 13.33L2.23 10C1.65 9.42 1.65 8.49 2.23 7.91C2.81 7.33 3.75 7.33 4.34 7.93L5.23 8.93L5.24 2.59C5.24 1.78 5.9 1.11 6.71 1.11ZM6.71 2.08C6.43 2.08 6.19 2.31 6.19 2.59L6.19 10.19C6.19 10.23 6.19 10.26 6.18 10.3C6.17 10.33 6.14 10.41 6.13 10.44C6.12 10.45 6.08 10.51 6.07 10.51L5.99 10.58C5.99 10.59 5.92 10.63 5.91 10.63C5.89 10.64 5.81 10.66 5.79 10.67C5.77 10.67 5.74 10.67 5.71 10.67C5.7 10.67 5.65 10.67 5.64 10.67C5.58 10.66 5.52 10.64 5.47 10.61L5.4 10.55L3.64 8.59C3.44 8.39 3.11 8.39 2.91 8.59C2.71 8.79 2.71 9.12 2.91 9.32L6.25 12.65C7.06 13.46 8.16 13.91 9.3 13.91L10.51 13.91C12.02 13.91 13.24 12.7 13.24 11.19L13.24 10.37C13.24 10.34 13.24 10.31 13.24 10.28C13.24 10.25 13.24 10.22 13.24 10.19L13.24 7.39C13.24 7.11 13 6.87 12.71 6.87C12.45 6.87 12.23 7.07 12.2 7.32L12.19 7.39L12.19 9.39C12.19 9.66 11.98 9.87 11.71 9.87C11.45 9.87 11.24 9.66 11.24 9.39L11.24 6.59C11.24 6.31 11 6.08 10.71 6.08C10.45 6.08 10.23 6.27 10.2 6.52L10.19 6.59L10.19 8.59C10.19 8.86 9.98 9.08 9.71 9.08C9.45 9.08 9.24 8.86 9.24 8.59L9.24 5.79C9.24 5.51 9 5.27 8.71 5.27C8.45 5.27 8.23 5.47 8.2 5.72L8.19 5.79L8.19 8C8.19 8.26 7.98 8.47 7.71 8.47C7.45 8.47 7.24 8.26 7.24 8L7.24 2.59C7.24 2.31 7 2.08 6.71 2.08Z' fill='currentColor' fill-opacity='1.000000' fill-rule='nonzero'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--v) no-repeat;mask:var(--v) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;}"`;
exports[`测试生成css的正确性 2`] = `".ci-fg{background:url("data:image/svg+xml;utf8,%3Csvg width='72.000000' height='72.000000' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23prefix__clip7_1988)'%3E%3Cpath id='prefix__&%23x77e9;&%23x5f62;&%23x5907;&%23x4efd;-19' d='M16 0L56 0C64.8 0 72 7.2 72 16L72 56C72 64.8 64.8 72 56 72L16 72C7.2 72 0 64.8 0 56L0 16C0 7.2 7.2 0 16 0Z' fill='%237DCC29' fill-opacity='1.000000' fill-rule='evenodd'/%3E%3Cpath id='prefix__&%23x5f62;&%23x72b6;&%23x7ed3;&%23x5408;' d='M24.01 53.98L47.27 54L47.57 54C54.46 53.83 60 47.91 60 40.63C60 33.73 55.02 28.05 48.63 27.34C47 21.92 42.18 18 36.49 18C30.82 18 26.02 21.89 24.37 27.26C17.5 27.47 12 33.37 12 40.63C12 47.76 17.31 53.58 24.01 53.98ZM46.7 34.5C49.38 34.5 51.5 36.72 51.5 39.5C51.5 42.2 49.49 44.38 46.92 44.5L46.7 44.5L42 44.5C41.42 44.5 41 44.08 41 43.5C41 42.96 41.37 42.56 41.88 42.51L42 42.5L46.7 42.5C48.21 42.5 49.5 41.13 49.5 39.5C49.5 37.91 48.3 36.59 46.86 36.5L46.7 36.5L36.3 36.5C34.79 36.5 33.5 37.87 33.5 39.5C33.5 40.08 33.08 40.5 32.5 40.5C31.92 40.5 31.5 40.08 31.5 39.5C31.5 36.8 33.5 34.62 36.09 34.5L36.31 34.5L46.7 34.5ZM20.5 39.5C20.5 42.28 22.62 44.5 25.3 44.5L35.7 44.5L35.91 44.5C38.5 44.38 40.5 42.2 40.5 39.5C40.5 38.91 40.09 38.5 39.5 38.5C38.93 38.5 38.5 38.91 38.5 39.5C38.5 41.13 37.22 42.5 35.71 42.5L25.3 42.5L25.14 42.49C23.7 42.4 22.5 41.07 22.5 39.5C22.5 37.87 23.79 36.5 25.3 36.5L30 36.5L30.12 36.49C30.63 36.43 31 36.03 31 35.5C31 34.91 30.58 34.5 30 34.5L25.3 34.5L25.08 34.5C22.51 34.62 20.5 36.8 20.5 39.5Z' fill='%23FFFFFF' fill-opacity='1.000000' fill-rule='evenodd'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;}"`;

View File

@ -0,0 +1,25 @@
import { test, expect } from 'vitest'
import { genClass, loadSvg, parsePath } from '../build'
test('测试解析路径的正确性', () => {
const svgPath = './svgs/base/1-方向/1#前进-go.svg'
const { category, group, nameCn, name, order } = parsePath(svgPath)
expect(category).toEqual('base')
expect(group).toEqual('1-方向')
expect(nameCn).toEqual('前进')
expect(name).toEqual('go')
expect(order).toEqual(1)
})
test('测试生成css的正确性', () => {
let svg = loadSvg('./scripts/__tests__/点击-click.svg')
let css = genClass('click', svg.toMinifiedString())
expect(css).toMatchSnapshot()
svg = loadSvg('./scripts/__tests__/函数工作流-FunctionGraph.svg')
css = genClass('fg', svg.toMinifiedString())
expect(css).toMatchSnapshot()
})

View File

@ -0,0 +1,14 @@
<svg width="72.000000" height="72.000000" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip7_1988">
<rect id="函数工作流-FunctionGraph" width="72.000000" height="72.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip7_1988)">
<path id="矩形备份-19" d="M16 0L56 0C64.8 0 72 7.2 72 16L72 56C72 64.8 64.8 72 56 72L16 72C7.2 72 0 64.8 0 56L0 16C0 7.2 7.2 0 16 0Z" fill="#7DCC29" fill-opacity="1.000000" fill-rule="evenodd"/>
<path id="形状结合" d="M24.01 53.98L47.27 54L47.57 54C54.46 53.83 60 47.91 60 40.63C60 33.73 55.02 28.05 48.63 27.34C47 21.92 42.18 18 36.49 18C30.82 18 26.02 21.89 24.37 27.26C17.5 27.47 12 33.37 12 40.63C12 47.76 17.31 53.58 24.01 53.98ZM46.7 34.5C49.38 34.5 51.5 36.72 51.5 39.5C51.5 42.2 49.49 44.38 46.92 44.5L46.7 44.5L42 44.5C41.42 44.5 41 44.08 41 43.5C41 42.96 41.37 42.56 41.88 42.51L42 42.5L46.7 42.5C48.21 42.5 49.5 41.13 49.5 39.5C49.5 37.91 48.3 36.59 46.86 36.5L46.7 36.5L36.3 36.5C34.79 36.5 33.5 37.87 33.5 39.5C33.5 40.08 33.08 40.5 32.5 40.5C31.92 40.5 31.5 40.08 31.5 39.5C31.5 36.8 33.5 34.62 36.09 34.5L36.31 34.5L46.7 34.5ZM20.5 39.5C20.5 42.28 22.62 44.5 25.3 44.5L35.7 44.5L35.91 44.5C38.5 44.38 40.5 42.2 40.5 39.5C40.5 38.91 40.09 38.5 39.5 38.5C38.93 38.5 38.5 38.91 38.5 39.5C38.5 41.13 37.22 42.5 35.71 42.5L25.3 42.5L25.14 42.49C23.7 42.4 22.5 41.07 22.5 39.5C22.5 37.87 23.79 36.5 25.3 36.5L30 36.5L30.12 36.49C30.63 36.43 31 36.03 31 35.5C31 34.91 30.58 34.5 30 34.5L25.3 34.5L25.08 34.5C22.51 34.62 20.5 36.8 20.5 39.5Z" fill="#FFFFFF" fill-opacity="1.000000" fill-rule="evenodd"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip15_952">
<rect id="点击-click" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip15_952)">
<path id="形状结合" d="M6.71 1.11C7.53 1.11 8.19 1.78 8.19 2.59L8.19 4.41C8.36 4.35 8.53 4.31 8.71 4.31C9.34 4.31 9.88 4.7 10.09 5.25C10.28 5.16 10.49 5.11 10.71 5.11C11.34 5.11 11.88 5.5 12.09 6.05C12.28 5.96 12.49 5.91 12.71 5.91C13.53 5.91 14.19 6.58 14.19 7.39L14.19 10.19C14.19 10.22 14.19 10.25 14.19 10.28C14.19 10.31 14.19 10.34 14.19 10.37L14.19 11.19C14.19 13.23 12.55 14.87 10.51 14.87L9.3 14.87C7.9 14.87 6.56 14.32 5.57 13.33L2.23 10C1.65 9.42 1.65 8.49 2.23 7.91C2.81 7.33 3.75 7.33 4.34 7.93L5.23 8.93L5.24 2.59C5.24 1.78 5.9 1.11 6.71 1.11ZM6.71 2.08C6.43 2.08 6.19 2.31 6.19 2.59L6.19 10.19C6.19 10.23 6.19 10.26 6.18 10.3C6.17 10.33 6.14 10.41 6.13 10.44C6.12 10.45 6.08 10.51 6.07 10.51L5.99 10.58C5.99 10.59 5.92 10.63 5.91 10.63C5.89 10.64 5.81 10.66 5.79 10.67C5.77 10.67 5.74 10.67 5.71 10.67C5.7 10.67 5.65 10.67 5.64 10.67C5.58 10.66 5.52 10.64 5.47 10.61L5.4 10.55L3.64 8.59C3.44 8.39 3.11 8.39 2.91 8.59C2.71 8.79 2.71 9.12 2.91 9.32L6.25 12.65C7.06 13.46 8.16 13.91 9.3 13.91L10.51 13.91C12.02 13.91 13.24 12.7 13.24 11.19L13.24 10.37C13.24 10.34 13.24 10.31 13.24 10.28C13.24 10.25 13.24 10.22 13.24 10.19L13.24 7.39C13.24 7.11 13 6.87 12.71 6.87C12.45 6.87 12.23 7.07 12.2 7.32L12.19 7.39L12.19 9.39C12.19 9.66 11.98 9.87 11.71 9.87C11.45 9.87 11.24 9.66 11.24 9.39L11.24 6.59C11.24 6.31 11 6.08 10.71 6.08C10.45 6.08 10.23 6.27 10.2 6.52L10.19 6.59L10.19 8.59C10.19 8.86 9.98 9.08 9.71 9.08C9.45 9.08 9.24 8.86 9.24 8.59L9.24 5.79C9.24 5.51 9 5.27 8.71 5.27C8.45 5.27 8.23 5.47 8.2 5.72L8.19 5.79L8.19 8C8.19 8.26 7.98 8.47 7.71 8.47C7.45 8.47 7.24 8.26 7.24 8L7.24 2.59C7.24 2.31 7 2.08 6.71 2.08Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,181 @@
/* eslint-disable no-console */
import { SVG, cleanupSVG, IconSet, runSVGO, deOptimisePaths } from '@iconify/tools'
import { encodeSvgForCss } from '@iconify/utils/lib/svg/encode-svg-for-css'
import fg from 'fast-glob'
import fs from 'node:fs'
import chalk from 'chalk'
const iconSet = new IconSet({
prefix: 'ci',
icons: {},
info: {
name: 'CIcons',
author: { name: 'opentiny' },
license: { title: 'MIT' }
}
})
const shareCss = '[class*=ci-] {height:1em;width:1em;display:inline-block;vertical-align:middle;}\n'
const allCss: string[] = []
const categoryCss = {} as Record<string, string[]>
interface NameInfo {
name: string
nameCn: string
order: number
}
const categorys = {} as Record<string, Record<string, NameInfo[]>>
/** 从路径中解析出信息 */
export function parsePath(svgPath: string) {
// svgPath 格式: ./svgs/base/1-方向/前进-go.svg
const pathSegments = svgPath.split('/')
const filename = pathSegments.pop()!.toLowerCase() // xxx.svg
const group = pathSegments.pop()! // 1-方向
const category = pathSegments.pop()! as 'base' | 'svc' | 'ext'
let name = filename.slice(0, -4)! // 中文-xxx-yyy-zzz
const orderAndNameCn = name.split('-')[0]
const [order, nameCn] = orderAndNameCn.split('#') // 取出第一段
name = name.slice(orderAndNameCn.length + 1) // 取出图标名
name = category === 'base' ? name : `${category}-${name}` // svc-xxx-yyy
return { category, group, nameCn, name, order: parseFloat(order) }
}
/** 加载svg文件到 Svg对象中 */
export function loadSvg(svgPath: string) {
const content = fs.readFileSync(svgPath, 'utf8')
const svg = new SVG(content)
try {
cleanupSVG(svg)
runSVGO(svg, {
plugins: [
'prefixIds',
{
name: 'removeDefs',
fn: () => {
return {
element: {
enter: (node, parentNode) => {
// 具有渐变的,则不过滤了
if (content.includes('<linearGradient')) return
if (node.name === 'defs') {
parentNode.children = parentNode.children.filter((child) => child !== node)
}
}
}
}
}
}
]
})
deOptimisePaths(svg)
} catch (error) {
console.log(chalk.red('处理svg时出错'), svgPath, error)
}
return svg
}
export function genClass(name: string, data: string) {
const mode = data.includes('currentColor') ? 'mask' : 'background-img'
const uri = `url("data:image/svg+xml;utf8,${encodeSvgForCss(data)}")`
let rules
// 单色图标
if (mode === 'mask') {
rules = {
'--v': uri,
'-webkit-mask': `var(--v) no-repeat`,
mask: `var(--v) no-repeat`,
'-webkit-mask-size': '100% 100%',
'mask-size': '100% 100%',
'background-color': 'currentColor'
}
}
// 彩色图标
else {
rules = {
background: `${uri} no-repeat`,
'background-size': '100% 100%',
'background-color': 'transparent'
}
}
const rulesStr = Object.keys(rules)
.map((key) => `${key}:${rules[key]};`)
.join('')
return `.ci-${name}{${rulesStr}}`
}
/** 收集信息到 iconSet / cssList /categorys 中去 */
const processSvg = (svgPath: string) => {
const { name, category, group, nameCn, order } = parsePath(svgPath)
const svg = loadSvg(svgPath)
iconSet.setIcon(name, svg.getIcon())
iconSet.toggleCategory(name, category, true)
const iconCss = genClass(name, svg.toMinifiedString())
allCss.push(iconCss)
// 第一次遇到该大类名称时
if (!categoryCss[category]) {
categoryCss[category] = []
categorys[category] = {}
}
categoryCss[category].push(iconCss)
if (categorys[category][group]) {
categorys[category][group].push({ name, nameCn, order })
} else {
categorys[category][group] = [{ name, nameCn, order }]
}
}
const ensureDir = (dir: string) => {
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir)
}
}
// 0、确保目录存在+
ensureDir('./json')
ensureDir('./style')
// 1、 遍历文件生成json-data 和 class
let files = await fg(['./svgs/**/*.svg'])
files.map((file) => processSvg(file))
console.log(chalk.blue('> 遍历处理文件成功\n'))
// 2、输出3个产物
const jsonData = JSON.stringify(iconSet.export(), null, '\t')
fs.writeFileSync('./json/icons.json', jsonData)
console.log(chalk.green('输出 ./json/icons.json 成功'))
fs.writeFileSync('./style/all.css', shareCss + allCss.join('\n'))
Object.keys(categoryCss).forEach((key) => {
fs.writeFileSync(`./style/${key}.css`, shareCss + categoryCss[key].join('\n'))
})
console.log(chalk.green('输出 ./style/all.css 等样式文件成功'))
// categorys.ts: 开发时,便于浏览图标
fs.writeFileSync('./categorys.ts', `export const categorys=${JSON.stringify(categorys, null, 2)}`)
console.log(chalk.green('输出 ./categorys.ts 成功'))
// 3、检查同一个类别中有没有重名的图标
Object.values(categorys).forEach((cat) => {
const names = Object.values(cat)
.flat()
.map((item) => item.name)
if (names.length > new Set(names).size) {
console.log(
chalk.red(`有重复的名字`),
names.filter((n) => names.indexOf(n) !== names.lastIndexOf(n))
)
}
})
console.log(chalk.blue('\n> 构建结束!'))

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_130">
<rect id="1#首页|房子-home" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_130)">
<path id="路径备份" d="M9.01 2.41L13.12 6.69C13.39 6.98 13.54 7.35 13.54 7.75L13.54 12.47C13.54 13.31 12.86 14 12.02 14L10.26 14C9.45 14 8.79 13.37 8.74 12.58L8.74 12.47L8.74 10.89C8.74 10.5 8.45 10.19 8.07 10.15L7.99 10.14C7.58 10.14 7.25 10.48 7.25 10.89L7.25 12.47C7.25 13.31 6.57 14 5.73 14L3.97 14C3.13 14 2.44 13.31 2.44 12.47L2.44 7.74C2.44 7.35 2.59 6.98 2.86 6.7L6.86 2.47C7.43 1.86 8.4 1.83 9.01 2.41ZM8.32 3.14C8.11 2.94 7.78 2.95 7.58 3.16L3.59 7.38C3.5 7.48 3.44 7.61 3.44 7.74L3.44 12.47C3.44 12.76 3.68 13 3.97 13L5.73 13C6.02 13 6.25 12.76 6.25 12.47L6.25 10.89C6.25 9.92 7.03 9.14 8.05 9.15L8.18 9.15C9.06 9.25 9.74 9.99 9.74 10.89L9.74 12.44L9.74 12.51C9.76 12.78 9.98 13 10.26 13L12.02 13C12.31 13 12.54 12.76 12.54 12.47L12.54 7.75C12.54 7.61 12.49 7.48 12.4 7.39L8.32 3.14Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_33">
<rect id="10#符号-at" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_33)">
<path id="Fill" d="M8 1.49C6.27 1.48 4.61 2.17 3.39 3.39C2.17 4.61 1.48 6.27 1.5 7.99L1.5 8.49C1.5 12.08 4.41 14.99 8 14.99L11 14.99C11.27 14.99 11.5 14.77 11.5 14.49C11.5 14.22 11.27 13.99 11 13.99L8 13.99C4.96 13.99 2.5 11.53 2.5 8.49L2.5 7.99C2.49 6.53 3.06 5.13 4.1 4.1C5.13 3.06 6.53 2.49 8 2.49C9.47 2.44 10.9 3.01 11.94 4.05C12.98 5.09 13.55 6.52 13.5 7.99C13.5 9.79 12.8 10.49 11.67 10.49C10.88 10.49 10.5 9.85 10.5 8.99L10.5 5.49C10.5 5.22 10.27 4.99 10 4.99C9.72 4.99 9.5 5.22 9.5 5.49L9.5 5.96C9.14 5.34 8.46 4.96 7.75 4.99C6.24 4.99 5.01 6.21 5 7.71L5 8.77C5.01 10.28 6.24 11.5 7.75 11.49C8.6 11.52 9.38 11.04 9.75 10.26C10.11 11.02 10.87 11.49 11.7 11.49C13.24 11.49 14.5 10.49 14.5 7.99C14.53 6.26 13.86 4.58 12.63 3.36C11.41 2.13 9.73 1.46 8 1.49ZM9.5 8.77C9.5 9.74 8.71 10.52 7.75 10.52C6.78 10.52 6 9.74 6 8.77L6 7.71C6 6.75 6.78 5.96 7.75 5.96C8.71 5.96 9.5 6.75 9.5 7.71L9.5 8.77Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_79">
<rect id="100#历史数据-history" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_79)">
<path id="path" d="M8 3.79C8.24 3.79 8.45 3.96 8.49 4.2L8.49 7.79L11 10.27C11.17 10.44 11.19 10.71 11.06 10.91C10.89 11.08 10.56 11.19 10.36 11.06L7.65 8.36C7.57 8.29 7.52 8.19 7.51 8.08L7.51 4.29C7.51 4.02 7.73 3.8 8 3.79ZM8 1.31C11.69 1.31 14.69 4.31 14.69 8C14.69 11.69 11.69 14.69 8 14.69C4.31 14.69 1.31 11.69 1.31 8C1.31 7.72 1.53 7.5 1.81 7.5C2.09 7.5 2.31 7.72 2.31 8C2.31 11.15 4.87 13.71 8.02 13.71C11.17 13.71 13.73 11.15 13.73 8C13.73 4.85 11.17 2.29 8.02 2.29C6.04 2.29 4.2 3.31 3.16 5L4.16 5C4.4 5 4.62 5.17 4.66 5.41C4.67 5.65 4.5 5.95 4.27 6L1.93 6C1.69 6 1.49 5.82 1.44 5.59L1.44 3.27C1.42 2.99 1.62 2.75 1.9 2.72C2.18 2.69 2.42 2.9 2.44 3.18L2.44 4.29C3.68 2.43 5.77 1.31 8 1.31Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_4">
<rect id="101#加号|创建-plus" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_4)">
<path id="形状结合" d="M8 1C11.86 1 15 4.13 15 8C15 11.86 11.86 15 8 15C4.13 15 1 11.86 1 8C1 4.13 4.13 1 8 1ZM8 2C4.68 2 2 4.68 2 8C2 11.31 4.68 14 8 14C11.31 14 14 11.31 14 8C14 4.68 11.31 2 8 2ZM8 4C8.27 4 8.5 4.22 8.5 4.5L8.5 7.5L11.5 7.5C11.77 7.5 12 7.72 12 8C12 8.27 11.77 8.5 11.5 8.5L8.5 8.5L8.5 11.5C8.5 11.77 8.27 12 8 12C7.72 12 7.5 11.77 7.5 11.5L7.5 8.5L4.5 8.5C4.22 8.5 4 8.27 4 8C4 7.72 4.22 7.5 4.5 7.5L7.5 7.5L7.5 4.5C7.5 4.22 7.72 4 8 4Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 930 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_5">
<rect id="102#加号|创建-plus1" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_5)">
<path id="形状结合" d="M8 2.5C8.27 2.5 8.5 2.72 8.5 3L8.5 7.49L13 7.5C13.27 7.5 13.5 7.72 13.5 8C13.5 8.27 13.27 8.5 13 8.5L8.5 8.49L8.5 13C8.5 13.27 8.27 13.5 8 13.5C7.72 13.5 7.5 13.27 7.5 13L7.5 8.5L3 8.5C2.72 8.5 2.5 8.27 2.5 8C2.5 7.72 2.72 7.5 3 7.5L7.5 7.5L7.5 3C7.5 2.72 7.72 2.5 8 2.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 769 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_114">
<rect id="103#减号|删减-minus1" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_114)">
<path id="直线-14备份" d="M13 7.5C13.27 7.5 13.5 7.72 13.5 8C13.5 8.27 13.27 8.5 13 8.5L3 8.5C2.72 8.5 2.5 8.27 2.5 8C2.5 7.72 2.72 7.5 3 7.5L13 7.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 629 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_38">
<rect id="104#更多-more" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_38)">
<path id="形状结合" d="M8 1C11.86 1 15 4.13 15 8C15 11.86 11.86 15 8 15C4.13 15 1 11.86 1 8C1 4.13 4.13 1 8 1ZM8 2C4.68 2 2 4.68 2 8C2 11.31 4.68 14 8 14C11.31 14 14 11.31 14 8C14 4.68 11.31 2 8 2ZM4.85 7.09C5.34 7.09 5.75 7.5 5.75 8C5.75 8.49 5.34 8.9 4.85 8.9C4.35 8.9 3.95 8.49 3.95 8C3.95 7.5 4.35 7.09 4.85 7.09ZM8 7.09C8.49 7.09 8.89 7.5 8.89 8C8.89 8.49 8.49 8.9 8 8.9C7.5 8.9 7.1 8.49 7.1 8C7.1 7.5 7.5 7.09 8 7.09ZM11.15 7.09C11.64 7.09 12.05 7.5 12.05 8C12.05 8.49 11.64 8.9 11.15 8.9C10.65 8.9 10.25 8.49 10.25 8C10.25 7.5 10.65 7.09 11.15 7.09Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_39">
<rect id="105#更多|3点-more1" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_39)">
<path id="path-1" d="M2.3 7.78L2.3 7.86C2.32 8.51 2.86 9.03 3.52 9.03C4.2 9.03 4.75 8.49 4.75 7.82C4.75 7.15 4.2 6.61 3.52 6.61C2.86 6.61 2.32 7.13 2.3 7.78ZM6.54 7.82C6.54 8.49 7.08 9.03 7.76 9.03C8.44 9.03 8.99 8.49 8.99 7.82C8.99 7.15 8.44 6.61 7.76 6.61C7.08 6.61 6.54 7.15 6.54 7.82ZM10.78 7.78L10.78 7.86C10.8 8.51 11.34 9.03 12 9.03C12.68 9.03 13.23 8.49 13.23 7.82C13.23 7.15 12.68 6.61 12 6.61C11.34 6.61 10.8 7.13 10.78 7.78Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 906 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_178">
<rect id="106#移动|6点|骰子|盲文-dot6" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_178)">
<path id="Fill" d="M6 3C6.55 3 7 3.44 7 4C7 4.55 6.55 5 6 5C5.44 5 5 4.55 5 4C5 3.44 5.44 3 6 3ZM10 3C10.55 3 11 3.44 11 4C11 4.55 10.55 5 10 5C9.44 5 9 4.55 9 4C9 3.44 9.44 3 10 3ZM6 7C6.55 7 7 7.44 7 8C7 8.55 6.55 9 6 9C5.44 9 5 8.55 5 8C5 7.44 5.44 7 6 7ZM10 7C10.55 7 11 7.44 11 8C11 8.55 10.55 9 10 9C9.44 9 9 8.55 9 8C9 7.44 9.44 7 10 7ZM6 11C6.55 11 7 11.44 7 12C7 12.55 6.55 13 6 13C5.44 13 5 12.55 5 12C5 11.44 5.44 11 6 11ZM10 11C10.55 11 11 11.44 11 12C11 12.55 10.55 13 10 13C9.44 13 9 12.55 9 12C9 11.44 9.44 11 10 11Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1017 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_218">
<rect id="11#最新动态|纸飞机-news" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_218)">
<path id="形状结合" d="M13.15 1.85C13.75 1.85 14.23 2.37 14.16 2.99L12.79 12.96C12.75 13.36 12.41 13.65 12.02 13.65C11.93 13.65 11.83 13.63 11.75 13.6L7.25 12.11L7.25 14.1C7.25 14.37 7.05 14.59 6.8 14.63L6.71 14.64C6.41 14.64 6.17 14.4 6.17 14.1L6.17 11.75L1.94 10.36C1.36 10.14 1.27 9.37 1.73 9.01L12.65 1.98C12.77 1.92 12.9 1.88 13.02 1.86L13.15 1.85ZM12.93 4.04L7.4 11.02L11.77 12.47L12.93 4.04ZM11.66 3.91L2.91 9.54L6.31 10.66L11.66 3.91Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 928 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_83">
<rect id="12#笑脸|满意度评价-smile-face" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_83)">
<path id="形状结合" d="M8 1.33C11.68 1.33 14.66 4.31 14.66 8C14.66 11.68 11.68 14.66 8 14.66C4.31 14.66 1.33 11.68 1.33 8C1.33 4.31 4.31 1.33 8 1.33ZM8 2.28C4.84 2.28 2.28 4.84 2.28 8C2.28 11.15 4.84 13.71 8 13.71C11.15 13.71 13.71 11.15 13.71 8C13.71 4.84 11.15 2.28 8 2.28ZM11.34 8.19C11.6 8.19 11.82 8.4 11.82 8.66C11.82 10.78 10.11 12.49 8 12.49C5.88 12.49 4.17 10.78 4.17 8.66C4.17 8.4 4.39 8.19 4.65 8.19L11.34 8.19ZM10.83 9.14L5.17 9.14C5.41 10.43 6.52 11.47 7.86 11.53L8 11.53C9.4 11.53 10.58 10.47 10.83 9.14ZM10.67 5.22C11.12 5.22 11.48 5.58 11.48 6.03C11.48 6.48 11.12 6.84 10.67 6.84C10.22 6.84 9.86 6.48 9.86 6.03C9.86 5.58 10.22 5.22 10.67 5.22ZM5.32 5.22C5.77 5.22 6.13 5.58 6.13 6.03C6.13 6.48 5.77 6.84 5.32 6.84C4.87 6.84 4.51 6.48 4.51 6.03C4.51 5.58 4.87 5.22 5.32 5.22Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,19 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip166_96">
<rect id="13#最小化-minimize" width="16.000000" height="16.000000" fill="white"
fill-opacity="0" />
</clipPath>
</defs>
<g style="mix-blend-mode:normal">
<g clip-path="url(#clip166_96)">
<path id="合并"
d="M1.50002 4.18182C1.50002 2.70068 2.70071 1.5 4.18184 1.5L11.8182 1.5C13.2993 1.5 14.5 2.70068 14.5 4.18182L14.5 11.8182C14.5 13.2993 13.2993 14.5 11.8182 14.5L8.00002 14.5C7.72387 14.5 7.50002 14.2761 7.50002 14C7.50002 13.7239 7.72387 13.5 8.00002 13.5L11.8182 13.5C12.747 13.5 13.5 12.747 13.5 11.8182L13.5 4.18182C13.5 3.25299 12.747 2.5 11.8182 2.5L4.18184 2.5C3.25299 2.5 2.50002 3.25299 2.50002 4.18182L2.50002 8C2.50002 8.27612 2.27615 8.5 2.00002 8.5C1.72388 8.5 1.50002 8.27612 1.50002 8L1.50002 4.18182ZM11.5 8L11.492 7.91016C11.4496 7.67688 11.2455 7.5 11 7.5L9.2069 7.50043L11.3536 5.35358C11.5311 5.17603 11.5472 4.89825 11.402 4.70251C11.2067 4.50726 10.8417 4.45117 10.6465 4.64642L8.49957 6.79309L8.50002 5C8.50002 4.74689 8.31191 4.53766 8.06786 4.50458L8.00002 4.5C7.72387 4.5 7.50002 4.72388 7.50002 5L7.50002 8C7.50002 8.27612 7.72387 8.5 8.00002 8.5L11 8.5C11.2762 8.5 11.5 8.27612 11.5 8ZM5.31914 9.53387C5.21517 9.51129 5.10874 9.5 4.99986 9.5L2.99986 9.5C2.89098 9.5 2.78456 9.51129 2.68059 9.53387C2.59048 9.55347 2.50224 9.58154 2.41585 9.6181C2.32977 9.65448 2.24846 9.69806 2.17188 9.74878C2.08873 9.80383 2.01117 9.86737 1.93921 9.93933C1.86723 10.0113 1.80371 10.0889 1.74863 10.172C1.69791 10.2486 1.65434 10.3299 1.61795 10.416C1.58141 10.5024 1.55333 10.5906 1.53375 10.6807C1.51115 10.7847 1.49986 10.8911 1.49986 11L1.49986 13C1.49986 13.1089 1.51115 13.2153 1.53375 13.3193C1.55334 13.4094 1.58141 13.4976 1.61795 13.584C1.65436 13.6701 1.69792 13.7514 1.74866 13.828C1.80373 13.9111 1.86725 13.9887 1.93921 14.0607C2.01117 14.1326 2.08873 14.1962 2.17188 14.2512C2.24846 14.3019 2.32977 14.3455 2.41585 14.3819C2.50224 14.4185 2.59048 14.4465 2.68057 14.4661C2.78455 14.4887 2.89098 14.5 2.99986 14.5L4.99986 14.5C5.10875 14.5 5.21518 14.4887 5.31916 14.4661C5.40924 14.4465 5.49748 14.4185 5.58389 14.3819C5.66995 14.3455 5.75128 14.3019 5.82787 14.2512C5.91101 14.1962 5.98856 14.1326 6.06052 14.0607C6.13248 13.9887 6.196 13.9111 6.25108 13.828C6.3018 13.7514 6.34538 13.6701 6.38178 13.584C6.41832 13.4976 6.44638 13.4094 6.46597 13.3193C6.48856 13.2153 6.49986 13.1089 6.49986 13L6.49986 11C6.49986 10.8911 6.48856 10.7847 6.46597 10.6807C6.44639 10.5906 6.41833 10.5024 6.38178 10.416C6.34538 10.3299 6.30182 10.2486 6.2511 10.172C6.19601 10.0889 6.13249 10.0113 6.06052 9.93933C5.98856 9.86737 5.91101 9.80383 5.82787 9.74878C5.75128 9.69806 5.66995 9.65448 5.58389 9.6181C5.49748 9.58154 5.40923 9.55347 5.31914 9.53387ZM2.99986 10.5L4.99986 10.5C5.0689 10.5 5.13288 10.5122 5.1918 10.5366C5.25073 10.561 5.3046 10.5977 5.35342 10.6464C5.40223 10.6953 5.43884 10.7491 5.46325 10.808C5.48766 10.867 5.49986 10.931 5.49986 11L5.49986 13C5.49986 13.069 5.48766 13.133 5.46325 13.192C5.43884 13.2509 5.40223 13.3047 5.35342 13.3536C5.3046 13.4023 5.25073 13.439 5.1918 13.4634C5.13288 13.4878 5.0689 13.5 4.99986 13.5L2.99986 13.5C2.93083 13.5 2.86685 13.4878 2.80792 13.4634C2.74899 13.439 2.69513 13.4023 2.64632 13.3536C2.59749 13.3047 2.56088 13.2509 2.53647 13.192C2.51207 13.133 2.49986 13.069 2.49986 13L2.49986 11C2.49986 10.931 2.51207 10.867 2.53647 10.808C2.56088 10.7491 2.59749 10.6953 2.64632 10.6464C2.69513 10.5977 2.74899 10.561 2.80792 10.5366C2.86685 10.5122 2.93083 10.5 2.99986 10.5Z"
clip-rule="evenodd" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,19 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip166_95">
<rect id="13.1#最大化-maximize" width="16.000000" height="16.000000" fill="white"
fill-opacity="0" />
</clipPath>
</defs>
<g style="mix-blend-mode:normal">
<g clip-path="url(#clip166_95)">
<path id="合并"
d="M1.5 4.18182C1.5 2.70068 2.70069 1.5 4.18182 1.5L11.8182 1.5C13.2993 1.5 14.5 2.70068 14.5 4.18182L14.5 11.8182C14.5 13.2993 13.2993 14.5 11.8182 14.5L8 14.5C7.72385 14.5 7.5 14.2761 7.5 14C7.5 13.7239 7.72385 13.5 8 13.5L11.8182 13.5C12.747 13.5 13.5 12.747 13.5 11.8182L13.5 4.18182C13.5 3.25299 12.747 2.5 11.8182 2.5L4.18182 2.5C3.25298 2.5 2.5 3.25299 2.5 4.18182L2.5 8C2.5 8.27612 2.27614 8.5 2 8.5C1.72386 8.5 1.5 8.27612 1.5 8L1.5 4.18182ZM8 4.5C7.72385 4.5 7.5 4.72388 7.5 5L7.50806 5.08984C7.55039 5.32312 7.75454 5.5 8 5.5L9.79311 5.49957L7.64645 7.64642C7.46893 7.82397 7.4528 8.10175 7.59804 8.29749C7.7933 8.49274 8.15829 8.54883 8.35355 8.35358L10.5005 6.20691L10.5 8C10.5 8.25311 10.6881 8.46234 10.9322 8.49542L11 8.5C11.2761 8.5 11.5 8.27612 11.5 8L11.5 5C11.5 4.72388 11.2761 4.5 11 4.5L8 4.5ZM5.31912 9.53387C5.21516 9.51129 5.10873 9.5 4.99985 9.5L2.99985 9.5C2.89097 9.5 2.78454 9.51129 2.68056 9.53387C2.59048 9.55347 2.50223 9.58154 2.41582 9.6181C2.32977 9.65448 2.24844 9.69806 2.17187 9.74878C2.08871 9.80383 2.01115 9.86737 1.93919 9.93933C1.86722 10.0113 1.8037 10.0889 1.74862 10.172C1.69789 10.2486 1.65434 10.3299 1.61793 10.416C1.58138 10.5024 1.55332 10.5906 1.53374 10.6807C1.51115 10.7847 1.49985 10.8911 1.49985 11L1.49985 13C1.49985 13.1089 1.51115 13.2153 1.53374 13.3193C1.55332 13.4094 1.58138 13.4976 1.61793 13.584C1.65434 13.6701 1.69791 13.7514 1.74863 13.828C1.80371 13.9111 1.86723 13.9887 1.93919 14.0607C2.01115 14.1326 2.08871 14.1962 2.17186 14.2512C2.24844 14.3019 2.32976 14.3455 2.41582 14.3819C2.50223 14.4185 2.59047 14.4465 2.68056 14.4661C2.78453 14.4887 2.89096 14.5 2.99985 14.5L4.99985 14.5C5.10873 14.5 5.21516 14.4887 5.31915 14.4661C5.40923 14.4465 5.49747 14.4185 5.58387 14.3819C5.66994 14.3455 5.75127 14.3019 5.82785 14.2512C5.911 14.1962 5.98855 14.1326 6.06051 14.0607C6.13247 13.9887 6.19598 13.9111 6.25106 13.828C6.30179 13.7514 6.34536 13.6701 6.38177 13.584C6.4183 13.4976 6.44637 13.4094 6.46595 13.3193C6.48855 13.2153 6.49985 13.1089 6.49985 13L6.49985 11C6.49985 10.8911 6.48855 10.7847 6.46595 10.6807C6.44637 10.5906 6.41831 10.5024 6.38177 10.416C6.34537 10.3299 6.3018 10.2486 6.25108 10.172C6.196 10.0889 6.13248 10.0113 6.06051 9.93933C5.98855 9.86737 5.911 9.80383 5.82785 9.74878C5.75127 9.69806 5.66994 9.65448 5.58387 9.6181C5.49747 9.58154 5.40922 9.55347 5.31912 9.53387ZM2.99985 10.5L4.99985 10.5C5.06889 10.5 5.13287 10.5122 5.19179 10.5366C5.25072 10.561 5.30459 10.5977 5.3534 10.6464C5.40221 10.6953 5.43883 10.7491 5.46323 10.808C5.48764 10.867 5.49985 10.931 5.49985 11L5.49985 13C5.49985 13.069 5.48764 13.133 5.46323 13.192C5.43883 13.2509 5.40221 13.3047 5.3534 13.3536C5.30459 13.4023 5.25072 13.439 5.19179 13.4634C5.13287 13.4878 5.06889 13.5 4.99985 13.5L2.99985 13.5C2.93081 13.5 2.86683 13.4878 2.80791 13.4634C2.74898 13.439 2.69511 13.4023 2.64629 13.3536C2.59748 13.3047 2.56087 13.2509 2.53646 13.192C2.51205 13.133 2.49985 13.069 2.49985 13L2.49985 11C2.49985 10.931 2.51205 10.867 2.53646 10.808C2.56087 10.7491 2.59748 10.6953 2.64629 10.6464C2.69511 10.5977 2.74898 10.561 2.80791 10.5366C2.86683 10.5122 2.93081 10.5 2.99985 10.5Z"
clip-rule="evenodd" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_30">
<rect id="14#分享-share" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_30)">
<path id="形状结合" d="M7 2C7.27 2 7.5 2.22 7.5 2.5C7.5 2.77 7.27 3 7 3L4.5 3C3.67 3 3 3.67 3 4.5L3 11.5C3 12.32 3.67 13 4.5 13L11.5 13C12.32 13 13 12.32 13 11.5L13 9C13 8.72 13.22 8.5 13.5 8.5C13.77 8.5 14 8.72 14 9L14 11.5C14 12.88 12.88 14 11.5 14L4.5 14C3.11 14 2 12.88 2 11.5L2 4.5C2 3.11 3.11 2 4.5 2L7 2ZM13.5 2C13.53 2 13.56 2 13.59 2C13.6 2.01 13.64 2.02 13.65 2.02C13.66 2.03 13.73 2.05 13.74 2.06C13.78 2.09 13.87 2.16 13.89 2.19C13.9 2.2 13.94 2.27 13.95 2.28C13.95 2.29 13.98 2.36 13.98 2.38C13.98 2.39 13.99 2.47 13.99 2.48L14 6C14 6.27 13.77 6.5 13.5 6.5C13.22 6.5 13 6.27 13 6L13 3.7L8.19 8.51C8 8.7 7.68 8.7 7.48 8.51C7.29 8.31 7.29 7.99 7.48 7.8L12.29 3L10 3C9.74 3 9.53 2.81 9.5 2.56L9.5 2.5C9.5 2.22 9.72 2 10 2L13.5 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_135">
<rect id="15#搜索-search" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_135)">
<path id="形状结合" d="M7.22 1.67C10.26 1.67 12.72 4.14 12.72 7.17C12.72 8.5 12.25 9.72 11.47 10.67L14.2 13.36C14.4 13.56 14.4 13.87 14.2 14.07C14.01 14.27 13.69 14.27 13.5 14.08L10.77 11.38C9.81 12.19 8.57 12.67 7.22 12.67C4.18 12.67 1.72 10.21 1.72 7.17C1.72 4.14 4.18 1.67 7.22 1.67ZM7.22 2.67C4.74 2.67 2.72 4.69 2.72 7.17C2.72 9.66 4.74 11.67 7.22 11.67C9.71 11.67 11.72 9.66 11.72 7.17C11.72 4.69 9.71 2.67 7.22 2.67Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 895 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_20">
<rect id="2#短信-email" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_20)">
<path id="形状结合" d="M12.5 2.5C13.88 2.5 15 3.61 15 5L15 11C15 12.38 13.88 13.5 12.5 13.5L3.5 13.5C2.11 13.5 1 12.38 1 11L1 5C1 3.61 2.11 2.5 3.5 2.5L12.5 2.5ZM13.87 4.4L8.95 8.49C8.4 8.95 7.59 8.95 7.04 8.49L2.12 4.4C2.04 4.58 2 4.78 2 5L2 11C2 11.82 2.67 12.5 3.5 12.5L12.5 12.5C13.32 12.5 14 11.82 14 11L14 5C14 4.78 13.95 4.58 13.87 4.4ZM12.5 3.5L3.5 3.5C3.24 3.5 3.01 3.56 2.8 3.67L7.68 7.72C7.86 7.87 8.13 7.87 8.31 7.72L13.19 3.67C12.98 3.56 12.75 3.5 12.5 3.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 938 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_142">
<rect id="20#通话-call" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_142)">
<path id="路径" d="M5.4 1.5L3.04 1.5C3 1.5 2.96 1.5 2.93 1.5C2.1 1.56 1.48 2.28 1.55 3.11L1.56 3.31C1.57 3.34 1.57 3.37 1.57 3.4C1.88 6.12 3.06 8.63 4.92 10.59C6.91 12.69 9.57 14.05 12.48 14.4C12.59 14.42 12.73 14.43 12.88 14.44C12.92 14.44 12.96 14.45 12.99 14.45C13.82 14.45 14.49 13.78 14.49 12.95L14.49 10.59C14.49 9.9 14.03 9.31 13.38 9.13L11.3 8.59C10.68 8.43 10.03 8.67 9.67 9.2L9.57 9.36C9.44 9.54 9.19 9.59 9.01 9.46C8.37 9.03 7.9 8.66 7.61 8.36C7.32 8.07 6.97 7.63 6.55 7.02C6.42 6.83 6.46 6.57 6.65 6.43L6.82 6.31C7.33 5.95 7.56 5.31 7.4 4.71L6.85 2.61C6.68 1.95 6.09 1.5 5.4 1.5ZM3.04 2.5L5.4 2.5C5.63 2.5 5.83 2.65 5.89 2.87L6.44 4.96C6.49 5.17 6.41 5.38 6.24 5.5L6.08 5.62C5.44 6.07 5.28 6.95 5.73 7.59C6.17 8.24 6.56 8.73 6.9 9.06C7.25 9.41 7.76 9.82 8.44 10.29C9.05 10.7 9.87 10.58 10.33 10.01L10.4 9.91L10.5 9.76C10.62 9.58 10.84 9.5 11.04 9.56L13.12 10.1C13.34 10.16 13.49 10.36 13.49 10.59L13.49 12.95C13.49 13.22 13.27 13.45 12.99 13.45L12.7 13.42C12.67 13.42 12.63 13.42 12.6 13.41C9.93 13.09 7.48 11.84 5.64 9.9C3.93 8.1 2.85 5.79 2.57 3.29L2.55 3.13C2.55 3.1 2.55 3.07 2.54 3.03C2.52 2.76 2.77 2.52 3.04 2.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,19 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<linearGradient x1="16.679789" y1="12.657847" x2="2.538637" y2="5.657825"
id="paint_linear_84_25_0" gradientUnits="userSpaceOnUse">
<stop stop-color="currentColor" stop-opacity="0" />
<stop offset="1" stop-color="currentColor" />
</linearGradient>
</defs>
<path id="Stroke-2"
d="M8 1C8.47 1 8.85 1.37 8.85 1.85C8.85 2.32 8.47 2.7 8 2.7C5.06 2.7 2.7 5.06 2.7 8C2.7 10.93 5.06 13.29 8 13.29C10.93 13.29 13.29 10.93 13.29 8C13.29 7.52 13.67 7.14 14.14 7.14C14.62 7.14 15 7.52 15 8C15 11.87 11.87 15 8 15C4.12 15 1 11.87 1 8C1 4.12 4.12 1 8 1Z"
fill="url(#paint_linear_84_25_0)" fill-opacity="1" fill-rule="nonzero">
<animateTransform attributeName="transform" attributeType="XML" type="rotate"
from="0 7.9 7.9" to="360 7.9 7.9" dur="1s" repeatCount="indefinite"></animateTransform>
</path>
</svg>

After

Width:  |  Height:  |  Size: 1005 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_129">
<rect id="21#手机-phone" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_129)">
<path id="形状结合" d="M11 1C12.38 1 13.5 2.11 13.5 3.5L13.5 12.5C13.5 13.88 12.38 15 11 15L5 15C3.61 15 2.5 13.88 2.5 12.5L2.5 3.5C2.5 2.11 3.61 1 5 1L11 1ZM11 2L5 2C4.17 2 3.5 2.67 3.5 3.5L3.5 12.5C3.5 13.32 4.17 14 5 14L11 14C11.82 14 12.5 13.32 12.5 12.5L12.5 3.5C12.5 2.67 11.82 2 11 2ZM8 11.2C8.39 11.2 8.72 11.52 8.72 11.92C8.72 12.32 8.39 12.64 8 12.64C7.6 12.64 7.27 12.32 7.27 11.92C7.27 11.52 7.6 11.2 8 11.2ZM9.5 3.5C9.77 3.5 10 3.72 10 4C10 4.27 9.77 4.5 9.5 4.5L6.5 4.5C6.22 4.5 6 4.27 6 4C6 3.72 6.22 3.5 6.5 3.5L9.5 3.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1007 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_9">
<rect id="22#打印-print" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_9)">
<path id="形状结合" d="M11 1.56C11.83 1.56 12.5 2.23 12.5 3.06L12.5 3.76L13.41 3.76C14.28 3.76 15 4.45 15 5.31L15 10.42C15 11.27 14.28 11.96 13.41 11.96L12.5 11.96L12.5 12.93C12.5 13.73 11.88 14.38 11.1 14.43L11 14.43L5 14.43C4.17 14.43 3.5 13.76 3.5 12.93L3.5 11.96L2.58 11.96C1.71 11.96 1 11.27 1 10.42L1 5.31C1 4.45 1.71 3.76 2.58 3.76L3.5 3.76L3.5 3.06C3.5 2.26 4.12 1.61 4.9 1.56L5 1.56L11 1.56ZM11 9.43L5 9.43C4.72 9.43 4.5 9.66 4.5 9.93L4.5 12.93C4.5 13.21 4.72 13.43 5 13.43L11 13.43C11.27 13.43 11.5 13.21 11.5 12.93L11.5 9.93C11.5 9.66 11.27 9.43 11 9.43ZM13.41 4.76L2.58 4.76C2.25 4.76 2 5.01 2 5.31L2 10.42C2 10.71 2.25 10.96 2.58 10.96L3.5 10.96L3.5 9.93C3.5 9.14 4.11 8.49 4.89 8.44L5 8.43L11 8.43C11.82 8.43 12.5 9.1 12.5 9.93L12.5 10.96L13.41 10.96C13.74 10.96 14 10.71 14 10.42L14 5.31C14 5.01 13.74 4.76 13.41 4.76ZM11.98 5.55C12.3 5.55 12.56 5.81 12.56 6.13C12.56 6.45 12.3 6.71 11.98 6.71C11.66 6.71 11.4 6.45 11.4 6.13C11.4 5.81 11.66 5.55 11.98 5.55ZM11 2.56L5 2.56C4.73 2.56 4.5 2.78 4.5 3.06L4.5 3.76L11.5 3.76L11.5 3.06C11.5 2.81 11.33 2.61 11.09 2.57L11 2.56Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_59">
<rect id="23#计算器-calculator" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_59)">
<path id="path" d="M11.5 1.5L4.5 1.5C3.1 1.5 2 2.59 2 4L2 5L2 6L2 12C2 13.4 3.1 14.5 4.5 14.5L11.5 14.5C12.9 14.5 14 13.4 14 12L14 6L14 5L14 4C14 2.59 12.9 1.5 11.5 1.5ZM13 12C13 12.8 12.3 13.5 11.5 13.5L4.5 13.5C3.7 13.5 3 12.8 3 12L3 6L13 6L13 12ZM13 5L3 5L3 4C3 3.2 3.7 2.5 4.5 2.5L11.5 2.5C12.3 2.5 13 3.2 13 4L13 5ZM6 8.9C6 9.5 5.6 9.9 5 9.9C4.39 9.9 4 9.5 4 8.9C4 8.29 4.39 7.9 5 7.9C5.5 7.9 6 8.29 6 8.9ZM5 10.4C4.39 10.4 4 10.8 4 11.4C4 12 4.39 12.4 5 12.4C5.6 12.4 6 12 6 11.4C6 10.8 5.5 10.4 5 10.4ZM8 7.9C7.39 7.9 7 8.29 7 8.9C7 9.5 7.39 9.9 8 9.9C8.6 9.9 9 9.5 9 8.9C9 8.29 8.6 7.9 8 7.9ZM8 10.4C7.39 10.4 7 10.8 7 11.4C7 12 7.39 12.4 8 12.4C8.6 12.4 9 12 9 11.4C9 10.8 8.6 10.4 8 10.4ZM11 9.9C11.6 9.9 12 9.5 12 8.9C12 8.29 11.6 7.9 11 7.9C10.4 7.9 10 8.29 10 8.9C10 9.5 10.5 9.9 11 9.9ZM11 10.4C10.4 10.4 10 10.8 10 11.4C10 12 10.4 12.4 11 12.4C11.6 12.4 12 12 12 11.4C12 10.8 11.6 10.4 11 10.4Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_10">
<rect id="24#地图|位置-map" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_10)">
<path id="形状结合" d="M10.96 2.65C12.16 3.85 12.48 5.61 11.92 7.1C12.7 7.1 13.49 7.75 13.71 8.56L14.73 12.89C14.93 13.82 14.18 14.57 13.17 14.57L2.82 14.57C1.81 14.57 1.06 13.82 1.26 12.88L2.28 8.55C2.5 7.75 3.26 7.1 4.04 7.1C3.48 5.61 3.82 3.85 5.03 2.65C6.67 1.01 9.32 1.01 10.96 2.65ZM4.62 8.1L4.04 8.1C3.73 8.1 3.35 8.42 3.25 8.79L2.24 13.1C2.18 13.36 2.4 13.57 2.82 13.57L13.17 13.57C13.59 13.57 13.81 13.36 13.75 13.11L12.74 8.81C12.63 8.42 12.25 8.1 11.94 8.1L11.37 8.1C11.28 8.22 11.18 8.34 11.08 8.45L10.96 8.58L8.53 11.01C8.24 11.3 7.77 11.3 7.48 11.01L5.03 8.58L5.42 8.18L5.03 8.58C4.88 8.43 4.74 8.27 4.62 8.1ZM5.74 3.35C4.53 4.56 4.49 6.5 5.63 7.76L5.73 7.87L8 10.12L10.25 7.87C11.5 6.62 11.5 4.6 10.25 3.35C9 2.11 6.98 2.11 5.74 3.35ZM7.99 4.74C8.47 4.74 8.86 5.13 8.86 5.61C8.86 6.09 8.47 6.48 7.99 6.48C7.51 6.48 7.13 6.09 7.13 5.61C7.13 5.13 7.51 4.74 7.99 4.74Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_32">
<rect id="25#钥匙|密钥-key" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_32)">
<path id="形状" d="M11.16 5.33C11.06 5.33 10.99 5.4 10.99 5.5C10.99 5.59 11.06 5.66 11.16 5.66C11.25 5.66 11.32 5.59 11.32 5.5C11.32 5.4 11.25 5.33 11.16 5.33ZM11.16 4.66C11.62 4.66 11.99 5.03 11.99 5.5C11.99 5.96 11.62 6.33 11.16 6.33C10.7 6.33 10.32 5.96 10.32 5.5C10.32 5.03 10.7 4.66 11.16 4.66ZM10.16 3C8.22 3 6.66 4.56 6.66 6.5C6.66 7 6.76 7.48 6.97 7.94C7.04 8.1 7.02 8.29 6.92 8.43L2.99 12.37L2.99 13.66L4.66 13.66L4.66 12.81C4.66 12.56 4.84 12.36 5.07 12.32L5.16 12.32L5.99 12.31L5.99 11.48C5.99 11.23 6.17 11.03 6.4 10.98L6.49 10.98L8.01 10.98L8.01 10.2C8 10.12 8.01 10.02 8.05 9.93C8.09 9.85 8.15 9.78 8.22 9.73C8.27 9.7 8.37 9.66 8.42 9.65L8.51 9.65C8.6 9.64 8.69 9.67 8.76 9.71C9.22 9.91 9.65 10 10.15 10C12.08 10 13.65 8.43 13.65 6.5C13.65 4.57 12.09 3 10.16 3ZM10.16 2C12.64 2 14.66 4.01 14.66 6.5C14.66 8.98 12.64 11 10.16 11C9.77 11 9.38 10.94 9.01 10.85L9.01 11.48C9.01 11.75 8.79 11.98 8.51 11.98L7 11.98L7 12.81C7 13.06 6.82 13.26 6.58 13.3L6.5 13.3L5.66 13.31L5.66 14.16C5.66 14.41 5.49 14.61 5.26 14.66L5.17 14.66L3.33 14.66L2.49 14.66C2.23 14.66 2.03 14.48 2 14.23L2 14.16L2 12.16C2 12.06 2.03 11.96 2.09 11.87L5.93 8.02L5.9 7.96C5.76 7.56 5.68 7.14 5.66 6.71L5.66 6.5C5.66 4.02 7.67 2 10.16 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_134">
<rect id="26#钥匙|密钥-key1" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_134)">
<path id="形状结合" d="M3.19 2.48L4.39 3.68L5.59 2.48C5.79 2.29 6.1 2.29 6.3 2.48C6.49 2.68 6.49 2.99 6.3 3.19L5.1 4.39L7.85 7.14C7.88 7.17 7.91 7.21 7.93 7.24C8.57 6.74 9.37 6.45 10.25 6.45C12.34 6.45 14.04 8.15 14.04 10.25C14.04 12.34 12.34 14.04 10.25 14.04C8.15 14.04 6.45 12.34 6.45 10.25C6.45 9.37 6.74 8.57 7.24 7.92C7.21 7.91 7.17 7.88 7.14 7.85L2.48 3.19C2.29 2.99 2.29 2.68 2.48 2.48C2.68 2.29 2.99 2.29 3.19 2.48ZM10.25 7.45C8.7 7.45 7.45 8.7 7.45 10.25C7.45 11.79 8.7 13.04 10.25 13.04C11.79 13.04 13.04 11.79 13.04 10.25C13.04 8.7 11.79 7.45 10.25 7.45Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_87">
<rect id="27#相机|拍照-camera" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_87)">
<path id="形状结合" d="M9.33 2.5C9.93 2.5 10.48 2.86 10.71 3.42L11.33 4.89L12 4.9C13.33 4.9 14.42 5.94 14.49 7.26L14.5 7.4L14.5 11.8C14.5 13.18 13.38 14.3 12 14.3L4 14.3C2.61 14.3 1.5 13.18 1.5 11.8L1.5 7.4C1.5 6.01 2.61 4.9 4 4.9L4.66 4.89L5.28 3.42C5.5 2.89 5.99 2.54 6.55 2.5L6.66 2.5L9.33 2.5ZM9.33 3.5L6.66 3.5C6.46 3.5 6.28 3.62 6.2 3.8L5.46 5.59C5.38 5.77 5.2 5.9 5 5.9L4 5.9C3.17 5.9 2.5 6.57 2.5 7.4L2.5 11.8C2.5 12.62 3.17 13.3 4 13.3L12 13.3C12.82 13.3 13.5 12.62 13.5 11.8L13.5 7.4C13.5 6.57 12.82 5.9 12 5.9L11 5.9C10.79 5.9 10.61 5.77 10.53 5.59L9.79 3.8C9.71 3.62 9.53 3.5 9.33 3.5ZM8 6.5C9.6 6.5 10.9 7.79 10.9 9.4C10.9 11 9.6 12.3 8 12.3C6.39 12.3 5.1 11 5.1 9.4C5.1 7.79 6.39 6.5 8 6.5ZM8 7.5C6.95 7.5 6.1 8.35 6.1 9.4C6.1 10.44 6.95 11.3 8 11.3C9.04 11.3 9.89 10.44 9.89 9.4C9.89 8.35 9.04 7.5 8 7.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_214">
<rect id="28#自动保存-auto-save" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_214)">
<path id="形状结合" d="M10.64 1.95C11.12 1.95 11.26 2.11 11.52 2.62L11.96 3.49L13.28 3.5C14.26 3.5 15.04 4.29 15.04 5.26L15.04 12.28C15.04 13.25 14.26 14.04 13.28 14.04L2.71 14.04C1.73 14.04 0.94 13.25 0.94 12.28L0.94 5.26C0.94 4.29 1.73 3.5 2.71 3.5L4.02 3.5L4.47 2.62L4.57 2.44C4.76 2.11 4.93 1.95 5.35 1.95L10.64 1.95ZM10.56 2.95L5.42 2.95L5.36 3.07L4.93 3.94L4.8 4.1C4.57 4.39 4.5 4.41 4.02 4.5L2.71 4.5C2.28 4.5 1.94 4.84 1.94 5.26L1.94 12.28C1.94 12.7 2.28 13.04 2.71 13.04L13.28 13.04C13.7 13.04 14.04 12.7 14.04 12.28L14.04 5.26C14.04 4.84 13.7 4.5 13.28 4.5L11.97 4.5L11.77 4.46C11.4 4.38 11.36 4.33 11.06 3.94L10.56 2.95ZM5.78 5.2C6.06 5.2 6.28 5.42 6.28 5.7L6.28 5.9C6.65 5.67 7.06 5.51 7.5 5.44C9.22 5.16 10.83 6.33 11.1 8.04C11.37 9.75 10.2 11.36 8.48 11.63C6.77 11.9 5.16 10.73 4.89 9.02C4.85 8.75 5.03 8.49 5.3 8.45C5.58 8.41 5.83 8.59 5.88 8.87C6.06 10.03 7.16 10.82 8.33 10.64C9.5 10.45 10.3 9.36 10.11 8.2C9.93 7.03 8.83 6.24 7.66 6.42C7.48 6.45 7.32 6.5 7.16 6.57C7.41 6.57 7.57 6.75 7.6 7L7.61 7.07C7.61 7.34 7.38 7.57 7.11 7.57L5.78 7.57C5.5 7.57 5.28 7.34 5.28 7.07L5.28 5.7C5.28 5.42 5.5 5.2 5.78 5.2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_24">
<rect id="29#视频-video" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_24)">
<path id="形状结合" d="M9.93 3.5C11.08 3.5 12.01 4.43 12.02 5.58L12.02 10.64C12.02 11.8 11.08 12.73 9.93 12.73L3.08 12.73C1.93 12.73 1 11.8 1 10.64L1 5.58C1 4.43 1.93 3.5 3.08 3.5L9.93 3.5ZM9.93 4.5L3.08 4.5C2.48 4.5 2 4.98 2 5.58L2 10.64C2 11.24 2.48 11.73 3.08 11.73L9.93 11.73C10.53 11.73 11.02 11.24 11.02 10.64L11.02 5.58C11.02 4.98 10.53 4.5 9.93 4.5ZM13.89 4.94C14.43 4.66 15.09 4.87 15.37 5.4C15.45 5.56 15.5 5.73 15.5 5.91L15.5 10.31C15.5 10.92 15 11.41 14.4 11.41C14.22 11.41 14.05 11.37 13.89 11.29L12.69 10.66C12.45 10.53 12.35 10.23 12.48 9.99C12.61 9.74 12.91 9.65 13.16 9.77L14.36 10.4C14.41 10.4 14.5 10.37 14.5 10.31L14.5 5.91C14.47 5.86 14.4 5.8 14.36 5.82L13.15 6.45C12.91 6.58 12.61 6.48 12.48 6.24C12.35 5.99 12.45 5.69 12.69 5.56L13.89 4.94Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_23">
<rect id="3#发布-release" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_23)">
<path id="形状结合" d="M8.28 1.45L11.11 3.45C11.14 3.47 11.18 3.5 11.2 3.53L12.06 3.53C13.42 3.53 14.53 4.6 14.53 5.92L14.53 11.74C14.53 13.06 13.42 14.13 12.06 14.13L3.93 14.13C2.57 14.13 1.46 13.06 1.46 11.74L1.46 5.93C1.46 4.6 2.57 3.53 3.93 3.53L4.79 3.53C4.81 3.5 4.84 3.47 4.88 3.45L7.71 1.45C7.88 1.33 8.11 1.33 8.28 1.45ZM12.06 4.53L3.93 4.53C3.11 4.53 2.46 5.16 2.46 5.93L2.46 11.74C2.46 12.5 3.11 13.13 3.93 13.13L12.06 13.13C12.88 13.13 13.53 12.5 13.53 11.74L13.53 5.92C13.53 5.16 12.88 4.53 12.06 4.53ZM10.82 9.75C11.1 9.75 11.32 9.97 11.32 10.25C11.32 10.52 11.1 10.75 10.82 10.75L5.17 10.75C4.89 10.75 4.67 10.52 4.67 10.25C4.67 9.97 4.89 9.75 5.17 9.75L10.82 9.75ZM7.99 6.92C8.27 6.92 8.49 7.14 8.49 7.42C8.49 7.7 8.27 7.92 7.99 7.92L5.17 7.92C4.89 7.92 4.67 7.7 4.67 7.42C4.67 7.14 4.89 6.92 5.17 6.92L7.99 6.92ZM7.99 2.47L6.49 3.53L9.5 3.53L7.99 2.47Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_82">
<rect id="30#录制-record" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_82)">
<path id="形状结合" d="M9.93 3.5C11.08 3.5 12.01 4.43 12.02 5.58L12.02 10.64C12.02 11.8 11.08 12.73 9.93 12.73L3.08 12.73C1.93 12.73 1 11.8 1 10.64L1 5.58C1 4.43 1.93 3.5 3.08 3.5L9.93 3.5ZM9.93 4.5L3.08 4.5C2.48 4.5 2 4.98 2 5.58L2 10.64C2 11.24 2.48 11.73 3.08 11.73L9.93 11.73C10.53 11.73 11.02 11.24 11.02 10.64L11.02 5.58C11.02 4.98 10.53 4.5 9.93 4.5ZM3.91 5.52C4.41 5.52 4.81 5.92 4.81 6.42C4.81 6.91 4.41 7.31 3.91 7.31C3.42 7.31 3.02 6.91 3.02 6.42C3.02 5.92 3.42 5.52 3.91 5.52ZM13.89 4.94C14.43 4.66 15.09 4.87 15.37 5.4C15.45 5.56 15.5 5.73 15.5 5.91L15.5 10.31C15.5 10.92 15 11.41 14.4 11.41C14.22 11.41 14.05 11.37 13.89 11.29L12.69 10.66C12.45 10.53 12.35 10.23 12.48 9.99C12.61 9.74 12.91 9.65 13.16 9.77L14.36 10.4C14.41 10.4 14.5 10.37 14.5 10.31L14.5 5.91C14.47 5.86 14.4 5.8 14.36 5.82L13.15 6.45C12.91 6.58 12.61 6.48 12.48 6.24C12.35 5.99 12.45 5.69 12.69 5.56L13.89 4.94Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_177">
<rect id="31#电视|演示-TV" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_177)">
<path id="形状结合" d="M12 1.5C13.38 1.5 14.5 2.61 14.5 4L14.5 10C14.5 11.38 13.38 12.5 12 12.5L9.2 12.5L10.35 13.64C10.54 13.84 10.54 14.15 10.35 14.35C10.15 14.54 9.84 14.54 9.64 14.35L8 12.7L6.35 14.35C6.17 14.53 5.89 14.54 5.7 14.4C5.5 14.2 5.45 13.84 5.64 13.64L6.79 12.5L4 12.5C2.66 12.5 1.57 11.45 1.5 10.13L1.5 10L1.5 4C1.5 2.61 2.61 1.5 4 1.5L12 1.5ZM12 2.5L4 2.5C3.17 2.5 2.5 3.17 2.5 4L2.5 10C2.5 10.82 3.17 11.5 4 11.5L12 11.5C12.82 11.5 13.5 10.82 13.5 10L13.5 4C13.5 3.17 12.82 2.5 12 2.5ZM5.75 4.75C5.75 4.36 6.16 4.12 6.49 4.31L10.49 6.56C10.83 6.75 10.83 7.24 10.49 7.43L6.49 9.68C6.16 9.87 5.75 9.63 5.75 9.25L5.75 4.75ZM6.75 5.6L6.75 8.39L9.23 7L6.75 5.6Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_199">
<rect id="32#药箱|诊断-diagnosis" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_199)">
<path id="形状" d="M11.26 1.94C11.52 1.94 11.73 1.72 11.73 1.46C11.73 1.21 11.52 1 11.26 1L4.73 1C4.46 1 4.25 1.21 4.25 1.46C4.25 1.72 4.46 1.94 4.73 1.94L11.26 1.94ZM8 6.42C8.25 6.42 8.47 6.64 8.47 6.9L8.47 8.59L10.17 8.59C10.4 8.59 10.6 8.77 10.64 8.98L10.64 9.07C10.64 9.33 10.44 9.53 10.17 9.53L8.47 9.53L8.47 11.24C8.47 11.47 8.3 11.67 8.08 11.71L7.99 11.71C7.73 11.71 7.52 11.51 7.52 11.24L7.52 9.53L5.82 9.53C5.59 9.53 5.39 9.37 5.35 9.15L5.35 9.07C5.35 8.81 5.55 8.59 5.82 8.59L7.52 8.59L7.52 6.9C7.52 6.66 7.69 6.46 7.91 6.42L8 6.42ZM13.27 4.46L2.73 4.46C2.3 4.46 1.94 4.82 1.94 5.26L1.94 12.89C1.94 13.33 2.28 13.68 2.73 13.68L13.26 13.68C13.69 13.68 14.05 13.33 14.05 12.89L14.05 5.26C14.05 4.82 13.71 4.46 13.27 4.46ZM13.27 3.52C14.23 3.52 15 4.29 15 5.25L15 12.88C15 13.84 14.22 14.61 13.27 14.61L2.73 14.61C1.77 14.61 1 13.83 1 12.88L1 5.25C1 4.28 1.78 3.52 2.73 3.52L13.27 3.52Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_51">
<rect id="33#皮肤|衣服-skin" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_51)">
<path id="路径" d="M6.03 1.88L5.05 1.88C4.37 1.88 3.44 2.29 2.92 2.82L0.9 4.83C0.71 5.03 0.71 5.34 0.9 5.54L3.15 7.79L3.22 7.84C3.31 7.91 3.43 7.94 3.54 7.93L3.56 13.61C3.56 13.89 3.79 14.11 4.06 14.11L11.93 14.11L12.02 14.1C12.25 14.06 12.43 13.86 12.43 13.61L12.43 7.93C12.57 7.94 12.73 7.9 12.84 7.79L15.09 5.54C15.28 5.34 15.28 5.03 15.09 4.83L13.08 2.82C12.55 2.29 11.62 1.88 10.94 1.88L9.96 1.88C9.69 1.88 9.46 2.1 9.46 2.38C9.46 3.19 8.81 3.84 8 3.84C7.19 3.84 6.53 3.19 6.53 2.38C6.53 2.1 6.31 1.88 6.03 1.88ZM10.38 3.01L10.41 2.88L10.94 2.88L11.07 2.89C11.48 2.94 12.06 3.21 12.37 3.53L14.03 5.19L12.49 6.73L12.28 6.52C11.96 6.29 11.43 6.46 11.43 6.87L11.43 13.11L4.56 13.11L4.56 6.87L4.56 6.79C4.49 6.4 4 6.22 3.71 6.52L3.5 6.73L1.96 5.19L3.62 3.53L3.74 3.42C4.1 3.12 4.68 2.88 5.05 2.88L5.58 2.88L5.61 3.01C5.89 4.06 6.85 4.84 8 4.84C9.14 4.84 10.1 4.06 10.38 3.01Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_37">
<rect id="34#告警灯-alarm" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_37)">
<path id="形状" d="M8.8 4.77C9 4.93 9.04 5.2 8.92 5.41L6.86 7.99L9.82 7.99C10.22 7.99 10.45 8.42 10.25 8.75L7.54 12.14C7.37 12.35 7.06 12.39 6.84 12.22C6.65 12.06 6.6 11.78 6.72 11.58L8.78 9L5.82 9C5.43 9 5.2 8.56 5.4 8.24L8.1 4.85C8.28 4.64 8.59 4.59 8.8 4.77ZM7.82 2C10.62 2 12.9 4.22 12.99 7L12.99 7.16L12.99 13.33C12.99 13.6 12.76 13.83 12.49 13.83C12.24 13.83 12.03 13.64 12 13.4L12 13.33L12 7.16C12 4.86 10.13 3 7.83 3C5.53 3 3.74 4.78 3.66 7.01L3.66 7.16L3.66 13.33L13.83 13.33C14.1 13.33 14.33 13.56 14.33 13.83C14.33 14.08 14.14 14.29 13.9 14.32L13.83 14.32L1.83 14.32C1.56 14.32 1.33 14.1 1.33 13.82C1.33 13.57 1.52 13.36 1.76 13.33L1.83 13.33L2.66 13.33L2.66 7.16C2.66 4.31 4.97 2 7.82 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_139">
<rect id="35#提醒-remind" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_139)">
<path id="形状结合" d="M8.07 1.5C10.74 1.5 12.86 4.04 12.86 7.14L12.86 9L13.96 11.55C14.09 11.86 13.88 12.2 13.56 12.24L10.33 12.25C10.26 13.5 9.25 14.5 8 14.5C6.7 14.5 5.66 13.43 5.66 12.12L5.67 12.25L2.5 12.25C2.15 12.25 1.91 11.9 2.02 11.59L3.29 8.98L3.29 7.14C3.29 4.1 5.33 1.59 7.92 1.5L8.07 1.5ZM9.32 12.25L6.67 12.25L6.68 12.32C6.77 12.96 7.27 13.44 7.9 13.49L8 13.5C8.66 13.5 9.22 12.99 9.31 12.32L9.32 12.25ZM8.07 2.5C6 2.5 4.29 4.56 4.29 7.14L4.29 9.1C4.29 9.18 4.27 9.25 4.24 9.32L3.3 11.25L12.74 11.25L11.9 9.3C11.88 9.26 11.87 9.21 11.86 9.17L11.86 9.1L11.86 7.14C11.86 4.56 10.14 2.5 8.07 2.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_18">
<rect id="36#定位-position" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_18)">
<path id="形状结合" d="M11.5 10L11.5 6C11.5 5.17 10.82 4.5 10 4.5L6 4.5C5.17 4.5 4.5 5.17 4.5 6L4.5 10.01C4.5 10.83 5.16 11.5 5.98 11.5L10 11.5C10.82 11.5 11.5 10.82 11.5 10ZM10.5 10C10.5 10.27 10.27 10.5 10 10.5L5.98 10.5C5.71 10.5 5.5 10.28 5.5 10.01L5.5 6C5.5 5.72 5.72 5.5 6 5.5L10 5.5C10.27 5.5 10.5 5.72 10.5 6L10.5 10ZM8 1C8.27 1 8.5 1.22 8.5 1.5L8.5 3C8.5 3.27 8.27 3.5 8 3.5C7.72 3.5 7.5 3.27 7.5 3L7.5 1.5C7.5 1.22 7.72 1 8 1ZM15 8C15 8.27 14.77 8.5 14.5 8.5L13 8.5C12.72 8.5 12.5 8.27 12.5 8C12.5 7.72 12.72 7.5 13 7.5L14.5 7.5C14.77 7.5 15 7.72 15 8ZM8 15C7.72 15 7.5 14.77 7.5 14.5L7.5 13C7.5 12.72 7.72 12.5 8 12.5C8.27 12.5 8.5 12.72 8.5 13L8.5 14.5C8.5 14.77 8.27 15 8 15ZM1 8C1 7.72 1.22 7.5 1.5 7.5L3 7.5C3.27 7.5 3.5 7.72 3.5 8C3.5 8.27 3.27 8.5 3 8.5L1.5 8.5C1.22 8.5 1 8.27 1 8Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_163">
<rect id="4#消息-message" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_163)">
<path id="形状结合" d="M11.53 2.43C12.91 2.43 14.03 3.59 14.03 5L14.03 9.46C14.03 10.88 12.91 12.03 11.53 12.03L10.06 12.03L8.72 13.39C8.56 13.57 8.34 13.68 8.1 13.71L7.99 13.72C7.72 13.72 7.46 13.6 7.28 13.4L6.06 12.05L4.54 12.03C3.16 12.03 2.03 10.88 2.03 9.46L2.03 5C2.03 3.59 3.16 2.43 4.54 2.43L11.53 2.43ZM11.53 3.43L4.54 3.43C3.72 3.43 3.03 4.13 3.03 5L3.03 9.46C3.03 10.33 3.72 11.03 4.54 11.03L6.02 11.03C6.32 11.03 6.6 11.16 6.8 11.38L7.99 12.7L9.27 11.39C9.47 11.16 9.76 11.03 10.06 11.03L11.53 11.03C12.35 11.03 13.03 10.33 13.03 9.46L13.03 5C13.03 4.13 12.35 3.43 11.53 3.43ZM7.69 6.73C7.88 6.62 8.12 6.62 8.32 6.73C8.51 6.84 8.63 7.05 8.63 7.27C8.63 7.6 8.35 7.88 8 7.88C7.65 7.88 7.37 7.6 7.37 7.27C7.37 7.05 7.49 6.84 7.69 6.73ZM4.92 6.65C5.27 6.65 5.55 6.93 5.55 7.27C5.55 7.48 5.43 7.69 5.23 7.8C5.04 7.91 4.8 7.91 4.61 7.8C4.41 7.69 4.29 7.48 4.29 7.27C4.29 6.93 4.57 6.65 4.92 6.65ZM11.08 6.65C11.43 6.65 11.71 6.93 11.71 7.27C11.71 7.6 11.43 7.88 11.08 7.88C10.74 7.88 10.45 7.6 10.45 7.27C10.45 6.93 10.74 6.65 11.08 6.65Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_144">
<rect id="40#投屏-cast" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_144)">
<path id="形状结合" d="M8.35 8.06L9.9 9.61C10.09 9.81 10.09 10.12 9.9 10.32C9.7 10.51 9.38 10.51 9.19 10.32L8.49 9.62L8.49 13.33L9.66 13.33C9.94 13.33 10.16 13.55 10.16 13.83C10.16 14.1 9.94 14.33 9.66 14.33L6.33 14.33C6.05 14.33 5.83 14.1 5.83 13.83C5.83 13.55 6.05 13.33 6.33 13.33L7.49 13.33L7.49 9.62L6.8 10.32C6.62 10.5 6.34 10.51 6.14 10.36C5.95 10.17 5.9 9.81 6.09 9.61L7.64 8.06C7.84 7.87 8.15 7.87 8.35 8.06ZM11.33 2C13.08 2 14.5 3.41 14.5 5.16L14.5 9.16C14.5 10.91 13.08 12.33 11.33 12.33C11.05 12.33 10.83 12.1 10.83 11.83C10.83 11.55 11.05 11.33 11.33 11.33C12.52 11.33 13.5 10.36 13.5 9.16L13.5 5.16C13.5 3.97 12.52 3 11.33 3L4.66 3C3.47 3 2.5 3.97 2.5 5.16L2.5 9.16C2.5 10.36 3.47 11.33 4.66 11.33C4.94 11.33 5.16 11.55 5.16 11.83C5.16 12.1 4.94 12.33 4.66 12.33C2.91 12.33 1.5 10.91 1.5 9.16L1.5 5.16C1.5 3.41 2.91 2 4.66 2L11.33 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_76">
<rect id="41#插头|扩展-plug" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_76)">
<path id="形状" d="M7.5 5.66C7.77 5.66 8 5.89 8 6.16C8 6.44 7.77 6.66 7.5 6.66L5.86 6.66C5.58 6.66 5.36 6.44 5.36 6.16C5.36 5.89 5.58 5.66 5.86 5.66L7.5 5.66ZM6.18 8.32C6.45 8.32 6.68 8.55 6.68 8.82L6.68 9.84C6.68 10.11 6.45 10.34 6.18 10.34C5.9 10.34 5.68 10.11 5.68 9.84L5.68 8.82C5.68 8.55 5.9 8.32 6.18 8.32ZM12.66 4.33L5.47 4.33C4.92 4.33 4.47 4.78 4.47 5.33L4.47 10.66C4.47 11.22 4.92 11.66 5.47 11.66L12.66 11.66C13.22 11.66 13.66 11.22 13.66 10.66L13.66 5.33C13.66 4.78 13.22 4.33 12.66 4.33ZM12.66 3.33C13.77 3.33 14.66 4.22 14.66 5.33L14.66 10.66C14.66 11.77 13.77 12.66 12.66 12.66L5.47 12.66C4.36 12.66 3.47 11.77 3.47 10.66L3.47 9.83L1.83 9.83C1.56 9.83 1.33 9.6 1.33 9.33C1.33 9.06 1.56 8.83 1.83 8.83L3.47 8.83L3.47 7.16L1.83 7.16C1.56 7.16 1.33 6.94 1.33 6.66C1.33 6.39 1.56 6.16 1.83 6.16L3.47 6.16L3.47 5.33C3.47 4.22 4.36 3.33 5.47 3.33L12.66 3.33Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_25">
<rect id="42#灯泡|想法-idea" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_25)">
<path id="形状结合" d="M7.99 1.14C5.29 1.14 3.09 3.34 3.09 6.04L3.1 6.27C3.17 7.8 3.94 9.18 5.16 10.04L5.29 10.13L5.29 11.27C5.29 12.15 6.01 12.87 6.89 12.87L9.09 12.87L9.24 12.86C10.06 12.79 10.69 12.1 10.69 11.27L10.7 10.13L10.83 10.04C12.11 9.14 12.89 7.66 12.89 6.04C12.89 3.34 10.7 1.14 7.99 1.14ZM7.99 2.14C10.15 2.14 11.89 3.89 11.89 6.04C11.89 7.45 11.14 8.73 9.95 9.42L9.7 9.57L9.69 11.27C9.69 11.6 9.43 11.87 9.09 11.87L6.89 11.87C6.56 11.87 6.29 11.6 6.29 11.27L6.29 9.57L6.04 9.42C4.85 8.73 4.09 7.45 4.09 6.04C4.09 3.89 5.84 2.14 7.99 2.14ZM9.97 13.8C10.25 13.8 10.47 14.02 10.47 14.3C10.47 14.57 10.25 14.8 9.97 14.8L6.01 14.8C5.74 14.8 5.51 14.57 5.51 14.3C5.51 14.02 5.74 13.8 6.01 13.8L9.97 13.8Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_85">
<rect id="43#正方体-cube" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_85)">
<path id="形状" d="M8.32 14.68C8 14.68 7.69 14.6 7.4 14.43L2.92 11.85C2.35 11.52 2 10.91 2 10.26L2 5.08C2 4.43 2.35 3.82 2.92 3.49L7.4 0.91C7.97 0.58 8.67 0.58 9.23 0.91L13.72 3.49C14.29 3.82 14.64 4.43 14.64 5.08L14.64 10.26C14.64 10.91 14.29 11.52 13.72 11.85L9.23 14.43C8.95 14.59 8.64 14.68 8.32 14.68ZM3 5.18L3 10.26C3 10.55 3.16 10.83 3.42 10.98L7.83 13.53L7.83 7.93C7.75 7.91 7.67 7.87 7.6 7.83L3 5.18ZM8.83 7.93L8.83 13.51L13.22 10.98C13.48 10.83 13.63 10.55 13.63 10.26L13.63 5.18L9.06 7.83C8.98 7.87 8.9 7.91 8.83 7.93ZM3.5 4.31L8.1 6.96C8.24 7.04 8.42 7.04 8.56 6.96L13.14 4.31L8.73 1.77C8.48 1.63 8.16 1.63 7.9 1.77L3.5 4.31Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_41">
<rect id="44#麦克风|公告-speeker" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_41)">
<path id="形状结合" d="M12.73 1.71C13.54 1.47 14.39 1.93 14.63 2.74C14.67 2.89 14.7 3.03 14.7 3.18L14.7 11.16C14.7 12 14.01 12.69 13.16 12.69C13.01 12.69 12.87 12.67 12.73 12.63L10.82 12.06L10.82 12.65C10.82 13.74 9.97 14.63 8.89 14.69L8.77 14.7L5.67 14.7C4.54 14.7 3.62 13.78 3.62 12.65L3.62 10.33L3.35 10.33C2.31 10.33 1.45 9.55 1.31 8.55L1.3 8.43L1.3 8.28L1.3 6.06C1.3 4.93 2.21 4.01 3.35 4.01L4.99 4.01L12.73 1.71ZM4.99 10.33L4.62 10.33L4.62 12.65C4.62 13.23 5.09 13.7 5.67 13.7L8.77 13.7C9.35 13.7 9.82 13.23 9.82 12.65L9.82 11.76L6.63 10.81L4.99 10.33ZM13.64 2.94C13.52 2.71 13.26 2.6 13.01 2.67L5.2 4.99L5.06 5.01L3.35 5.01C2.77 5.01 2.3 5.48 2.3 6.06L2.3 8.28C2.3 8.86 2.77 9.33 3.35 9.33L4.12 9.33L5.06 9.33L5.2 9.35L10.46 10.91L13.01 11.67C13.06 11.68 13.11 11.69 13.16 11.69C13.46 11.69 13.7 11.45 13.7 11.16L13.7 3.18C13.7 3.13 13.69 3.08 13.67 3.03L13.64 2.94Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_96">
<rect id="45#清除-clean" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_96)">
<path id="形状结合" d="M8 1.07C8.27 1.07 8.5 1.29 8.5 1.57L8.49 5.58L11.51 5.58C12.03 5.58 12.46 6.01 12.56 6.54L12.57 6.64L13.16 13.12C13.22 13.74 12.74 14.26 12.11 14.26L3.88 14.26C3.25 14.26 2.78 13.74 2.83 13.12L3.42 6.64C3.47 6.06 3.92 5.58 4.48 5.58L7.49 5.58L7.5 1.57C7.5 1.29 7.72 1.07 8 1.07ZM11.51 6.58L4.48 6.58C4.48 6.58 4.42 6.64 4.42 6.73L3.83 13.21L5.23 13.26L5.23 11.76C5.23 11.49 5.45 11.26 5.73 11.26C6 11.26 6.23 11.49 6.23 11.76L6.23 13.26L7.49 13.26L7.5 11.76C7.5 11.49 7.72 11.26 8 11.26C8.27 11.26 8.5 11.49 8.5 11.76L8.49 13.26L9.76 13.26L9.76 11.76C9.76 11.49 9.99 11.26 10.26 11.26C10.54 11.26 10.76 11.49 10.76 11.76L10.76 13.26L12.11 13.26L11.57 6.73C11.57 6.64 11.51 6.58 11.51 6.58ZM8.75 8.05C9.02 8.05 9.25 8.28 9.25 8.55C9.25 8.83 9.02 9.05 8.75 9.05L7.25 9.05C6.97 9.05 6.75 8.83 6.75 8.55C6.75 8.28 6.97 8.05 7.25 8.05L8.75 8.05Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_15">
<rect id="46#拖动手形-choose-drag" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_15)">
<path id="形状结合" d="M14.08 11.89C14.08 14.05 12.43 15.8 10.4 15.8L9.18 15.8C7.78 15.8 6.44 15.22 5.45 14.17L2.11 10.63C1.53 10.01 1.53 9.02 2.11 8.4C2.69 7.79 3.63 7.79 4.22 8.43L5.11 9.49L5.12 3.12C5.12 2.25 5.78 1.55 6.6 1.55C6.9 1.55 7.18 1.64 7.41 1.81C7.68 1.43 8.11 1.18 8.6 1.18C9.22 1.18 9.76 1.6 9.97 2.18C10.16 2.09 10.37 2.03 10.6 2.03C11.41 2.03 12.08 2.74 12.08 3.61L12.07 3.83C12.24 3.77 12.41 3.73 12.6 3.73C13.41 3.73 14.08 4.44 14.08 5.31L14.08 11.89ZM13.12 5.31C13.12 5 12.88 4.75 12.6 4.75C12.33 4.75 12.11 4.96 12.08 5.23L12.08 5.31L12.08 8.49C12.08 8.78 11.86 9 11.6 9C11.33 9 11.12 8.78 11.12 8.49L11.12 3.61C11.12 3.3 10.88 3.05 10.6 3.05C10.33 3.05 10.11 3.26 10.08 3.53L10.08 3.61L10.08 8.28C10.08 8.56 9.86 8.79 9.6 8.79C9.33 8.79 9.12 8.56 9.12 8.28L9.12 2.76C9.12 2.45 8.88 2.2 8.6 2.2C8.33 2.2 8.11 2.41 8.08 2.68L8.08 2.76C8.08 2.8 8.07 2.85 8.06 2.89C8.07 2.96 8.08 3.04 8.08 3.12L8.08 8.49C8.08 8.78 7.86 9 7.6 9C7.33 9 7.12 8.78 7.12 8.49L7.12 3.12C7.12 2.81 6.88 2.57 6.6 2.57C6.31 2.57 6.08 2.81 6.08 3.12L6.08 10.83C6.08 10.87 6.07 10.91 6.06 10.94C6.05 10.98 6.02 11.06 6.01 11.09C6 11.1 5.96 11.16 5.95 11.17L5.87 11.25C5.87 11.25 5.8 11.29 5.79 11.3C5.77 11.3 5.69 11.33 5.68 11.33C5.65 11.34 5.62 11.34 5.6 11.34C5.59 11.34 5.53 11.34 5.52 11.34C5.46 11.33 5.4 11.3 5.35 11.27L5.28 11.21L3.52 9.13C3.32 8.91 2.99 8.91 2.79 9.13C2.59 9.34 2.59 9.69 2.79 9.91L6.13 13.45C6.94 14.3 8.04 14.78 9.18 14.78L10.4 14.78C11.9 14.78 13.12 13.49 13.12 11.89L13.12 5.31Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_14">
<rect id="47#点击手形-click" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_14)">
<path id="形状结合" d="M6.71 1.11C7.53 1.11 8.19 1.78 8.19 2.59L8.19 4.41C8.36 4.35 8.53 4.31 8.71 4.31C9.34 4.31 9.88 4.7 10.09 5.25C10.28 5.16 10.49 5.11 10.71 5.11C11.34 5.11 11.88 5.5 12.09 6.05C12.28 5.96 12.49 5.91 12.71 5.91C13.53 5.91 14.19 6.58 14.19 7.39L14.19 10.19C14.19 10.22 14.19 10.25 14.19 10.28C14.19 10.31 14.19 10.34 14.19 10.37L14.19 11.19C14.19 13.23 12.55 14.87 10.51 14.87L9.3 14.87C7.9 14.87 6.56 14.32 5.57 13.33L2.23 10C1.65 9.42 1.65 8.49 2.23 7.91C2.81 7.33 3.74 7.33 4.34 7.93L5.23 8.93L5.23 2.59C5.23 1.78 5.9 1.11 6.71 1.11ZM6.71 2.07C6.43 2.07 6.19 2.31 6.19 2.59L6.19 10.19C6.19 10.23 6.19 10.26 6.18 10.3C6.17 10.33 6.14 10.41 6.13 10.44C6.12 10.45 6.08 10.51 6.07 10.51L5.99 10.58C5.98 10.59 5.92 10.63 5.91 10.63C5.89 10.64 5.81 10.66 5.79 10.67C5.77 10.67 5.74 10.67 5.71 10.67C5.7 10.67 5.65 10.67 5.64 10.67C5.58 10.66 5.52 10.64 5.47 10.61L5.4 10.55L3.64 8.59C3.44 8.38 3.11 8.38 2.91 8.59C2.71 8.79 2.71 9.12 2.91 9.32L6.25 12.65C7.06 13.46 8.15 13.91 9.3 13.91L10.51 13.91C12.02 13.91 13.23 12.7 13.23 11.19L13.23 10.37C13.23 10.34 13.24 10.31 13.24 10.28C13.24 10.25 13.23 10.22 13.23 10.19L13.23 7.39C13.23 7.11 13 6.87 12.71 6.87C12.45 6.87 12.23 7.07 12.2 7.32L12.19 7.39L12.19 9.39C12.19 9.66 11.98 9.87 11.71 9.87C11.45 9.87 11.23 9.66 11.23 9.39L11.23 6.59C11.23 6.31 11 6.07 10.71 6.07C10.45 6.07 10.23 6.27 10.2 6.52L10.19 6.59L10.19 8.59C10.19 8.86 9.98 9.07 9.71 9.07C9.45 9.07 9.23 8.86 9.23 8.59L9.23 5.79C9.23 5.51 9 5.27 8.71 5.27C8.45 5.27 8.23 5.47 8.2 5.72L8.19 5.79L8.19 7.99C8.19 8.26 7.98 8.47 7.71 8.47C7.45 8.47 7.23 8.26 7.23 7.99L7.23 2.59C7.23 2.31 7 2.07 6.71 2.07Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,15 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs/>
<rect id="48#拖动中手形-choosing" width="16.000000" height="16.000000" fill="#FFFFFF" fill-opacity="0"/>
<rect id="size" width="16.000000" height="16.000000" fill="#D8D8D8" fill-opacity="0"/>
<rect id="size" x="0.500000" y="0.500000" width="15.000000" height="15.000000" stroke="#979797" stroke-opacity="0" stroke-width="1.000000"/>
<path id="路径" d="M6.59 5.12C7.41 5.12 8.08 5.78 8.08 6.59L8.08 7.48C8.08 7.74 7.86 7.96 7.59 7.96C7.33 7.96 7.12 7.74 7.12 7.48L7.12 6.59C7.12 6.31 6.88 6.08 6.59 6.08C6.31 6.08 6.08 6.31 6.08 6.59L6.08 8.62C6.08 8.89 5.86 9.1 5.6 9.1C5.33 9.1 5.12 8.89 5.12 8.62L5.12 6.59C5.12 5.78 5.78 5.12 6.59 5.12Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
<path id="路径" d="M4.6 7.12C5.41 7.12 6.08 7.78 6.08 8.59L6.08 9.48C6.08 9.74 5.86 9.96 5.6 9.96C5.33 9.96 5.12 9.74 5.12 9.48L5.12 8.59C5.12 8.31 4.88 8.08 4.6 8.08C4.31 8.08 4.07 8.31 4.07 8.59L4.07 10.83C4.07 11.09 3.86 11.31 3.6 11.31C3.33 11.31 3.12 11.09 3.12 10.83L3.12 8.59C3.12 7.78 3.78 7.12 4.6 7.12Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
<path id="路径" d="M8.59 4.32C9.41 4.32 10.08 4.98 10.08 5.79L10.08 7.48C10.08 7.74 9.86 7.96 9.59 7.96C9.33 7.96 9.12 7.74 9.12 7.48L9.12 5.79C9.12 5.51 8.88 5.28 8.59 5.28C8.33 5.28 8.11 5.47 8.08 5.72L8.08 5.79C8.08 6.06 7.86 6.28 7.59 6.28C7.33 6.28 7.12 6.06 7.12 5.79C7.12 4.98 7.78 4.32 8.59 4.32Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
<path id="路径" d="M10.6 5.12C11.41 5.12 12.08 5.78 12.08 6.59L12.08 7.81C12.08 8.08 11.86 8.29 11.6 8.29C11.33 8.29 11.12 8.08 11.12 7.81L11.12 6.59C11.12 6.31 10.88 6.08 10.6 6.08C10.33 6.08 10.11 6.27 10.08 6.52L10.08 6.59C10.08 6.86 9.86 7.08 9.59 7.08C9.33 7.08 9.12 6.86 9.12 6.59C9.12 5.78 9.78 5.12 10.6 5.12Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
<path id="路径" d="M12.6 6.31C13.41 6.31 14.08 6.97 14.08 7.79L14.08 10.2C14.08 10.46 13.86 10.68 13.6 10.68C13.33 10.68 13.12 10.46 13.12 10.2L13.12 7.79C13.12 7.5 12.88 7.27 12.6 7.27C12.33 7.27 12.11 7.46 12.08 7.72L12.08 7.91C12.08 8.18 11.86 8.39 11.6 8.39C11.33 8.39 11.12 8.18 11.12 7.91C11.12 7.09 11.78 6.31 12.6 6.31Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
<path id="路径" d="M4.59 7.5C5.63 7.5 6.1 8.28 6.1 9.31C6.1 9.59 5.87 9.81 5.6 9.81C5.32 9.81 5.1 9.59 5.1 9.31C5.1 8.76 4.94 8.5 4.59 8.5C4.28 8.5 4.11 8.74 4.1 9.19L4.1 11.02C4.1 12.38 6.27 14 9.12 14.04C10.28 14.05 12.1 13.47 12.62 12.77C12.69 12.68 12.78 12.44 12.86 12.09L12.93 11.76L12.96 11.58L13.1 9.28C13.11 9.01 13.35 8.8 13.62 8.81C13.87 8.83 14.06 9.02 14.09 9.25L14.09 9.34L13.96 11.69C13.82 12.52 13.65 13.07 13.43 13.37C12.67 14.39 10.56 15.05 9.11 15.04C5.85 15 3.24 13.1 3.1 11.17L3.1 11.02L3.1 9.33C3.06 8.33 3.55 7.5 4.59 7.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_119">
<rect id="49#设置|齿轮-setting" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_119)">
<path id="形状结合" d="M8.87 1.19C9.42 1.19 9.92 1.48 10.21 1.98L10.28 2.12L10.69 3.09L10.91 3.21L11.97 3.09C12.43 3.03 12.9 3.19 13.24 3.53L13.35 3.66L13.45 3.8L14.35 5.35C14.62 5.81 14.62 6.39 14.34 6.89L14.25 7.03L13.61 7.88L13.61 8.11L14.25 8.96C14.53 9.34 14.62 9.82 14.5 10.29L14.45 10.44L14.37 10.6L13.47 12.15C13.2 12.63 12.69 12.91 12.12 12.91L11.97 12.9L10.91 12.78L10.69 12.9L10.28 13.87C10.09 14.3 9.72 14.62 9.25 14.75L9.09 14.78L8.92 14.8L7.12 14.8C6.57 14.8 6.07 14.51 5.78 14.01L5.71 13.87L5.29 12.9L5.08 12.78L4.02 12.9C3.56 12.96 3.09 12.8 2.75 12.46L2.64 12.33L2.54 12.19L1.64 10.64C1.37 10.18 1.37 9.6 1.65 9.1L1.74 8.96L2.38 8.11L2.38 7.88L1.74 7.03C1.46 6.65 1.37 6.17 1.49 5.7L1.54 5.55L1.62 5.39L2.52 3.84C2.79 3.36 3.3 3.08 3.87 3.08L4.02 3.09L5.08 3.21L5.29 3.09L5.71 2.12C5.9 1.69 6.27 1.37 6.74 1.24L6.9 1.21L7.08 1.19L8.87 1.19ZM7.13 2.19L7.03 2.2C6.85 2.23 6.7 2.35 6.63 2.51L6.15 3.64C6.1 3.74 6.03 3.82 5.94 3.88L5.44 4.16C5.34 4.22 5.24 4.24 5.13 4.23L3.93 4.08L3.84 4.08C3.65 4.08 3.48 4.18 3.38 4.34L2.51 5.84L2.47 5.93C2.4 6.09 2.43 6.28 2.54 6.43L3.28 7.41C3.35 7.49 3.38 7.6 3.38 7.71L3.38 8.28C3.38 8.39 3.35 8.5 3.28 8.58L2.56 9.54L2.5 9.62C2.41 9.78 2.41 9.98 2.51 10.14L3.38 11.64L3.43 11.72C3.54 11.86 3.72 11.93 3.9 11.91L5.13 11.76C5.24 11.75 5.34 11.77 5.44 11.83L5.94 12.11C6.03 12.17 6.1 12.25 6.15 12.35L6.62 13.45L6.66 13.53C6.75 13.7 6.93 13.8 7.12 13.8L8.86 13.8L8.96 13.79C9.14 13.76 9.29 13.64 9.36 13.48L9.84 12.35C9.88 12.25 9.96 12.17 10.05 12.11L10.55 11.83C10.65 11.77 10.75 11.75 10.86 11.76L12.06 11.91L12.15 11.91C12.34 11.91 12.51 11.81 12.61 11.65L13.48 10.15L13.52 10.06C13.58 9.9 13.56 9.71 13.45 9.56L12.71 8.58C12.64 8.5 12.61 8.39 12.61 8.28L12.61 7.71C12.61 7.6 12.64 7.49 12.71 7.41L13.43 6.45L13.49 6.37C13.58 6.21 13.58 6.01 13.48 5.85L12.61 4.35L12.56 4.27C12.44 4.13 12.27 4.06 12.09 4.08L10.86 4.23C10.75 4.24 10.65 4.22 10.55 4.16L10.05 3.88C9.96 3.82 9.88 3.74 9.84 3.64L9.37 2.54L9.33 2.46C9.24 2.29 9.06 2.19 8.87 2.19L7.13 2.19ZM8.03 5.38C9.48 5.38 10.65 6.55 10.65 8C10.65 9.44 9.48 10.61 8.03 10.61C6.59 10.61 5.42 9.44 5.42 8C5.42 6.55 6.59 5.38 8.03 5.38ZM8.03 6.38C7.14 6.38 6.42 7.1 6.42 8C6.42 8.89 7.14 9.61 8.03 9.61C8.93 9.61 9.65 8.89 9.65 8C9.65 7.1 8.93 6.38 8.03 6.38Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_109">
<rect id="5#日期-date" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_109)">
<path id="形状结合" d="M10.51 1.69C10.78 1.69 11.01 1.92 11.01 2.19L11.01 2.99L12.5 2.99C13.83 2.99 14.92 4.04 14.99 5.36L15 5.49L15 11.49C15 12.87 13.88 13.99 12.5 13.99L3.5 13.99C2.11 13.99 1 12.87 1 11.49L1 5.49C1 4.11 2.11 2.99 3.5 2.99L5.01 2.99L5.01 2.19C5.01 1.92 5.23 1.69 5.51 1.69C5.78 1.69 6.01 1.92 6.01 2.19L6.01 2.99L10.01 2.99L10.01 2.19C10.01 1.92 10.23 1.69 10.51 1.69ZM5.01 3.99L3.5 3.99C2.67 3.99 2 4.67 2 5.49L2 11.49C2 12.32 2.67 12.99 3.5 12.99L12.5 12.99C13.32 12.99 14 12.32 14 11.49L14 5.49C14 4.67 13.32 3.99 12.5 3.99L11.01 3.99L11.01 4.19C11.01 4.47 10.78 4.69 10.51 4.69C10.23 4.69 10.01 4.47 10.01 4.19L10.01 3.99L6.01 3.99L6.01 4.19C6.01 4.47 5.78 4.69 5.51 4.69C5.23 4.69 5.01 4.47 5.01 4.19L5.01 3.99ZM4.88 9.2C5.32 9.2 5.68 9.55 5.68 10C5.68 10.44 5.32 10.8 4.88 10.8C4.44 10.8 4.08 10.44 4.08 10C4.08 9.55 4.44 9.2 4.88 9.2ZM8.01 9.2C8.45 9.2 8.81 9.55 8.81 10C8.81 10.44 8.45 10.8 8.01 10.8C7.57 10.8 7.21 10.44 7.21 10C7.21 9.55 7.57 9.2 8.01 9.2ZM11.11 9.2C11.55 9.2 11.91 9.55 11.91 10C11.91 10.44 11.55 10.8 11.11 10.8C10.67 10.8 10.31 10.44 10.31 10C10.31 9.55 10.67 9.2 11.11 9.2ZM4.91 6.19C5.35 6.19 5.71 6.55 5.71 6.99C5.71 7.44 5.35 7.79 4.91 7.79C4.47 7.79 4.11 7.44 4.11 6.99C4.11 6.55 4.47 6.19 4.91 6.19ZM8.01 6.19C8.45 6.19 8.81 6.55 8.81 6.99C8.81 7.44 8.45 7.79 8.01 7.79C7.57 7.79 7.21 7.44 7.21 6.99C7.21 6.55 7.57 6.19 8.01 6.19ZM11.11 6.19C11.55 6.19 11.91 6.55 11.91 6.99C11.91 7.44 11.55 7.79 11.11 7.79C10.67 7.79 10.31 7.44 10.31 6.99C10.31 6.55 10.67 6.19 11.11 6.19Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_169">
<rect id="50#修复-repair" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_169)">
<path id="形状结合" d="M12.97 4.37L11.53 5.81C11.18 6.15 10.62 6.15 10.27 5.81C9.92 5.46 9.92 4.9 10.27 4.55L11.71 3.11C11.95 2.87 11.89 2.46 11.58 2.31C9.76 1.41 7.55 1.76 6.09 3.22L5.93 3.39C4.85 4.58 4.45 6.22 4.83 7.76L4.87 7.88L2.63 10.12C1.71 11.04 1.71 12.53 2.63 13.45L2.74 13.56C3.67 14.37 5.07 14.33 5.95 13.45L8.19 11.21L8.32 11.25C9.93 11.64 11.65 11.19 12.86 9.99C14.31 8.53 14.66 6.32 13.77 4.5C13.62 4.19 13.21 4.12 12.97 4.37ZM13.13 5.62C13.44 6.88 13.11 8.32 12.15 9.28C11.11 10.32 9.58 10.65 8.22 10.17C8.04 10.11 7.84 10.16 7.7 10.29L5.24 12.74C4.72 13.27 3.86 13.27 3.33 12.74C2.8 12.22 2.8 11.36 3.33 10.83L5.79 8.38C5.92 8.24 5.97 8.04 5.9 7.86C5.43 6.5 5.76 4.97 6.8 3.93L6.95 3.79C7.9 2.93 9.2 2.63 10.4 2.93L9.56 3.84C8.83 4.58 8.83 5.78 9.56 6.51C10.3 7.25 11.5 7.25 12.23 6.51L13.13 5.62Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_151">
<rect id="6#书签-bookmark" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_151)">
<path id="形状" d="M10.65 1.33L5.16 1.33C3.78 1.33 2.66 2.45 2.66 3.83L2.66 13.38C2.66 13.58 2.72 13.78 2.84 13.95L2.89 14.02C3.21 14.42 3.8 14.5 4.23 14.2L7.91 11.65L11.59 14.2C11.75 14.32 11.95 14.38 12.16 14.38C12.71 14.38 13.16 13.94 13.16 13.38L13.16 3.83C13.16 2.45 12.03 1.33 10.65 1.33ZM12.15 13.38L8.19 10.62C8.01 10.5 7.79 10.5 7.61 10.62L3.65 13.38L3.65 3.83C3.65 3 4.32 2.33 5.15 2.33L10.65 2.33C11.47 2.33 12.15 3 12.15 3.83L12.15 13.38ZM10.65 5.83C10.65 6.1 10.43 6.33 10.15 6.33L5.65 6.33C5.38 6.33 5.15 6.1 5.15 5.83C5.15 5.56 5.38 5.33 5.65 5.33L10.15 5.33C10.43 5.33 10.65 5.56 10.65 5.83Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_204">
<rect id="60#置顶|顶部-top" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_204)">
<path id="形状结合" d="M12.76 1.15C13.04 1.15 13.26 1.37 13.26 1.65C13.26 1.93 13.04 2.15 12.76 2.15L3.22 2.15C2.95 2.15 2.72 1.93 2.72 1.65C2.72 1.37 2.95 1.15 3.22 1.15L12.76 1.15ZM6.85 3.92L2.05 9.09C1.93 9.22 1.86 9.4 1.86 9.58L1.87 9.65C1.91 10.01 2.21 10.29 2.57 10.29L4.84 10.29L4.84 13.31C4.84 14.17 5.54 14.87 6.4 14.87L9.58 14.87L9.69 14.87C10.5 14.81 11.14 14.14 11.14 13.31L11.14 10.29L13.42 10.29C13.6 10.29 13.77 10.22 13.9 10.1C14.19 9.83 14.2 9.38 13.94 9.09L9.14 3.92L9.06 3.84C8.43 3.26 7.44 3.29 6.85 3.92ZM8.38 4.58L12.75 9.29L10.64 9.29C10.37 9.29 10.14 9.51 10.14 9.79L10.14 13.31C10.14 13.62 9.89 13.87 9.58 13.87L6.4 13.87C6.1 13.87 5.84 13.62 5.84 13.31L5.84 9.79L5.84 9.72C5.81 9.48 5.6 9.29 5.34 9.29L3.23 9.29L7.58 4.6C7.8 4.38 8.15 4.36 8.38 4.58Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_148">
<rect id="61#推荐|喜欢-like" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_148)">
<path id="c" d="M2.84 14.67C2.02 14.67 1.35 14.02 1.33 13.21L1.33 13.1L1.33 8.11C1.33 7.28 1.97 6.6 2.78 6.54L2.89 6.54L4.46 6.54L5.46 5.62C5.89 5.23 6.18 4.72 6.32 4.16L6.35 4.01L6.63 2.43C6.78 1.59 7.68 1.12 8.46 1.47C9.44 1.91 10.02 2.94 9.92 4.01L9.9 4.15L9.7 5.46C9.7 5.46 9.3 7.14 9.14 7.22C8.93 7.32 8.86 7.54 8.61 7.5C8.36 7.46 8.04 7.22 8.21 6.82L8.56 5.86C8.56 5.86 8.71 5.3 8.71 5.26L8.9 4C9 3.31 8.63 2.64 8.01 2.37C7.86 2.3 7.68 2.38 7.62 2.54L7.3 4.27C7.17 5.02 6.8 5.71 6.25 6.23L6.12 6.36L5.14 7.26L5.14 13.67L11.79 13.67C12.27 13.67 12.7 13.35 12.83 12.88L12.85 12.78L13.62 8.86C13.75 8.2 13.28 7.59 12.64 7.54L8.61 7.5C8.33 7.5 8.14 7.32 8.14 7.04C8.14 6.79 8.33 6.58 8.57 6.54L12.59 6.54C13.86 6.54 14.83 7.68 14.62 8.94L14.6 9.06L13.83 12.98C13.64 13.92 12.85 14.61 11.91 14.67L11.79 14.67L2.84 14.67ZM4.14 7.54L2.88 7.54C2.6 7.54 2.36 7.76 2.33 8.04L2.33 13.1C2.33 13.39 2.54 13.63 2.82 13.67L4.15 13.67L4.14 7.54Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_16">
<rect id="62#店铺-shop" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_16)">
<path id="形状结合" d="M11.3 2.3C12.51 2.3 13.55 3.17 13.76 4.37C13.92 5.25 14 5.9 14 6.35C14 6.88 13.8 7.33 13.47 7.65C13.49 7.7 13.5 7.75 13.5 7.8L13.5 11.05C13.5 12.51 12.27 13.69 10.77 13.69L5.22 13.69C3.72 13.69 2.5 12.51 2.5 11.05L2.5 7.8C2.5 7.75 2.5 7.7 2.52 7.65C2.19 7.33 2 6.88 2 6.35C2 5.9 2.07 5.25 2.23 4.37C2.44 3.17 3.48 2.3 4.69 2.3L11.3 2.3ZM9.82 7.59L9.74 7.66C9.3 8.07 8.65 8.3 7.98 8.3L7.88 8.3C7.25 8.27 6.66 8.04 6.25 7.66L6.17 7.59C5.75 8.01 5.07 8.27 4.36 8.3L4.22 8.3C3.97 8.3 3.72 8.27 3.5 8.21L3.5 11.05C3.5 11.95 4.26 12.69 5.22 12.69L10.77 12.69C11.73 12.69 12.5 11.95 12.5 11.05L12.5 8.21C12.27 8.27 12.02 8.3 11.77 8.3C11 8.3 10.27 8.04 9.82 7.59ZM11.3 3.3L4.69 3.3C3.96 3.3 3.34 3.82 3.21 4.54C3.07 5.37 3 5.97 3 6.35C3 6.93 3.5 7.3 4.22 7.3C5.05 7.3 5.66 6.93 5.66 6.35L5.67 6.27C5.74 5.69 6.66 5.71 6.66 6.35L6.67 6.44C6.72 6.91 7.26 7.27 7.91 7.3L8 7.3C8.71 7.3 9.33 6.89 9.33 6.35L9.33 6.27C9.41 5.69 10.33 5.71 10.33 6.35L10.33 6.44C10.39 6.97 10.98 7.3 11.77 7.3C12.49 7.3 13 6.93 13 6.35C13 6.04 12.95 5.56 12.84 4.94L12.78 4.54C12.65 3.82 12.03 3.3 11.3 3.3Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_42">
<rect id="63#购物车-cart" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_42)">
<path id="形状结合" d="M3.1 2.5C3.87 2.5 4.51 3.07 4.6 3.82L4.64 4.2L12.62 4.2C13.45 4.2 14.12 4.87 14.12 5.7C14.12 5.85 14.1 6.01 14.05 6.16L13.19 8.81C13 9.39 12.47 9.79 11.85 9.84L5.37 10.25L5.38 10.36C5.41 10.61 5.62 10.8 5.88 10.8L13.08 10.8C13.36 10.8 13.58 11.02 13.58 11.3C13.58 11.58 13.36 11.8 13.08 11.8L5.88 11.8C5.12 11.8 4.48 11.23 4.39 10.48L3.6 3.94C3.57 3.69 3.37 3.5 3.1 3.5L2.5 3.5C2.22 3.5 2 3.28 2 3C2 2.71 2.22 2.5 2.5 2.5L3.1 2.5ZM5.26 9.25L11.79 8.84C11.99 8.83 12.17 8.68 12.23 8.5L13.09 5.85C13.11 5.81 13.11 5.76 13.11 5.7C13.11 5.41 12.89 5.2 12.61 5.2L4.76 5.2L5.26 9.25ZM5.79 13.9C6.23 13.9 6.6 13.54 6.6 13.1C6.6 12.66 6.23 12.3 5.79 12.3C5.35 12.3 5 12.66 5 13.1C5 13.54 5.35 13.9 5.79 13.9ZM11.8 13.9C12.24 13.9 12.6 13.54 12.6 13.1C12.6 12.66 12.24 12.3 11.8 12.3C11.36 12.3 11 12.66 11 13.1C11 13.54 11.36 13.9 11.8 13.9Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_131">
<rect id="64#售罄-soldout" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_131)">
<path id="形状结合" d="M5.79 12.3C6.23 12.3 6.6 12.66 6.6 13.1C6.6 13.54 6.23 13.9 5.79 13.9C5.35 13.9 5 13.54 5 13.1C5 12.66 5.35 12.3 5.79 12.3ZM11.8 12.3C12.24 12.3 12.6 12.66 12.6 13.1C12.6 13.54 12.24 13.9 11.8 13.9C11.36 13.9 11 13.54 11 13.1C11 12.66 11.36 12.3 11.8 12.3ZM10.92 2.19C11.19 2.26 11.35 2.54 11.27 2.8L10.9 4.2L12.62 4.2C13.45 4.2 14.12 4.87 14.12 5.7C14.12 5.86 14.1 6.01 14.05 6.17L13.19 8.81C13 9.39 12.47 9.8 11.85 9.84L9.35 10L9.14 10.8L13.1 10.8C13.38 10.8 13.6 11.02 13.6 11.3C13.6 11.58 13.38 11.8 13.1 11.8L8.87 11.8L8.68 12.46C8.62 12.73 8.34 12.89 8.07 12.81C7.81 12.74 7.64 12.46 7.73 12.2L7.84 11.8L5.89 11.8C5.14 11.8 4.5 11.23 4.41 10.48L3.6 3.94C3.57 3.69 3.37 3.5 3.1 3.5L2.5 3.5C2.22 3.5 2 3.28 2 3C2 2.72 2.22 2.5 2.5 2.5L3.1 2.5C3.87 2.5 4.51 3.07 4.6 3.82L4.64 4.2L9.87 4.2L10.32 2.54C10.38 2.27 10.66 2.12 10.92 2.19ZM8.29 10.06L5.37 10.24L5.38 10.35C5.41 10.6 5.62 10.79 5.88 10.79L8.09 10.79L8.29 10.06ZM9.6 5.2L4.76 5.2L5.26 9.25L8.57 9.04L9.6 5.2ZM12.62 5.2L10.63 5.2L9.62 8.98L11.79 8.84C11.99 8.83 12.17 8.69 12.23 8.5L13.09 5.86C13.11 5.81 13.11 5.76 13.11 5.7C13.12 5.42 12.9 5.2 12.62 5.2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_115">
<rect id="65#手提包|商品-bag" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_115)">
<path id="形状结合" d="M8 1.5C9.56 1.5 10.86 2.62 11.18 4.12L12 4.12C12.8 4.12 13.45 4.74 13.5 5.53L13.93 12.91C13.98 13.73 13.35 14.44 12.52 14.49L3.56 14.5C2.73 14.5 2.06 13.82 2.06 13L2.49 5.53C2.54 4.74 3.19 4.12 3.99 4.12L4.82 4.12C5.13 2.62 6.43 1.5 8 1.5ZM12 5.12L11.24 5.12L11.25 6.63C11.25 6.9 11.02 7.13 10.75 7.13C10.47 7.13 10.25 6.9 10.25 6.63L10.24 5.12L5.74 5.12L5.75 6.63C5.75 6.9 5.52 7.13 5.25 7.13C4.97 7.13 4.75 6.9 4.75 6.63L4.74 5.12L3.99 5.12C3.75 5.12 3.54 5.29 3.5 5.53L3.06 12.98L3.06 13.06C3.09 13.31 3.3 13.5 3.56 13.5L12.46 13.49C12.74 13.48 12.95 13.24 12.93 12.97L12.5 5.59C12.49 5.33 12.27 5.12 12 5.12ZM8 2.5C6.99 2.5 6.13 3.18 5.85 4.12L10.14 4.12C9.86 3.18 9 2.5 8 2.5Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_94">
<rect id="66#钱包-wallet" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_94)">
<path id="形状结合" d="M6.8 1C7.56 0.38 8.67 0.44 9.36 1.14L9.57 1.34C9.88 1.68 10.38 1.76 10.78 1.54L10.93 1.47C11.7 1.17 12.57 1.42 13.07 2.08L13.15 2.19C13.72 2.97 13.66 4.04 13 4.74L12.27 5.47C13.89 6.83 14.94 8.88 15 11L15 11.29C15 13.41 13.46 15.21 11.36 15.53L10.78 15.61C8.76 15.87 6.71 15.85 4.69 15.54C2.58 15.22 0.97 13.39 1 11.25C1 9.04 1.98 6.95 3.68 5.54L3 4.74C2.38 4.09 2.26 3.11 2.72 2.34L2.82 2.2L2.9 2.09C3.43 1.38 4.4 1.15 5.19 1.55C5.6 1.75 6.09 1.67 6.41 1.35L6.63 1.14L6.8 1ZM11.32 6L4.68 6L4.32 6.3C2.91 7.47 2.07 9.17 2 11L2 11.27C2.01 12.89 3.19 14.25 4.79 14.5L5.42 14.59C7.33 14.83 9.27 14.8 11.18 14.51L11.39 14.51C12.93 14.19 14.02 12.82 14 11.25C14 9.34 13.15 7.52 11.68 6.3L11.32 6ZM6.23 7L8 8.79L9.77 7C9.9 6.87 10.08 6.83 10.25 6.87C10.42 6.92 10.55 7.05 10.6 7.22C10.65 7.39 10.6 7.57 10.47 7.7L9.21 9L10.5 9C10.78 9 11 9.22 11 9.5C11 9.78 10.78 10 10.5 10L8.5 10L8.5 11L10.5 11C10.78 11 11 11.22 11 11.5C11 11.78 10.78 12 10.5 12L8.5 12L8.5 13.5C8.5 13.78 8.28 14 8 14C7.72 14 7.5 13.78 7.5 13.5L7.5 12L5.5 12C5.22 12 5 11.78 5 11.5C5 11.22 5.22 11 5.5 11L7.5 11L7.5 10L5.5 10C5.22 10 5 9.78 5 9.5C5 9.22 5.22 9 5.5 9L6.79 9L5.53 7.73C5.34 7.54 5.34 7.22 5.53 7.03C5.72 6.84 6.04 6.81 6.23 7ZM8.65 1.85C8.33 1.53 7.81 1.49 7.45 1.77L7.15 2.06C6.57 2.64 5.7 2.82 4.94 2.52L4.78 2.44C4.42 2.26 3.98 2.37 3.73 2.69L3.65 2.8C3.39 3.17 3.42 3.67 3.74 4L4.74 5L11.32 5L12.32 4C12.6 3.69 12.67 3.24 12.48 2.87L12.33 2.66C12.09 2.36 11.68 2.26 11.33 2.42C10.54 2.83 9.58 2.67 8.97 2.03L8.65 1.85Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_78">
<rect id="67#礼包-gift" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_78)">
<path id="形状结合" d="M12.67 2.07L13.03 2.43C13.61 3.01 13.61 3.96 13.03 4.55L12.26 5.31L13 5.31C13.79 5.31 14.44 5.93 14.49 6.71L14.5 6.81L14.5 12.91C14.5 13.74 13.82 14.41 13 14.41L3 14.41C2.17 14.41 1.5 13.74 1.5 12.91L1.5 6.81C1.5 5.98 2.17 5.31 3 5.31L3.73 5.31L2.96 4.55C2.38 3.96 2.38 3.01 2.96 2.43L3.32 2.08C3.9 1.49 4.85 1.49 5.44 2.08L8 4.63L10.55 2.07C11.14 1.49 12.09 1.49 12.67 2.07ZM7.5 6.31L3 6.31C2.72 6.31 2.5 6.54 2.5 6.81L2.5 12.91C2.5 13.19 2.72 13.41 3 13.41L7.5 13.41L7.5 6.31ZM13 6.31L8.5 6.31L8.5 13.41L13 13.41C13.25 13.41 13.46 13.22 13.49 12.98L13.5 12.91L13.5 6.81C13.5 6.54 13.27 6.31 13 6.31ZM11.26 2.78L8.73 5.31L10.85 5.31L12.32 3.84C12.52 3.65 12.52 3.33 12.32 3.14L11.97 2.78C11.77 2.59 11.46 2.59 11.26 2.78ZM4.02 2.78L3.67 3.14C3.47 3.33 3.47 3.65 3.67 3.84L5.14 5.31L7.26 5.31L4.73 2.78C4.53 2.59 4.22 2.59 4.02 2.78Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_171">
<rect id="68#支付|续费-payment" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_171)">
<path id="形状结合" d="M12.9 2.19C14.1 2.19 15 3.19 15 4.39L15 11.69C15 12.89 14.1 13.79 12.9 13.79L3.1 13.79C1.89 13.79 1 12.89 1 11.69L1 4.39C1 3.19 1.89 2.19 3.1 2.19L12.9 2.19ZM14 6.49L2 6.49L2 11.69C2 12.29 2.5 12.79 3.1 12.79L12.9 12.79C13.5 12.79 14 12.29 14 11.69L14 6.49ZM12.1 9.99C12.4 9.99 12.6 10.19 12.6 10.49C12.6 10.79 12.4 10.99 12.1 10.99L10.1 10.99C9.8 10.99 9.6 10.79 9.6 10.49C9.6 10.19 9.8 9.99 10.1 9.99L12.1 9.99ZM12.9 3.29L3.1 3.29C2.5 3.29 2 3.79 2 4.39L2 5.59L14 5.59L14 4.39C14 3.79 13.5 3.29 12.9 3.29Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_222">
<rect id="69#vscode-vscode" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_222)">
<path id="path" d="M11.5 14.49C11.38 14.49 11.27 14.45 11.18 14.37L1.18 5.87C0.97 5.69 0.94 5.38 1.12 5.17C1.3 4.96 1.61 4.93 1.82 5.11L11.57 13.4L14 12.19L14 3.8L11.57 2.59L6.28 7.08C6.07 7.26 5.75 7.23 5.58 7.02C5.4 6.81 5.43 6.49 5.64 6.32L11.18 1.61C11.33 1.48 11.55 1.46 11.73 1.54L14.73 3.04C14.9 3.12 15.01 3.3 15.01 3.49L15.01 12.49C15.01 12.68 14.9 12.85 14.73 12.94L11.73 14.44C11.66 14.48 11.57 14.49 11.5 14.49ZM1.5 10.99C1.36 10.99 1.22 10.93 1.12 10.81C0.94 10.6 0.97 10.28 1.18 10.1L2.68 8.82C2.89 8.64 3.2 8.67 3.38 8.88C3.56 9.09 3.53 9.41 3.32 9.59L1.82 10.87C1.73 10.95 1.61 10.99 1.5 10.99ZM11.5 10.99C11.4 10.99 11.3 10.96 11.21 10.9L7.71 8.4C7.58 8.31 7.5 8.15 7.5 7.99C7.5 7.83 7.58 7.68 7.71 7.58L11.21 5.08C11.36 4.97 11.56 4.96 11.73 5.04C11.9 5.13 12 5.3 12 5.48L12 10.48C12 10.67 11.9 10.84 11.73 10.92C11.66 10.96 11.58 10.99 11.5 10.99ZM8.86 7.99L11 9.52L11 6.46L8.86 7.99Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_125">
<rect id="7#指南-guide" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_125)">
<path id="形状结合" d="M11.27 1.5C12.36 1.5 13.25 2.37 13.25 3.45L13.25 10.74C13.25 11.82 12.36 12.69 11.27 12.69L4.97 12.69C4.7 12.69 4.47 12.47 4.47 12.19C4.47 11.92 4.7 11.69 4.97 11.69L11.27 11.69C11.81 11.69 12.25 11.26 12.25 10.74L12.25 3.45C12.25 2.93 11.81 2.5 11.27 2.5L11.24 6C11.24 6.42 10.74 6.65 10.41 6.37L9.24 5.37L8.07 6.37C7.77 6.63 7.31 6.45 7.25 6.08L7.25 5.99L7.25 2.49L4.72 2.5C4.18 2.5 3.75 2.93 3.75 3.45L3.75 12.53C3.75 13.06 4.18 13.49 4.72 13.49L12.75 13.49C13.02 13.49 13.25 13.72 13.25 13.99C13.25 14.27 13.02 14.49 12.75 14.49L4.72 14.49C3.63 14.49 2.75 13.62 2.75 12.53L2.75 3.45C2.75 2.37 3.63 1.5 4.72 1.5L11.27 1.5ZM10.24 2.49L8.25 2.49L8.25 4.91L8.92 4.33C9.08 4.19 9.32 4.18 9.5 4.28L9.57 4.33L10.24 4.91L10.24 2.49Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_203">
<rect id="70#助手-assistant" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_203)">
<path id="path" d="M12.5 12.99L3.5 12.99C2.11 12.99 1 11.87 1 10.49L1 6.49C1 5.11 2.11 3.99 3.5 3.99L12.5 3.99C13.88 3.99 15 5.11 15 6.49L15 10.49C15 11.87 13.88 12.99 12.5 12.99ZM3.5 4.99C2.67 4.99 2 5.66 2 6.49L2 10.49C2 11.32 2.67 11.99 3.5 11.99L12.5 11.99C13.33 11.99 14 11.32 14 10.49L14 6.49C14 5.66 13.33 4.99 12.5 4.99L3.5 4.99ZM3.98 1.06C4.25 0.99 4.51 1.15 4.59 1.41L5.37 4.31C5.44 4.58 5.28 4.85 5.01 4.92C4.75 4.99 4.48 4.83 4.41 4.57L3.63 1.67C3.56 1.4 3.72 1.13 3.98 1.06ZM12.02 1.06C11.75 0.99 11.48 1.15 11.41 1.41L10.63 4.31C10.56 4.58 10.72 4.85 10.98 4.92C11.25 4.99 11.52 4.83 11.59 4.57L12.37 1.67C12.44 1.4 12.28 1.13 12.02 1.06ZM3.5 13.99L12.5 13.99C12.78 13.99 13 14.21 13 14.49C13 14.77 12.78 14.99 12.5 14.99L3.5 14.99C3.22 14.99 3 14.77 3 14.49C3 14.21 3.22 13.99 3.5 13.99ZM3.5 3.99L12.5 3.99C12.78 3.99 13 4.21 13 4.49C13 4.77 12.78 4.99 12.5 4.99L3.5 4.99C3.22 4.99 3 4.77 3 4.49C3 4.21 3.22 3.99 3.5 3.99ZM5.5 6.99C5.78 6.99 6 7.21 6 7.49L6 9.49C6 9.77 5.78 9.99 5.5 9.99C5.22 9.99 5 9.77 5 9.49L5 7.49C5 7.21 5.22 6.99 5.5 6.99ZM10.5 6.99C10.78 6.99 11 7.21 11 7.49L11 9.49C11 9.77 10.78 9.99 10.5 9.99C10.22 9.99 10 9.77 10 9.49L10 7.49C10 7.21 10.22 6.99 10.5 6.99Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_211">
<rect id="71#转码-transcode" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_211)">
<path id="形状结合" d="M14 3.5C14.27 3.5 14.5 3.72 14.5 4L14.5 11C14.5 12.38 13.38 13.5 12 13.5L5.27 13.5L5.87 14.16C6.03 14.35 6.04 14.63 5.88 14.81C5.67 15 5.31 15.03 5.12 14.83L3.78 13.33C3.61 13.14 3.61 12.85 3.78 12.66L5.12 11.16C5.31 10.96 5.62 10.94 5.83 11.12C5.97 11.31 6.03 11.65 5.87 11.83L5.27 12.5L12 12.5C12.82 12.5 13.5 11.82 13.5 11L13.5 4C13.5 3.72 13.72 3.5 14 3.5ZM10.87 1.16L12.21 2.66C12.38 2.85 12.38 3.14 12.21 3.33L10.87 4.83C10.68 5.03 10.37 5.05 10.16 4.87C9.96 4.68 9.94 4.37 10.12 4.16L10.72 3.5L4 3.5C3.17 3.5 2.5 4.17 2.5 5L2.5 12C2.5 12.27 2.27 12.5 2 12.5C1.72 12.5 1.5 12.27 1.5 12L1.5 5C1.5 3.61 2.61 2.5 4 2.5L10.72 2.5L10.12 1.83C9.96 1.65 9.95 1.38 10.1 1.19C10.31 1 10.68 0.96 10.87 1.16ZM6.9 5.76C7 5.76 7.1 5.78 7.18 5.83L10.13 7.44C10.43 7.61 10.54 7.98 10.38 8.29C10.33 8.4 10.24 8.49 10.13 8.55L7.18 10.16C6.89 10.32 6.52 10.21 6.37 9.9C6.32 9.81 6.29 9.71 6.29 9.61L6.29 6.38C6.29 6.03 6.57 5.76 6.9 5.76Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_215">
<rect id="72#指示器-Indicator " width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_215)">
<path id="形状" d="M8 3.5C10.48 3.5 12.5 5.51 12.5 8C12.5 8.27 12.27 8.5 12 8.5C11.72 8.5 11.5 8.27 11.5 8C11.5 6.06 9.93 4.5 8 4.5C6.06 4.5 4.5 6.06 4.5 8C4.5 8.27 4.27 8.5 4 8.5C3.72 8.5 3.5 8.27 3.5 8C3.5 5.51 5.51 3.5 8 3.5ZM8 9.68C7.63 9.68 7.33 9.98 7.33 10.35C7.33 10.72 7.63 11.02 8 11.02C8.36 11.02 8.66 10.72 8.66 10.35C8.66 9.98 8.36 9.68 8 9.68ZM8 6C8.25 6 8.46 6.18 8.49 6.43L8.49 8.76C9.16 8.97 9.66 9.6 9.66 10.35C9.66 11.27 8.91 12.02 7.99 12.02C7.07 12.02 6.32 11.27 6.32 10.35C6.32 9.6 6.82 8.97 7.49 8.76L7.49 6.5C7.49 6.22 7.72 6 8 6ZM8 2.33C4.87 2.33 2.33 4.87 2.33 8C2.33 11.12 4.87 13.66 8 13.66C11.12 13.66 13.66 11.12 13.66 8C13.66 4.87 11.12 2.33 8 2.33ZM8 1.33C11.68 1.33 14.66 4.32 14.66 8C14.66 11.68 11.68 14.66 8 14.66C4.32 14.66 1.33 11.68 1.33 8C1.33 4.32 4.32 1.33 8 1.33Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_213">
<rect id="73#堆叠|图层-stack" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_213)">
<path id="形状" d="M8.62 2.48C8.24 2.28 7.76 2.28 7.38 2.48L2.51 5.12C2.45 5.15 2.41 5.19 2.38 5.24C2.29 5.39 2.34 5.58 2.51 5.67L7.38 8.3C7.77 8.51 8.24 8.51 8.62 8.3L13.5 5.67C13.56 5.64 13.6 5.6 13.63 5.54C13.72 5.4 13.66 5.21 13.5 5.12L8.62 2.48ZM6.9 1.6C7.58 1.24 8.42 1.24 9.1 1.6L13.97 4.24C14.64 4.6 14.87 5.42 14.48 6.06C14.36 6.26 14.18 6.43 13.97 6.55L9.1 9.18C8.42 9.55 7.58 9.55 6.9 9.18L2.03 6.55C1.36 6.19 1.13 5.37 1.52 4.73C1.64 4.52 1.82 4.36 2.03 4.24L6.9 1.6ZM13.96 8.24C14.21 8.11 14.51 8.21 14.64 8.46C14.76 8.7 14.66 9 14.42 9.13L9 11.9C8.37 12.22 7.61 12.22 6.98 11.88L1.82 9.12C1.57 9 1.48 8.69 1.61 8.45C1.74 8.2 2.04 8.12 2.28 8.24L7.45 11C7.79 11.18 8.2 11.18 8.54 11L13.96 8.24ZM13.96 10.79C14.21 10.66 14.51 10.76 14.64 11.01C14.76 11.26 14.66 11.56 14.42 11.68L9 14.45C8.37 14.78 7.61 14.77 6.98 14.43L1.82 11.68C1.57 11.55 1.48 11.24 1.61 11C1.74 10.76 2.04 10.67 2.28 10.8L7.45 13.55C7.79 13.73 8.2 13.74 8.54 13.56L13.96 10.79Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_52">
<rect id="74#日出|唤醒-sun-raise" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_52)">
<path id="形状" d="M4.78 5.98C5.62 5.14 6.74 4.67 7.94 4.67C9.13 4.67 10.25 5.14 11.09 5.98C12.83 7.72 12.83 10.54 11.09 12.28C10.99 12.38 10.86 12.43 10.74 12.43C10.61 12.43 10.48 12.38 10.38 12.28C10.19 12.09 10.19 11.77 10.38 11.58C11.73 10.23 11.73 8.03 10.38 6.68C9.73 6.03 8.86 5.67 7.94 5.67C7.01 5.67 6.14 6.03 5.49 6.68C4.14 8.03 4.14 10.23 5.49 11.58C5.68 11.77 5.68 12.09 5.49 12.28C5.3 12.48 4.98 12.48 4.78 12.28C3.04 10.54 3.04 7.72 4.78 5.98ZM13.66 13.65L2.22 13.65C1.94 13.65 1.72 13.88 1.72 14.15C1.72 14.42 1.94 14.65 2.22 14.65L13.66 14.65C13.93 14.65 14.16 14.42 14.16 14.15C14.16 13.88 13.93 13.65 13.66 13.65ZM2.72 8.87C2.72 8.6 2.49 8.37 2.22 8.37L0.9 8.37C0.62 8.37 0.4 8.6 0.4 8.87C0.4 9.14 0.62 9.37 0.9 9.37L2.22 9.37C2.49 9.37 2.72 9.14 2.72 8.87ZM14.98 8.37L13.66 8.37C13.38 8.37 13.16 8.6 13.16 8.87C13.16 9.14 13.38 9.37 13.66 9.37L14.98 9.37C15.25 9.37 15.48 9.14 15.48 8.87C15.48 8.6 15.25 8.37 14.98 8.37ZM7.94 3.65C8.21 3.65 8.44 3.42 8.44 3.15L8.44 1.83C8.44 1.56 8.21 1.33 7.94 1.33C7.66 1.33 7.44 1.56 7.44 1.83L7.44 3.15C7.44 3.42 7.66 3.65 7.94 3.65ZM3.5 4.7C3.6 4.8 3.72 4.84 3.85 4.84C3.98 4.84 4.1 4.8 4.2 4.7C4.4 4.5 4.4 4.18 4.2 3.99L3.27 3.06C3.08 2.86 2.76 2.86 2.56 3.06C2.37 3.25 2.37 3.57 2.56 3.76L3.5 4.7ZM12.03 4.84C12.16 4.84 12.28 4.8 12.38 4.7L13.32 3.76C13.51 3.57 13.51 3.25 13.32 3.06C13.12 2.86 12.8 2.86 12.61 3.06L11.68 3.99C11.48 4.18 11.48 4.5 11.68 4.7C11.78 4.8 11.9 4.84 12.03 4.84Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_80">
<rect id="75#太阳|亮色模式-sun" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_80)">
<path id="形状结合" d="M8 13C8.27 13 8.5 13.22 8.5 13.5L8.5 14.5C8.5 14.77 8.27 15 8 15C7.72 15 7.5 14.77 7.5 14.5L7.5 13.5C7.5 13.22 7.72 13 8 13ZM4.46 11.53C4.65 11.73 4.65 12.04 4.46 12.24L3.75 12.94C3.56 13.14 3.24 13.14 3.05 12.94C2.85 12.75 2.85 12.43 3.05 12.24L3.75 11.53C3.95 11.34 4.26 11.34 4.46 11.53ZM12.24 11.53L12.94 12.24C13.14 12.43 13.14 12.75 12.94 12.94C12.75 13.14 12.43 13.14 12.24 12.94L11.53 12.24C11.34 12.04 11.34 11.73 11.53 11.53C11.73 11.34 12.04 11.34 12.24 11.53ZM8 4C10.2 4 12 5.79 12 8C12 10.2 10.2 12 8 12C5.79 12 4 10.2 4 8C4 5.79 5.79 4 8 4ZM8 5C6.34 5 5 6.34 5 8C5 9.65 6.34 11 8 11C9.65 11 11 9.65 11 8C11 6.34 9.65 5 8 5ZM2.5 7.5C2.77 7.5 3 7.72 3 8C3 8.27 2.77 8.5 2.5 8.5L1.5 8.5C1.22 8.5 1 8.27 1 8C1 7.72 1.22 7.5 1.5 7.5L2.5 7.5ZM14.5 7.5C14.77 7.5 15 7.72 15 8C15 8.27 14.77 8.5 14.5 8.5L13.5 8.5C13.22 8.5 13 8.27 13 8C13 7.72 13.22 7.5 13.5 7.5L14.5 7.5ZM12.94 3.05C13.14 3.24 13.14 3.56 12.94 3.75L12.24 4.46C12.04 4.65 11.73 4.65 11.53 4.46C11.34 4.26 11.34 3.95 11.53 3.75L12.24 3.05C12.43 2.85 12.75 2.85 12.94 3.05ZM3.75 3.05L4.46 3.75C4.65 3.95 4.65 4.26 4.46 4.46C4.26 4.65 3.95 4.65 3.75 4.46L3.05 3.75C2.85 3.56 2.85 3.24 3.05 3.05C3.24 2.85 3.56 2.85 3.75 3.05ZM8 1C8.27 1 8.5 1.22 8.5 1.5L8.5 2.5C8.5 2.77 8.27 3 8 3C7.72 3 7.5 2.77 7.5 2.5L7.5 1.5C7.5 1.22 7.72 1 8 1Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_168">
<rect id="76#休眠|月亮-hibernate" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_168)">
<path id="形状" d="M13.83 9.03C13.68 8.9 13.48 8.86 13.3 8.94C12.66 9.22 11.97 9.36 11.26 9.36C8.43 9.36 6.13 7.06 6.13 4.23C6.13 3.69 6.21 3.16 6.38 2.65C6.44 2.46 6.38 2.26 6.23 2.12C6.09 1.99 5.88 1.96 5.7 2.04C3.45 3.01 2 5.22 2 7.67C2 11.05 4.75 13.8 8.13 13.8C10.8 13.8 13.15 12.1 13.97 9.55C14.03 9.36 13.97 9.16 13.83 9.03ZM8.13 12.8C5.29 12.8 3 10.5 3 7.67C3 5.98 3.82 4.42 5.17 3.47C5.14 3.72 5.13 3.97 5.13 4.22C5.13 7.6 7.88 10.36 11.26 10.36C11.72 10.36 12.16 10.31 12.6 10.21C11.7 11.79 10 12.8 8.13 12.8ZM9.85 5.96C9.78 5.76 9.85 5.54 10.01 5.4L12.03 3.79L10.53 3.79C10.26 3.79 10.03 3.56 10.03 3.29C10.03 3.02 10.26 2.79 10.53 2.79L13.46 2.79C13.67 2.79 13.86 2.92 13.93 3.12C14 3.32 13.93 3.54 13.77 3.68L11.75 5.29L13.46 5.29C13.73 5.29 13.96 5.52 13.96 5.79C13.96 6.06 13.73 6.29 13.46 6.29L10.32 6.29C10.11 6.29 9.92 6.16 9.85 5.96Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_224">
<rect id="77#暗色模式|月亮-dark" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_224)">
<path id="路径" d="M7.44 1.5C6.04 1.62 4.72 2.19 3.65 3.15C0.98 5.55 0.76 9.67 3.17 12.34C5.57 15.01 9.69 15.23 12.36 12.82C12.95 12.3 13.42 11.68 13.78 11C13.96 10.65 13.69 10.23 13.29 10.27C11.58 10.42 9.89 9.77 8.72 8.47C7.17 6.74 6.87 4.25 7.93 2.23C8.11 1.88 7.84 1.46 7.44 1.5ZM6.67 2.64L6.64 2.71C5.91 4.89 6.38 7.36 7.98 9.13L8.12 9.29C9.25 10.47 10.76 11.16 12.34 11.27L12.43 11.28L12.37 11.36C12.17 11.62 11.94 11.86 11.69 12.08C9.43 14.12 5.95 13.93 3.91 11.67C1.87 9.41 2.06 5.93 4.32 3.89C4.94 3.33 5.66 2.93 6.44 2.7L6.67 2.64Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_230">
<rect id="78#对比度|昼夜-contrast" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_230)">
<path id="形状结合" d="M8 1C11.86 1 15 4.13 15 8C15 11.86 11.86 15 8 15C4.13 15 1 11.86 1 8C1 4.13 4.13 1 8 1ZM8 2C4.68 2 2 4.68 2 8C2 11.31 4.68 14 8 14C11.31 14 14 11.31 14 8C14 4.68 11.31 2 8 2ZM8 3C10.76 3 13 5.23 13 8C13 10.76 10.76 13 8 13L8 3Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 734 B

View File

@ -0,0 +1,17 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_73">
<rect id="79#垂直镜像|对称-mirror-y" width="16.000000" height="16.000000" fill="white"
fill-opacity="0" />
</clipPath>
</defs>
<g clip-path="url(#clip2_73)">
<path id="形状"
d="M14.88 12.13L10.7 2.74C10.41 2.09 9.67 1.81 9.07 2.12C8.64 2.34 8.37 2.8 8.37 3.3L8.37 12.69C8.37 13.41 8.91 14 9.59 14L13.77 14C14.45 14 15 13.41 15 12.69C15 12.49 14.95 12.3 14.88 12.13ZM13.77 12.87L9.59 12.87C9.49 12.87 9.42 12.79 9.42 12.69L9.42 3.3C9.42 3.23 9.46 3.17 9.51 3.13C9.6 3.08 9.7 3.13 9.75 3.22L13.92 12.61C13.92 12.61 13.94 12.66 13.94 12.69C13.94 12.79 13.87 12.87 13.77 12.87ZM6.92 2.12C6.32 1.81 5.58 2.09 5.29 2.74L1.11 12.13C1.04 12.3 1 12.49 1 12.69C1 13.41 1.54 14 2.22 14L6.4 14C7.08 14 7.62 13.41 7.62 12.69L7.62 3.3C7.62 2.79 7.35 2.34 6.92 2.12ZM6.57 12.69C6.57 12.79 6.5 12.87 6.4 12.87L2.22 12.87C2.12 12.87 2.05 12.79 2.05 12.69C2.05 12.66 2.05 12.63 2.06 12.61L6.24 3.22C6.27 3.14 6.35 3.1 6.43 3.11C6.49 3.14 6.57 3.23 6.57 3.3L6.57 12.69Z"
fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,14 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_238">
<rect id="8#标签-tag" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_238)">
<rect id="矩形" width="16.000000" height="16.000000" fill="#000000" fill-opacity="0"/>
<path id="形状结合" d="M6.39 1C7.76 1 8.56 1.78 9.67 2.87L14.49 7.78C14.82 8.09 15 8.54 15 9.03C15 9.5 14.82 9.95 14.5 10.27L10.12 14.54C9.79 14.85 9.34 15 8.88 15C8.42 15 7.95 14.84 7.64 14.53L2.2 9.2C1.72 8.72 1.42 8.4 1.23 8.04C1.07 7.69 1 7.28 1 6.63L1 4.28C1 3.34 1.07 2.4 1.57 1.79C2.04 1.25 2.85 1 4.19 1L6.39 1ZM6.38 2.06L4.1 2.06C3.2 2.06 2.63 2.11 2.35 2.41C2.11 2.69 2.07 3.13 2.06 3.98L2.06 6.62C2.06 7.47 2.07 7.56 2.92 8.38L8.57 13.91C8.66 14 8.81 14.05 8.97 14.05C9.14 14.06 9.28 14.01 9.38 13.92L13.92 9.48C14.01 9.4 14.06 9.27 14.06 9.12C14.06 8.98 14.02 8.88 13.96 8.78L9.35 4.09L8.89 3.64C7.79 2.53 7.26 2.06 6.38 2.06ZM6.57 4.01C7.25 4.69 7.25 5.79 6.57 6.47C5.89 7.15 4.78 7.15 4.1 6.47C3.42 5.79 3.42 4.69 4.1 4.01C4.78 3.33 5.89 3.33 6.57 4.01ZM4.79 4.71C4.51 5 4.51 5.47 4.79 5.77C5.09 6.06 5.57 6.06 5.85 5.77C6.16 5.47 6.16 5.01 5.85 4.71C5.57 4.41 5.09 4.41 4.79 4.71Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,12 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs />
<rect id="80#水平镜像|对称-mirror-x" width="16.000000" height="16.000000" fill="#FFFFFF"
fill-opacity="0" />
<path id="形状"
d="M3.86 14.88L13.25 10.7C13.9 10.41 14.18 9.67 13.87 9.07C13.65 8.64 13.19 8.37 12.69 8.37L3.3 8.37C2.58 8.37 2 8.91 2 9.59L2 13.77C2 14.45 2.58 15 3.3 15C3.5 15 3.69 14.95 3.86 14.88ZM3.12 13.77L3.12 9.59C3.12 9.49 3.2 9.42 3.3 9.42L12.69 9.42C12.76 9.42 12.82 9.46 12.86 9.51C12.91 9.6 12.86 9.7 12.77 9.75L3.39 13.92C3.39 13.92 3.33 13.94 3.3 13.94C3.2 13.94 3.12 13.87 3.12 13.77ZM13.87 6.92C14.18 6.32 13.9 5.58 13.25 5.29L3.86 1.11C3.69 1.04 3.5 1 3.3 1C2.58 1 2 1.54 2 2.22L2 6.4C2 7.08 2.58 7.62 3.3 7.62L12.69 7.62C13.2 7.62 13.65 7.35 13.87 6.92ZM3.3 6.57C3.2 6.57 3.12 6.5 3.12 6.4L3.12 2.22C3.12 2.12 3.2 2.04 3.3 2.04C3.33 2.04 3.36 2.04 3.39 2.06L12.77 6.24C12.85 6.27 12.89 6.35 12.88 6.43C12.85 6.49 12.76 6.57 12.69 6.57L3.3 6.57Z"
fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero" />
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,15 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip113_2">
<rect id="81#对号|选中-tick" rx="4.000000" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<rect id="81#对号|选中-tick" rx="4.000000" width="16.000000" height="16.000000" fill="#1476FF" fill-opacity="0"/>
<g clip-path="url(#clip113_2)">
<rect id="矩形 2" x="1.000000" y="1.000000" width="14.000000" height="14.000000" fill="#C4C4C4" fill-opacity="0"/>
<path id="矢量 (边框)" d="M12.53 5.48L7.28 11.11C7.2 11.19 7.09 11.24 6.97 11.24C6.85 11.25 6.74 11.2 6.66 11.12L3.48 7.98C3.3 7.81 3.3 7.54 3.47 7.36C3.64 7.19 3.92 7.19 4.09 7.36L6.95 10.18L11.89 4.88C12.05 4.71 12.33 4.7 12.51 4.86C12.68 5.03 12.69 5.3 12.53 5.48Z" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 996 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_45">
<rect id="82#清除|叉号-clear" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_45)">
<path id="path" d="M12.49 3.3C12.66 3.47 12.68 3.74 12.55 3.94L8.6 7.89L12.49 11.78C12.7 11.96 12.73 12.27 12.55 12.48C12.37 12.69 12.06 12.72 11.85 12.54L7.89 8.6L4 12.49C3.82 12.68 3.51 12.69 3.32 12.51C3.14 12.34 3.1 12.05 3.24 11.85L7.19 7.89L3.3 4C3.12 3.79 3.14 3.48 3.35 3.29C3.51 3.15 3.75 3.13 3.93 3.24L7.89 7.19L11.78 3.3C11.97 3.1 12.29 3.1 12.49 3.3Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 835 B

View File

@ -0,0 +1,14 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_65">
<rect id="83#箭头右-right" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<rect id="83#箭头右-right" width="16.000000" height="16.000000" fill="#F9DADA" fill-opacity="0"/>
<g clip-path="url(#clip2_65)">
<path id="矢量 162" d="M10.56 7.43C10.88 7.74 10.88 8.25 10.56 8.56L6.46 12.66C6.23 12.9 5.85 12.9 5.61 12.66C5.38 12.43 5.38 12.05 5.61 11.81L9.43 7.99L5.61 4.18C5.4 3.97 5.38 3.64 5.55 3.4L5.61 3.33C5.85 3.09 6.23 3.09 6.46 3.33L10.56 7.43Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 814 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_66">
<rect id="84#箭头左-left" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_66)">
<path id="路径" d="M5.42 7.43C5.11 7.74 5.11 8.25 5.42 8.56L9.52 12.66C9.75 12.89 10.13 12.89 10.37 12.66C10.6 12.43 10.6 12.05 10.37 11.81L6.55 8L10.37 4.18C10.58 3.97 10.6 3.64 10.43 3.41C10.2 3.18 9.76 3.11 9.52 3.34L5.42 7.43Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 699 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_128">
<rect id="85#箭头下-down" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_128)">
<path id="路径" d="M8.49 10.45C8.22 10.72 7.77 10.72 7.5 10.45L3.4 6.35C3.2 6.15 3.2 5.84 3.4 5.64C3.59 5.45 3.91 5.45 4.11 5.64L7.99 9.53L11.88 5.64C12.06 5.47 12.33 5.45 12.52 5.58L12.59 5.64C12.79 5.84 12.79 6.15 12.59 6.35L8.49 10.45Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 709 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_188">
<rect id="86#箭头上-up" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_188)">
<path id="路径" d="M7.5 5.54C7.77 5.27 8.22 5.27 8.49 5.54L12.59 9.64C12.79 9.84 12.79 10.15 12.59 10.35C12.4 10.54 12.08 10.54 11.88 10.35L8 6.46L4.11 10.35C3.93 10.52 3.66 10.54 3.47 10.41L3.4 10.35C3.2 10.15 3.2 9.84 3.4 9.64L7.5 5.54Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 707 B

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_101">
<rect id="87#全部收起-collapse" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_101)">
<path id="矢量 173" d="M5.96 8.53C6.78 8.53 7.46 9.21 7.46 10.03L7.46 13.5C7.46 13.77 7.23 14 6.96 14C6.68 14 6.46 13.77 6.46 13.5L6.46 10.24L3.15 13.54C2.96 13.74 2.64 13.74 2.45 13.54C2.25 13.35 2.25 13.03 2.45 12.84L5.75 9.53L2.5 9.53C2.24 9.53 2.03 9.35 2 9.1L2 9.03C2 8.76 2.22 8.53 2.5 8.53L5.96 8.53ZM9.03 2C9.31 2 9.53 2.22 9.53 2.5L9.53 5.75L12.84 2.45C13.03 2.25 13.35 2.25 13.54 2.45C13.74 2.64 13.74 2.96 13.54 3.15L10.24 6.46L13.5 6.46C13.75 6.46 13.96 6.64 13.99 6.89L14 6.96C14 7.23 13.77 7.46 13.5 7.46L10.03 7.46C9.21 7.46 8.53 6.78 8.53 5.96L8.53 2.5C8.53 2.22 8.76 2 9.03 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip41_13">
<rect id="88#全部收起-collapse1" width="16.000000" height="16.000000" transform="matrix(-1 0 0 1 16 0)" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip41_13)">
<path id="矢量 172" d="M10.03 8.53C9.21 8.53 8.53 9.21 8.53 10.03L8.53 13.5C8.53 13.77 8.76 14 9.03 14C9.31 14 9.53 13.77 9.53 13.5L9.53 10.24L12.84 13.54C13.03 13.74 13.35 13.74 13.54 13.54C13.74 13.35 13.74 13.03 13.54 12.84L10.24 9.53L13.5 9.53C13.75 9.53 13.96 9.35 13.99 9.1L14 9.03C14 8.76 13.77 8.53 13.5 8.53L10.03 8.53ZM6.96 2C6.68 2 6.46 2.22 6.46 2.5L6.46 5.75L3.15 2.45C2.96 2.25 2.64 2.25 2.45 2.45C2.25 2.64 2.25 2.96 2.45 3.15L5.75 6.46L2.5 6.46C2.24 6.46 2.03 6.64 2 6.89L2 6.96C2 7.23 2.22 7.46 2.5 7.46L5.96 7.46C6.78 7.46 7.46 6.78 7.46 5.96L7.46 2.5C7.46 2.22 7.23 2 6.96 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_102">
<rect id="89#全部展开-expand" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip2_102)">
<path id="形状结合" d="M2.5 8.53C2.77 8.53 3 8.76 3 9.03L3 12.29L6.3 8.99C6.49 8.79 6.81 8.79 7 8.99C7.2 9.18 7.2 9.5 7 9.69L3.7 13L6.96 13C7.21 13 7.42 13.18 7.45 13.43L7.46 13.5C7.46 13.77 7.23 14 6.96 14L3.5 14C2.67 14 2 13.32 2 12.5L2 9.03C2 8.76 2.22 8.53 2.5 8.53ZM12.5 2C13.32 2 14 2.67 14 3.5L14 6.96C14 7.23 13.77 7.46 13.5 7.46C13.22 7.46 13 7.23 13 6.96L13 3.7L9.69 7C9.5 7.2 9.18 7.2 8.99 7C8.79 6.81 8.79 6.49 8.99 6.3L12.29 2.99L9.03 3C8.78 3 8.57 2.81 8.54 2.56L8.53 2.5C8.53 2.22 8.76 2 9.03 2L12.5 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View File

@ -0,0 +1,17 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip2_43">
<rect id="9#图钉|固定-pin" width="16.000000" height="16.000000" fill="white"
fill-opacity="0" />
</clipPath>
</defs>
<g clip-path="url(#clip2_43)">
<path id="形状结合"
d="M10.69 1.86C11.1 1.51 11.72 1.54 12.1 1.92L14.07 3.88C14.45 4.27 14.48 4.89 14.13 5.3L11.3 8.66L11.68 9.04C12.06 9.42 12.09 10.01 11.77 10.43L11.68 10.52L9.75 12.45C9.34 12.86 8.68 12.86 8.27 12.45L6.25 10.44L2.93 13.77C2.73 13.96 2.41 13.96 2.22 13.77C2.02 13.57 2.02 13.26 2.22 13.06L5.55 9.73L3.54 7.72C3.15 7.34 3.13 6.73 3.47 6.31L3.54 6.24L5.46 4.31C5.87 3.9 6.54 3.9 6.95 4.31L7.33 4.69L10.69 1.86ZM11.35 2.62L7.27 6.05L6.24 5.02C6.22 5 6.19 5 6.17 5.02L4.24 6.95C4.22 6.97 4.22 7 4.24 7.02L8.97 11.75C8.99 11.77 9.02 11.77 9.04 11.75L10.97 9.82C10.99 9.8 10.99 9.77 10.97 9.75L9.94 8.72L13.36 4.66C13.38 4.64 13.38 4.61 13.36 4.59L11.35 2.62Z"
fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,17 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs />
<rect id="9.1#取消固定-unpin" width="16.000000" height="16.000000" fill="#FFFFFF" fill-opacity="0" />
<path id="减去顶层"
d="M10.6902 1.86664C11.107 1.51489 11.7238 1.54095 12.1094 1.92657L14.0726 3.88977C14.4583 4.27539 14.4843 4.89221 14.1325 5.30902L13.1429 6.4812C12.8232 6.32935 12.4848 6.21039 12.1322 6.12878L13.3683 4.66406C13.385 4.64429 13.3837 4.61511 13.3655 4.59686L11.3573 2.62012L7.27824 6.05463L6.2469 5.02332C6.22751 5.00391 6.19604 5.00391 6.17664 5.02332L4.24847 6.95148C4.22906 6.97089 4.22906 7.00232 4.24847 7.02173L6.36009 9.13336C6.16357 9.62134 6.04182 10.1475 6.009 10.6976L2.93167 13.7747C2.73642 13.9699 2.41983 13.9699 2.22458 13.7747C2.02931 13.5793 2.02931 13.2628 2.22458 13.0675L5.55212 9.73981L3.54137 7.72882C3.15555 7.34302 3.13286 6.73163 3.47328 6.31927L3.54137 6.24438L5.46954 4.31622C5.87946 3.90625 6.54408 3.90625 6.95401 4.31622L7.33492 4.69714L10.6902 1.86664Z"
clip-rule="evenodd" fill="currentColor" fill-opacity="1.000000" fill-rule="evenodd" />
<path id="合并"
d="M7.57143 10.4286L14.4286 10.4286L14.4286 11.4286L7.57143 11.4286L7.57143 10.4286Z"
clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd" />
<circle id="椭圆 2" cx="11.000000" cy="11.000000" r="4.000000" fill="#C4C4C4" fill-opacity="0" />
<circle id="椭圆 2" cx="11.000000" cy="11.000000" r="3.500000" stroke="currentColor"
stroke-opacity="1.000000" stroke-width="1.000000" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<defs>
<clipPath id="clip41_12">
<rect id="90#全部展开-expand1" width="16.000000" height="16.000000" fill="white" fill-opacity="0"/>
</clipPath>
</defs>
<g clip-path="url(#clip41_12)">
<path id="形状结合" d="M13.5 8.53C13.22 8.53 13 8.76 13 9.03L13 12.29L9.69 8.99C9.5 8.79 9.18 8.79 8.99 8.99C8.79 9.18 8.79 9.5 8.99 9.69L12.29 13L9.03 13C8.78 13 8.57 13.18 8.54 13.43L8.53 13.5C8.53 13.77 8.76 14 9.03 14L12.5 14C13.32 14 14 13.32 14 12.5L14 9.03C14 8.76 13.77 8.53 13.5 8.53ZM3.5 2C2.67 2 2 2.67 2 3.5L2 6.96C2 7.23 2.22 7.46 2.5 7.46C2.77 7.46 3 7.23 3 6.96L3 3.7L6.3 7C6.49 7.2 6.81 7.2 7 7C7.2 6.81 7.2 6.49 7 6.3L3.7 2.99L6.96 3C7.21 3 7.42 2.81 7.45 2.56L7.46 2.5C7.46 2.22 7.23 2 6.96 2L3.5 2Z" fill="currentColor" fill-opacity="1.000000" fill-rule="nonzero"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 996 B

Some files were not shown because too many files have changed in this diff Show More