feat: 初始化
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<a-config-provider :locale="locale" :theme="{
|
||||
algorithm:themes,
|
||||
token:{
|
||||
colorPrimary: primaryColor,
|
||||
colorError:'#FE7254'
|
||||
}
|
||||
}">
|
||||
<router-view/>
|
||||
</a-config-provider>
|
||||
</template>
|
||||
|
||||
<script setup name="App">
|
||||
import i18n from "@/locales";
|
||||
import {useGlobalStore} from "@/store";
|
||||
import {theme} from "ant-design-vue";
|
||||
import {ThemeModeEnum} from "@/utils/enum";
|
||||
|
||||
const store = useGlobalStore();
|
||||
const locale = i18n.global.messages[i18n.global.locale].lang;
|
||||
const primaryColor = computed(() => store.themeColor);
|
||||
const themes = computed(() => store.theme === ThemeModeEnum.REAL_DARK ? theme.darkAlgorithm : theme.defaultAlgorithm);
|
||||
</script>
|
||||
@@ -0,0 +1,19 @@
|
||||
import {server} from '@/utils/request'
|
||||
|
||||
const path = '/auth/';
|
||||
/**
|
||||
* 登录
|
||||
*/
|
||||
export default {
|
||||
login(data) {
|
||||
return server.POST(`${path}doLogin`, data)
|
||||
},
|
||||
// 退出
|
||||
logout(data) {
|
||||
return server.GET(`${path}doLogout`, data)
|
||||
},
|
||||
// 获取用户信息
|
||||
getLoginUser(data) {
|
||||
return server.GET(`${path}getLoginUser`, data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
|
||||
import {server} from '@/utils/request'
|
||||
|
||||
const path = '/auth/';
|
||||
/**
|
||||
* 绘画
|
||||
*/
|
||||
export default {
|
||||
// 会话统计
|
||||
monitorAnalysis(data) {
|
||||
return server.GET(`${path}session/analysis`, data)
|
||||
},
|
||||
// 获取会话分页
|
||||
monitorPage(data) {
|
||||
return server.GET(`${path}session/page`, data)
|
||||
},
|
||||
// 强退B端session
|
||||
monitorExit(data) {
|
||||
return server.POST(`${path}session/exit`, data)
|
||||
},
|
||||
// 强退C端token
|
||||
monitorTokenExit(data) {
|
||||
return server.POST(`${path}session/exitToken`, data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/config/${url}`, ...arg)
|
||||
export default {
|
||||
// 获取配置分页
|
||||
configPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取配置列表
|
||||
configList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除配置
|
||||
configDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取配置详情
|
||||
configDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 配置批量更新
|
||||
configEditForm(data) {
|
||||
return request('editBatch', data)
|
||||
},
|
||||
// 获取系统基础配置
|
||||
configSysBaseList(data) {
|
||||
return request('sysBaseList', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/${url}`, ...arg)
|
||||
export default {
|
||||
// 重置某一天的考勤数据
|
||||
resetAttendance(data) {
|
||||
return request('resetAttendance', data)
|
||||
},
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/dict/${url}`, ...arg)
|
||||
/**
|
||||
* 字典
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
// 获取字典分页
|
||||
dictPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取字典列表
|
||||
dictList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 获取字典树
|
||||
dictTree(data) {
|
||||
return request('tree', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除字典
|
||||
dictDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取字典详情
|
||||
dictDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/email/${url}`, ...arg)
|
||||
/**
|
||||
* 邮件
|
||||
*/
|
||||
export default {
|
||||
// 获取邮件分页
|
||||
emailPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 发送邮件
|
||||
emailSend(data){
|
||||
return request('send', data)
|
||||
},
|
||||
// 发送邮件——本地TXT
|
||||
emailSendLocalTxt(data) {
|
||||
return request('sendLocalTxt', data)
|
||||
},
|
||||
// 发送邮件——本地HTML
|
||||
emailSendLocalHtml(data) {
|
||||
return request('sendLocalHtml', data)
|
||||
},
|
||||
// 发送邮件——阿里云TXT
|
||||
emailSendAliyunTxt(data) {
|
||||
return request('sendAliyunTxt', data)
|
||||
},
|
||||
// 发送邮件——阿里云HTML
|
||||
emailSendAliyunHtml(data) {
|
||||
return request('sendAliyunHtml', data)
|
||||
},
|
||||
// 发送邮件——阿里云TMP
|
||||
emailSendAliyunTmp(data) {
|
||||
return request('sendAliyunTmp', data)
|
||||
},
|
||||
// 发送邮件——腾讯云TXT
|
||||
emailSendTencentTxt(data) {
|
||||
return request('sendTencentTxt', data)
|
||||
},
|
||||
// 发送邮件——腾讯云HTML
|
||||
emailSendTencentHtml(data) {
|
||||
return request('sendTencentHtml', data)
|
||||
},
|
||||
// 发送邮件——腾讯云TMP
|
||||
emailSendTencentTmp(data) {
|
||||
return request('sendTencentTmp', data)
|
||||
},
|
||||
// 删除邮件
|
||||
emailDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取邮件详情
|
||||
emailDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
import {baseRequest} from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/file/${url}`, ...arg)
|
||||
/**
|
||||
* 文件
|
||||
*/
|
||||
export default {
|
||||
/**
|
||||
* 上传文件
|
||||
*{file:,engine:上传的文件引擎,为空取默认,returnId:返回id/返回文件地址}
|
||||
*/
|
||||
fileUpload(data) {
|
||||
return request('upload', data)
|
||||
},
|
||||
// 获取文件分页列表
|
||||
filePage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取文件列表
|
||||
fileList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 下载文件,这里要带上blob类型
|
||||
fileDownload(data) {
|
||||
return request('download', data, 'get', {
|
||||
responseType: 'blob'
|
||||
})
|
||||
},
|
||||
// 获取文件详情
|
||||
fileDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 删除文件
|
||||
fileDelete(data) {
|
||||
return request('delete', data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/job/${url}`, ...arg)
|
||||
/**
|
||||
* 定时任务
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
// 获取定时任务分页
|
||||
jobPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取定时任务列表
|
||||
jobList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除定时任务
|
||||
jobDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取定时任务详情
|
||||
jobDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 停止定时任务
|
||||
jobStopJob(data) {
|
||||
return request('stopJob', data)
|
||||
},
|
||||
// 运行定时任务
|
||||
jobRunJob(data) {
|
||||
return request('runJob', data)
|
||||
},
|
||||
// 运行定时任务
|
||||
jobRunJobNow(data) {
|
||||
return request('runJobNow', data)
|
||||
},
|
||||
// 获取定时任务类
|
||||
jobGetActionClass(data) {
|
||||
return request('getActionClass', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/log/${url}`, ...arg)
|
||||
/**
|
||||
* 日志
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
// 获取日志分页
|
||||
logPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取访问日志折线图数据
|
||||
logVisLineChartData(data) {
|
||||
return request('vis/lineChartData', data, 'get')
|
||||
},
|
||||
// 获取访问日志饼状图数据
|
||||
logVisPieChartData(data) {
|
||||
return request('vis/pieChartData', data, 'get')
|
||||
},
|
||||
// 获取操作日志柱状图数据
|
||||
logOpBarChartData(data) {
|
||||
return request('op/barChartData', data, 'get')
|
||||
},
|
||||
// 获取操作日志饼状图数据
|
||||
logOpPieChartData(data) {
|
||||
return request('op/pieChartData', data, 'get')
|
||||
},
|
||||
// 清空日志
|
||||
logDelete(data) {
|
||||
return request('delete', data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/message/${url}`, ...arg)
|
||||
/**
|
||||
* 站内信
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
// 获取站内信分页
|
||||
messagePage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取站内信分页
|
||||
messageSend(data) {
|
||||
return request('send', data)
|
||||
},
|
||||
// 删除站内信
|
||||
messageDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取站内信详情
|
||||
messageDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/monitor/${url}`, ...arg)
|
||||
/**
|
||||
* 监控
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
// 获取服务器监控信息
|
||||
monitorServerInfo(data) {
|
||||
return request('serverInfo', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
import {baseRequest} from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/dev/sms/${url}`, ...arg)
|
||||
/**
|
||||
* 短信
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
// 获取短信分页
|
||||
smsPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 发送短信
|
||||
// {engine:引擎}
|
||||
smsSend(data) {
|
||||
return request('send', data)
|
||||
},
|
||||
// 删除短信
|
||||
smsDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取短信详情
|
||||
smsDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/gen/basic/${url}`, ...arg)
|
||||
|
||||
export default {
|
||||
// 获取代码生成基础分页
|
||||
basicPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除代码生成基础
|
||||
basicDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取代码生成基础详情
|
||||
basicDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 获取所有表信息
|
||||
basicTables(data) {
|
||||
return request('tables', data, 'get')
|
||||
},
|
||||
// 获取表内所有字段信息
|
||||
basicTableColumns(data) {
|
||||
return request('tableColumns', data, 'get')
|
||||
},
|
||||
// 执行代码生成 压缩包
|
||||
basicExecGenBiz(data) {
|
||||
const options = {
|
||||
responseType: 'blob'
|
||||
}
|
||||
return request('execGenZip', data, 'get', options)
|
||||
},
|
||||
// 执行代码生成 项目内
|
||||
basicExecGenPro(data) {
|
||||
return request('execGenPro', data)
|
||||
},
|
||||
// 预览代码生成
|
||||
basicPreviewGen(data) {
|
||||
return request('previewGen', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/gen/config/${url}`, ...arg)
|
||||
|
||||
export default {
|
||||
// 获取代码生成详情配置列表
|
||||
configList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除代码生成详情配置
|
||||
configDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取代码生成详情配置详情
|
||||
configDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 批量编辑代码生成详细配置
|
||||
configEditBatch(data) {
|
||||
return request('editBatch', data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/sys/index/${url}`, ...arg)
|
||||
/**
|
||||
* 系统首页控制器
|
||||
*/
|
||||
export default {
|
||||
// 添加当前用户日程
|
||||
indexScheduleAdd(data) {
|
||||
return request('schedule/add', data)
|
||||
},
|
||||
// 删除日程
|
||||
indexScheduleDeleteSchedule(data) {
|
||||
return request('schedule/deleteSchedule', data)
|
||||
},
|
||||
// 获取当前用户日程列表
|
||||
indexScheduleList(data) {
|
||||
return request('schedule/list', data, 'get')
|
||||
},
|
||||
// 获取当前用户站内信列表
|
||||
indexMessageList(data) {
|
||||
return request('message/list', data, 'get')
|
||||
},
|
||||
// 获取站内信详情
|
||||
indexMessageDetail(data) {
|
||||
return request('message/detail', data, 'get')
|
||||
},
|
||||
//站内信全部标记已读
|
||||
indexMessageAllMarkRead(data) {
|
||||
return request('message/allMessageMarkRead', data)
|
||||
},
|
||||
// 获取当前用户访问日志列表
|
||||
indexVisLogList(data) {
|
||||
return request('visLog/list', data, 'get')
|
||||
},
|
||||
// 获取当前用户操作日志列表
|
||||
indexOpLogList(data) {
|
||||
return request('opLog/list', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/sys/org/${url}`, ...arg)
|
||||
/**
|
||||
* 机构
|
||||
*/
|
||||
export default {
|
||||
// 获取组织分页
|
||||
orgPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取组织列表
|
||||
orgList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 获取组织树
|
||||
orgTree(data) {
|
||||
return request('tree', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除组织
|
||||
orgDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取组织详情
|
||||
orgDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
import {server} from '@/utils/request'
|
||||
|
||||
const path = '/sys/resource/';
|
||||
|
||||
/**
|
||||
* 菜单
|
||||
*/
|
||||
export default {
|
||||
// 获取菜单树
|
||||
menuTree(data) {
|
||||
return server.GET(`${path}tree`, data)
|
||||
},
|
||||
// 获取菜单树
|
||||
menuPage(data) {
|
||||
return server.GET(`${path}page`, data)
|
||||
},
|
||||
// 获取菜单列表
|
||||
menuList(data) {
|
||||
return server.GET(`${path}list`, data)
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return server.POST(`${path}${edit ? 'edit' : 'add'}`, data)
|
||||
},
|
||||
// 更改菜单所属模块
|
||||
menuChangeModule(data) {
|
||||
return server.POST(`${path}changeModule`, data)
|
||||
},
|
||||
// 删除菜单
|
||||
menuDelete(data) {
|
||||
return server.POST(`${path}delete`, data)
|
||||
},
|
||||
// 获取菜单详情
|
||||
menuDetail(data) {
|
||||
return server.GET(`${path}detail`, data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/sys/role/${url}`, ...arg)
|
||||
/**
|
||||
* 角色
|
||||
*/
|
||||
export default {
|
||||
// 获取角色分页
|
||||
rolePage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取角色列表
|
||||
roleList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除角色
|
||||
roleDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取角色详情
|
||||
roleDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 获取角色拥有资源
|
||||
roleOwnResource(data) {
|
||||
return request('ownResource', data, 'get')
|
||||
},
|
||||
// 给角色授权资源
|
||||
roleGrantResource(data) {
|
||||
return request('grantResource', data)
|
||||
},
|
||||
// 获取角色下的用户
|
||||
roleOwnUser(data) {
|
||||
return request('ownUser', data, 'get')
|
||||
},
|
||||
// 给角色授权用户
|
||||
roleGrantUser(data) {
|
||||
return request('grantUser', data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/sys/tenant/` + url, ...arg)
|
||||
|
||||
/**
|
||||
* sys_tenant
|
||||
**/
|
||||
export default {
|
||||
// 获取sys_tenant分页
|
||||
sysTenantPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取sys_tenant列表
|
||||
sysTenantList(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 提交sys_tenant表单 edit为true时为编辑,默认为新增
|
||||
sysTenantSubmitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除sys_tenant
|
||||
sysTenantDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取sys_tenant详情
|
||||
sysTenantDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
import {baseRequest} from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/sys/user/${url}`, ...arg)
|
||||
/**
|
||||
* 用户接口api
|
||||
*/
|
||||
export default {
|
||||
// 获取用户分页
|
||||
userPage(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 提交表单 edit为true时为编辑,默认为新增
|
||||
submitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
},
|
||||
// 删除用户
|
||||
userDelete(data) {
|
||||
return request('delete', data)
|
||||
},
|
||||
// 获取用户详情
|
||||
userDetail(data) {
|
||||
return request('detail', data, 'get')
|
||||
},
|
||||
// 禁用用户
|
||||
userDisableUser(id) {
|
||||
return request('disableUser/' + id, null)
|
||||
},
|
||||
// 启用用户
|
||||
userEnableUser(id) {
|
||||
return request('enableUser/' + id, null)
|
||||
},
|
||||
// 重置用户密码
|
||||
userResetPassword(id) {
|
||||
return request('resetPassword/' + id, null)
|
||||
},
|
||||
// 获取用户选择器
|
||||
userSelector(data) {
|
||||
return request('userSelector', data, 'get')
|
||||
},
|
||||
// 用户拥有角色
|
||||
userOwnRole(data) {
|
||||
return request('ownRole', data, 'get')
|
||||
},
|
||||
// 给用户授权角色
|
||||
grantRole(data) {
|
||||
return request('grantRole', data)
|
||||
},
|
||||
// 下载用户导入模板
|
||||
userDownloadImportUserTemplate(data) {
|
||||
return request('downloadImportUserTemplate', data, 'get', {
|
||||
responseType: 'blob'
|
||||
})
|
||||
},
|
||||
// 用户导入
|
||||
userImport(data) {
|
||||
return request('import', data)
|
||||
},
|
||||
// 用户导出
|
||||
userExport(data) {
|
||||
return request('export', data, 'get', {
|
||||
responseType: 'blob'
|
||||
})
|
||||
},
|
||||
// 导出用户个人信息
|
||||
userExportUserInfo(data) {
|
||||
return request('exportUserInfo', data, 'get', {
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/sys/userCenter/${url}`, ...arg)
|
||||
/**
|
||||
* 用户个人控制器
|
||||
*/
|
||||
export default {
|
||||
// 修改用户密码
|
||||
userUpdatePassword(data) {
|
||||
return request('updatePassword', data)
|
||||
},
|
||||
// 修改用户头像
|
||||
userUpdateAvatar(data) {
|
||||
return request('updateAvatar', data)
|
||||
},
|
||||
// 修改用户签名图片
|
||||
userUpdateSignature(data) {
|
||||
return request('updateSignature', data)
|
||||
},
|
||||
// 获取登录用户的菜单
|
||||
userLoginMenu(data) {
|
||||
return request('loginMenu', data, 'get')
|
||||
},
|
||||
// 获取登录用户组织树
|
||||
userLoginOrgTree(data) {
|
||||
return request('loginOrgTree', data, 'get')
|
||||
},
|
||||
// 编辑个人信息
|
||||
userUpdateUserInfo(data) {
|
||||
return request('updateUserInfo', data)
|
||||
},
|
||||
// 获取登录用户的站内信分页
|
||||
userLoginUnreadMessagePage(data) {
|
||||
return request('loginUnreadMessagePage', data, 'get')
|
||||
},
|
||||
// 读取登录用户站内信详情
|
||||
userLoginUnreadMessageDetail(data) {
|
||||
return request('loginUnreadMessageDetail', data, 'get')
|
||||
},
|
||||
// 根据id集合获取角色集合
|
||||
userCenterGetRoleListByIdList(data) {
|
||||
return request('getRoleListByIdList', data)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
|
||||
import { baseRequest } from '@/utils/request'
|
||||
|
||||
const request = (url, ...arg) => baseRequest(`/website/base/${url}`, ...arg)
|
||||
/**
|
||||
* 网站基础信息控制器
|
||||
*/
|
||||
export default {
|
||||
// 保存信息
|
||||
saveData(data) {
|
||||
return request('edit', data)
|
||||
},
|
||||
// 获取详情
|
||||
detail(data) {
|
||||
return request('detail', data, 'get')
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<svg
|
||||
t="1661766272839"
|
||||
class="icon"
|
||||
viewBox="0 0 1024 1024"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
p-id="1625"
|
||||
width="32"
|
||||
height="32"
|
||||
>
|
||||
<path
|
||||
d="M512 1024C229.222 1024 0 794.778 0 512S229.222 0 512 0s512 229.222 512 512-229.222 512-512 512z m259.149-568.883h-290.74a25.293 25.293 0 0 0-25.292 25.293l-0.026 63.206c0 13.952 11.315 25.293 25.267 25.293h177.024c13.978 0 25.293 11.315 25.293 25.267v12.646a75.853 75.853 0 0 1-75.853 75.853h-240.23a25.293 25.293 0 0 1-25.267-25.293V417.203a75.853 75.853 0 0 1 75.827-75.853h353.946a25.293 25.293 0 0 0 25.267-25.292l0.077-63.207a25.293 25.293 0 0 0-25.268-25.293H417.152a189.62 189.62 0 0 0-189.62 189.645V771.15c0 13.977 11.316 25.293 25.294 25.293h372.94a170.65 170.65 0 0 0 170.65-170.65V480.384a25.293 25.293 0 0 0-25.293-25.267z"
|
||||
fill="#C71D23"
|
||||
p-id="1626"
|
||||
></path>
|
||||
</svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Gitee'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
** 全局注册Icon组件
|
||||
* 推荐前往https://icones.js.org下载图标的Vue文件,然后放在src/assets/icons文件夹里面
|
||||
* 这个网址有118个图标集,包括antd、bootstrap、eleme等累计140456个图标
|
||||
*/
|
||||
import { defineAsyncComponent } from 'vue'
|
||||
const components = import.meta.glob('./**/*.vue') // 异步方式
|
||||
export default function install(app) {
|
||||
for (const [key, value] of Object.entries(components)) {
|
||||
const name = key.slice(key.lastIndexOf('/') + 1, key.lastIndexOf('.'))
|
||||
app.component(name, defineAsyncComponent(value))
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,173 @@
|
||||
@font-face {
|
||||
font-family: "snowy"; /* Project id 3880534 */
|
||||
src: url('iconfont.ttf?t=1675528061732') format('truetype');
|
||||
}
|
||||
|
||||
.snowy {
|
||||
font-family: "snowy" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.arrow-up-filling:before {
|
||||
content: "\e688";
|
||||
}
|
||||
|
||||
.arrow-down-filling:before {
|
||||
content: "\e689";
|
||||
}
|
||||
|
||||
.arrow-left-filling:before {
|
||||
content: "\e68a";
|
||||
}
|
||||
|
||||
.arrow-right-filling:before {
|
||||
content: "\e68b";
|
||||
}
|
||||
|
||||
.caps-unlock-filling:before {
|
||||
content: "\e68c";
|
||||
}
|
||||
|
||||
.comment-filling:before {
|
||||
content: "\e68d";
|
||||
}
|
||||
|
||||
.check-item-filling:before {
|
||||
content: "\e68e";
|
||||
}
|
||||
|
||||
.clock-filling:before {
|
||||
content: "\e68f";
|
||||
}
|
||||
|
||||
.delete-filling:before {
|
||||
content: "\e690";
|
||||
}
|
||||
|
||||
.decline-filling:before {
|
||||
content: "\e691";
|
||||
}
|
||||
|
||||
.dynamic-filling:before {
|
||||
content: "\e692";
|
||||
}
|
||||
|
||||
.intermediate-filling:before {
|
||||
content: "\e693";
|
||||
}
|
||||
|
||||
.favorite-filling:before {
|
||||
content: "\e694";
|
||||
}
|
||||
|
||||
.layout-filling:before {
|
||||
content: "\e695";
|
||||
}
|
||||
|
||||
.help-filling:before {
|
||||
content: "\e696";
|
||||
}
|
||||
|
||||
.history-filling:before {
|
||||
content: "\e697";
|
||||
}
|
||||
|
||||
.filter-filling:before {
|
||||
content: "\e698";
|
||||
}
|
||||
|
||||
.file-common-filling:before {
|
||||
content: "\e699";
|
||||
}
|
||||
|
||||
.news-filling:before {
|
||||
content: "\e69a";
|
||||
}
|
||||
|
||||
.edit-filling:before {
|
||||
content: "\e69b";
|
||||
}
|
||||
|
||||
.fullscreen-expand-filling:before {
|
||||
content: "\e69c";
|
||||
}
|
||||
|
||||
.smile-filling:before {
|
||||
content: "\e69d";
|
||||
}
|
||||
|
||||
.rise-filling:before {
|
||||
content: "\e69e";
|
||||
}
|
||||
|
||||
.picture-filling:before {
|
||||
content: "\e69f";
|
||||
}
|
||||
|
||||
.notification-filling:before {
|
||||
content: "\e6a0";
|
||||
}
|
||||
|
||||
.user-filling:before {
|
||||
content: "\e6a1";
|
||||
}
|
||||
|
||||
.setting-filling:before {
|
||||
content: "\e6a2";
|
||||
}
|
||||
|
||||
.switch-filling:before {
|
||||
content: "\e6a3";
|
||||
}
|
||||
|
||||
.work-filling:before {
|
||||
content: "\e6a4";
|
||||
}
|
||||
|
||||
.task-filling:before {
|
||||
content: "\e6a5";
|
||||
}
|
||||
|
||||
.success-filling:before {
|
||||
content: "\e6a6";
|
||||
}
|
||||
|
||||
.warning-filling:before {
|
||||
content: "\e6a7";
|
||||
}
|
||||
|
||||
.folder-filling:before {
|
||||
content: "\e6a8";
|
||||
}
|
||||
|
||||
.map-filling:before {
|
||||
content: "\e6a9";
|
||||
}
|
||||
|
||||
.prompt-filling:before {
|
||||
content: "\e6aa";
|
||||
}
|
||||
|
||||
.meh-filling:before {
|
||||
content: "\e6ab";
|
||||
}
|
||||
|
||||
.cry-filling:before {
|
||||
content: "\e6ac";
|
||||
}
|
||||
|
||||
.top-filling:before {
|
||||
content: "\e6ad";
|
||||
}
|
||||
|
||||
.home-filling:before {
|
||||
content: "\e6ae";
|
||||
}
|
||||
|
||||
.sorting:before {
|
||||
content: "\e6af";
|
||||
}
|
||||
|
||||
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"id": "3880534",
|
||||
"name": "app-filled",
|
||||
"font_family": "snowy",
|
||||
"css_prefix_text": "",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "15838581",
|
||||
"name": "arrow-up-filling",
|
||||
"font_class": "arrow-up-filling",
|
||||
"unicode": "e688",
|
||||
"unicode_decimal": 59016
|
||||
},
|
||||
{
|
||||
"icon_id": "15838582",
|
||||
"name": "arrow-down-filling",
|
||||
"font_class": "arrow-down-filling",
|
||||
"unicode": "e689",
|
||||
"unicode_decimal": 59017
|
||||
},
|
||||
{
|
||||
"icon_id": "15838583",
|
||||
"name": "arrow-left-filling",
|
||||
"font_class": "arrow-left-filling",
|
||||
"unicode": "e68a",
|
||||
"unicode_decimal": 59018
|
||||
},
|
||||
{
|
||||
"icon_id": "15838584",
|
||||
"name": "arrow-right-filling",
|
||||
"font_class": "arrow-right-filling",
|
||||
"unicode": "e68b",
|
||||
"unicode_decimal": 59019
|
||||
},
|
||||
{
|
||||
"icon_id": "15838585",
|
||||
"name": "caps-unlock-filling",
|
||||
"font_class": "caps-unlock-filling",
|
||||
"unicode": "e68c",
|
||||
"unicode_decimal": 59020
|
||||
},
|
||||
{
|
||||
"icon_id": "15838586",
|
||||
"name": "comment-filling",
|
||||
"font_class": "comment-filling",
|
||||
"unicode": "e68d",
|
||||
"unicode_decimal": 59021
|
||||
},
|
||||
{
|
||||
"icon_id": "15838587",
|
||||
"name": "check-item-filling",
|
||||
"font_class": "check-item-filling",
|
||||
"unicode": "e68e",
|
||||
"unicode_decimal": 59022
|
||||
},
|
||||
{
|
||||
"icon_id": "15838588",
|
||||
"name": "clock-filling",
|
||||
"font_class": "clock-filling",
|
||||
"unicode": "e68f",
|
||||
"unicode_decimal": 59023
|
||||
},
|
||||
{
|
||||
"icon_id": "15838589",
|
||||
"name": "delete-filling",
|
||||
"font_class": "delete-filling",
|
||||
"unicode": "e690",
|
||||
"unicode_decimal": 59024
|
||||
},
|
||||
{
|
||||
"icon_id": "15838590",
|
||||
"name": "decline-filling",
|
||||
"font_class": "decline-filling",
|
||||
"unicode": "e691",
|
||||
"unicode_decimal": 59025
|
||||
},
|
||||
{
|
||||
"icon_id": "15838591",
|
||||
"name": "dynamic-filling",
|
||||
"font_class": "dynamic-filling",
|
||||
"unicode": "e692",
|
||||
"unicode_decimal": 59026
|
||||
},
|
||||
{
|
||||
"icon_id": "15838592",
|
||||
"name": "intermediate-filling",
|
||||
"font_class": "intermediate-filling",
|
||||
"unicode": "e693",
|
||||
"unicode_decimal": 59027
|
||||
},
|
||||
{
|
||||
"icon_id": "15838593",
|
||||
"name": "favorite-filling",
|
||||
"font_class": "favorite-filling",
|
||||
"unicode": "e694",
|
||||
"unicode_decimal": 59028
|
||||
},
|
||||
{
|
||||
"icon_id": "15838594",
|
||||
"name": "layout-filling",
|
||||
"font_class": "layout-filling",
|
||||
"unicode": "e695",
|
||||
"unicode_decimal": 59029
|
||||
},
|
||||
{
|
||||
"icon_id": "15838595",
|
||||
"name": "help-filling",
|
||||
"font_class": "help-filling",
|
||||
"unicode": "e696",
|
||||
"unicode_decimal": 59030
|
||||
},
|
||||
{
|
||||
"icon_id": "15838596",
|
||||
"name": "history-filling",
|
||||
"font_class": "history-filling",
|
||||
"unicode": "e697",
|
||||
"unicode_decimal": 59031
|
||||
},
|
||||
{
|
||||
"icon_id": "15838597",
|
||||
"name": "filter-filling",
|
||||
"font_class": "filter-filling",
|
||||
"unicode": "e698",
|
||||
"unicode_decimal": 59032
|
||||
},
|
||||
{
|
||||
"icon_id": "15838598",
|
||||
"name": "file-common-filling",
|
||||
"font_class": "file-common-filling",
|
||||
"unicode": "e699",
|
||||
"unicode_decimal": 59033
|
||||
},
|
||||
{
|
||||
"icon_id": "15838599",
|
||||
"name": "news-filling",
|
||||
"font_class": "news-filling",
|
||||
"unicode": "e69a",
|
||||
"unicode_decimal": 59034
|
||||
},
|
||||
{
|
||||
"icon_id": "15838600",
|
||||
"name": "edit-filling",
|
||||
"font_class": "edit-filling",
|
||||
"unicode": "e69b",
|
||||
"unicode_decimal": 59035
|
||||
},
|
||||
{
|
||||
"icon_id": "15838601",
|
||||
"name": "fullscreen-expand-filling",
|
||||
"font_class": "fullscreen-expand-filling",
|
||||
"unicode": "e69c",
|
||||
"unicode_decimal": 59036
|
||||
},
|
||||
{
|
||||
"icon_id": "15838602",
|
||||
"name": "smile-filling",
|
||||
"font_class": "smile-filling",
|
||||
"unicode": "e69d",
|
||||
"unicode_decimal": 59037
|
||||
},
|
||||
{
|
||||
"icon_id": "15838603",
|
||||
"name": "rise-filling",
|
||||
"font_class": "rise-filling",
|
||||
"unicode": "e69e",
|
||||
"unicode_decimal": 59038
|
||||
},
|
||||
{
|
||||
"icon_id": "15838604",
|
||||
"name": "picture-filling",
|
||||
"font_class": "picture-filling",
|
||||
"unicode": "e69f",
|
||||
"unicode_decimal": 59039
|
||||
},
|
||||
{
|
||||
"icon_id": "15838605",
|
||||
"name": "notification-filling",
|
||||
"font_class": "notification-filling",
|
||||
"unicode": "e6a0",
|
||||
"unicode_decimal": 59040
|
||||
},
|
||||
{
|
||||
"icon_id": "15838606",
|
||||
"name": "user-filling",
|
||||
"font_class": "user-filling",
|
||||
"unicode": "e6a1",
|
||||
"unicode_decimal": 59041
|
||||
},
|
||||
{
|
||||
"icon_id": "15838607",
|
||||
"name": "setting-filling",
|
||||
"font_class": "setting-filling",
|
||||
"unicode": "e6a2",
|
||||
"unicode_decimal": 59042
|
||||
},
|
||||
{
|
||||
"icon_id": "15838608",
|
||||
"name": "switch-filling",
|
||||
"font_class": "switch-filling",
|
||||
"unicode": "e6a3",
|
||||
"unicode_decimal": 59043
|
||||
},
|
||||
{
|
||||
"icon_id": "15838609",
|
||||
"name": "work-filling",
|
||||
"font_class": "work-filling",
|
||||
"unicode": "e6a4",
|
||||
"unicode_decimal": 59044
|
||||
},
|
||||
{
|
||||
"icon_id": "15838610",
|
||||
"name": "task-filling",
|
||||
"font_class": "task-filling",
|
||||
"unicode": "e6a5",
|
||||
"unicode_decimal": 59045
|
||||
},
|
||||
{
|
||||
"icon_id": "15838611",
|
||||
"name": "success-filling",
|
||||
"font_class": "success-filling",
|
||||
"unicode": "e6a6",
|
||||
"unicode_decimal": 59046
|
||||
},
|
||||
{
|
||||
"icon_id": "15838612",
|
||||
"name": "warning-filling",
|
||||
"font_class": "warning-filling",
|
||||
"unicode": "e6a7",
|
||||
"unicode_decimal": 59047
|
||||
},
|
||||
{
|
||||
"icon_id": "15838613",
|
||||
"name": "folder-filling",
|
||||
"font_class": "folder-filling",
|
||||
"unicode": "e6a8",
|
||||
"unicode_decimal": 59048
|
||||
},
|
||||
{
|
||||
"icon_id": "15838614",
|
||||
"name": "map-filling",
|
||||
"font_class": "map-filling",
|
||||
"unicode": "e6a9",
|
||||
"unicode_decimal": 59049
|
||||
},
|
||||
{
|
||||
"icon_id": "15838615",
|
||||
"name": "prompt-filling",
|
||||
"font_class": "prompt-filling",
|
||||
"unicode": "e6aa",
|
||||
"unicode_decimal": 59050
|
||||
},
|
||||
{
|
||||
"icon_id": "15838616",
|
||||
"name": "meh-filling",
|
||||
"font_class": "meh-filling",
|
||||
"unicode": "e6ab",
|
||||
"unicode_decimal": 59051
|
||||
},
|
||||
{
|
||||
"icon_id": "15838617",
|
||||
"name": "cry-filling",
|
||||
"font_class": "cry-filling",
|
||||
"unicode": "e6ac",
|
||||
"unicode_decimal": 59052
|
||||
},
|
||||
{
|
||||
"icon_id": "15838618",
|
||||
"name": "top-filling",
|
||||
"font_class": "top-filling",
|
||||
"unicode": "e6ad",
|
||||
"unicode_decimal": 59053
|
||||
},
|
||||
{
|
||||
"icon_id": "15838619",
|
||||
"name": "home-filling",
|
||||
"font_class": "home-filling",
|
||||
"unicode": "e6ae",
|
||||
"unicode_decimal": 59054
|
||||
},
|
||||
{
|
||||
"icon_id": "15838620",
|
||||
"name": "sorting",
|
||||
"font_class": "sorting",
|
||||
"unicode": "e6af",
|
||||
"unicode_decimal": 59055
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,27 @@
|
||||
|
||||
import './line/iconfont.css'
|
||||
import lineJsonData from './line/iconfont.json'
|
||||
|
||||
import './filled/iconfont.css'
|
||||
import filledJsonData from './filled/iconfont.json'
|
||||
|
||||
export default {
|
||||
icons: [
|
||||
{
|
||||
name: '基础',
|
||||
key: 'default',
|
||||
iconItem: [
|
||||
{
|
||||
name: '线框风格',
|
||||
key: 'default',
|
||||
item: lineJsonData.glyphs
|
||||
},
|
||||
{
|
||||
name: '实底风格',
|
||||
key: 'filled',
|
||||
item: filledJsonData.glyphs
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,825 @@
|
||||
@font-face {
|
||||
font-family: "snowy"; /* Project id 3791763 */
|
||||
src: url('iconfont.ttf?t=1675526220710') format('truetype');
|
||||
}
|
||||
|
||||
.snowy {
|
||||
font-family: "snowy" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.export-outlined:before {
|
||||
content: "\e792";
|
||||
}
|
||||
|
||||
.experiment-outlined:before {
|
||||
content: "\e7c9";
|
||||
}
|
||||
|
||||
.expand-outlined:before {
|
||||
content: "\e915";
|
||||
}
|
||||
|
||||
.expand-alt-outlined:before {
|
||||
content: "\e7e9";
|
||||
}
|
||||
|
||||
.exception-outlined:before {
|
||||
content: "\e7bb";
|
||||
}
|
||||
|
||||
.euro-outlined:before {
|
||||
content: "\e78f";
|
||||
}
|
||||
|
||||
.euro-circle-outlined:before {
|
||||
content: "\eb62";
|
||||
}
|
||||
|
||||
.environment-outlined:before {
|
||||
content: "\e790";
|
||||
}
|
||||
|
||||
.ellipsis-outlined:before {
|
||||
content: "\e815";
|
||||
}
|
||||
|
||||
.download-outlined:before {
|
||||
content: "\e814";
|
||||
}
|
||||
|
||||
.dollar-outlined:before {
|
||||
content: "\e78d";
|
||||
}
|
||||
|
||||
.dollar-circle-outlined:before {
|
||||
content: "\eb61";
|
||||
}
|
||||
|
||||
.dislike-outlined:before {
|
||||
content: "\e7c8";
|
||||
}
|
||||
|
||||
.disconnect-outlined:before {
|
||||
content: "\e7e8";
|
||||
}
|
||||
|
||||
.dingtalk-outlined:before {
|
||||
content: "\e881";
|
||||
}
|
||||
|
||||
.desktop-outlined:before {
|
||||
content: "\e845";
|
||||
}
|
||||
|
||||
.deployment-unit-outlined:before {
|
||||
content: "\e7d2";
|
||||
}
|
||||
|
||||
.delivered-procedure-outlined:before {
|
||||
content: "\e911";
|
||||
}
|
||||
|
||||
.delete-column-outlined:before {
|
||||
content: "\e901";
|
||||
}
|
||||
|
||||
.delete-row-outlined:before {
|
||||
content: "\e902";
|
||||
}
|
||||
|
||||
.database-outlined:before {
|
||||
content: "\e7b9";
|
||||
}
|
||||
|
||||
.dashboard-outlined:before {
|
||||
content: "\e78b";
|
||||
}
|
||||
|
||||
.customer-service-outlined:before {
|
||||
content: "\e7ca";
|
||||
}
|
||||
|
||||
.crown-outlined:before {
|
||||
content: "\e844";
|
||||
}
|
||||
|
||||
.credit-card-outlined:before {
|
||||
content: "\e7e5";
|
||||
}
|
||||
|
||||
.copyright-outlined:before {
|
||||
content: "\e789";
|
||||
}
|
||||
|
||||
.copyright-circle-outlined:before {
|
||||
content: "\eb60";
|
||||
}
|
||||
|
||||
.control-outlined:before {
|
||||
content: "\e79c";
|
||||
}
|
||||
|
||||
.container-outlined:before {
|
||||
content: "\e7b8";
|
||||
}
|
||||
|
||||
.contacts-outlined:before {
|
||||
content: "\e7e4";
|
||||
}
|
||||
|
||||
.console-sql-outlined:before {
|
||||
content: "\e910";
|
||||
}
|
||||
|
||||
.compress-outlined:before {
|
||||
content: "\e914";
|
||||
}
|
||||
|
||||
.compass-outlined:before {
|
||||
content: "\e786";
|
||||
}
|
||||
|
||||
.comment-outlined:before {
|
||||
content: "\e8ea";
|
||||
}
|
||||
|
||||
.coffee-outlined:before {
|
||||
content: "\e6b5";
|
||||
}
|
||||
|
||||
.code-outlined:before {
|
||||
content: "\e79b";
|
||||
}
|
||||
|
||||
.cloud-server-outlined:before {
|
||||
content: "\e7db";
|
||||
}
|
||||
|
||||
.cloud-upload-outlined:before {
|
||||
content: "\e7dc";
|
||||
}
|
||||
|
||||
.cloud-outlined:before {
|
||||
content: "\e7dd";
|
||||
}
|
||||
|
||||
.cloud-download-outlined:before {
|
||||
content: "\e7de";
|
||||
}
|
||||
|
||||
.cloud-sync-outlined:before {
|
||||
content: "\e7e0";
|
||||
}
|
||||
|
||||
.clear-outlined:before {
|
||||
content: "\e900";
|
||||
}
|
||||
|
||||
.ci-circle-outlined:before {
|
||||
content: "\e77f";
|
||||
}
|
||||
|
||||
.carry-out-outlined:before {
|
||||
content: "\e7d6";
|
||||
}
|
||||
|
||||
.car-outlined:before {
|
||||
content: "\e7da";
|
||||
}
|
||||
|
||||
.ci-outlined:before {
|
||||
content: "\eb5f";
|
||||
}
|
||||
|
||||
.camera-outlined:before {
|
||||
content: "\e7d9";
|
||||
}
|
||||
|
||||
.calendar-outlined:before {
|
||||
content: "\e7d4";
|
||||
}
|
||||
|
||||
.calculator-outlined:before {
|
||||
content: "\e79a";
|
||||
}
|
||||
|
||||
.bulb-outlined:before {
|
||||
content: "\e7c7";
|
||||
}
|
||||
|
||||
.build-outlined:before {
|
||||
content: "\e7d5";
|
||||
}
|
||||
|
||||
.bug-outlined:before {
|
||||
content: "\e8e9";
|
||||
}
|
||||
|
||||
.branches-outlined:before {
|
||||
content: "\e7e7";
|
||||
}
|
||||
|
||||
.borderless-table-outlined:before {
|
||||
content: "\e813";
|
||||
}
|
||||
|
||||
.border-outlined:before {
|
||||
content: "\e7b7";
|
||||
}
|
||||
|
||||
.book-outlined:before {
|
||||
content: "\e7b6";
|
||||
}
|
||||
|
||||
.block-outlined:before {
|
||||
content: "\e7df";
|
||||
}
|
||||
|
||||
.bell-outlined:before {
|
||||
content: "\e7c5";
|
||||
}
|
||||
|
||||
.bars-outlined:before {
|
||||
content: "\e71a";
|
||||
}
|
||||
|
||||
.barcode-outlined:before {
|
||||
content: "\e7d8";
|
||||
}
|
||||
|
||||
.bank-outlined:before {
|
||||
content: "\e7c6";
|
||||
}
|
||||
|
||||
.audit-outlined:before {
|
||||
content: "\e7c0";
|
||||
}
|
||||
|
||||
.audio-outlined:before {
|
||||
content: "\e89b";
|
||||
}
|
||||
|
||||
.audio-muted-outlined:before {
|
||||
content: "\e8e8";
|
||||
}
|
||||
|
||||
.api-outlined:before {
|
||||
content: "\e7e3";
|
||||
}
|
||||
|
||||
.apartment-outlined:before {
|
||||
content: "\e89a";
|
||||
}
|
||||
|
||||
.alert-outlined:before {
|
||||
content: "\e7c4";
|
||||
}
|
||||
|
||||
.aim-outlined:before {
|
||||
content: "\e913";
|
||||
}
|
||||
|
||||
.account-book-outlined:before {
|
||||
content: "\e7d3";
|
||||
}
|
||||
|
||||
.column-height-outlined:before {
|
||||
content: "\e811";
|
||||
}
|
||||
|
||||
.column-width-outlined:before {
|
||||
content: "\e812";
|
||||
}
|
||||
|
||||
.radius-setting-outlined:before {
|
||||
content: "\e7b5";
|
||||
}
|
||||
|
||||
.unordered-list-outlined:before {
|
||||
content: "\e80f";
|
||||
}
|
||||
|
||||
.ordered-list-outlined:before {
|
||||
content: "\e810";
|
||||
}
|
||||
|
||||
.drag-outlined:before {
|
||||
content: "\e843";
|
||||
}
|
||||
|
||||
.sort-descending-outlined:before {
|
||||
content: "\e80d";
|
||||
}
|
||||
|
||||
.sort-ascending-outlined:before {
|
||||
content: "\e80e";
|
||||
}
|
||||
|
||||
.font-colors-outlined:before {
|
||||
content: "\e808";
|
||||
}
|
||||
|
||||
.font-size-outlined:before {
|
||||
content: "\e809";
|
||||
}
|
||||
|
||||
.line-height-outlined:before {
|
||||
content: "\e80a";
|
||||
}
|
||||
|
||||
.dash-outlined:before {
|
||||
content: "\e80b";
|
||||
}
|
||||
|
||||
.small-dash-outlined:before {
|
||||
content: "\e80c";
|
||||
}
|
||||
|
||||
.zoom-out-outlined:before {
|
||||
content: "\e898";
|
||||
}
|
||||
|
||||
.zoom-in-outlined:before {
|
||||
content: "\e899";
|
||||
}
|
||||
|
||||
.undo-outlined:before {
|
||||
content: "\e787";
|
||||
}
|
||||
|
||||
.redo-outlined:before {
|
||||
content: "\e788";
|
||||
}
|
||||
|
||||
.bold-outlined:before {
|
||||
content: "\e804";
|
||||
}
|
||||
|
||||
.strikethrough-outlined:before {
|
||||
content: "\e805";
|
||||
}
|
||||
|
||||
.underline-outlined:before {
|
||||
content: "\e806";
|
||||
}
|
||||
|
||||
.italic-outlined:before {
|
||||
content: "\e807";
|
||||
}
|
||||
|
||||
.bg-colors-outlined:before {
|
||||
content: "\e803";
|
||||
}
|
||||
|
||||
.align-right-outlined:before {
|
||||
content: "\e7fb";
|
||||
}
|
||||
|
||||
.align-left-outlined:before {
|
||||
content: "\e802";
|
||||
}
|
||||
|
||||
.align-center-outlined:before {
|
||||
content: "\e7f5";
|
||||
}
|
||||
|
||||
.highlight-outlined:before {
|
||||
content: "\e7e2";
|
||||
}
|
||||
|
||||
.diff-outlined:before {
|
||||
content: "\e7bf";
|
||||
}
|
||||
|
||||
.snippets-outlined:before {
|
||||
content: "\e7bd";
|
||||
}
|
||||
|
||||
.delete-outlined:before {
|
||||
content: "\e7c3";
|
||||
}
|
||||
|
||||
.scissor-outlined:before {
|
||||
content: "\e7e6";
|
||||
}
|
||||
|
||||
.copy-outlined:before {
|
||||
content: "\e7bc";
|
||||
}
|
||||
|
||||
.form-outlined:before {
|
||||
content: "\e791";
|
||||
}
|
||||
|
||||
.edit-outlined:before {
|
||||
content: "\e7e1";
|
||||
}
|
||||
|
||||
.stop-outlined:before {
|
||||
content: "\e842";
|
||||
}
|
||||
|
||||
.issues-close-outlined:before {
|
||||
content: "\e68e";
|
||||
}
|
||||
|
||||
.warning-outlined:before {
|
||||
content: "\e682";
|
||||
}
|
||||
|
||||
.clock-circle-outlined:before {
|
||||
content: "\e784";
|
||||
}
|
||||
|
||||
.check-circle-outlined:before {
|
||||
content: "\e77d";
|
||||
}
|
||||
|
||||
.check-square-outlined:before {
|
||||
content: "\e794";
|
||||
}
|
||||
|
||||
.check-outlined:before {
|
||||
content: "\e7fc";
|
||||
}
|
||||
|
||||
.exclamation-circle-outlined:before {
|
||||
content: "\e785";
|
||||
}
|
||||
|
||||
.exclamation-outlined:before {
|
||||
content: "\e7fa";
|
||||
}
|
||||
|
||||
.info-circle-outlined:before {
|
||||
content: "\e77e";
|
||||
}
|
||||
|
||||
.info-outlined:before {
|
||||
content: "\e7f9";
|
||||
}
|
||||
|
||||
.minus-square-outlined:before {
|
||||
content: "\e796";
|
||||
}
|
||||
|
||||
.plus-square-outlined:before {
|
||||
content: "\e797";
|
||||
}
|
||||
|
||||
.minus-circle-outlined:before {
|
||||
content: "\e780";
|
||||
}
|
||||
|
||||
.minus-outlined:before {
|
||||
content: "\e801";
|
||||
}
|
||||
|
||||
.pause-circle-outlined:before {
|
||||
content: "\e783";
|
||||
}
|
||||
|
||||
.pause-outlined:before {
|
||||
content: "\e800";
|
||||
}
|
||||
|
||||
.plus-circle-outlined:before {
|
||||
content: "\e781";
|
||||
}
|
||||
|
||||
.plus-outlined:before {
|
||||
content: "\e8fe";
|
||||
}
|
||||
|
||||
.question-circle-outlined:before {
|
||||
content: "\e782";
|
||||
}
|
||||
|
||||
.question-outlined:before {
|
||||
content: "\e7ff";
|
||||
}
|
||||
|
||||
.fullscreen-outlined:before {
|
||||
content: "\e7ec";
|
||||
}
|
||||
|
||||
.fullscreen-exit-outlined:before {
|
||||
content: "\e7ed";
|
||||
}
|
||||
|
||||
.radius-bottomleft-outlined:before {
|
||||
content: "\e7b1";
|
||||
}
|
||||
|
||||
.radius-bottomright-outlined:before {
|
||||
content: "\e7b2";
|
||||
}
|
||||
|
||||
.radius-upleft-outlined:before {
|
||||
content: "\e7b3";
|
||||
}
|
||||
|
||||
.radius-upright-outlined:before {
|
||||
content: "\e7b4";
|
||||
}
|
||||
|
||||
.pic-center-outlined:before {
|
||||
content: "\e7f6";
|
||||
}
|
||||
|
||||
.pic-right-outlined:before {
|
||||
content: "\e7f7";
|
||||
}
|
||||
|
||||
.pic-left-outlined:before {
|
||||
content: "\e7f8";
|
||||
}
|
||||
|
||||
.border-outer-outlined:before {
|
||||
content: "\e7a9";
|
||||
}
|
||||
|
||||
.border-top-outlined:before {
|
||||
content: "\e7aa";
|
||||
}
|
||||
|
||||
.border-bottom-outlined:before {
|
||||
content: "\e7ab";
|
||||
}
|
||||
|
||||
.border-left-outlined:before {
|
||||
content: "\e7ac";
|
||||
}
|
||||
|
||||
.border-right-outlined:before {
|
||||
content: "\e7ad";
|
||||
}
|
||||
|
||||
.border-inner-outlined:before {
|
||||
content: "\e7ae";
|
||||
}
|
||||
|
||||
.border-verticle-outlined:before {
|
||||
content: "\e7af";
|
||||
}
|
||||
|
||||
.border-horizontal-outlined:before {
|
||||
content: "\e7b0";
|
||||
}
|
||||
|
||||
.menu-unfold-outlined:before {
|
||||
content: "\e7f3";
|
||||
}
|
||||
|
||||
.menu-fold-outlined:before {
|
||||
content: "\e7f4";
|
||||
}
|
||||
|
||||
.logout-outlined:before {
|
||||
content: "\e78c";
|
||||
}
|
||||
|
||||
.login-outlined:before {
|
||||
content: "\e8f4";
|
||||
}
|
||||
|
||||
.cluster-outlined:before {
|
||||
content: "\e7d7";
|
||||
}
|
||||
|
||||
.down-square-outlined:before {
|
||||
content: "\e793";
|
||||
}
|
||||
|
||||
.left-square-outlined:before {
|
||||
content: "\e795";
|
||||
}
|
||||
|
||||
.right-square-outlined:before {
|
||||
content: "\e798";
|
||||
}
|
||||
|
||||
.up-Square-outlined:before {
|
||||
content: "\e799";
|
||||
}
|
||||
|
||||
.play-circle-outlined:before {
|
||||
content: "\e67a";
|
||||
}
|
||||
|
||||
.arrow-down-outlined:before {
|
||||
content: "\e66d";
|
||||
}
|
||||
|
||||
.arrow-right-outlined:before {
|
||||
content: "\e66e";
|
||||
}
|
||||
|
||||
.arrow-up-outlined:before {
|
||||
content: "\e66f";
|
||||
}
|
||||
|
||||
.arrow-left-outlined:before {
|
||||
content: "\e670";
|
||||
}
|
||||
|
||||
.swap-outlined:before {
|
||||
content: "\e7f2";
|
||||
}
|
||||
|
||||
.swap-right-outlined:before {
|
||||
content: "\e8f2";
|
||||
}
|
||||
|
||||
.swap-left-outlined:before {
|
||||
content: "\e8f3";
|
||||
}
|
||||
|
||||
.enter-outlined:before {
|
||||
content: "\e7fd";
|
||||
}
|
||||
|
||||
.rollback-outlined:before {
|
||||
content: "\e7fe";
|
||||
}
|
||||
|
||||
.retweet-outlined:before {
|
||||
content: "\e8f1";
|
||||
}
|
||||
|
||||
.fast-backward-outlined:before {
|
||||
content: "\e8ed";
|
||||
}
|
||||
|
||||
.fast-forward-outlined:before {
|
||||
content: "\e8ee";
|
||||
}
|
||||
|
||||
.vertical-align-bottom-outlined:before {
|
||||
content: "\e7ef";
|
||||
}
|
||||
|
||||
.vertical-align-middle-outlined:before {
|
||||
content: "\e7f0";
|
||||
}
|
||||
|
||||
.vertical-align-top-outlined:before {
|
||||
content: "\e7f1";
|
||||
}
|
||||
|
||||
.vertical-right-outlined:before {
|
||||
content: "\e7ea";
|
||||
}
|
||||
|
||||
.vertical-left-outlined:before {
|
||||
content: "\e7eb";
|
||||
}
|
||||
|
||||
.double-left-outlined:before {
|
||||
content: "\e66b";
|
||||
}
|
||||
|
||||
.double-right-outlined:before {
|
||||
content: "\e66c";
|
||||
}
|
||||
|
||||
.up-circle-outlined:before {
|
||||
content: "\e666";
|
||||
}
|
||||
|
||||
.right-circle-outlined:before {
|
||||
content: "\e667";
|
||||
}
|
||||
|
||||
.left-circle-outlined:before {
|
||||
content: "\e66a";
|
||||
}
|
||||
|
||||
.down-circle-outlined:before {
|
||||
content: "\eb5e";
|
||||
}
|
||||
|
||||
.caret-up-outlined:before {
|
||||
content: "\e689";
|
||||
}
|
||||
|
||||
.caret-down-outlined:before {
|
||||
content: "\e68a";
|
||||
}
|
||||
|
||||
.caret-left-outlined:before {
|
||||
content: "\e68b";
|
||||
}
|
||||
|
||||
.caret-right-outlined:before {
|
||||
content: "\e68c";
|
||||
}
|
||||
|
||||
.left-outlined:before {
|
||||
content: "\e685";
|
||||
}
|
||||
|
||||
.up-outlined:before {
|
||||
content: "\e686";
|
||||
}
|
||||
|
||||
.down-outlined:before {
|
||||
content: "\e687";
|
||||
}
|
||||
|
||||
.right-outlined:before {
|
||||
content: "\e688";
|
||||
}
|
||||
|
||||
.arrows-alt-outlined:before {
|
||||
content: "\e665";
|
||||
}
|
||||
|
||||
.shrink-outlined:before {
|
||||
content: "\e68d";
|
||||
}
|
||||
|
||||
.step-backward-outlined:before {
|
||||
content: "\e8ef";
|
||||
}
|
||||
|
||||
.step-forward-outlined:before {
|
||||
content: "\e8f0";
|
||||
}
|
||||
|
||||
.robot-outlined:before {
|
||||
content: "\e897";
|
||||
}
|
||||
|
||||
.file-word-outlined:before {
|
||||
content: "\e7ba";
|
||||
}
|
||||
|
||||
.usergroup-delete-outlined:before {
|
||||
content: "\e760";
|
||||
}
|
||||
|
||||
.field-time-outlined:before {
|
||||
content: "\eb5d";
|
||||
}
|
||||
|
||||
.setting-outlined:before {
|
||||
content: "\e78e";
|
||||
}
|
||||
|
||||
.file-search-outlined:before {
|
||||
content: "\e730";
|
||||
}
|
||||
|
||||
.team-outlined:before {
|
||||
content: "\e67d";
|
||||
}
|
||||
|
||||
.message-outlined:before {
|
||||
content: "\e78a";
|
||||
}
|
||||
|
||||
.mail-outlined:before {
|
||||
content: "\e62e";
|
||||
}
|
||||
|
||||
.send-outlined:before {
|
||||
content: "\e622";
|
||||
}
|
||||
|
||||
.appstore-add-outlined:before {
|
||||
content: "\e8eb";
|
||||
}
|
||||
|
||||
.user-outlined:before {
|
||||
content: "\e641";
|
||||
}
|
||||
|
||||
.project-outlined:before {
|
||||
content: "\e746";
|
||||
}
|
||||
|
||||
.hdd-outlined:before {
|
||||
content: "\e734";
|
||||
}
|
||||
|
||||
.tool-outlined:before {
|
||||
content: "\e75b";
|
||||
}
|
||||
|
||||
.user-switch-outlined:before {
|
||||
content: "\ea3d";
|
||||
}
|
||||
|
||||
.appstore-outlined:before {
|
||||
content: "\e601";
|
||||
}
|
||||
|
||||
.home-outlined:before {
|
||||
content: "\e965";
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20">
|
||||
<path
|
||||
fill="currentColor"
|
||||
fillRule="evenodd"
|
||||
d="M20 1v18.001L12.607 1H20ZM7.399 1L0 19.001V1h7.399Zm2.604 6.265L14.713 19h-3.086l-1.41-3.419H6.77l3.233-8.316Z"
|
||||
></path>
|
||||
</svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAdobe'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20">
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M20 13.692V3.846A3.845 3.845 0 0 0 16.154 0H3.846A3.845 3.845 0 0 0 0 3.846v12.308A3.845 3.845 0 0 0 3.846 20h12.308a3.848 3.848 0 0 0 3.787-3.167c-1.02-.439-5.44-2.347-7.742-3.45c-1.755 2.122-3.589 3.396-6.356 3.396s-4.613-1.703-4.388-3.79c.145-1.368 1.084-3.605 5.161-3.22c2.148.201 3.132.604 4.886 1.182c.45-.83.83-1.745 1.114-2.72H4.847v-.77H8.69V6.077H4V5.23h4.69V3.236s.045-.315.389-.315H11V5.23h5.002v.847H11v1.384h4.078a15.726 15.726 0 0 1-1.654 4.154c1.182.43 6.575 2.077 6.575 2.077ZM5.538 15.46c-2.925 0-3.384-1.846-3.23-2.617c.154-.77 1.002-1.768 2.625-1.768c1.87 0 3.541.477 5.547 1.454c-1.407 1.837-3.144 2.93-4.942 2.93Z"
|
||||
></path>
|
||||
</svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAlipay'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20">
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M19.23 6.572a9.611 9.611 0 0 0-2.104-3.073a9.875 9.875 0 0 0-6.94-2.83a9.882 9.882 0 0 0-3.226.533C4.191-.093.9-.002.756.003a.769.769 0 0 0-.7 1.052l1.727 4.277a9.513 9.513 0 0 0-1.415 5.002a9.48 9.48 0 0 0 .771 3.763a9.611 9.611 0 0 0 2.103 3.073a9.875 9.875 0 0 0 6.94 2.83a9.891 9.891 0 0 0 3.824-.76a9.776 9.776 0 0 0 5.223-5.143A9.472 9.472 0 0 0 20 10.334c0-1.304-.259-2.57-.77-3.762Zm-8.584 1.855c0 .442-.363.8-.812.8a.806.806 0 0 1-.812-.8V6.973c0-.442.363-.8.812-.8c.449 0 .812.358.812.8v1.454Zm4.721 0c0 .442-.363.8-.812.8a.806.806 0 0 1-.813-.8V6.973c0-.442.364-.8.813-.8c.449 0 .812.358.812.8v1.454Z"
|
||||
></path>
|
||||
</svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAliwangwang'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M12.735 1.828L13.6.254a.172.172 0 0 0-.3-.164l-.874 1.59a5.987 5.987 0 0 0-2.428-.508c-.869 0-1.69.181-2.424.506L6.698.09a.171.171 0 0 0-.232-.069a.169.169 0 0 0-.069.232l.866 1.572c-1.7.874-2.85 2.537-2.849 4.447l11.166-.001c0-1.91-1.146-3.57-2.845-4.444Zm-5.278 2.43a.467.467 0 1 1 .001-.934a.467.467 0 0 1 0 .935ZM15.542 6.7l.002 8.012c0 .481-.262.897-.648 1.127a1.31 1.31 0 0 1-.675.19l-.904.001v2.734a1.237 1.237 0 0 1-1.489 1.21a1.238 1.238 0 0 1-.99-1.209V16.03H9.163v2.735A1.237 1.237 0 0 1 7.925 20a1.239 1.239 0 0 1-1.238-1.235V16.03h-.901c-.521 0-.967-.3-1.182-.736a1.298 1.298 0 0 1-.141-.581l-.002-8.01L15.542 6.7ZM2.74 6.47c.684 0 1.24.553 1.24 1.234v5.17a1.238 1.238 0 0 1-1.922 1.03a1.231 1.231 0 0 1-.557-1.03L1.5 7.703c0-.68.555-1.234 1.24-1.234Zm14.52-.001c.684 0 1.24.552 1.24 1.234v5.169c0 .683-.555 1.235-1.239 1.235c-.685 0-1.24-.552-1.24-1.235v-5.17c0-.682.554-1.235 1.238-1.234Zm-4.72-3.144a.467.467 0 1 1 0 .933a.467.467 0 1 1 0-.933Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAndroid'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M4.074 6.445a.29.29 0 0 0-.296.285v5.986a.29.29 0 0 0 .296.285a.29.29 0 0 0 .296-.285V6.73a.29.29 0 0 0-.296-.285Zm.089-1.318c.918 0 1.663.718 1.663 1.603v5.986c0 .885-.745 1.603-1.663 1.603S2.5 13.6 2.5 12.716V6.73c0-.885.745-1.603 1.663-1.603Zm1.74 1.501v8.13h8.201v-8.13H5.902ZM4.534 5.31H15.47v9.887c0 .485-.408.879-.911.879H5.446c-.503 0-.91-.394-.91-.879V5.31Zm11.372 1.12a.29.29 0 0 0-.296.284V12.7a.29.29 0 0 0 .296.285c.164 0 .296-.189.296-.285V6.714a.29.29 0 0 0-.296-.285Zm-6.89 8.775c.378 0 .684.295.684.659v2.32C9.7 19.293 9.104 20 8.04 20c-1.046 0-1.662-.684-1.724-1.816v-2.32c0-.364.306-.66.684-.66c.377 0 .683.296.683.66v2.285c.024.446.102.533.358.533c.238 0 .292-.064.292-.498v-2.32c0-.364.306-.66.684-.66Zm4.542 0c.377 0 .683.295.683.659v2.32c0 1.109-.597 1.816-1.66 1.816c-1.046 0-1.662-.684-1.724-1.816v-2.32c0-.364.306-.66.684-.66c.377 0 .683.296.683.66v2.285c.024.446.102.533.358.533c.238 0 .292-.064.292-.498v-2.32c0-.364.306-.66.684-.66ZM12.664.27a.7.7 0 0 1 .955-.145a.644.644 0 0 1 .15.92l-.68.903a5.501 5.501 0 0 1 2.382 3.202c.117-.026.24-.04.366-.04c.918 0 1.663.718 1.663 1.603V12.7c0 .885-.745 1.603-1.663 1.603s-1.663-.718-1.663-1.603V6.714c0-.318.096-.615.263-.865l-.203.032c-.33-2.013-2.138-3.517-4.276-3.517c-2.211 0-4.061 1.607-4.302 3.709l-1.359-.145c.187-1.63 1.109-3.034 2.43-3.912l-.732-.97a.644.644 0 0 1 .15-.92a.7.7 0 0 1 .955.145l.85 1.127a5.872 5.872 0 0 1 2.008-.352c.66 0 1.295.109 1.887.31ZM8.636 3.337c.252 0 .456.197.456.44a.448.448 0 0 1-.456.439a.448.448 0 0 1-.456-.44c0-.242.204-.439.456-.439Zm2.734 0c.252 0 .456.197.456.44a.448.448 0 0 1-.456.439a.448.448 0 0 1-.455-.44c0-.242.204-.439.455-.439Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAndroidO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M14.122 4.682c1.35 0 2.781.743 3.8 2.028c-3.34 1.851-2.797 6.674.578 7.963c-.465 1.04-.687 1.505-1.285 2.426c-.835 1.284-2.01 2.884-3.469 2.898c-1.295.012-1.628-.853-3.386-.843c-1.758.01-2.125.858-3.42.846c-1.458-.014-2.573-1.458-3.408-2.743C1.198 13.665.954 9.45 2.394 7.21C3.417 5.616 5.03 4.683 6.548 4.683c1.545 0 2.516.857 3.794.857c1.24 0 1.994-.858 3.78-.858ZM13.73 0c.18 1.215-.314 2.405-.963 3.247c-.695.902-1.892 1.601-3.05 1.565c-.21-1.163.332-2.36.99-3.167C11.43.755 12.67.074 13.73 0Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwApple'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M7.07 10.91a2.02 2.02 0 0 1 2.02 2.02v5.05A2.02 2.02 0 0 1 7.07 20H2.02A2.02 2.02 0 0 1 0 17.98v-5.05a2.02 2.02 0 0 1 2.02-2.02h5.05Zm10.91 0A2.02 2.02 0 0 1 20 12.93v5.05A2.02 2.02 0 0 1 17.98 20h-5.05a2.02 2.02 0 0 1-2.02-2.02v-5.05a2.02 2.02 0 0 1 2.02-2.02h5.05ZM7.07 0a2.02 2.02 0 0 1 2.02 2.02v5.05a2.02 2.02 0 0 1-2.02 2.02H2.02A2.02 2.02 0 0 1 0 7.07V2.02A2.02 2.02 0 0 1 2.02 0h5.05Zm10.91 0A2.02 2.02 0 0 1 20 2.02v5.05a2.02 2.02 0 0 1-2.02 2.02h-5.05a2.02 2.02 0 0 1-2.02-2.02V2.02A2.02 2.02 0 0 1 12.93 0h5.05Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAppstore'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M2.02 1.515a.505.505 0 0 0-.505.505v5.05c0 .28.226.506.505.506h5.05a.505.505 0 0 0 .506-.505V2.02a.505.505 0 0 0-.505-.506H2.02Zm5.05 9.394a2.02 2.02 0 0 1 2.02 2.02v5.05A2.02 2.02 0 0 1 7.07 20H2.02A2.02 2.02 0 0 1 0 17.98v-5.05a2.02 2.02 0 0 1 2.02-2.02h5.05Zm10.91 0A2.02 2.02 0 0 1 20 12.93v5.05A2.02 2.02 0 0 1 17.98 20h-5.05a2.02 2.02 0 0 1-2.02-2.02v-5.05a2.02 2.02 0 0 1 2.02-2.02h5.05ZM7.07 12.424H2.02a.505.505 0 0 0-.505.505v5.05c0 .28.226.506.505.506h5.05a.505.505 0 0 0 .506-.505v-5.05a.505.505 0 0 0-.505-.506Zm10.91 0h-5.05a.505.505 0 0 0-.506.505v5.05c0 .28.226.506.505.506h5.05a.505.505 0 0 0 .506-.505v-5.05a.505.505 0 0 0-.505-.506ZM7.07 0a2.02 2.02 0 0 1 2.02 2.02v5.05a2.02 2.02 0 0 1-2.02 2.02H2.02A2.02 2.02 0 0 1 0 7.07V2.02A2.02 2.02 0 0 1 2.02 0h5.05Zm10.91 0A2.02 2.02 0 0 1 20 2.02v5.05a2.02 2.02 0 0 1-2.02 2.02h-5.05a2.02 2.02 0 0 1-2.02-2.02V2.02A2.02 2.02 0 0 1 12.93 0h5.05Zm0 1.515h-5.05a.505.505 0 0 0-.506.505v5.05c0 .28.226.506.505.506h5.05a.505.505 0 0 0 .506-.505V2.02a.505.505 0 0 0-.505-.506Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAppstoreO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M9.087 2.054c.198 0 .357.16.357.357c0 .018-.007.034-.01.052h.01v7.755c0 .197.16.357.357.357h7.78c.196 0 .356.16.356.357l-.002.01l.002.085c0 4.955-4.015 8.973-8.969 8.973C4.015 20 0 15.982 0 11.027C0 6.07 4.015 2.054 8.968 2.054l.096.002c.008.002.015-.002.023-.002ZM11.13 0c4.877.05 8.82 3.996 8.871 8.876c0 .197-.16.357-.357.357c-.018 0-.034-.008-.052-.01v.01H11.13a.357.357 0 0 1-.357-.357V.41h.01c-.002-.018-.01-.034-.01-.052c0-.197.16-.357.357-.357Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAreaChart'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M9.364.765c-.037 5.419-.078 10.936-.12 16.553a398914.9 398914.9 0 0 0-6.454-6.361c-.385-.312-.802-.221-1.067.035c-.248.24-.353.7.007 1.09c2.368 2.326 4.975 4.892 7.82 7.697a.794.794 0 0 0 .554.222a.745.745 0 0 0 .539-.222c2.726-2.75 5.287-5.335 7.683-7.755a.754.754 0 0 0-.055-1.032c-.371-.374-.885-.229-1.093 0a3545.93 3545.93 0 0 1-6.386 6.437c.041-5.609.08-11.163.117-16.664c0-.26-.212-.765-.767-.765s-.778.469-.778.765Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwArrowDown'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M7.397 2.21A.726.726 0 0 1 8.41 2.2a.69.69 0 0 1 .012.99L2.373 9.243l16.931.105a.7.7 0 0 1-.008 1.4l-16.809-.104l6.303 6.16a.69.69 0 0 1 .076.903l-.075.087a.727.727 0 0 1-1.012 0L.21 10.4a.69.69 0 0 1-.005-.985Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwArrowLeft'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M.696 9.349c5.518-.03 11.165-.062 16.942-.096c-2.807-2.81-4.835-4.842-6.084-6.095c-.143-.179-.158-.554.112-.847c.27-.293.752-.281.89-.14c2.362 2.372 4.772 4.782 7.23 7.23a.65.65 0 0 1 .215.503a.645.645 0 0 1-.215.502a8382.495 8382.495 0 0 1-7.6 7.421a.742.742 0 0 1-1.014-.063c-.263-.287-.29-.588.061-.982c2.002-1.96 4.097-4.004 6.287-6.13c-5.713.038-11.321.07-16.824.097a.701.701 0 0 1-.696-.72c0-.507.388-.68.696-.68Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwArrowRight'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="m9.551.222l-7.82 7.696c-.306.416-.309.78-.008 1.091c.301.312.665.314 1.093.007l6.428-6.334V19.32c.041.453.319.68.833.681c.514.001.792-.226.833-.68l-.111-16.64l6.38 6.328c.415.321.78.321 1.092 0c.313-.32.334-.663.062-1.027l-7.7-7.76A.776.776 0 0 0 10.078 0a.674.674 0 0 0-.526.222Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwArrowUp'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M9.163 10.762a.7.7 0 0 1 .008.99l-6.737 6.854l4.266-.001a.7.7 0 0 1 0 1.4h-6a.7.7 0 0 1-.7-.7v-6a.7.7 0 0 1 1.4 0l.001 4.354l6.772-6.888a.7.7 0 0 1 .99-.009ZM19.302 0a.7.7 0 0 1 .7.7v6a.7.7 0 0 1-1.4 0L18.6 2.346l-6.772 6.888a.7.7 0 0 1-.998-.981l6.737-6.854l-4.266.001a.7.7 0 0 1 0-1.4h6Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwArrowsAlt'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c.412 0 .746.344.746.768l-.001 7.725l6.07-4.54a.73.73 0 0 1 .971.082l.072.087a.783.783 0 0 1-.166 1.073l-6.424 4.804l6.424 4.806c.334.25.408.73.166 1.073a.732.732 0 0 1-1.043.17l-6.07-4.542l.001 7.726A.757.757 0 0 1 10 20a.757.757 0 0 1-.746-.768v-7.726l-6.07 4.542a.73.73 0 0 1-.97-.083l-.072-.087a.783.783 0 0 1 .166-1.073L8.73 10L2.308 5.195a.783.783 0 0 1-.166-1.073a.732.732 0 0 1 1.043-.17l6.069 4.541V.768C9.254.344 9.588 0 10 0Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwAsterisk'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="m10.903 2.931l-.001 5.108l6.615-5.593c.62-.526 1.58-.323 1.58.485v14.14c0 .805-.96 1.009-1.58.483l-6.615-5.593v5.11c0 .805-.96 1.009-1.58.483l-8.085-6.836a.936.936 0 0 1 0-1.434l8.086-6.838c.62-.526 1.58-.323 1.58.485Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwBackward'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M3.723 10.54c2.132-.47 1.838-3.07 1.777-3.639c-.104-.875-1.115-2.406-2.486-2.283c-1.723.155-1.974 2.7-1.974 2.7c-.235 1.174.557 3.687 2.683 3.22M7.68 6.172c1.176 0 2.127-1.383 2.127-3.09C9.807 1.382 8.859 0 7.683 0C6.507 0 5.551 1.375 5.551 3.083c0 1.708.956 3.09 2.132 3.09m5.069.205c1.576.217 2.582-1.5 2.786-2.8c.204-1.29-.817-2.798-1.927-3.056c-1.12-.264-2.5 1.56-2.638 2.749c-.147 1.458.204 2.907 1.772 3.113m6.24 2.184c0-.621-.5-2.493-2.376-2.493c-1.875 0-2.132 1.766-2.132 3.015c0 1.192.097 2.85 2.438 2.8c2.332-.059 2.077-2.7 2.077-3.324m-2.375 5.447s-2.438-1.924-3.86-3.999c-1.927-3.063-4.667-1.816-5.58-.263c-.915 1.569-2.336 2.551-2.537 2.813c-.204.259-2.94 1.766-2.33 4.516c.612 2.749 2.744 2.699 2.744 2.699s1.568.158 3.397-.258c1.83-.417 3.397.1 3.397.1s4.253 1.457 5.43-1.342c1.163-2.807-.662-4.257-.662-4.257"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwBaidu'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M3 6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h2Zm5.365 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h2Zm5.332-12a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h2ZM19 0a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h2Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwBarChart'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M8.438 2.5h.889v12.73h-.889V2.5Zm-2.22 0H7.55v12.73H6.218V2.5Zm-.888 0h.444v12.73H5.33V2.5Zm-3.11 0h.445v12.73H2.22V2.5Zm.889 0H4.44v12.73H3.11V2.5Zm12.45 0h1.332v12.73H15.56V2.5Zm-2.665 0h1.332v12.73h-1.332V2.5Zm1.776 0h.445v12.73h-.445V2.5Zm-1.776 13.638h4.885V17.5h-4.885v-1.362ZM0 2.5h1.332v15H0v-15Zm10.673 13.638h1.333V17.5h-1.333v-1.362ZM17.335 2.5h.444v12.73h-.444V2.5Zm1.333 0H20v15h-1.332v-15Zm-7.106 0h.888v12.73h-.888V2.5ZM2.22 16.138h1.332V17.5H2.221v-1.362Zm2.22 0h5.33V17.5H4.44v-1.362ZM10.23 2.5h.444v12.73h-.444V2.5Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwBarcode'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M9.985 0c1.089 0 1.971.898 1.971 2.006l-.009.163c.868.352 1.707.936 2.451 1.71c.862.893 1.366 2.077 1.521 3.596v5.478l1.191 2.098c.4.666.528 1.224.216 1.707c-.286.441-.797.595-1.49.583h-2.67C12.854 18.86 11.532 20 9.95 20c-1.584 0-2.905-1.14-3.216-2.658H3.778l-.056-.003c-.627-.054-1.094-.357-1.199-.94c-.071-.397.023-.823.268-1.331l1.225-2.18l.003-5.473c.107-1.21.56-2.337 1.348-3.371c.667-.875 1.62-1.519 2.654-1.89a1.752 1.752 0 0 1-.006-.148C8.015.898 8.897 0 9.985 0Zm1.818 17.342H8.097c.275.77 1 1.32 1.853 1.32c.852 0 1.578-.55 1.853-1.32ZM10.082 3.124c-1.354 0-2.843.645-3.677 1.74c-.638.836-.994 1.722-1.075 2.61v5.59c0 .117-.03.232-.087.333l-1.291 2.296a1.71 1.71 0 0 0-.12.311h12.014c.121.002.213-.003.276-.005a2.615 2.615 0 0 0-.141-.265l-1.287-2.267a.678.678 0 0 1-.088-.335l.003-5.586c-.121-1.162-.506-2.064-1.149-2.732c-1.04-1.08-2.262-1.69-3.378-1.69Zm-.097-1.787a.66.66 0 0 0-.635.497c.246-.031.49-.047.732-.047c.177 0 .356.01.535.032a.66.66 0 0 0-.632-.482Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwBell'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.818 5.174a.449.449 0 0 0-.454.443V16.23c0 .244.203.442.454.442h16.364a.449.449 0 0 0 .454-.442V5.617a.449.449 0 0 0-.454-.443H1.818Zm0-1.326h16.364c1.004 0 1.818.792 1.818 1.769V16.23c0 .977-.814 1.769-1.818 1.769H1.818C.814 18 0 17.208 0 16.231V5.617c0-.977.814-1.77 1.818-1.77Zm-.79 5.528a.673.673 0 0 1-.681-.664c0-.366.305-.663.682-.663h4.5c.376 0 .681.297.681.663a.673.673 0 0 1-.682.664h-4.5Zm13.109 0a.673.673 0 0 1-.682-.664c0-.366.305-.663.682-.663h4.975c.376 0 .682.297.682.663a.673.673 0 0 1-.682.664h-4.975Zm-4.3 6.52c-2.887 0-5.227-2.277-5.227-5.086c0-2.81 2.34-5.086 5.227-5.086c2.887 0 5.228 2.277 5.228 5.086s-2.34 5.086-5.228 5.086Zm0-1.327c2.134 0 3.864-1.683 3.864-3.76c0-2.075-1.73-3.759-3.864-3.759c-2.133 0-3.863 1.684-3.863 3.76c0 2.076 1.73 3.759 3.863 3.759ZM6.852 4.673l-1.2-.63c.292-.526.623-.976.994-1.35A2.263 2.263 0 0 1 8.29 2l6.371.002a2.49 2.49 0 0 1 1.657.777c.355.374.668.79.94 1.246l-1.178.666a5.773 5.773 0 0 0-.765-1.014a1.089 1.089 0 0 0-.709-.35H8.29c-.255 0-.463.089-.663.29c-.28.282-.54.633-.774 1.056ZM2.5 3.181c0-.367.305-.664.682-.664c.376 0 .682.297.682.664V4.29a.673.673 0 0 1-.682.663a.673.673 0 0 1-.682-.663V3.18Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCameraO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="m17.704 6.58l-6.972 8.086a.967.967 0 0 1-1.463 0L2.296 6.58C1.76 5.96 1.967 5 2.791 5h14.42c.821 0 1.029.96.493 1.58Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCaretDown'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="m13.42 2.296l-8.047 6.94A.923.923 0 0 0 5 10c0 .315.137.58.41.797l8.01 6.907c.32.268.664.357 1.032.267c.3-.087.482-.29.548-.607v-14.7a.758.758 0 0 0-.526-.628c-.383-.091-.734-.005-1.054.26Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCaretLeft'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M5 2.643v14.765c.092.32.299.511.619.572c.32.061.633-.024.94-.255l8.107-6.993A.944.944 0 0 0 15 10a.94.94 0 0 0-.334-.73L6.58 2.295c-.232-.197-.639-.383-1.061-.253c-.282.087-.455.287-.519.6Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCaretRight'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="m10.685 5.284l7.019 8.136c.24.277.339.595.296.954c-.043.359-.28.568-.71.626H2.744c-.351-.025-.582-.199-.693-.522c-.11-.324-.054-.651.17-.981l7.097-8.213a.962.962 0 0 1 1.367 0Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCaretUp'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M18.635 4.243a.795.795 0 0 1 1.12-.023a.788.788 0 0 1 .024 1.117L8.787 16.757a.795.795 0 0 1-1.137.008L.228 9.262a.788.788 0 0 1 .008-1.117a.795.795 0 0 1 1.122.008l6.849 6.924L18.635 4.243Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCheck'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M18.182 0C19.186 0 20 .814 20 1.818v16.364A1.818 1.818 0 0 1 18.182 20H1.818A1.818 1.818 0 0 1 0 18.182V1.818C0 .814.814 0 1.818 0h16.364Zm-3.26 6.564a.682.682 0 0 0-.963.053L9.547 11.55L6.715 8.52a.682.682 0 0 0-.996.931l3.34 3.575a.682.682 0 0 0 1.007-.01l4.91-5.489a.682.682 0 0 0-.054-.962Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCheckSquare'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.818 1.364a.455.455 0 0 0-.454.454v16.364c0 .25.203.454.454.454h16.364a.455.455 0 0 0 .454-.454V1.818a.455.455 0 0 0-.454-.454H1.818ZM18.182 0C19.186 0 20 .814 20 1.818v16.364A1.818 1.818 0 0 1 18.182 20H1.818A1.818 1.818 0 0 1 0 18.182V1.818C0 .814.814 0 1.818 0h16.364Zm-3.26 6.564a.682.682 0 0 0-.963.053L9.547 11.55L6.715 8.52a.682.682 0 0 0-.996.931l3.34 3.575a.682.682 0 0 0 1.007-.01l4.91-5.489a.682.682 0 0 0-.054-.962Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCheckSquareO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M5.39 11.918c1.06 2.086 3.303 3.358 5.624 2.923l-2.566 5.033A9.985 9.985 0 0 1 0 9.998c0-2.02.603-3.905 1.63-5.479l3.76 7.399Zm9.608-10.579a10.021 10.021 0 0 1 3.928 4.151l-8.28-.435C8.302 4.921 6.07 6.238 5.3 8.447L2.22 3.716A9.991 9.991 0 0 1 9.965 0a9.928 9.928 0 0 1 5.033 1.34ZM13.368 10a3.367 3.367 0 0 1-3.37 3.37A3.367 3.367 0 0 1 6.628 10a3.367 3.367 0 0 1 3.37-3.37a3.367 3.367 0 0 1 3.37 3.37Zm1.63 8.658a9.976 9.976 0 0 1-5.557 1.328l4.52-6.951c1.283-1.976 1.26-4.553-.269-6.339l5.636-.29a9.99 9.99 0 0 1-4.33 12.252Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwChrome'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm4.922 6.583a.682.682 0 0 0-.963.053l-4.412 4.932l-2.832-3.03a.682.682 0 1 0-.996.931l3.34 3.575a.682.682 0 0 0 1.007-.01l4.91-5.489a.682.682 0 0 0-.054-.962Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCircleCheck'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm0 1.395a8.605 8.605 0 1 0 0 17.21a8.605 8.605 0 0 0 0-17.21Zm4.922 5.188c.28.25.304.682.053.962l-4.909 5.488a.682.682 0 0 1-1.006.011L5.72 9.47a.682.682 0 0 1 .995-.931l2.832 3.03l4.412-4.932a.682.682 0 0 1 .963-.053Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCircleCheckO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm2.207 6.837L10.01 9.03L7.815 6.837a.682.682 0 0 0-.88-.072l-.084.072a.682.682 0 0 0 0 .964l2.195 2.193l-2.195 2.193a.682.682 0 1 0 .964.965l2.195-2.195l2.197 2.195c.24.24.613.263.88.071l.084-.072a.682.682 0 0 0 0-.964l-2.196-2.193l2.195-2.193a.682.682 0 0 0-.963-.964Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCircleClose'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm0 1.395a8.605 8.605 0 1 0 0 17.21a8.605 8.605 0 0 0 0-17.21Zm2.207 5.442a.682.682 0 0 1 .963.964l-2.195 2.193l2.195 2.193a.682.682 0 0 1-.963.965l-2.197-2.195l-2.195 2.195a.682.682 0 0 1-.88.071l-.084-.072a.682.682 0 0 1 0-.964l2.195-2.193l-2.195-2.193a.682.682 0 1 1 .964-.964L10.01 9.03Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCircleCloseO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm0 1.395a8.605 8.605 0 1 0 0 17.21a8.605 8.605 0 0 0 0-17.21Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCircleO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="m3.219 2.154l6.778 6.773l6.706-6.705c.457-.407.93-.164 1.119.04a.777.777 0 0 1-.044 1.035l-6.707 6.704l6.707 6.702c.298.25.298.74.059 1.014c-.24.273-.68.431-1.095.107l-6.745-6.749l-6.753 6.752c-.296.265-.784.211-1.025-.052c-.242-.264-.334-.72-.025-1.042l6.729-6.732l-6.701-6.704c-.245-.27-.33-.764 0-1.075c.33-.311.822-.268.997-.068Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwClose'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M18.182 0C19.186 0 20 .814 20 1.818v16.364A1.818 1.818 0 0 1 18.182 20H1.818A1.818 1.818 0 0 1 0 18.182V1.818C0 .814.814 0 1.818 0h16.364Zm-5.975 6.818L10.01 9.01L7.815 6.818a.682.682 0 0 0-.88-.072l-.084.072a.682.682 0 0 0 0 .964l2.195 2.193l-2.195 2.193a.682.682 0 1 0 .964.965l2.195-2.195l2.197 2.195c.24.24.613.263.88.071l.084-.072a.682.682 0 0 0 0-.964l-2.196-2.193l2.195-2.193a.682.682 0 0 0-.963-.964Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCloseSquare'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.818 1.364a.455.455 0 0 0-.454.454v16.364c0 .25.203.454.454.454h16.364a.455.455 0 0 0 .454-.454V1.818a.455.455 0 0 0-.454-.454H1.818ZM18.182 0C19.186 0 20 .814 20 1.818v16.364A1.818 1.818 0 0 1 18.182 20H1.818A1.818 1.818 0 0 1 0 18.182V1.818C0 .814.814 0 1.818 0h16.364Zm-5.975 6.818L10.01 9.01L7.815 6.818a.682.682 0 0 0-.88-.072l-.084.072a.682.682 0 0 0 0 .964l2.195 2.193l-2.195 2.193a.682.682 0 1 0 .964.965l2.195-2.195l2.197 2.195c.24.24.613.263.88.071l.084-.072a.682.682 0 0 0 0-.964l-2.196-2.193l2.195-2.193a.682.682 0 0 0-.963-.964Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCloseSquareO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M11.5 2.5a4.499 4.499 0 0 1 4.492 4.77H16l-.001 1.227a4 4 0 0 1 3.996 3.799l.005.2a4 4 0 0 1-3.8 3.992l-.2.005h-.001L16 16.5H4a4.01 4.01 0 0 1-4-4.005a4 4 0 0 1 3.198-3.918a3 3 0 0 1 4.313-3.664A4.498 4.498 0 0 1 11.5 2.5Zm-.046 4h-2v4.922L7 11.42l3.454 4.076l3.464-4.073h-2.464V6.5Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCloudDownload'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M5.668 8.668a.712.712 0 0 1-.611.737c-1.282.155-2.201.552-2.78 1.17c-.576.612-.874 1.41-.899 2.35c.09 1.007.422 1.762.997 2.302c.572.537 1.431.822 2.603.83l10.67.001c.996-.067 1.73-.444 2.251-1.139c.659-.876.797-1.665.682-2.547c-.086-.662-.495-1.502-1.157-2.073c-.505-.436-1.3-.701-2.401-.77c-.374-.023-.661-.353-.65-.743a4.835 4.835 0 0 0-.912-3.034c-.872-1.23-2.223-1.857-3.551-1.806c-1.299.05-2.502.663-3.371 1.822c-.612.816-.9 1.772-.871 2.9Zm8.903-3.775a6.288 6.288 0 0 1 1.17 3.257c1.069.146 1.925.486 2.563 1.036c.944.815 1.516 1.987 1.646 2.991c.161 1.237-.045 2.41-.964 3.633c-.774 1.03-1.875 1.596-3.295 1.69H4.973c-1.489-.01-2.672-.402-3.522-1.2C.605 15.506.122 14.412 0 12.975c.03-1.376.46-2.525 1.29-3.41c.717-.765 1.725-1.26 3.009-1.501c.076-1.195.46-2.263 1.153-3.185C6.577 3.377 8.163 2.57 9.859 2.505c1.768-.068 3.559.763 4.712 2.389Zm-4.415 2.128c-.382 0-.691.323-.691.721l-.001 4.143l-.787-.81a.682.682 0 0 0-.897-.082l-.086.075a.733.733 0 0 0 .007 1.014l1.98 2.041a.68.68 0 0 0 .982.007l1.954-2.014a.733.733 0 0 0-.006-1.014a.68.68 0 0 0-.984-.007l-.781.805V7.742a.712.712 0 0 0-.597-.715Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCloudDownloadO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M11.5 3a4.499 4.499 0 0 1 4.492 4.77H16l-.001 1.227a4 4 0 0 1 3.996 3.799l.005.2a4 4 0 0 1-3.8 3.992l-.2.005h-.001L16 17h-5.001v-3.923h2.464L10 9.003l-3.454 4.075H9L8.999 17H4a4.01 4.01 0 0 1-4-4.005a4 4 0 0 1 3.198-3.918a3 3 0 0 1 4.313-3.664A4.498 4.498 0 0 1 11.5 3Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCloudUpload'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M5.668 8.668a.712.712 0 0 1-.611.737c-1.282.155-2.201.552-2.78 1.17c-.576.612-.874 1.41-.899 2.35c.09 1.007.422 1.762.997 2.302c.572.537 1.431.822 2.603.83l10.67.001c.996-.067 1.73-.444 2.251-1.139c.659-.876.797-1.665.682-2.547c-.086-.662-.495-1.502-1.157-2.073c-.505-.436-1.3-.701-2.401-.77c-.374-.023-.661-.353-.65-.743a4.835 4.835 0 0 0-.912-3.034c-.872-1.23-2.223-1.857-3.551-1.806c-1.299.05-2.502.663-3.371 1.822c-.612.816-.9 1.772-.871 2.9Zm8.903-3.775a6.288 6.288 0 0 1 1.17 3.257c1.069.146 1.925.486 2.563 1.036c.944.815 1.516 1.987 1.646 2.991c.161 1.237-.045 2.41-.964 3.633c-.774 1.03-1.875 1.596-3.295 1.69H4.973c-1.489-.01-2.672-.402-3.522-1.2C.605 15.506.122 14.412 0 12.975c.03-1.376.46-2.525 1.29-3.41c.717-.765 1.725-1.26 3.009-1.501c.076-1.195.46-2.263 1.153-3.185C6.577 3.377 8.163 2.57 9.859 2.505c1.768-.068 3.559.763 4.712 2.389ZM9.68 7.135L7.7 9.177a.733.733 0 0 0-.007 1.014a.68.68 0 0 0 .983-.007l.787-.811v4.239c0 .365.26.667.598.715l.094.007c.381 0 .69-.324.69-.722V9.358l.781.806a.68.68 0 0 0 .984-.007a.733.733 0 0 0 .006-1.014L10.663 7.13a.68.68 0 0 0-.983.006Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCloudUploadO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.382 8.505v5.058a5.057 5.057 0 0 0 5.057 5.058h3.677a5.057 5.057 0 0 0 5.057-5.058V8.506L1.382 8.505ZM11.887.16a.69.69 0 0 1 .086.972c-.642.765-.784 1.287-.586 1.637c.062.109.593.948.715 1.207c.276.585.312 1.152.074 1.822a4.622 4.622 0 0 1-.751 1.328h3.881c.437.016.754.127.95.335c.11.114.188.258.237.432l.06-.002a3.448 3.448 0 0 1 0 6.897l-.116-.004A6.438 6.438 0 0 1 10.117 20H6.438a6.436 6.436 0 0 1-6.436-6.437V8.337c-.02-.433.062-.74.244-.92c.183-.18.453-.277.809-.29h2.953a.689.689 0 0 1 .144-.17C4.762 6.44 5.16 5.9 5.36 5.337c.114-.32.101-.51-.022-.771c-.078-.166-.569-.942-.667-1.116c-.539-.952-.242-2.044.728-3.202a.69.69 0 1 1 1.057.886c-.642.765-.783 1.287-.585 1.637c.061.109.593.948.715 1.207c.275.585.312 1.152.073 1.822a4.622 4.622 0 0 1-.75 1.328h.858a.689.689 0 0 1 .144-.17C7.52 6.44 7.918 5.9 8.118 5.337c.114-.32.102-.51-.022-.771c-.078-.166-.569-.942-.667-1.116c-.539-.952-.242-2.044.729-3.202a.69.69 0 1 1 1.056.886c-.641.765-.783 1.287-.585 1.637c.062.109.593.948.715 1.207c.276.585.312 1.152.073 1.822a4.622 4.622 0 0 1-.75 1.328h.859a.689.689 0 0 1 .143-.17c.61-.518 1.007-1.058 1.207-1.621c.114-.32.102-.51-.022-.771c-.078-.166-.568-.942-.667-1.116c-.538-.952-.242-2.044.729-3.202a.69.69 0 0 1 .971-.086Zm4.665 9.11v4.138a2.069 2.069 0 0 0 0-4.138Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCoffee'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M18.62 3.448h-3.448a3.448 3.448 0 0 0-6.896 0H4.828a1.38 1.38 0 0 0-1.38 1.38v3.448a3.448 3.448 0 1 0 0 6.896v3.449A1.38 1.38 0 0 0 4.828 20h4.827v-1.38a2.069 2.069 0 1 1 4.138 0V20h4.828A1.38 1.38 0 0 0 20 18.62v-4.827h-1.38a2.069 2.069 0 1 1 0-4.138H20V4.828a1.38 1.38 0 0 0-1.38-1.38Zm-3.448 8.276a3.448 3.448 0 0 0 3.449 3.448v3.449h-3.449a3.448 3.448 0 1 0-6.896 0H4.828v-4.828h-1.38a2.069 2.069 0 1 1 0-4.138h1.38V4.828h4.827v-1.38a2.069 2.069 0 1 1 4.138 0v1.38h4.828v3.448a3.448 3.448 0 0 0-3.449 3.448Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwComponent'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M6.644 2.983a.252.252 0 0 0-.253.252c0 .139.113.251.253.251h3.713c.14 0 .253-.112.253-.251a.252.252 0 0 0-.253-.252H6.644Zm3.713-1.342c.734 0 1.353.49 1.544 1.16l2.175.001c.621.004 1.122.205 1.432.638c.266.372.372.85.345 1.387L15.85 17.84c.042.552-.062 1.04-.328 1.445c-.312.473-.821.71-1.452.716H3.14c-.76-.03-1.323-.209-1.675-.609c-.327-.371-.47-.88-.464-1.5V4.84c-.013-.6.154-1.106.518-1.48c.376-.384.932-.554 1.647-.559h1.935c.19-.67.809-1.16 1.543-1.16h3.713Zm0 3.187H6.644c-.546 0-1.027-.27-1.317-.684H3.17c-.383.002-.602.07-.682.152c-.091.093-.144.252-.138.531v13.07c-.003.325.052.522.13.61c.054.061.286.135.685.151h10.9c.2-.002.28-.04.326-.109c.091-.138.133-.334.11-.658l.001-13.096c.014-.293-.027-.482-.096-.578c-.026-.035-.116-.072-.336-.073h-2.397c-.29.414-.771.684-1.317.684ZM17.2 0c.994 0 1.8.801 1.8 1.79v14.082c0 .988-.806 1.79-1.8 1.79h-1.958v-1.343h1.957c.249 0 .45-.2.45-.447V1.789a.449.449 0 0 0-.45-.447H9.643c-.248 0-.45.2-.45.447v.157h-1.35v-.157C7.843.801 8.649 0 9.643 0H17.2ZM8.196 11.751c.373 0 .675.3.675.671c0 .37-.302.671-.675.671H4.145a.673.673 0 0 1-.676-.67c0-.371.303-.672.676-.672h4.051Zm4.052-2.684c.372 0 .675.3.675.671c0 .37-.303.671-.675.671H4.145a.673.673 0 0 1-.676-.67c0-.371.303-.672.676-.672h8.103Zm0-2.684c.372 0 .675.3.675.671a.673.673 0 0 1-.675.671H4.145a.673.673 0 0 1-.676-.67c0-.371.303-.672.676-.672h8.103Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCopy'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm0 1.395a8.605 8.605 0 1 0 0 17.21a8.605 8.605 0 0 0 0-17.21Zm.16 3.256c1.08 0 2.117.303 3.003.864a.698.698 0 0 1-.745 1.179a4.211 4.211 0 0 0-2.257-.647c-2.278 0-4.114 1.775-4.114 3.953s1.836 3.953 4.114 3.953c.801 0 1.567-.22 2.224-.627a.698.698 0 0 1 .735 1.187a5.608 5.608 0 0 1-2.96.836c-3.037 0-5.509-2.39-5.509-5.349c0-2.96 2.472-5.349 5.51-5.349Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCopyright'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="m1.5 0l1.594 18.056L10 20l6.906-1.944L18.5 0h-17Zm13.577 5.852L9.994 8.125l-.013.005h4.917l-.563 6.762l-4.334 1.323l-.007-.003v.003l-4.358-1.348l-.28-3.405h2.162l.14 1.764l2.316.611l.02-.006v.003l2.397-.706l.164-2.842l-2.561-.008l-4.78-.016l-.163-2.132l4.943-2.153l.288-.125H4.864l-.259-2.18h10.683l-.211 2.18Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCss3'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M17.394.22a.7.7 0 0 1 .986-.033a.69.69 0 0 1 .034.98l-7.473 7.948l3.269 3.476a3.956 3.956 0 0 1 1.837-.448c2.183 0 3.953 1.759 3.953 3.928C20 18.241 18.23 20 16.047 20c-2.184 0-3.954-1.759-3.954-3.929a3.9 3.9 0 0 1 1.011-2.624l-3.117-3.316l-3.104 3.303a3.9 3.9 0 0 1 1.024 2.637c0 2.17-1.77 3.929-3.954 3.929C1.77 20 0 18.241 0 16.071s1.77-3.928 3.953-3.928c.657 0 1.276.158 1.82.44l3.259-3.468l-7.47-7.948a.69.69 0 0 1 .033-.98a.7.7 0 0 1 .986.033L9.987 8.1ZM3.954 13.53a2.55 2.55 0 0 0-2.559 2.541a2.55 2.55 0 0 0 2.558 2.542a2.55 2.55 0 0 0 2.559-2.542a2.55 2.55 0 0 0-2.559-2.542Zm12.093 0a2.55 2.55 0 0 0-2.559 2.541a2.55 2.55 0 0 0 2.559 2.542a2.55 2.55 0 0 0 2.558-2.542a2.55 2.55 0 0 0-2.558-2.542Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwCut'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M8.397 2.21A.726.726 0 0 1 9.41 2.2a.69.69 0 0 1 .012.99l-6.7 6.707l7.07 6.908a.69.69 0 0 1 0 .99a.727.727 0 0 1-1.012 0L1.21 10.4a.69.69 0 0 1-.005-.985Zm9 0a.726.726 0 0 1 1.012-.01a.69.69 0 0 1 .012.99l-6.7 6.707l7.07 6.908a.69.69 0 0 1 0 .99a.727.727 0 0 1-1.012 0L10.21 10.4a.69.69 0 0 1-.005-.985Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDArrowLeft'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="m2.542 2.154l7.254 7.26c.136.14.204.302.204.483a.73.73 0 0 1-.204.5l-7.575 7.398c-.383.317-.724.317-1.022 0c-.299-.317-.299-.643 0-.98l7.08-6.918l-6.754-6.763c-.237-.343-.215-.654.066-.935c.281-.28.598-.295.951-.045Zm9 0l7.254 7.26c.136.14.204.302.204.483a.73.73 0 0 1-.204.5l-7.575 7.398c-.383.317-.724.317-1.022 0c-.299-.317-.299-.643 0-.98l7.08-6.918l-6.754-6.763c-.237-.343-.215-.654.066-.935c.281-.28.598-.295.951-.045Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDArrowRight'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M15.407 11.333c.618 0 .773.64.37 1.054l-5.23 5.39a.786.786 0 0 1-1.096 0l-5.229-5.39c-.402-.414-.246-1.054.37-1.054Zm-4.86-9.11l5.23 5.39c.403.414.248 1.054-.37 1.054H4.592c-.616 0-.772-.64-.37-1.054l5.229-5.39a.786.786 0 0 1 1.097 0Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDCaret'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm.667 1.359v1.035a.667.667 0 0 1-1.334 0V1.359A8.614 8.614 0 0 0 5.637 2.51l.522.584a.667.667 0 0 1-.995.888l-.63-.707a8.714 8.714 0 0 0-1.776 1.962l.843.506a.667.667 0 0 1-.686 1.143l-.803-.481a8.607 8.607 0 0 0-.709 2.491h.907a.667.667 0 1 1 0 1.334l-.973-.001v.031a8.627 8.627 0 0 0 .742 3.263l.836-.559a.667.667 0 0 1 .741 1.109l-.939.627A8.66 8.66 0 0 0 10 18.667a8.662 8.662 0 0 0 7.447-4.23l-1.132-.757a.667.667 0 0 1 .74-1.109l.989.661a8.633 8.633 0 0 0 .62-3.003H17.58a.667.667 0 0 1 0-1.333h1.017a8.608 8.608 0 0 0-.57-2.168l-.95.492a.667.667 0 1 1-.612-1.184l.965-.5a8.71 8.71 0 0 0-1.839-2.158l-.602.789a.667.667 0 1 1-1.06-.81l.58-.76a8.615 8.615 0 0 0-3.842-1.238Zm3.248 5.46a.667.667 0 0 1-.104.937l-2.04 1.631l.007.12c0 .692-.529 1.262-1.205 1.326l-.129.006a1.333 1.333 0 1 1 .558-2.544l1.976-1.58a.667.667 0 0 1 .937.104Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDashboard'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M5.673 0a.7.7 0 0 1 .7.7v1.309h7.517v-1.3a.7.7 0 0 1 1.4 0v1.3H18a2 2 0 0 1 2 1.999v13.993A2 2 0 0 1 18 20H2a2 2 0 0 1-2-1.999V4.008a2 2 0 0 1 2-1.999h2.973V.699a.7.7 0 0 1 .7-.699ZM1.4 7.742v10.259a.6.6 0 0 0 .6.6h16a.6.6 0 0 0 .6-.6V7.756L1.4 7.742Zm5.267 6.877v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15Zm-8.333-3.977v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15ZM4.973 3.408H2a.6.6 0 0 0-.6.6v2.335l17.2.014V4.008a.6.6 0 0 0-.6-.6h-2.71v.929a.7.7 0 0 1-1.4 0v-.929H6.373v.92a.7.7 0 0 1-1.4 0v-.92Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDate'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="m9.129 0l1.974.005c.778.094 1.46.46 2.022 1.078c.459.504.7 1.09.714 1.728h5.475a.69.69 0 0 1 .686.693a.689.689 0 0 1-.686.692l-1.836-.001v11.627c0 2.543-.949 4.178-3.041 4.178H5.419c-2.092 0-3.026-1.626-3.026-4.178V4.195H.686A.689.689 0 0 1 0 3.505c0-.383.307-.692.686-.692h5.47c.014-.514.205-1.035.554-1.55C7.23.495 8.042.074 9.129 0Zm6.977 4.195H3.764v11.627c0 1.888.52 2.794 1.655 2.794h9.018c1.139 0 1.67-.914 1.67-2.794l-.001-11.627ZM6.716 6.34c.378 0 .685.31.685.692v8.05a.689.689 0 0 1-.686.692a.689.689 0 0 1-.685-.692v-8.05c0-.382.307-.692.685-.692Zm2.726 0c.38 0 .686.31.686.692v8.05a.689.689 0 0 1-.686.692a.689.689 0 0 1-.685-.692v-8.05c0-.382.307-.692.685-.692Zm2.728 0c.378 0 .685.31.685.692v8.05a.689.689 0 0 1-.685.692a.689.689 0 0 1-.686-.692v-8.05a.69.69 0 0 1 .686-.692ZM9.176 1.382c-.642.045-1.065.264-1.334.662c-.198.291-.297.543-.313.768l4.938-.001c-.014-.291-.129-.547-.352-.792c-.346-.38-.73-.586-1.093-.635l-1.846-.002Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDelete'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M17.466 7.475c-.034.147-.115.36-.228.618h.003l-.013.025c-.666 1.497-2.405 4.433-2.405 4.433s-.002-.007-.008-.018l-.509.929h2.45L12.075 20l1.062-4.447H11.21l.67-2.94c-.543.139-1.183.326-1.94.583c0 0-1.026.632-2.957-1.214c0 0-1.302-1.206-.547-1.505c.322-.127 1.558-.29 2.533-.428c1.315-.188 2.124-.286 2.124-.286s-4.056.065-5.018-.096C5.113 9.508 3.89 7.82 3.632 6.339c0 0-.403-.815.864-.43c1.266.387 6.51 1.501 6.51 1.501S4.184 5.213 3.731 4.678C3.278 4.142 2.395 1.753 2.51.285c0 0 .05-.366.407-.268c0 0 5.041 2.42 8.488 3.745c3.45 1.324 6.449 1.998 6.061 3.713Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDingding'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillOpacity=".89" fillRule="evenodd" d="M15.807.939c.396.367.655 1.133.706 1.595c.59.366 1.288 1.104 1.349 2.494c1.053.731 1.853 2.083.854 4.06c.58.54 1.227 2.188.395 3.516c-.969 1.552-3.075 1.66-5.174 1.383c.56 1.565.77 3.009-.116 4.488C12.94 19.787 11.724 20 11.308 20c-1.138 0-1.918-.979-2.234-2.283c-.115-.364-.246-1.224-.297-1.45c-.265-1.44-1.156-2.592-2.67-3.453a11.392 11.392 0 0 0-2.123-.946h-2.34c-.521 0-1.144-.527-1.144-1.165V3.067c.074-.722.475-1.082 1.202-1.082h3.11c1.364-.31 2.724-.642 4.079-.995C10.2.637 10.487.52 11.403.268c2.053-.532 3.478-.24 4.404.67Zm-2.382.424c-.819 0-1.856.252-2.316.399c-.162.051-.446.135-.745.221l-.3.087l-.288.082l-.56.158s-1.41.378-4.173 1.02c-.103.012-.158.02-.166.022v7.38c1.511.582 2.688 1.288 3.53 2.118c1.264 1.244 1.615 2.368 1.822 3.807c.118.723.309 1.306.597 1.705a.65.65 0 0 0 .342.251c.147.047.35.05.783-.184c.433-.236.99-.853 1.095-1.772c.07-.893-.17-1.667-.492-2.481a15.705 15.705 0 0 0-.357-.822c-.218-.413.11-1.099.786-.95c.906.255 3.154.6 4.422 0c.737-.427.92-1.116.547-2.066a1.74 1.74 0 0 0-.495-.553c-.17-.102-.502-.544-.103-1.045c.396-.635.975-1.928-.49-2.734a.656.656 0 0 1-.34-.57c-.02-.274.024-1.29-.73-1.744c-.18-.097-.397-.177-.52-.41c-.078-.154-.103-.528-.103-.528c-.103-.632-.245-1.222-1.746-1.391ZM3.519 3.348H1.861v7.157h1.658V3.348Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDislikeO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M17.226 0C18.206 0 19 .814 19 1.818v16.364C19 19.186 18.206 20 17.226 20H4.542c-.98 0-1.774-.814-1.774-1.818l-.001-1.686H1.665a.674.674 0 0 1-.665-.68c0-.377.298-.682.665-.682h1.102v-2.419H1.665A.674.674 0 0 1 1 12.033c0-.377.298-.682.665-.682l1.102-.001V8.919H1.665A.674.674 0 0 1 1 8.239c0-.377.298-.682.665-.682l1.102-.001V5.122H1.665A.674.674 0 0 1 1 4.441c0-.377.298-.682.665-.682l1.102-.001l.001-1.94C2.768.814 3.562 0 4.542 0h12.684Zm-3.248 1.364H4.466a.344.344 0 0 0-.246.118a.428.428 0 0 0-.12.268v2.008h.844a.668.668 0 0 1 .665.683a.674.674 0 0 1-.665.681H4.1v2.431h.873l.045.007l-.074-.004a.65.65 0 0 1 .313.08l.02.011a.53.53 0 0 1 .124.101l-.055-.053a.684.684 0 0 1 .261.509l-.007-.08a.676.676 0 0 1-.596.792l-.03.002l-.016.001H4.1v2.431h.844a.65.65 0 0 1 .308.078c.062.03.111.066.15.111l-.03-.029a.687.687 0 0 1 .216.696l-.009.03a.682.682 0 0 1-.286.378l-.01.005a.644.644 0 0 1-.339.095H4.1v2.419h.873c.008 0 .016.002.023.004l-.052-.004c.367 0 .665.305.665.682c0 .222-.104.42-.265.544l-.013.01a.524.524 0 0 1-.062.04l-.008.004a.628.628 0 0 1-.275.082h-.013l-.015.002h-.014l-.844-.001v1.764c.006.067.03.13.072.19l.048.058c.073.077.163.12.27.13h9.488V1.364Zm3.264-.002h-1.938v17.274h1.974c.091 0 .176-.042.256-.13a.473.473 0 0 0 .134-.267V1.794a.486.486 0 0 0-.134-.298a.415.415 0 0 0-.292-.134Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDocument'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" fillRule="evenodd" d="M14.02 13.997a1 1 0 0 1 1 1V17a1 1 0 0 1-1 1.001H1a1 1 0 0 1-1-1v-2.002a1 1 0 0 1 1-1.001h13.02ZM19 8.007a1 1 0 0 1 1 1.002v2.001a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1.001h18ZM11.03 2a1 1 0 0 1 1 1v2.002a1 1 0 0 1-1 1.001H1.001a1 1 0 0 1-1-1V3A1 1 0 0 1 1 2h10.03Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDotChart'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10.103 12.778L16.81 6.08a.69.69 0 0 1 .99.012a.726.726 0 0 1-.012 1.012l-7.203 7.193a.69.69 0 0 1-.985-.006L2.205 6.72a.727.727 0 0 1 0-1.01a.69.69 0 0 1 .99 0l6.908 7.068Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDown'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0ZM6.586 7.636a.682.682 0 1 0-.962.967l3.895 3.87c.265.263.69.265.957.005l3.971-3.87a.682.682 0 1 0-.951-.977l-3.491 3.402Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDownCircle'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10S4.477 0 10 0Zm0 1.395a8.605 8.605 0 1 0 0 17.21a8.605 8.605 0 0 0 0-17.21ZM6.586 7.636l3.419 3.397l3.49-3.402a.682.682 0 0 1 .952.977l-3.971 3.87a.682.682 0 0 1-.957-.004l-3.895-3.87a.682.682 0 1 1 .962-.968Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDownCircleO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M18.182 0C19.186 0 20 .814 20 1.818v16.364A1.818 1.818 0 0 1 18.182 20H1.818A1.818 1.818 0 0 1 0 18.182V1.818C0 .814.814 0 1.818 0h16.364ZM14.46 7.625a.682.682 0 0 0-.964-.013l-3.491 3.402l-3.42-3.397a.682.682 0 0 0-.96.967l3.894 3.87c.265.263.69.265.957.005l3.971-3.87a.682.682 0 0 0 .013-.964Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDownSquare'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.818 1.364a.455.455 0 0 0-.454.454v16.364c0 .25.203.454.454.454h16.364a.455.455 0 0 0 .454-.454V1.818a.455.455 0 0 0-.454-.454H1.818ZM18.182 0C19.186 0 20 .814 20 1.818v16.364A1.818 1.818 0 0 1 18.182 20H1.818A1.818 1.818 0 0 1 0 18.182V1.818C0 .814.814 0 1.818 0h16.364ZM14.46 7.625a.682.682 0 0 0-.964-.013l-3.491 3.402l-3.42-3.397a.682.682 0 0 0-.96.967l3.894 3.87c.265.263.69.265.957.005l3.971-3.87a.682.682 0 0 0 .013-.964Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDownSquareO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M19.31 12.051c.381 0 .69.314.69.7v4.918c-.006.67-.127 1.2-.399 1.594c-.328.476-.908.692-1.747.737l-15.903-.002c-.646-.046-1.168-.302-1.507-.777c-.302-.423-.446-.95-.444-1.558V12.75c0-.386.309-.7.69-.7c.38 0 .688.314.688.7v4.913c0 .333.065.572.182.736c.081.114.224.184.44.201l15.817.001c.42-.023.627-.1.655-.14c.084-.123.146-.393.15-.8V12.75c0-.386.308-.7.689-.7ZM9.99 0c.38 0 .69.313.69.7l-.001 10.869l3.062-3.079a.682.682 0 0 1 .975.004a.707.707 0 0 1-.004.99l-4.356 4.38a.682.682 0 0 1-.973-.003l-4.296-4.38a.707.707 0 0 1 .002-.99a.682.682 0 0 1 .975.002L9.3 11.794V.699C9.3.313 9.61 0 9.99 0Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwDownload'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="m2.292 13.36l4.523 4.756L.5 20l1.792-6.64ZM12.705 2.412l4.522 4.755L7.266 17.64l-4.523-4.754l9.962-10.474ZM16.142.348l2.976 3.129c.807.848.086 1.613.086 1.613l-1.521 1.6l-4.524-4.757L14.68.334l.02-.019c.119-.112.776-.668 1.443.033Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwEdit'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M19.3 0a.7.7 0 0 1 .7.7v8.278a6.7 6.7 0 0 1-6.699 6.698l-10.996-.001l3.131 3.13a.7.7 0 0 1-.99.99l-4.24-4.241a.7.7 0 0 1 0-.99l4.241-4.241a.7.7 0 1 1 .99.99l-2.965 2.963h10.83A5.299 5.299 0 0 0 18.6 8.978V.7a.7.7 0 0 1 .7-.7Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwEnter'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.37.805c1.14.574 2.172 1.551 3.126 2.954a7.134 7.134 0 0 1 .996 3.343c.061 1.225-.233 2.517-.873 3.874l-.057.1l-6.023 8.642a.645.645 0 0 1-1.067 0l-5.858-8.4a7.453 7.453 0 0 1-.972-2.314c-.387-1.726 0-4.106 1.368-5.974C5.346 1.206 7.21.315 9.094.069c1.438-.189 2.808-.004 4.277.736Zm-3.339 1.822c-2.681 0-4.838 2.16-4.838 4.804c0 2.643 2.157 4.804 4.838 4.804s4.838-2.16 4.838-4.804c0-2.643-2.157-4.804-4.838-4.804Zm0 2.58c1.241 0 2.24 1 2.24 2.224a2.232 2.232 0 0 1-2.24 2.224c-1.24 0-2.24-1-2.24-2.224c0-1.224 1-2.224 2.24-2.224Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwEnvironment'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.37.805c1.14.574 2.172 1.551 3.126 2.954a7.134 7.134 0 0 1 .996 3.343c.061 1.225-.233 2.517-.873 3.874l-.057.1l-6.023 8.642a.645.645 0 0 1-1.067 0l-5.858-8.4a7.453 7.453 0 0 1-.972-2.314c-.387-1.726 0-4.106 1.368-5.974C5.346 1.206 7.21.315 9.094.069c1.438-.189 2.808-.004 4.277.736Zm-4.111.61c-1.564.204-3.109.943-4.2 2.433c-1.12 1.529-1.44 3.497-1.137 4.85c.14.628.406 1.256.778 1.856l5.305 7.606l5.456-7.829c.531-1.142.767-2.194.718-3.159c-.05-.99-.316-1.886-.78-2.667c-.812-1.192-1.682-2.015-2.605-2.48c-1.223-.617-2.338-.767-3.535-.61Zm.772 2.435c1.959 0 3.554 1.599 3.554 3.58c0 1.983-1.595 3.582-3.554 3.582c-1.958 0-3.554-1.599-3.554-3.581s1.596-3.58 3.554-3.58Zm0 1.357c-1.24 0-2.24 1-2.24 2.224c0 1.223 1 2.224 2.24 2.224c1.241 0 2.24-1 2.24-2.224a2.232 2.232 0 0 0-2.24-2.224Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwEnvironmentO'
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
<template>
|
||||
<svg width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M9.963 2.5c2.043 0 4.223.775 6.184 2.434c1.449 1.226 2.703 2.802 3.763 4.722c.11.198.12.439.027.645c-.988 2.2-2.295 3.882-3.921 5.032C13.94 16.8 11.749 17.5 9.999 17.5c-1.973 0-3.734-.525-5.74-2.094c-1.577-1.232-2.964-2.901-4.164-5a.724.724 0 0 1-.021-.678c.734-1.493 1.851-2.95 3.347-4.377C5.438 3.428 7.833 2.5 9.963 2.5Zm.036 3.406c-2.148 0-3.89 1.792-3.89 4.003c0 2.21 1.742 4.002 3.89 4.002c2.149 0 3.89-1.792 3.89-4.002S12.148 5.906 10 5.906Zm0 1.413c1.39 0 2.517 1.16 2.517 2.59s-1.127 2.59-2.517 2.59s-2.517-1.16-2.517-2.59s1.127-2.59 2.517-2.59Z"></path></svg>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'UiwEye'
|
||||
}
|
||||
</script>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user