@arco-iconbox/vue-smartcode 0.1.32 → 0.1.34
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 +2851 -2269
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +401 -345
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorBarcode/index.js +40 -0
- package/esm/IconColorDataFilter/index.js +1 -1
- package/esm/IconColorDoc/index.js +1 -1
- package/esm/IconColorHline/index.js +41 -0
- package/esm/IconColorImage/index.js +45 -0
- package/esm/IconColorLongtext/index.js +40 -0
- package/esm/IconColorNum/index.js +1 -1
- package/esm/IconColorOval/index.js +36 -0
- package/esm/IconColorPdf/index.js +1 -1
- package/esm/IconColorQrcode/index.js +67 -0
- package/esm/IconColorRadio/index.js +1 -1
- package/esm/IconColorRect/index.js +51 -0
- package/esm/IconColorSwitch/index.js +1 -1
- package/esm/IconColorTable/index.js +52 -0
- package/esm/IconColorText/index.js +38 -0
- package/esm/IconColorTextarea/index.js +1 -1
- package/esm/IconColorTime/index.js +48 -0
- package/esm/IconColorUser/index.js +47 -0
- package/esm/IconColorVline/index.js +41 -0
- package/esm/IconColorXls/index.js +1 -1
- package/esm/IconIconLineSet2/index.js +1 -1
- package/esm/IconLineAgent/index.js +32 -0
- package/esm/IconLineSkill/index.js +32 -0
- package/esm/index.js +14 -0
- package/lib/IconColorBarcode/index.js +41 -0
- package/lib/IconColorDataFilter/index.js +1 -1
- package/lib/IconColorDoc/index.js +1 -1
- package/lib/IconColorHline/index.js +42 -0
- package/lib/IconColorImage/index.js +46 -0
- package/lib/IconColorLongtext/index.js +41 -0
- package/lib/IconColorNum/index.js +1 -1
- package/lib/IconColorOval/index.js +37 -0
- package/lib/IconColorPdf/index.js +1 -1
- package/lib/IconColorQrcode/index.js +68 -0
- package/lib/IconColorRadio/index.js +1 -1
- package/lib/IconColorRect/index.js +52 -0
- package/lib/IconColorSwitch/index.js +1 -1
- package/lib/IconColorTable/index.js +53 -0
- package/lib/IconColorText/index.js +39 -0
- package/lib/IconColorTextarea/index.js +1 -1
- package/lib/IconColorTime/index.js +49 -0
- package/lib/IconColorUser/index.js +48 -0
- package/lib/IconColorVline/index.js +42 -0
- package/lib/IconColorXls/index.js +1 -1
- package/lib/IconIconLineSet2/index.js +1 -1
- package/lib/IconLineAgent/index.js +33 -0
- package/lib/IconLineSkill/index.js +33 -0
- package/lib/index.js +28 -0
- package/package.json +1 -1
- package/src/IconColorBarcode/index.vue +19 -0
- package/src/IconColorDataFilter/index.vue +1 -1
- package/src/IconColorDoc/index.vue +1 -1
- package/src/IconColorHline/index.vue +19 -0
- package/src/IconColorImage/index.vue +19 -0
- package/src/IconColorLongtext/index.vue +19 -0
- package/src/IconColorNum/index.vue +1 -1
- package/src/IconColorOval/index.vue +19 -0
- package/src/IconColorPdf/index.vue +1 -1
- package/src/IconColorQrcode/index.vue +19 -0
- package/src/IconColorRadio/index.vue +1 -1
- package/src/IconColorRect/index.vue +19 -0
- package/src/IconColorSwitch/index.vue +1 -1
- package/src/IconColorTable/index.vue +19 -0
- package/src/IconColorText/index.vue +19 -0
- package/src/IconColorTextarea/index.vue +1 -1
- package/src/IconColorTime/index.vue +19 -0
- package/src/IconColorUser/index.vue +19 -0
- package/src/IconColorVline/index.vue +19 -0
- package/src/IconColorXls/index.vue +1 -1
- package/src/IconIconLineSet2/index.vue +1 -1
- package/src/IconLineAgent/index.vue +19 -0
- package/src/IconLineSkill/index.vue +19 -0
- package/src/index.js +15 -1
|
@@ -23,7 +23,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23
23
|
viewBox: "0 0 18 18",
|
|
24
24
|
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
25
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-icon-line-set2`],
|
|
27
27
|
width: "1em",
|
|
28
28
|
height: "1em"
|
|
29
29
|
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
@@ -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: "IconLineAgent",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
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: "M11.7477 1.44531C13.5715 1.44551 15.0682 2.84252 15.2281 4.62476C16.4241 5.71824 17.1759 7.30668 17.176 9.07092C17.176 10.4375 16.7244 11.6995 15.9653 12.7074C15.9606 14.8335 14.2362 16.5557 12.1091 16.5559C10.8328 16.5559 9.70103 15.9357 8.9989 14.9805C8.29675 15.9352 7.1668 16.5558 5.89087 16.5559C3.76355 16.5559 2.03831 14.8336 2.03357 12.7074C1.2746 11.6996 0.823975 10.4374 0.823975 9.07092C0.824105 7.30682 1.57493 5.71823 2.77075 4.62476C2.93068 2.84238 4.42833 1.44531 6.25232 1.44531C7.36778 1.44539 8.35885 1.96982 8.9989 2.78345C9.63897 1.96932 10.6318 1.44533 11.7477 1.44531ZM6.25232 2.94165C5.14802 2.94165 4.25281 3.83687 4.25281 4.94116V5.073C4.25281 5.86488 4.89466 6.50661 5.68652 6.50671C6.09955 6.50682 6.43459 6.84186 6.43469 7.25488C6.43469 7.668 6.09961 8.00295 5.68652 8.00305C4.58029 8.00298 3.61768 7.38962 3.11902 6.48474C2.6161 7.21356 2.32041 8.10565 2.32031 9.07092C2.32031 9.63283 2.4207 10.1696 2.60376 10.6639C2.84871 10.2986 3.16627 9.97964 3.54419 9.7301L3.57935 9.70703C3.92409 9.47967 4.38775 9.57447 4.61536 9.91907C4.84293 10.2639 4.74807 10.7285 4.40332 10.9562L4.36926 10.9781C3.8456 11.3238 3.53004 11.9097 3.52991 12.5371V12.6986C3.52991 14.0025 4.58697 15.0596 5.89087 15.0596C7.19468 15.0595 8.25183 14.0024 8.25183 12.6986V10.4651C7.88698 10.7384 7.4696 10.9503 7.01038 11.077C6.61222 11.1867 6.20072 10.9522 6.09082 10.5541C5.98119 10.1559 6.21455 9.74442 6.61267 9.63452C7.58075 9.36729 8.2516 8.48655 8.25183 7.4823V4.94116C8.25183 3.83695 7.3565 2.94178 6.25232 2.94165ZM11.7477 2.94165C10.6434 2.94168 9.74817 3.83688 9.74817 4.94116V7.4823C9.7484 8.48661 10.4192 9.36735 11.3873 9.63452C11.7852 9.74455 12.0187 10.1561 11.9092 10.5541C11.7993 10.9521 11.3877 11.1864 10.9896 11.077C10.5305 10.9503 10.113 10.7383 9.74817 10.4651V12.6986C9.74817 14.0025 10.8053 15.0595 12.1091 15.0596C13.4128 15.0593 14.4701 14.0023 14.4701 12.6986V12.5371C14.47 11.9098 14.1542 11.3239 13.6307 10.9781L13.5967 10.9562C13.2519 10.7285 13.157 10.2639 13.3846 9.91907C13.6123 9.57462 14.076 9.47966 14.4207 9.70703L14.4558 9.7301C14.8333 9.97944 15.1492 10.2991 15.394 10.6639C15.5772 10.1695 15.6797 9.63303 15.6797 9.07092C15.6796 8.10564 15.3817 7.21466 14.8788 6.48584C14.3799 7.38977 13.4189 8.00284 12.3135 8.00305C11.9003 8.00305 11.5653 7.66806 11.5653 7.25488C11.5654 6.84179 11.9004 6.50671 12.3135 6.50671C13.1052 6.50641 13.7472 5.86476 13.7472 5.073V4.94116C13.7472 3.83699 12.8518 2.94185 11.7477 2.94165Z" }, 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 18 18",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-agent`],
|
|
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 };
|
|
@@ -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: "IconLineSkill",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
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: "M9.33557 0.79991C9.53306 0.549974 9.86742 0.452575 10.1683 0.557112C10.469 0.661753 10.6704 0.945117 10.6704 1.26353V6.37108H15.6824C15.9691 6.37108 16.2308 6.53491 16.3558 6.79295C16.4808 7.05108 16.4469 7.35792 16.269 7.58287L8.6643 17.1959C8.46671 17.4457 8.13234 17.5433 7.83154 17.4387C7.53089 17.334 7.32946 17.0507 7.32946 16.7323V11.6357H2.3175C2.03073 11.6357 1.76904 11.4719 1.64404 11.2139C1.51915 10.9558 1.55308 10.6489 1.73083 10.4239L9.33557 0.79991ZM3.86218 10.1394H8.07763C8.49063 10.1395 8.82561 10.4746 8.8258 10.8876V14.5801L14.1366 7.86742H9.92224C9.50921 7.86727 9.17411 7.5323 9.17407 7.11925V3.41685L3.86218 10.1394Z" }, 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 18 18",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-skill`],
|
|
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
|
@@ -241,3 +241,17 @@ export { default as IconLineInternationalization } from "./IconLineInternational
|
|
|
241
241
|
export { default as IconIconLineSet2 } from "./IconIconLineSet2/index.js";
|
|
242
242
|
export { default as IconLineLlm } from "./IconLineLlm/index.js";
|
|
243
243
|
export { default as IconColorLogicFlow } from "./IconColorLogicFlow/index.js";
|
|
244
|
+
export { default as IconLineSkill } from "./IconLineSkill/index.js";
|
|
245
|
+
export { default as IconLineAgent } from "./IconLineAgent/index.js";
|
|
246
|
+
export { default as IconColorLongtext } from "./IconColorLongtext/index.js";
|
|
247
|
+
export { default as IconColorHline } from "./IconColorHline/index.js";
|
|
248
|
+
export { default as IconColorBarcode } from "./IconColorBarcode/index.js";
|
|
249
|
+
export { default as IconColorTable } from "./IconColorTable/index.js";
|
|
250
|
+
export { default as IconColorQrcode } from "./IconColorQrcode/index.js";
|
|
251
|
+
export { default as IconColorImage } from "./IconColorImage/index.js";
|
|
252
|
+
export { default as IconColorUser } from "./IconColorUser/index.js";
|
|
253
|
+
export { default as IconColorVline } from "./IconColorVline/index.js";
|
|
254
|
+
export { default as IconColorTime } from "./IconColorTime/index.js";
|
|
255
|
+
export { default as IconColorOval } from "./IconColorOval/index.js";
|
|
256
|
+
export { default as IconColorRect } from "./IconColorRect/index.js";
|
|
257
|
+
export { default as IconColorText } from "./IconColorText/index.js";
|
|
@@ -0,0 +1,41 @@
|
|
|
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: "IconColorBarcode",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
18
|
+
d: "M8.39291 8.97656V15.4495M12.0741 8.97656L12.0741 15.4511M15.7552 8.97656L15.7552 15.4495",
|
|
19
|
+
stroke: "#00BBD8",
|
|
20
|
+
"stroke-width": "1.66",
|
|
21
|
+
"stroke-linecap": "round"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_2 = ["fill"];
|
|
24
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
26
|
+
viewBox: "0 0 24 24",
|
|
27
|
+
fill: "none",
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-barcode`],
|
|
30
|
+
width: "1em",
|
|
31
|
+
height: "1em"
|
|
32
|
+
}, _ctx.$attrs), [
|
|
33
|
+
_hoisted_1,
|
|
34
|
+
vue.createElementVNode("path", {
|
|
35
|
+
d: "M2.83008 15.1875C3.28828 15.1876 3.65995 15.5594 3.66016 16.0176V16.2676C3.66016 17.0371 3.66098 17.5651 3.69434 17.9736C3.72691 18.3724 3.78672 18.585 3.86426 18.7373C4.04347 19.0888 4.32921 19.3745 4.68066 19.5537C4.83294 19.6313 5.04543 19.691 5.44434 19.7236C5.85291 19.757 6.38069 19.7578 7.15039 19.7578H7.45215C7.91037 19.7579 8.28205 20.1297 8.28223 20.5879C8.28223 21.0462 7.91048 21.4179 7.45215 21.418H7.15039C6.40827 21.418 5.80135 21.4181 5.30957 21.3779C4.8081 21.337 4.35296 21.2498 3.92773 21.0332C3.26353 20.6948 2.72319 20.1544 2.38477 19.4902C2.16823 19.0651 2.081 18.6098 2.04004 18.1084C1.99991 17.6167 2 17.0096 2 16.2676V16.0176C2.00021 15.5594 2.37181 15.1875 2.83008 15.1875ZM21.3184 15.1875C21.7766 15.1875 22.1482 15.5594 22.1484 16.0176V16.2676C22.1484 17.0096 22.1485 17.6167 22.1084 18.1084C22.0674 18.6098 21.9802 19.0651 21.7637 19.4902C21.4252 20.1544 20.8849 20.6948 20.2207 21.0332C19.7955 21.2498 19.3403 21.337 18.8389 21.3779C18.3471 21.4181 17.7401 21.418 16.998 21.418H16.6963C16.238 21.4179 15.8662 21.0462 15.8662 20.5879C15.8664 20.1297 16.2381 19.7579 16.6963 19.7578H16.998C17.7677 19.7578 18.2955 19.757 18.7041 19.7236C19.103 19.691 19.3155 19.6313 19.4678 19.5537C19.8192 19.3745 20.105 19.0888 20.2842 18.7373C20.3617 18.585 20.4215 18.3724 20.4541 17.9736C20.4875 17.5651 20.4883 17.0371 20.4883 16.2676V16.0176C20.4885 15.5594 20.8602 15.1876 21.3184 15.1875ZM7.45215 3C7.91048 3.00007 8.28223 3.37173 8.28223 3.83008C8.28215 4.28837 7.91044 4.66008 7.45215 4.66016H7.15039C6.3807 4.66016 5.85291 4.66096 5.44434 4.69434C5.04548 4.72692 4.83293 4.78668 4.68066 4.86426C4.3292 5.04347 4.04347 5.3292 3.86426 5.68066C3.78668 5.83293 3.72692 6.04548 3.69434 6.44434C3.66096 6.85291 3.66016 7.38071 3.66016 8.15039V8.40039C3.66005 8.85865 3.28835 9.2304 2.83008 9.23047C2.37175 9.23047 2.0001 8.8587 2 8.40039V8.15039C2 7.40828 1.99989 6.80135 2.04004 6.30957C2.08101 5.80812 2.16817 5.35295 2.38477 4.92773C2.7232 4.26352 3.26352 3.7232 3.92773 3.38477C4.35295 3.16817 4.80812 3.08101 5.30957 3.04004C5.80135 2.99989 6.40828 3 7.15039 3H7.45215ZM16.998 3C17.7401 3 18.3471 2.9999 18.8389 3.04004C19.3403 3.08101 19.7955 3.16819 20.2207 3.38477C20.8849 3.7232 21.4252 4.26352 21.7637 4.92773C21.9803 5.35295 22.0674 5.80811 22.1084 6.30957C22.1485 6.80135 22.1484 7.40828 22.1484 8.15039V8.40039C22.1483 8.8587 21.7767 9.23047 21.3184 9.23047C20.8601 9.23037 20.4884 8.85864 20.4883 8.40039V8.15039C20.4883 7.3807 20.4875 6.85291 20.4541 6.44434C20.4215 6.04546 20.3618 5.83293 20.2842 5.68066C20.105 5.3292 19.8192 5.04347 19.4678 4.86426C19.3155 4.7867 19.1029 4.72692 18.7041 4.69434C18.2955 4.66097 17.7677 4.66016 16.998 4.66016H16.6963C16.238 4.66005 15.8663 4.28835 15.8662 3.83008C15.8662 3.37175 16.238 3.0001 16.6963 3H16.998Z",
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
37
|
+
}, null, 8, _hoisted_2)
|
|
38
|
+
], 16);
|
|
39
|
+
}
|
|
40
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
41
|
+
module.exports = index;
|
|
@@ -21,7 +21,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21
21
|
viewBox: "0 0 16 16",
|
|
22
22
|
fill: "none",
|
|
23
23
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
24
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-data-filter`],
|
|
25
25
|
width: "1em",
|
|
26
26
|
height: "1em"
|
|
27
27
|
}, _ctx.$attrs), [
|
|
@@ -41,7 +41,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
41
41
|
fill: "none",
|
|
42
42
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43
43
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
44
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
44
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-doc`],
|
|
45
45
|
width: "1em",
|
|
46
46
|
height: "1em"
|
|
47
47
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,42 @@
|
|
|
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: "IconColorHline",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
18
|
+
d: "M3.04309 12H20.9573",
|
|
19
|
+
stroke: "#00BBD8",
|
|
20
|
+
"stroke-width": "1.66",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round"
|
|
23
|
+
}, null, -1);
|
|
24
|
+
const _hoisted_2 = ["fill"];
|
|
25
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
26
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
27
|
+
viewBox: "0 0 24 24",
|
|
28
|
+
fill: "none",
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-hline`],
|
|
31
|
+
width: "1em",
|
|
32
|
+
height: "1em"
|
|
33
|
+
}, _ctx.$attrs), [
|
|
34
|
+
_hoisted_1,
|
|
35
|
+
vue.createElementVNode("path", {
|
|
36
|
+
d: "M6.41406 4.63281C6.87246 4.63281 7.24414 5.00449 7.24414 5.46289 7.24393 5.92111 6.87233 6.29297 6.41406 6.29297H3.04297C2.58475 6.29291 2.2131 5.92107 2.21289 5.46289 2.21289 5.00453 2.58462 4.63287 3.04297 4.63281H6.41406zM13.6855 4.63281C14.1439 4.63281 14.5156 5.00449 14.5156 5.46289 14.5154 5.92111 14.1438 6.29297 13.6855 6.29297H10.3145C9.85622 6.29293 9.48459 5.92108 9.48438 5.46289 9.48438 5.00452 9.85609 4.63285 10.3145 4.63281H13.6855zM20.957 4.63281C21.4154 4.63281 21.7871 5.00449 21.7871 5.46289 21.7869 5.92111 21.4153 6.29297 20.957 6.29297H17.5859C17.1277 6.29295 16.7561 5.9211 16.7559 5.46289 16.7559 5.00451 17.1276 4.63283 17.5859 4.63281H20.957zM6.41406 17.7109C6.87239 17.7109 7.24404 18.0827 7.24414 18.541 7.24414 18.9994 6.87246 19.3711 6.41406 19.3711H3.04297C2.58462 19.371 2.21289 18.9994 2.21289 18.541 2.213 18.0827 2.58469 17.711 3.04297 17.7109H6.41406zM13.6855 17.7109C14.1439 17.7109 14.5155 18.0827 14.5156 18.541 14.5156 18.9994 14.1439 19.3711 13.6855 19.3711H10.3145C9.85609 19.3711 9.48438 18.9994 9.48438 18.541 9.48448 18.0827 9.85616 17.711 10.3145 17.7109H13.6855zM20.957 17.7109C21.4154 17.7109 21.787 18.0827 21.7871 18.541 21.7871 18.9994 21.4154 19.3711 20.957 19.3711H17.5859C17.1276 19.3711 16.7559 18.9994 16.7559 18.541 16.756 18.0827 17.1276 17.711 17.5859 17.7109H20.957z",
|
|
37
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
38
|
+
}, null, 8, _hoisted_2)
|
|
39
|
+
], 16);
|
|
40
|
+
}
|
|
41
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
42
|
+
module.exports = index;
|
|
@@ -0,0 +1,46 @@
|
|
|
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: "IconColorImage",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
18
|
+
d: "M4.07251 16.3809L7.91563 13.71L9.83719 15.0455L11.7588 16.3809M19.9254 17.2312L13.3088 12.6328L11.573 13.8391",
|
|
19
|
+
stroke: "#00BBD8",
|
|
20
|
+
"stroke-width": "1.66",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round"
|
|
23
|
+
}, null, -1);
|
|
24
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
25
|
+
d: "M10.0063 20.1888H13.9917C16.2319 20.1888 17.352 20.1888 18.2076 19.7528C18.9603 19.3693 19.5722 18.7574 19.9557 18.0048C20.3917 17.1491 20.3917 16.029 20.3917 13.7888V9.7083C20.3917 8.43192 20.3917 7.79373 20.2473 7.27108C19.8727 5.91468 18.8129 4.85489 17.4565 4.48028C16.9339 4.33594 16.2957 4.33594 15.0193 4.33594H13.0899H10.0063C7.76605 4.33594 6.64595 4.33594 5.7903 4.77191C5.03765 5.1554 4.42573 5.76733 4.04224 6.51998C3.60626 7.37562 3.60626 8.49573 3.60626 10.7359V13.7888C3.60626 16.029 3.60626 17.1491 4.04224 18.0048C4.42573 18.7574 5.03765 19.3693 5.7903 19.7528C6.64595 20.1888 7.76605 20.1888 10.0063 20.1888Z",
|
|
26
|
+
stroke: "#165DFF",
|
|
27
|
+
"stroke-width": "1.66",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round"
|
|
30
|
+
}, null, -1);
|
|
31
|
+
const _hoisted_3 = [
|
|
32
|
+
_hoisted_1,
|
|
33
|
+
_hoisted_2
|
|
34
|
+
];
|
|
35
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
36
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
fill: "none",
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-image`],
|
|
41
|
+
width: "1em",
|
|
42
|
+
height: "1em"
|
|
43
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
44
|
+
}
|
|
45
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
46
|
+
module.exports = index;
|
|
@@ -0,0 +1,41 @@
|
|
|
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: "IconColorLongtext",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
const _hoisted_2 = ["fill"];
|
|
19
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
20
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
21
|
+
viewBox: "0 0 24 24",
|
|
22
|
+
fill: "none",
|
|
23
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
24
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-longtext`],
|
|
25
|
+
width: "1em",
|
|
26
|
+
height: "1em"
|
|
27
|
+
}, _ctx.$attrs), [
|
|
28
|
+
vue.createElementVNode("path", {
|
|
29
|
+
"fill-rule": "evenodd",
|
|
30
|
+
"clip-rule": "evenodd",
|
|
31
|
+
d: "M14.1992 2.66409C15.1892 2.66409 15.8277 2.65843 16.4336 2.81155C16.9495 2.94202 17.4408 3.15676 17.8867 3.44729C18.4102 3.78855 18.839 4.26187 19.5107 4.98928L20.9932 6.59378C21.5956 7.24615 21.9873 7.66341 22.2686 8.15237C22.5084 8.56932 22.6843 9.02028 22.791 9.48928C22.9161 10.0392 22.9111 10.6113 22.9111 11.4991V14.0977C22.9111 15.2039 22.9124 16.0844 22.8545 16.793C22.7958 17.511 22.6721 18.1263 22.3848 18.6905C21.9218 19.5991 21.183 20.3387 20.2744 20.8018C19.7102 21.0893 19.0941 21.2118 18.376 21.2705C17.6675 21.3284 16.7876 21.3282 15.6816 21.3282H8.32031C7.21412 21.3282 6.33358 21.3284 5.625 21.2705C4.90701 21.2119 4.29165 21.0891 3.72754 20.8018C2.81872 20.3387 2.07928 19.5993 1.61621 18.6905C1.32881 18.1263 1.20615 17.5111 1.14746 16.793C1.08958 16.0844 1.08984 15.204 1.08984 14.0977V9.89456C1.08984 8.78828 1.08957 7.90783 1.14746 7.19925C1.20615 6.48127 1.32887 5.86589 1.61621 5.30178C2.07929 4.39314 2.81885 3.65346 3.72754 3.19046C4.2916 2.90324 4.90709 2.78037 5.625 2.72171C6.33357 2.66385 7.21414 2.66409 8.32031 2.66409H14.1992ZM8.32031 4.32425C7.18704 4.32425 6.38599 4.32498 5.76074 4.376C5.14538 4.42628 4.77172 4.52165 4.48047 4.66995C3.8844 4.97375 3.39959 5.4587 3.0957 6.05471C2.9473 6.34598 2.85207 6.71949 2.80176 7.33499C2.7507 7.96025 2.75 8.76116 2.75 9.89456V14.0977C2.75 15.2312 2.7507 16.032 2.80176 16.6573C2.85206 17.2729 2.94728 17.6462 3.0957 17.9375C3.39959 18.5337 3.88429 19.0184 4.48047 19.3223C4.77175 19.4707 5.14523 19.5659 5.76074 19.6162C6.38599 19.6673 7.18702 19.668 8.32031 19.668H15.6816C16.8151 19.668 17.616 19.6673 18.2412 19.6162C18.8565 19.5659 19.2293 19.4707 19.5205 19.3223C20.1167 19.0184 20.6024 18.5337 20.9062 17.9375C21.0546 17.6463 21.1489 17.2727 21.1992 16.6573C21.2503 16.032 21.251 15.2312 21.251 14.0977V11.4991C21.251 10.5371 21.247 10.1834 21.1729 9.85745C21.1028 9.54964 20.9865 9.25317 20.8291 8.97952C20.6624 8.68985 20.426 8.4264 19.7734 7.71975L18.291 6.11526C17.5627 5.3266 17.2906 5.04106 16.9805 4.83889C16.6877 4.64809 16.3651 4.50659 16.0264 4.42093C15.6675 4.33025 15.2726 4.32425 14.1992 4.32425H8.32031Z",
|
|
32
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
33
|
+
}, null, 8, _hoisted_1),
|
|
34
|
+
vue.createElementVNode("path", {
|
|
35
|
+
d: "M15.3706 8.17188C15.8289 8.17188 16.2005 8.54373 16.2007 9.00195C16.2007 9.46035 15.829 9.83203 15.3706 9.83203H12.8306V15.7383C12.8304 16.1965 12.4587 16.5683 12.0005 16.5684C11.5422 16.5684 11.1705 16.1966 11.1704 15.7383V9.83203H8.62939C8.17114 9.83187 7.79932 9.46025 7.79932 9.00195C7.79952 8.54383 8.17126 8.17204 8.62939 8.17188H15.3706Z",
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "#00BBD8"
|
|
37
|
+
}, null, 8, _hoisted_2)
|
|
38
|
+
], 16);
|
|
39
|
+
}
|
|
40
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
41
|
+
module.exports = index;
|
|
@@ -21,7 +21,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21
21
|
viewBox: "0 0 24 24",
|
|
22
22
|
fill: "none",
|
|
23
23
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
24
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-num`],
|
|
25
25
|
width: "1em",
|
|
26
26
|
height: "1em"
|
|
27
27
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,37 @@
|
|
|
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: "IconColorOval",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
18
|
+
d: "M2.68069 12.0019C2.68069 8.29013 5.38541 5.09088 9.08599 4.80331C10.1041 4.72419 11.1128 4.67188 12.0002 4.67188C12.8876 4.67188 13.8963 4.72419 14.9145 4.80331C18.615 5.09088 21.3198 8.29013 21.3198 12.0019C21.3198 15.7136 18.615 18.9128 14.9145 19.2004C13.8964 19.2795 12.8876 19.3318 12.0002 19.3318C11.1128 19.3318 10.1041 19.2795 9.08599 19.2004C5.38541 18.9128 2.68069 15.7136 2.68069 12.0019Z",
|
|
19
|
+
stroke: "#165DFF",
|
|
20
|
+
"stroke-width": "1.66",
|
|
21
|
+
"stroke-linejoin": "round"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_2 = [
|
|
24
|
+
_hoisted_1
|
|
25
|
+
];
|
|
26
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
27
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
28
|
+
viewBox: "0 0 24 24",
|
|
29
|
+
fill: "none",
|
|
30
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
31
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-oval`],
|
|
32
|
+
width: "1em",
|
|
33
|
+
height: "1em"
|
|
34
|
+
}, _ctx.$attrs), _hoisted_2, 16);
|
|
35
|
+
}
|
|
36
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
37
|
+
module.exports = index;
|
|
@@ -41,7 +41,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
41
41
|
fill: "none",
|
|
42
42
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43
43
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
44
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
44
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-pdf`],
|
|
45
45
|
width: "1em",
|
|
46
46
|
height: "1em"
|
|
47
47
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,68 @@
|
|
|
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: "IconColorQrcode",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
18
|
+
x: "3.43",
|
|
19
|
+
y: "3.43",
|
|
20
|
+
width: "7.217",
|
|
21
|
+
height: "7.217",
|
|
22
|
+
rx: "2",
|
|
23
|
+
stroke: "#165DFF",
|
|
24
|
+
"stroke-width": "1.66"
|
|
25
|
+
}, null, -1);
|
|
26
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
27
|
+
x: "3.43",
|
|
28
|
+
y: "13.352",
|
|
29
|
+
width: "7.217",
|
|
30
|
+
height: "7.217",
|
|
31
|
+
rx: "2",
|
|
32
|
+
stroke: "#165DFF",
|
|
33
|
+
"stroke-width": "1.66"
|
|
34
|
+
}, null, -1);
|
|
35
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
36
|
+
x: "13.353",
|
|
37
|
+
y: "3.43",
|
|
38
|
+
width: "7.217",
|
|
39
|
+
height: "7.217",
|
|
40
|
+
rx: "2",
|
|
41
|
+
stroke: "#165DFF",
|
|
42
|
+
"stroke-width": "1.66"
|
|
43
|
+
}, null, -1);
|
|
44
|
+
const _hoisted_4 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
45
|
+
d: "M13.3532 13.3516L20.5701 13.3516M14.2553 16.3047V20.5732M16.9616 16.3047V20.5732M19.6679 16.3047V20.5732",
|
|
46
|
+
stroke: "#00BBD8",
|
|
47
|
+
"stroke-width": "1.66",
|
|
48
|
+
"stroke-linecap": "round",
|
|
49
|
+
"stroke-linejoin": "round"
|
|
50
|
+
}, null, -1);
|
|
51
|
+
const _hoisted_5 = [
|
|
52
|
+
_hoisted_1,
|
|
53
|
+
_hoisted_2,
|
|
54
|
+
_hoisted_3,
|
|
55
|
+
_hoisted_4
|
|
56
|
+
];
|
|
57
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
58
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
59
|
+
viewBox: "0 0 24 24",
|
|
60
|
+
fill: "none",
|
|
61
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
62
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-qrcode`],
|
|
63
|
+
width: "1em",
|
|
64
|
+
height: "1em"
|
|
65
|
+
}, _ctx.$attrs), _hoisted_5, 16);
|
|
66
|
+
}
|
|
67
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
68
|
+
module.exports = index;
|
|
@@ -23,7 +23,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23
23
|
viewBox: "0 0 24 24",
|
|
24
24
|
fill: "none",
|
|
25
25
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-radio`],
|
|
27
27
|
width: "1em",
|
|
28
28
|
height: "1em"
|
|
29
29
|
}, _ctx.$attrs), _hoisted_6, 16);
|
|
@@ -0,0 +1,52 @@
|
|
|
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: "IconColorRect",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
18
|
+
x: "1.919",
|
|
19
|
+
y: "3.5",
|
|
20
|
+
width: "20.162",
|
|
21
|
+
height: "17.004",
|
|
22
|
+
rx: "4",
|
|
23
|
+
stroke: "#165DFF",
|
|
24
|
+
"stroke-width": "1.66",
|
|
25
|
+
"stroke-linejoin": "round"
|
|
26
|
+
}, null, -1);
|
|
27
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
28
|
+
x: "6.558",
|
|
29
|
+
y: "8.078",
|
|
30
|
+
width: "10.885",
|
|
31
|
+
height: "7.852",
|
|
32
|
+
rx: "2",
|
|
33
|
+
stroke: "#00BBD8",
|
|
34
|
+
"stroke-width": "1.66",
|
|
35
|
+
"stroke-linejoin": "round"
|
|
36
|
+
}, null, -1);
|
|
37
|
+
const _hoisted_3 = [
|
|
38
|
+
_hoisted_1,
|
|
39
|
+
_hoisted_2
|
|
40
|
+
];
|
|
41
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
42
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
43
|
+
viewBox: "0 0 24 24",
|
|
44
|
+
fill: "none",
|
|
45
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
46
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-rect`],
|
|
47
|
+
width: "1em",
|
|
48
|
+
height: "1em"
|
|
49
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
50
|
+
}
|
|
51
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
52
|
+
module.exports = index;
|
|
@@ -43,7 +43,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
43
43
|
viewBox: "0 0 24 24",
|
|
44
44
|
fill: "none",
|
|
45
45
|
xmlns: "http://www.w3.org/2000/svg",
|
|
46
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
46
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-switch`],
|
|
47
47
|
width: "1em",
|
|
48
48
|
height: "1em"
|
|
49
49
|
}, _ctx.$attrs), _hoisted_3, 16);
|
|
@@ -0,0 +1,53 @@
|
|
|
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: "IconColorTable",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
18
|
+
d: "M8.67105 7.74219L8.67105 20.3614M15.3289 7.74219L15.3289 20.3614M2.77145 14.0547H21.2285",
|
|
19
|
+
stroke: "#00BBD8",
|
|
20
|
+
"stroke-width": "1.66"
|
|
21
|
+
}, null, -1);
|
|
22
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
23
|
+
x: "2.771",
|
|
24
|
+
y: "3.641",
|
|
25
|
+
width: "18.457",
|
|
26
|
+
height: "16.536",
|
|
27
|
+
rx: "3",
|
|
28
|
+
stroke: "#165DFF",
|
|
29
|
+
"stroke-width": "1.66",
|
|
30
|
+
"stroke-linejoin": "round"
|
|
31
|
+
}, null, -1);
|
|
32
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
33
|
+
d: "M2.77145 8.39062H21.2285",
|
|
34
|
+
stroke: "#165DFF",
|
|
35
|
+
"stroke-width": "1.66"
|
|
36
|
+
}, null, -1);
|
|
37
|
+
const _hoisted_4 = [
|
|
38
|
+
_hoisted_1,
|
|
39
|
+
_hoisted_2,
|
|
40
|
+
_hoisted_3
|
|
41
|
+
];
|
|
42
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
43
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
44
|
+
viewBox: "0 0 24 24",
|
|
45
|
+
fill: "none",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
47
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-table`],
|
|
48
|
+
width: "1em",
|
|
49
|
+
height: "1em"
|
|
50
|
+
}, _ctx.$attrs), _hoisted_4, 16);
|
|
51
|
+
}
|
|
52
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
53
|
+
module.exports = index;
|
|
@@ -0,0 +1,39 @@
|
|
|
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: "IconColorText",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
const _hoisted_2 = ["fill"];
|
|
19
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
20
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
21
|
+
viewBox: "0 0 24 24",
|
|
22
|
+
fill: "none",
|
|
23
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
24
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-text`],
|
|
25
|
+
width: "1em",
|
|
26
|
+
height: "1em"
|
|
27
|
+
}, _ctx.$attrs), [
|
|
28
|
+
vue.createElementVNode("path", {
|
|
29
|
+
d: "M15.6816 2.66406C16.7876 2.66406 17.6675 2.66381 18.376 2.72168C19.0941 2.78038 19.7102 2.90294 20.2744 3.19043C21.1831 3.6535 21.9218 4.39307 22.3848 5.30176C22.6722 5.86594 22.7958 6.48113 22.8545 7.19922C22.9124 7.90781 22.9111 8.78825 22.9111 9.89453V14.0977C22.9111 15.2039 22.9124 16.0844 22.8545 16.793C22.7958 17.511 22.6721 18.1263 22.3848 18.6904C21.9218 19.5991 21.183 20.3387 20.2744 20.8018C19.7102 21.0892 19.0941 21.2118 18.376 21.2705C17.6675 21.3284 16.7876 21.3281 15.6816 21.3281H8.32031C7.21412 21.3281 6.33358 21.3284 5.625 21.2705C4.90701 21.2118 4.29165 21.089 3.72754 20.8018C2.81872 20.3387 2.07928 19.5993 1.61621 18.6904C1.32881 18.1263 1.20615 17.511 1.14746 16.793C1.08958 16.0844 1.08984 15.2039 1.08984 14.0977V9.89453C1.08984 8.78825 1.08957 7.90781 1.14746 7.19922C1.20615 6.48124 1.32887 5.86586 1.61621 5.30176C2.07929 4.39312 2.81885 3.65343 3.72754 3.19043C4.2916 2.90321 4.90709 2.78035 5.625 2.72168C6.33357 2.66382 7.21414 2.66406 8.32031 2.66406H15.6816ZM8.32031 4.32422C7.18704 4.32422 6.38598 4.32495 5.76074 4.37598C5.14538 4.42625 4.77172 4.52162 4.48047 4.66992C3.8844 4.97372 3.39959 5.45867 3.0957 6.05469C2.9473 6.34595 2.85207 6.71947 2.80176 7.33496C2.7507 7.96022 2.75 8.76113 2.75 9.89453V14.0977C2.75 15.2312 2.7507 16.0319 2.80176 16.6572C2.85206 17.2729 2.94728 17.6462 3.0957 17.9375C3.39959 18.5337 3.88429 19.0184 4.48047 19.3223C4.77175 19.4706 5.14523 19.5659 5.76074 19.6162C6.38599 19.6672 7.18702 19.668 8.32031 19.668H15.6816C16.8151 19.668 17.616 19.6673 18.2412 19.6162C18.8565 19.5659 19.2293 19.4706 19.5205 19.3223C20.1167 19.0184 20.6024 18.5337 20.9062 17.9375C21.0546 17.6462 21.1489 17.2726 21.1992 16.6572C21.2503 16.0319 21.251 15.2311 21.251 14.0977V9.89453C21.251 8.76111 21.2503 7.96022 21.1992 7.33496C21.1489 6.71942 21.0547 6.34596 20.9062 6.05469C20.6024 5.45838 20.1168 4.97382 19.5205 4.66992C19.2293 4.52154 18.8565 4.42629 18.2412 4.37598C17.616 4.32489 16.8151 4.32422 15.6816 4.32422H8.32031Z",
|
|
30
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
31
|
+
}, null, 8, _hoisted_1),
|
|
32
|
+
vue.createElementVNode("path", {
|
|
33
|
+
d: "M15.3706 8.17188C15.8289 8.17188 16.2005 8.54373 16.2007 9.00195C16.2007 9.46035 15.829 9.83203 15.3706 9.83203H12.8306V15.7383C12.8304 16.1965 12.4587 16.5683 12.0005 16.5684C11.5422 16.5684 11.1705 16.1966 11.1704 15.7383V9.83203H8.62939C8.17114 9.83187 7.79932 9.46025 7.79932 9.00195C7.79952 8.54383 8.17126 8.17204 8.62939 8.17188H15.3706Z",
|
|
34
|
+
fill: $props.useCurrentColor ? "currentColor" : "#00BBD8"
|
|
35
|
+
}, null, 8, _hoisted_2)
|
|
36
|
+
], 16);
|
|
37
|
+
}
|
|
38
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
39
|
+
module.exports = index;
|
|
@@ -21,7 +21,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21
21
|
viewBox: "0 0 24 24",
|
|
22
22
|
fill: "none",
|
|
23
23
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
24
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-textarea`],
|
|
25
25
|
width: "1em",
|
|
26
26
|
height: "1em"
|
|
27
27
|
}, _ctx.$attrs), [
|