@arco-iconbox/vue-te 0.0.76 → 0.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icon.js +4757 -4683
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +9 -1
- package/dist/icon.min.js.map +1 -1
- package/esm/IconExamine2/index.js +46 -0
- package/esm/IconFuwuzhikong/index.js +32 -0
- package/esm/index.js +2 -0
- package/lib/IconExamine2/index.js +47 -0
- package/lib/IconFuwuzhikong/index.js +33 -0
- package/lib/index.js +4 -0
- package/package.json +1 -1
- package/src/IconExamine2/index.vue +19 -0
- package/src/IconFuwuzhikong/index.vue +19 -0
- package/src/index.js +3 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconExamine2",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "teicon-"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", { d: "M4 5H7V6H4V5Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("path", {
|
|
19
|
+
"fill-rule": "evenodd",
|
|
20
|
+
"clip-rule": "evenodd",
|
|
21
|
+
d: "M9 6H13V9H14V5L10 1H2.5C2.354 1 2.23417 1.04683 2.1405 1.1405C2.04683 1.23417 2 1.354 2 1.5V14.5C2 14.646 2.04683 14.7658 2.1405 14.8595C2.23417 14.9532 2.354 15 2.5 15H7V14H3V2H9V6ZM10 2.406L12.594 5H10V2.406Z"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_4 = /* @__PURE__ */ createElementVNode("path", { d: "M9 7H4V8H9V7Z" }, null, -1);
|
|
24
|
+
const _hoisted_5 = /* @__PURE__ */ createElementVNode("path", {
|
|
25
|
+
"fill-rule": "evenodd",
|
|
26
|
+
"clip-rule": "evenodd",
|
|
27
|
+
d: "M8.60175 15.9962C8.57371 16.0037 8.54913 16.0001 8.52804 15.9852C8.50695 15.9704 8.4964 15.9482 8.4964 15.9188L8.95922 13.1134L7.02379 11.1255C7.0027 11.1036 6.99563 11.0797 7.00259 11.0538C7.00954 11.0279 7.02705 11.0113 7.0551 11.004L9.73743 10.5954L10.9367 8.04418C10.9509 8.01473 10.972 8 11 8C11.0281 8 11.0491 8.01473 11.0633 8.04418L12.2626 10.5954L14.9449 11.004C14.973 11.0115 14.9905 11.0281 14.9974 11.0538C15.0044 11.0795 14.9973 11.1034 14.9762 11.1255L13.0408 13.1134L13.4932 15.9188C13.5001 15.9485 13.4931 15.9706 13.472 15.9852C13.4509 15.9998 13.4263 16.0035 13.3982 15.9962L11 14.6709L8.60175 15.9962ZM11 13.5284L12.2019 14.1925L11.9735 12.7762L13.0022 11.7196L11.5846 11.5037L11 10.2602L10.4154 11.5037L8.99784 11.7196L10.0281 12.7778L9.79437 14.1946L11 13.5284Z"
|
|
28
|
+
}, null, -1);
|
|
29
|
+
const _hoisted_6 = [
|
|
30
|
+
_hoisted_2,
|
|
31
|
+
_hoisted_3,
|
|
32
|
+
_hoisted_4,
|
|
33
|
+
_hoisted_5
|
|
34
|
+
];
|
|
35
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
36
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
37
|
+
viewBox: "0 0 16 16",
|
|
38
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-examine2`],
|
|
41
|
+
width: "1em",
|
|
42
|
+
height: "1em"
|
|
43
|
+
}, _ctx.$attrs), _hoisted_6, 16, _hoisted_1);
|
|
44
|
+
}
|
|
45
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
46
|
+
export { index as default };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconFuwuzhikong",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "teicon-"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", { d: "M7.60194 1.07778C7.85827 0.974496 8.14173 0.974496 8.39806 1.07778L13.2662 3.03588C13.7085 3.21232 14 3.66419 14 4.16878V7.93112C14 9.85049 13.1054 11.4955 11.5916 12.8694C10.6426 13.7182 9.5774 14.4058 8.43324 14.9082C8.15616 15.031 7.84484 15.031 7.56777 14.9082C6.42332 14.4063 5.35776 13.719 4.40844 12.8705C2.89462 11.4955 2 9.85049 2 7.93112V4.16878C2 3.66419 2.29151 3.21232 2.73379 3.03588L7.60194 1.07778ZM8 2.07619L7.95577 2.0848L3.08661 4.0429C3.06288 4.0527 3.04249 4.06998 3.02813 4.09246C3.01377 4.11494 3.00612 4.14155 3.0062 4.16878V7.93112C3.0062 9.49115 3.75004 10.8618 5.0588 12.0496C5.92864 12.8253 6.90424 13.4541 7.95175 13.9141C7.98191 13.927 8.01709 13.927 8.04825 13.9141C9.09576 13.4541 10.0714 12.8254 10.9412 12.0496C12.249 10.8618 12.9948 9.49115 12.9948 7.93112V4.16878C12.9948 4.14142 12.987 4.11472 12.9725 4.09223C12.9579 4.06974 12.9373 4.05253 12.9134 4.0429L8.04423 2.0848L8 2.07619ZM10.5391 5.6352C10.6349 5.66287 10.7221 5.71698 10.7922 5.79211C10.8622 5.86724 10.9126 5.96076 10.9383 6.06329C10.9639 6.16582 10.964 6.27377 10.9384 6.37632C10.9128 6.47887 10.8624 6.57242 10.7924 6.6476L8.00503 9.63209C7.88728 9.75757 7.72789 9.82802 7.56174 9.82802C7.39558 9.82802 7.23619 9.75757 7.11845 9.63209L5.52722 7.93005C5.42125 7.81648 5.36177 7.66251 5.36187 7.50201C5.36196 7.3415 5.42162 7.18761 5.52773 7.07419C5.63383 6.96076 5.77769 6.8971 5.92765 6.8972C6.07761 6.8973 6.22139 6.96116 6.32736 7.07472L7.56073 8.39483L9.99229 5.7912C10.0625 5.7163 10.1499 5.66247 10.2457 5.63509C10.3415 5.60771 10.4423 5.60775 10.5381 5.6352H10.5391Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = [
|
|
19
|
+
_hoisted_2
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fuwuzhikong`],
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em"
|
|
29
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
30
|
+
}
|
|
31
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -643,3 +643,5 @@ export { default as IconCaiwuguanli } from "./IconCaiwuguanli/index.js";
|
|
|
643
643
|
export { default as IconJiankangdangan } from "./IconJiankangdangan/index.js";
|
|
644
644
|
export { default as IconXitongpeizhi } from "./IconXitongpeizhi/index.js";
|
|
645
645
|
export { default as IconHuliguanli } from "./IconHuliguanli/index.js";
|
|
646
|
+
export { default as IconFuwuzhikong } from "./IconFuwuzhikong/index.js";
|
|
647
|
+
export { default as IconExamine2 } from "./IconExamine2/index.js";
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var vue = require("vue");
|
|
3
|
+
var pluginVue_exportHelper = require("../_virtual/plugin-vue_export-helper.js");
|
|
4
|
+
const _sfc_main = {
|
|
5
|
+
name: "IconExamine2",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "teicon-"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M4 5H7V6H4V5Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
20
|
+
"fill-rule": "evenodd",
|
|
21
|
+
"clip-rule": "evenodd",
|
|
22
|
+
d: "M9 6H13V9H14V5L10 1H2.5C2.354 1 2.23417 1.04683 2.1405 1.1405C2.04683 1.23417 2 1.354 2 1.5V14.5C2 14.646 2.04683 14.7658 2.1405 14.8595C2.23417 14.9532 2.354 15 2.5 15H7V14H3V2H9V6ZM10 2.406L12.594 5H10V2.406Z"
|
|
23
|
+
}, null, -1);
|
|
24
|
+
const _hoisted_4 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M9 7H4V8H9V7Z" }, null, -1);
|
|
25
|
+
const _hoisted_5 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
26
|
+
"fill-rule": "evenodd",
|
|
27
|
+
"clip-rule": "evenodd",
|
|
28
|
+
d: "M8.60175 15.9962C8.57371 16.0037 8.54913 16.0001 8.52804 15.9852C8.50695 15.9704 8.4964 15.9482 8.4964 15.9188L8.95922 13.1134L7.02379 11.1255C7.0027 11.1036 6.99563 11.0797 7.00259 11.0538C7.00954 11.0279 7.02705 11.0113 7.0551 11.004L9.73743 10.5954L10.9367 8.04418C10.9509 8.01473 10.972 8 11 8C11.0281 8 11.0491 8.01473 11.0633 8.04418L12.2626 10.5954L14.9449 11.004C14.973 11.0115 14.9905 11.0281 14.9974 11.0538C15.0044 11.0795 14.9973 11.1034 14.9762 11.1255L13.0408 13.1134L13.4932 15.9188C13.5001 15.9485 13.4931 15.9706 13.472 15.9852C13.4509 15.9998 13.4263 16.0035 13.3982 15.9962L11 14.6709L8.60175 15.9962ZM11 13.5284L12.2019 14.1925L11.9735 12.7762L13.0022 11.7196L11.5846 11.5037L11 10.2602L10.4154 11.5037L8.99784 11.7196L10.0281 12.7778L9.79437 14.1946L11 13.5284Z"
|
|
29
|
+
}, null, -1);
|
|
30
|
+
const _hoisted_6 = [
|
|
31
|
+
_hoisted_2,
|
|
32
|
+
_hoisted_3,
|
|
33
|
+
_hoisted_4,
|
|
34
|
+
_hoisted_5
|
|
35
|
+
];
|
|
36
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
37
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
38
|
+
viewBox: "0 0 16 16",
|
|
39
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
40
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
41
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-examine2`],
|
|
42
|
+
width: "1em",
|
|
43
|
+
height: "1em"
|
|
44
|
+
}, _ctx.$attrs), _hoisted_6, 16, _hoisted_1);
|
|
45
|
+
}
|
|
46
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
47
|
+
module.exports = index;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var vue = require("vue");
|
|
3
|
+
var pluginVue_exportHelper = require("../_virtual/plugin-vue_export-helper.js");
|
|
4
|
+
const _sfc_main = {
|
|
5
|
+
name: "IconFuwuzhikong",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "teicon-"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M7.60194 1.07778C7.85827 0.974496 8.14173 0.974496 8.39806 1.07778L13.2662 3.03588C13.7085 3.21232 14 3.66419 14 4.16878V7.93112C14 9.85049 13.1054 11.4955 11.5916 12.8694C10.6426 13.7182 9.5774 14.4058 8.43324 14.9082C8.15616 15.031 7.84484 15.031 7.56777 14.9082C6.42332 14.4063 5.35776 13.719 4.40844 12.8705C2.89462 11.4955 2 9.85049 2 7.93112V4.16878C2 3.66419 2.29151 3.21232 2.73379 3.03588L7.60194 1.07778ZM8 2.07619L7.95577 2.0848L3.08661 4.0429C3.06288 4.0527 3.04249 4.06998 3.02813 4.09246C3.01377 4.11494 3.00612 4.14155 3.0062 4.16878V7.93112C3.0062 9.49115 3.75004 10.8618 5.0588 12.0496C5.92864 12.8253 6.90424 13.4541 7.95175 13.9141C7.98191 13.927 8.01709 13.927 8.04825 13.9141C9.09576 13.4541 10.0714 12.8254 10.9412 12.0496C12.249 10.8618 12.9948 9.49115 12.9948 7.93112V4.16878C12.9948 4.14142 12.987 4.11472 12.9725 4.09223C12.9579 4.06974 12.9373 4.05253 12.9134 4.0429L8.04423 2.0848L8 2.07619ZM10.5391 5.6352C10.6349 5.66287 10.7221 5.71698 10.7922 5.79211C10.8622 5.86724 10.9126 5.96076 10.9383 6.06329C10.9639 6.16582 10.964 6.27377 10.9384 6.37632C10.9128 6.47887 10.8624 6.57242 10.7924 6.6476L8.00503 9.63209C7.88728 9.75757 7.72789 9.82802 7.56174 9.82802C7.39558 9.82802 7.23619 9.75757 7.11845 9.63209L5.52722 7.93005C5.42125 7.81648 5.36177 7.66251 5.36187 7.50201C5.36196 7.3415 5.42162 7.18761 5.52773 7.07419C5.63383 6.96076 5.77769 6.8971 5.92765 6.8972C6.07761 6.8973 6.22139 6.96116 6.32736 7.07472L7.56073 8.39483L9.99229 5.7912C10.0625 5.7163 10.1499 5.66247 10.2457 5.63509C10.3415 5.60771 10.4423 5.60775 10.5381 5.6352H10.5391Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
|
+
viewBox: "0 0 16 16",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fuwuzhikong`],
|
|
28
|
+
width: "1em",
|
|
29
|
+
height: "1em"
|
|
30
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -645,6 +645,8 @@ var index$a1 = require("./IconCaiwuguanli/index.js");
|
|
|
645
645
|
var index$a2 = require("./IconJiankangdangan/index.js");
|
|
646
646
|
var index$a3 = require("./IconXitongpeizhi/index.js");
|
|
647
647
|
var index$a4 = require("./IconHuliguanli/index.js");
|
|
648
|
+
var index$a5 = require("./IconFuwuzhikong/index.js");
|
|
649
|
+
var index$a6 = require("./IconExamine2/index.js");
|
|
648
650
|
exports.IconNo = index;
|
|
649
651
|
exports.IconStr = index$1;
|
|
650
652
|
exports.IconConnectedInside = index$2;
|
|
@@ -1290,3 +1292,5 @@ exports.IconCaiwuguanli = index$a1;
|
|
|
1290
1292
|
exports.IconJiankangdangan = index$a2;
|
|
1291
1293
|
exports.IconXitongpeizhi = index$a3;
|
|
1292
1294
|
exports.IconHuliguanli = index$a4;
|
|
1295
|
+
exports.IconFuwuzhikong = index$a5;
|
|
1296
|
+
exports.IconExamine2 = index$a6;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-examine2`]" width="1em" height="1em" v-bind="$attrs"><path d="M4 5H7V6H4V5Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9 6H13V9H14V5L10 1H2.5C2.354 1 2.23417 1.04683 2.1405 1.1405C2.04683 1.23417 2 1.354 2 1.5V14.5C2 14.646 2.04683 14.7658 2.1405 14.8595C2.23417 14.9532 2.354 15 2.5 15H7V14H3V2H9V6ZM10 2.406L12.594 5H10V2.406Z"/><path d="M9 7H4V8H9V7Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.60175 15.9962C8.57371 16.0037 8.54913 16.0001 8.52804 15.9852C8.50695 15.9704 8.4964 15.9482 8.4964 15.9188L8.95922 13.1134L7.02379 11.1255C7.0027 11.1036 6.99563 11.0797 7.00259 11.0538C7.00954 11.0279 7.02705 11.0113 7.0551 11.004L9.73743 10.5954L10.9367 8.04418C10.9509 8.01473 10.972 8 11 8C11.0281 8 11.0491 8.01473 11.0633 8.04418L12.2626 10.5954L14.9449 11.004C14.973 11.0115 14.9905 11.0281 14.9974 11.0538C15.0044 11.0795 14.9973 11.1034 14.9762 11.1255L13.0408 13.1134L13.4932 15.9188C13.5001 15.9485 13.4931 15.9706 13.472 15.9852C13.4509 15.9998 13.4263 16.0035 13.3982 15.9962L11 14.6709L8.60175 15.9962ZM11 13.5284L12.2019 14.1925L11.9735 12.7762L13.0022 11.7196L11.5846 11.5037L11 10.2602L10.4154 11.5037L8.99784 11.7196L10.0281 12.7778L9.79437 14.1946L11 13.5284Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconExamine2',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'teicon-',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-fuwuzhikong`]" width="1em" height="1em" v-bind="$attrs"><path d="M7.60194 1.07778C7.85827 0.974496 8.14173 0.974496 8.39806 1.07778L13.2662 3.03588C13.7085 3.21232 14 3.66419 14 4.16878V7.93112C14 9.85049 13.1054 11.4955 11.5916 12.8694C10.6426 13.7182 9.5774 14.4058 8.43324 14.9082C8.15616 15.031 7.84484 15.031 7.56777 14.9082C6.42332 14.4063 5.35776 13.719 4.40844 12.8705C2.89462 11.4955 2 9.85049 2 7.93112V4.16878C2 3.66419 2.29151 3.21232 2.73379 3.03588L7.60194 1.07778ZM8 2.07619L7.95577 2.0848L3.08661 4.0429C3.06288 4.0527 3.04249 4.06998 3.02813 4.09246C3.01377 4.11494 3.00612 4.14155 3.0062 4.16878V7.93112C3.0062 9.49115 3.75004 10.8618 5.0588 12.0496C5.92864 12.8253 6.90424 13.4541 7.95175 13.9141C7.98191 13.927 8.01709 13.927 8.04825 13.9141C9.09576 13.4541 10.0714 12.8254 10.9412 12.0496C12.249 10.8618 12.9948 9.49115 12.9948 7.93112V4.16878C12.9948 4.14142 12.987 4.11472 12.9725 4.09223C12.9579 4.06974 12.9373 4.05253 12.9134 4.0429L8.04423 2.0848L8 2.07619ZM10.5391 5.6352C10.6349 5.66287 10.7221 5.71698 10.7922 5.79211C10.8622 5.86724 10.9126 5.96076 10.9383 6.06329C10.9639 6.16582 10.964 6.27377 10.9384 6.37632C10.9128 6.47887 10.8624 6.57242 10.7924 6.6476L8.00503 9.63209C7.88728 9.75757 7.72789 9.82802 7.56174 9.82802C7.39558 9.82802 7.23619 9.75757 7.11845 9.63209L5.52722 7.93005C5.42125 7.81648 5.36177 7.66251 5.36187 7.50201C5.36196 7.3415 5.42162 7.18761 5.52773 7.07419C5.63383 6.96076 5.77769 6.8971 5.92765 6.8972C6.07761 6.8973 6.22139 6.96116 6.32736 7.07472L7.56073 8.39483L9.99229 5.7912C10.0625 5.7163 10.1499 5.66247 10.2457 5.63509C10.3415 5.60771 10.4423 5.60775 10.5381 5.6352H10.5391Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconFuwuzhikong',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'teicon-',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -642,4 +642,6 @@ export { default as IconHetongguanli } from './IconHetongguanli/index.vue';
|
|
|
642
642
|
export { default as IconCaiwuguanli } from './IconCaiwuguanli/index.vue';
|
|
643
643
|
export { default as IconJiankangdangan } from './IconJiankangdangan/index.vue';
|
|
644
644
|
export { default as IconXitongpeizhi } from './IconXitongpeizhi/index.vue';
|
|
645
|
-
export { default as IconHuliguanli } from './IconHuliguanli/index.vue';
|
|
645
|
+
export { default as IconHuliguanli } from './IconHuliguanli/index.vue';
|
|
646
|
+
export { default as IconFuwuzhikong } from './IconFuwuzhikong/index.vue';
|
|
647
|
+
export { default as IconExamine2 } from './IconExamine2/index.vue';
|