@arco-iconbox/vue-smartcode 0.1.33 → 0.1.35
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 +2862 -2291
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +776 -724
- 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/IconLinePlay/index.js +40 -0
- package/esm/IconLineRefresh/index.js +17 -6
- package/esm/index.js +13 -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/IconLinePlay/index.js +41 -0
- package/lib/IconLineRefresh/index.js +17 -6
- package/lib/index.js +26 -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/IconLinePlay/index.vue +19 -0
- package/src/IconLineRefresh/index.vue +2 -2
- package/src/index.js +14 -1
|
@@ -0,0 +1,40 @@
|
|
|
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: "IconColorBarcode",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
d: "M8.39291 8.97656V15.4495M12.0741 8.97656L12.0741 15.4511M15.7552 8.97656L15.7552 15.4495",
|
|
18
|
+
stroke: "#00BBD8",
|
|
19
|
+
"stroke-width": "1.66",
|
|
20
|
+
"stroke-linecap": "round"
|
|
21
|
+
}, null, -1);
|
|
22
|
+
const _hoisted_2 = ["fill"];
|
|
23
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
25
|
+
viewBox: "0 0 24 24",
|
|
26
|
+
fill: "none",
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-barcode`],
|
|
29
|
+
width: "1em",
|
|
30
|
+
height: "1em"
|
|
31
|
+
}, _ctx.$attrs), [
|
|
32
|
+
_hoisted_1,
|
|
33
|
+
createElementVNode("path", {
|
|
34
|
+
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",
|
|
35
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
36
|
+
}, null, 8, _hoisted_2)
|
|
37
|
+
], 16);
|
|
38
|
+
}
|
|
39
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
40
|
+
export { index as default };
|
|
@@ -20,7 +20,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20
20
|
viewBox: "0 0 16 16",
|
|
21
21
|
fill: "none",
|
|
22
22
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-data-filter`],
|
|
24
24
|
width: "1em",
|
|
25
25
|
height: "1em"
|
|
26
26
|
}, _ctx.$attrs), [
|
|
@@ -40,7 +40,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
40
40
|
fill: "none",
|
|
41
41
|
xmlns: "http://www.w3.org/2000/svg",
|
|
42
42
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
43
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
43
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-doc`],
|
|
44
44
|
width: "1em",
|
|
45
45
|
height: "1em"
|
|
46
46
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,41 @@
|
|
|
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: "IconColorHline",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
d: "M3.04309 12H20.9573",
|
|
18
|
+
stroke: "#00BBD8",
|
|
19
|
+
"stroke-width": "1.66",
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-linejoin": "round"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_2 = ["fill"];
|
|
24
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25
|
+
return openBlock(), createElementBlock("svg", 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-hline`],
|
|
30
|
+
width: "1em",
|
|
31
|
+
height: "1em"
|
|
32
|
+
}, _ctx.$attrs), [
|
|
33
|
+
_hoisted_1,
|
|
34
|
+
createElementVNode("path", {
|
|
35
|
+
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",
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
37
|
+
}, null, 8, _hoisted_2)
|
|
38
|
+
], 16);
|
|
39
|
+
}
|
|
40
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
41
|
+
export { index as default };
|
|
@@ -0,0 +1,45 @@
|
|
|
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: "IconColorImage",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
d: "M4.07251 16.3809L7.91563 13.71L9.83719 15.0455L11.7588 16.3809M19.9254 17.2312L13.3088 12.6328L11.573 13.8391",
|
|
18
|
+
stroke: "#00BBD8",
|
|
19
|
+
"stroke-width": "1.66",
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-linejoin": "round"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
24
|
+
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",
|
|
25
|
+
stroke: "#165DFF",
|
|
26
|
+
"stroke-width": "1.66",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-linejoin": "round"
|
|
29
|
+
}, null, -1);
|
|
30
|
+
const _hoisted_3 = [
|
|
31
|
+
_hoisted_1,
|
|
32
|
+
_hoisted_2
|
|
33
|
+
];
|
|
34
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
35
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
36
|
+
viewBox: "0 0 24 24",
|
|
37
|
+
fill: "none",
|
|
38
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
39
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-image`],
|
|
40
|
+
width: "1em",
|
|
41
|
+
height: "1em"
|
|
42
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
43
|
+
}
|
|
44
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
45
|
+
export { index as default };
|
|
@@ -0,0 +1,40 @@
|
|
|
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: "IconColorLongtext",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = ["fill"];
|
|
18
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
19
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-longtext`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
createElementVNode("path", {
|
|
28
|
+
"fill-rule": "evenodd",
|
|
29
|
+
"clip-rule": "evenodd",
|
|
30
|
+
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",
|
|
31
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
32
|
+
}, null, 8, _hoisted_1),
|
|
33
|
+
createElementVNode("path", {
|
|
34
|
+
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",
|
|
35
|
+
fill: $props.useCurrentColor ? "currentColor" : "#00BBD8"
|
|
36
|
+
}, null, 8, _hoisted_2)
|
|
37
|
+
], 16);
|
|
38
|
+
}
|
|
39
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
40
|
+
export { index as default };
|
|
@@ -20,7 +20,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20
20
|
viewBox: "0 0 24 24",
|
|
21
21
|
fill: "none",
|
|
22
22
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-num`],
|
|
24
24
|
width: "1em",
|
|
25
25
|
height: "1em"
|
|
26
26
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,36 @@
|
|
|
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: "IconColorOval",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
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",
|
|
18
|
+
stroke: "#165DFF",
|
|
19
|
+
"stroke-width": "1.66",
|
|
20
|
+
"stroke-linejoin": "round"
|
|
21
|
+
}, null, -1);
|
|
22
|
+
const _hoisted_2 = [
|
|
23
|
+
_hoisted_1
|
|
24
|
+
];
|
|
25
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
26
|
+
return openBlock(), createElementBlock("svg", 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-oval`],
|
|
31
|
+
width: "1em",
|
|
32
|
+
height: "1em"
|
|
33
|
+
}, _ctx.$attrs), _hoisted_2, 16);
|
|
34
|
+
}
|
|
35
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
36
|
+
export { index as default };
|
|
@@ -40,7 +40,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
40
40
|
fill: "none",
|
|
41
41
|
xmlns: "http://www.w3.org/2000/svg",
|
|
42
42
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
43
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
43
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-pdf`],
|
|
44
44
|
width: "1em",
|
|
45
45
|
height: "1em"
|
|
46
46
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,67 @@
|
|
|
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: "IconColorQrcode",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("rect", {
|
|
17
|
+
x: "3.43",
|
|
18
|
+
y: "3.43",
|
|
19
|
+
width: "7.217",
|
|
20
|
+
height: "7.217",
|
|
21
|
+
rx: "2",
|
|
22
|
+
stroke: "#165DFF",
|
|
23
|
+
"stroke-width": "1.66"
|
|
24
|
+
}, null, -1);
|
|
25
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("rect", {
|
|
26
|
+
x: "3.43",
|
|
27
|
+
y: "13.352",
|
|
28
|
+
width: "7.217",
|
|
29
|
+
height: "7.217",
|
|
30
|
+
rx: "2",
|
|
31
|
+
stroke: "#165DFF",
|
|
32
|
+
"stroke-width": "1.66"
|
|
33
|
+
}, null, -1);
|
|
34
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("rect", {
|
|
35
|
+
x: "13.353",
|
|
36
|
+
y: "3.43",
|
|
37
|
+
width: "7.217",
|
|
38
|
+
height: "7.217",
|
|
39
|
+
rx: "2",
|
|
40
|
+
stroke: "#165DFF",
|
|
41
|
+
"stroke-width": "1.66"
|
|
42
|
+
}, null, -1);
|
|
43
|
+
const _hoisted_4 = /* @__PURE__ */ createElementVNode("path", {
|
|
44
|
+
d: "M13.3532 13.3516L20.5701 13.3516M14.2553 16.3047V20.5732M16.9616 16.3047V20.5732M19.6679 16.3047V20.5732",
|
|
45
|
+
stroke: "#00BBD8",
|
|
46
|
+
"stroke-width": "1.66",
|
|
47
|
+
"stroke-linecap": "round",
|
|
48
|
+
"stroke-linejoin": "round"
|
|
49
|
+
}, null, -1);
|
|
50
|
+
const _hoisted_5 = [
|
|
51
|
+
_hoisted_1,
|
|
52
|
+
_hoisted_2,
|
|
53
|
+
_hoisted_3,
|
|
54
|
+
_hoisted_4
|
|
55
|
+
];
|
|
56
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
57
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
58
|
+
viewBox: "0 0 24 24",
|
|
59
|
+
fill: "none",
|
|
60
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
61
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-qrcode`],
|
|
62
|
+
width: "1em",
|
|
63
|
+
height: "1em"
|
|
64
|
+
}, _ctx.$attrs), _hoisted_5, 16);
|
|
65
|
+
}
|
|
66
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
67
|
+
export { index as default };
|
|
@@ -22,7 +22,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22
22
|
viewBox: "0 0 24 24",
|
|
23
23
|
fill: "none",
|
|
24
24
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
25
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-radio`],
|
|
26
26
|
width: "1em",
|
|
27
27
|
height: "1em"
|
|
28
28
|
}, _ctx.$attrs), _hoisted_6, 16);
|
|
@@ -0,0 +1,51 @@
|
|
|
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: "IconColorRect",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("rect", {
|
|
17
|
+
x: "1.919",
|
|
18
|
+
y: "3.5",
|
|
19
|
+
width: "20.162",
|
|
20
|
+
height: "17.004",
|
|
21
|
+
rx: "4",
|
|
22
|
+
stroke: "#165DFF",
|
|
23
|
+
"stroke-width": "1.66",
|
|
24
|
+
"stroke-linejoin": "round"
|
|
25
|
+
}, null, -1);
|
|
26
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("rect", {
|
|
27
|
+
x: "6.558",
|
|
28
|
+
y: "8.078",
|
|
29
|
+
width: "10.885",
|
|
30
|
+
height: "7.852",
|
|
31
|
+
rx: "2",
|
|
32
|
+
stroke: "#00BBD8",
|
|
33
|
+
"stroke-width": "1.66",
|
|
34
|
+
"stroke-linejoin": "round"
|
|
35
|
+
}, null, -1);
|
|
36
|
+
const _hoisted_3 = [
|
|
37
|
+
_hoisted_1,
|
|
38
|
+
_hoisted_2
|
|
39
|
+
];
|
|
40
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
41
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
fill: "none",
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-rect`],
|
|
46
|
+
width: "1em",
|
|
47
|
+
height: "1em"
|
|
48
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
49
|
+
}
|
|
50
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
51
|
+
export { index as default };
|
|
@@ -42,7 +42,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
42
42
|
viewBox: "0 0 24 24",
|
|
43
43
|
fill: "none",
|
|
44
44
|
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
45
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-switch`],
|
|
46
46
|
width: "1em",
|
|
47
47
|
height: "1em"
|
|
48
48
|
}, _ctx.$attrs), _hoisted_3, 16);
|
|
@@ -0,0 +1,52 @@
|
|
|
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: "IconColorTable",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
d: "M8.67105 7.74219L8.67105 20.3614M15.3289 7.74219L15.3289 20.3614M2.77145 14.0547H21.2285",
|
|
18
|
+
stroke: "#00BBD8",
|
|
19
|
+
"stroke-width": "1.66"
|
|
20
|
+
}, null, -1);
|
|
21
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("rect", {
|
|
22
|
+
x: "2.771",
|
|
23
|
+
y: "3.641",
|
|
24
|
+
width: "18.457",
|
|
25
|
+
height: "16.536",
|
|
26
|
+
rx: "3",
|
|
27
|
+
stroke: "#165DFF",
|
|
28
|
+
"stroke-width": "1.66",
|
|
29
|
+
"stroke-linejoin": "round"
|
|
30
|
+
}, null, -1);
|
|
31
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("path", {
|
|
32
|
+
d: "M2.77145 8.39062H21.2285",
|
|
33
|
+
stroke: "#165DFF",
|
|
34
|
+
"stroke-width": "1.66"
|
|
35
|
+
}, null, -1);
|
|
36
|
+
const _hoisted_4 = [
|
|
37
|
+
_hoisted_1,
|
|
38
|
+
_hoisted_2,
|
|
39
|
+
_hoisted_3
|
|
40
|
+
];
|
|
41
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
42
|
+
return openBlock(), createElementBlock("svg", 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-table`],
|
|
47
|
+
width: "1em",
|
|
48
|
+
height: "1em"
|
|
49
|
+
}, _ctx.$attrs), _hoisted_4, 16);
|
|
50
|
+
}
|
|
51
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
52
|
+
export { index as default };
|
|
@@ -0,0 +1,38 @@
|
|
|
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: "IconColorText",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = ["fill"];
|
|
18
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
19
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-text`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
createElementVNode("path", {
|
|
28
|
+
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",
|
|
29
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
30
|
+
}, null, 8, _hoisted_1),
|
|
31
|
+
createElementVNode("path", {
|
|
32
|
+
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",
|
|
33
|
+
fill: $props.useCurrentColor ? "currentColor" : "#00BBD8"
|
|
34
|
+
}, null, 8, _hoisted_2)
|
|
35
|
+
], 16);
|
|
36
|
+
}
|
|
37
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
38
|
+
export { index as default };
|
|
@@ -20,7 +20,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20
20
|
viewBox: "0 0 24 24",
|
|
21
21
|
fill: "none",
|
|
22
22
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-textarea`],
|
|
24
24
|
width: "1em",
|
|
25
25
|
height: "1em"
|
|
26
26
|
}, _ctx.$attrs), [
|
|
@@ -0,0 +1,48 @@
|
|
|
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: "IconColorTime",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("rect", {
|
|
17
|
+
x: "2.579",
|
|
18
|
+
y: "3.523",
|
|
19
|
+
width: "18.841",
|
|
20
|
+
height: "16.957",
|
|
21
|
+
rx: "5",
|
|
22
|
+
stroke: "#165DFF",
|
|
23
|
+
"stroke-width": "1.66",
|
|
24
|
+
"stroke-linejoin": "round"
|
|
25
|
+
}, null, -1);
|
|
26
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
27
|
+
d: "M12 7.28906V11.9994L15.2972 15.2966",
|
|
28
|
+
stroke: "#00BBD8",
|
|
29
|
+
"stroke-width": "1.66",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round"
|
|
32
|
+
}, null, -1);
|
|
33
|
+
const _hoisted_3 = [
|
|
34
|
+
_hoisted_1,
|
|
35
|
+
_hoisted_2
|
|
36
|
+
];
|
|
37
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
38
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: "none",
|
|
41
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-time`],
|
|
43
|
+
width: "1em",
|
|
44
|
+
height: "1em"
|
|
45
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
46
|
+
}
|
|
47
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
48
|
+
export { index as default };
|
|
@@ -0,0 +1,47 @@
|
|
|
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: "IconColorUser",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
d: "M2.3085 17.8152C2.3085 17.3629 2.3085 17.1367 2.32678 16.9462C2.50973 15.039 4.01936 13.5294 5.92654 13.3464C6.11708 13.3281 6.34325 13.3281 6.79557 13.3281H17.2049C17.6572 13.3281 17.8834 13.3281 18.0739 13.3464C19.9811 13.5294 21.4908 15.039 21.6737 16.9462C21.692 17.1367 21.692 17.3629 21.692 17.8152C21.692 18.0414 21.692 18.1544 21.6828 18.2497C21.5914 19.2033 20.8366 19.9581 19.883 20.0496C19.7877 20.0587 19.6746 20.0587 19.4485 20.0587H4.55204C4.32587 20.0587 4.21279 20.0587 4.11752 20.0496C3.16393 19.9581 2.40912 19.2033 2.31764 18.2497C2.3085 18.1544 2.3085 18.0414 2.3085 17.8152Z",
|
|
18
|
+
stroke: "#165DFF",
|
|
19
|
+
"stroke-width": "1.66",
|
|
20
|
+
"stroke-linejoin": "round"
|
|
21
|
+
}, null, -1);
|
|
22
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("rect", {
|
|
23
|
+
x: "8.39",
|
|
24
|
+
y: "3.203",
|
|
25
|
+
width: "7.22",
|
|
26
|
+
height: "7.22",
|
|
27
|
+
rx: "3.61",
|
|
28
|
+
stroke: "#00BBD8",
|
|
29
|
+
"stroke-width": "1.66",
|
|
30
|
+
"stroke-linejoin": "round"
|
|
31
|
+
}, null, -1);
|
|
32
|
+
const _hoisted_3 = [
|
|
33
|
+
_hoisted_1,
|
|
34
|
+
_hoisted_2
|
|
35
|
+
];
|
|
36
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
37
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
38
|
+
viewBox: "0 0 24 24",
|
|
39
|
+
fill: "none",
|
|
40
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
41
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-user`],
|
|
42
|
+
width: "1em",
|
|
43
|
+
height: "1em"
|
|
44
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
45
|
+
}
|
|
46
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
47
|
+
export { index as default };
|
|
@@ -0,0 +1,41 @@
|
|
|
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: "IconColorVline",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", {
|
|
17
|
+
d: "M11.9973 3.04688L11.9973 20.9611",
|
|
18
|
+
stroke: "#00BBD8",
|
|
19
|
+
"stroke-width": "1.66",
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-linejoin": "round"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_2 = ["fill"];
|
|
24
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25
|
+
return openBlock(), createElementBlock("svg", 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-vline`],
|
|
30
|
+
width: "1em",
|
|
31
|
+
height: "1em"
|
|
32
|
+
}, _ctx.$attrs), [
|
|
33
|
+
_hoisted_1,
|
|
34
|
+
createElementVNode("path", {
|
|
35
|
+
d: "M19.3703 6.41211C19.3703 6.87051 18.9986 7.24219 18.5402 7.24219 18.082 7.24198 17.7101 6.87038 17.7101 6.41211L17.7101 3.04102C17.7102 2.5828 18.082 2.21115 18.5402 2.21094 18.9986 2.21094 19.3702 2.58267 19.3703 3.04102L19.3703 6.41211zM19.3703 13.6836C19.3703 14.142 18.9986 14.5137 18.5402 14.5137 18.082 14.5135 17.7101 14.1419 17.7101 13.6836L17.7101 10.3125C17.7102 9.85427 18.082 9.48263 18.5402 9.48242 18.9986 9.48242 19.3703 9.85414 19.3703 10.3125L19.3703 13.6836zM19.3703 20.9551C19.3703 21.4135 18.9986 21.7852 18.5402 21.7852 18.082 21.7849 17.7101 21.4133 17.7101 20.9551L17.7101 17.584C17.7102 17.1257 18.082 16.7541 18.5402 16.7539 18.9986 16.7539 19.3703 17.1256 19.3703 17.584L19.3703 20.9551zM6.28632 6.41211C6.28632 6.87044 5.91455 7.24208 5.45624 7.24219 4.99784 7.24219 4.62616 6.87051 4.62616 6.41211L4.62616 3.04102C4.62622 2.58267 4.99788 2.21094 5.45624 2.21094 5.91451 2.21104 6.28626 2.58274 6.28632 3.04102L6.28632 6.41211zM6.28632 13.6836C6.28632 14.1419 5.91454 14.5136 5.45624 14.5137 4.99784 14.5137 4.62616 14.142 4.62616 13.6836L4.62616 10.3125C4.6262 9.85414 4.99787 9.48242 5.45624 9.48242 5.91452 9.48253 6.28628 9.8542 6.28632 10.3125L6.28632 13.6836zM6.28632 20.9551C6.28632 21.4134 5.91454 21.7851 5.45624 21.7852 4.99784 21.7852 4.62616 21.4135 4.62616 20.9551L4.62616 17.584C4.62618 17.1256 4.99785 16.7539 5.45624 16.7539 5.91453 16.754 6.2863 17.1257 6.28632 17.584L6.28632 20.9551z",
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
37
|
+
}, null, 8, _hoisted_2)
|
|
38
|
+
], 16);
|
|
39
|
+
}
|
|
40
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
41
|
+
export { index as default };
|
|
@@ -40,7 +40,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
40
40
|
fill: "none",
|
|
41
41
|
xmlns: "http://www.w3.org/2000/svg",
|
|
42
42
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
43
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
43
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-xls`],
|
|
44
44
|
width: "1em",
|
|
45
45
|
height: "1em"
|
|
46
46
|
}, _ctx.$attrs), [
|