@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
|
@@ -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,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: "IconLinePlay",
|
|
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("g", { "clip-path": "url(#svg_aaff17d8db__clip0_6086_485462)" }, [
|
|
18
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M7.99951 0.5C12.1409 0.5 15.4993 3.8576 15.4995 7.99902C15.4995 12.1407 12.141 15.498 7.99951 15.498C3.8582 15.4978 0.500488 12.1405 0.500488 7.99902C0.500742 3.85776 3.85836 0.500257 7.99951 0.5ZM7.99951 1.83008C4.59278 1.83033 1.83082 4.59241 1.83057 7.99902C1.83057 11.4059 4.59263 14.1677 7.99951 14.168C11.4066 14.168 14.1694 11.406 14.1694 7.99902C14.1692 4.59225 11.4065 1.83008 7.99951 1.83008ZM6.67725 5.52734C6.83881 5.51036 7.03638 5.62325 7.43018 5.85059L9.95068 7.30664C10.3444 7.53396 10.5418 7.64752 10.6079 7.7959C10.6655 7.92535 10.6655 8.07367 10.6079 8.20312C10.5417 8.35139 10.3442 8.46519 9.95068 8.69238L7.43018 10.1475C7.03639 10.3748 6.83881 10.4887 6.67725 10.4717C6.53658 10.4568 6.4089 10.3829 6.32568 10.2686C6.23021 10.1371 6.22998 9.90965 6.22998 9.45508V6.54395C6.22998 6.08924 6.23019 5.8619 6.32568 5.73047C6.40889 5.61598 6.53652 5.54226 6.67725 5.52734Z" })
|
|
19
|
+
], -1);
|
|
20
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("defs", null, [
|
|
21
|
+
/* @__PURE__ */ createElementVNode("clipPath", { id: "svg_aaff17d8db__clip0_6086_485462" }, [
|
|
22
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M0 0H16V16H0z" })
|
|
23
|
+
])
|
|
24
|
+
], -1);
|
|
25
|
+
const _hoisted_4 = [
|
|
26
|
+
_hoisted_2,
|
|
27
|
+
_hoisted_3
|
|
28
|
+
];
|
|
29
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
30
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
31
|
+
viewBox: "0 0 16 16",
|
|
32
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-play`],
|
|
35
|
+
width: "1em",
|
|
36
|
+
height: "1em"
|
|
37
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
38
|
+
}
|
|
39
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
40
|
+
export { index as default };
|
|
@@ -9,24 +9,35 @@ const _sfc_main = {
|
|
|
9
9
|
},
|
|
10
10
|
useCurrentColor: {
|
|
11
11
|
type: Boolean,
|
|
12
|
-
default:
|
|
12
|
+
default: true
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
};
|
|
16
16
|
const _hoisted_1 = ["fill"];
|
|
17
|
-
const _hoisted_2 = /* @__PURE__ */ createElementVNode("
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("g", { "clip-path": "url(#svg_7d741f428e__clip0_6121_45789)" }, [
|
|
18
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M13.8524 9.74758C14.0351 9.887 14.2772 9.9219 14.4921 9.84036C14.707 9.75865 14.8651 9.57095 14.9091 9.34524C15.6522 5.53006 13.1617 1.83504 9.34656 1.09133C6.55271 0.546969 3.82412 1.7365 2.27137 3.90774C2.05804 4.20631 2.1264 4.6218 2.42469 4.83547C2.72333 5.04904 3.13969 4.97966 3.3534 4.68118C4.61446 2.91806 6.82775 1.95596 9.09168 2.397C11.808 2.92639 13.6967 5.29999 13.7098 7.96536L12.8671 7.3218C12.5752 7.09907 12.1573 7.15504 11.9345 7.4468C11.7117 7.73869 11.7677 8.15657 12.0595 8.37942L13.8524 9.74758ZM6.6532 14.9077C9.41234 15.4455 12.1086 14.2922 13.6708 12.1724C13.8884 11.8767 13.8247 11.4605 13.5292 11.2427C13.2336 11.0251 12.8173 11.0879 12.5995 11.3833C11.3307 13.105 9.14394 14.0387 6.90809 13.6031C4.17847 13.0709 2.28633 10.675 2.29188 7.99368L3.29871 8.71731C3.59684 8.93156 4.01301 8.864 4.22742 8.56594C4.44146 8.26799 4.37365 7.8527 4.07606 7.63821L2.1327 6.24075C1.94877 6.1085 1.70952 6.07821 1.49891 6.16164C1.28848 6.24516 1.13511 6.43067 1.09168 6.65286C0.348144 10.4682 2.83805 14.1638 6.6532 14.9077Z" })
|
|
19
|
+
], -1);
|
|
20
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("defs", null, [
|
|
21
|
+
/* @__PURE__ */ createElementVNode("clipPath", { id: "svg_7d741f428e__clip0_6121_45789" }, [
|
|
22
|
+
/* @__PURE__ */ createElementVNode("path", {
|
|
23
|
+
transform: "matrix(1 0 0 -1 0 16)",
|
|
24
|
+
d: "M0 0H16V16H0z"
|
|
25
|
+
})
|
|
26
|
+
])
|
|
27
|
+
], -1);
|
|
28
|
+
const _hoisted_4 = [
|
|
29
|
+
_hoisted_2,
|
|
30
|
+
_hoisted_3
|
|
20
31
|
];
|
|
21
32
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
33
|
return openBlock(), createElementBlock("svg", mergeProps({
|
|
23
34
|
viewBox: "0 0 16 16",
|
|
24
|
-
fill: $props.useCurrentColor ? "currentColor" : "
|
|
35
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
36
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26
37
|
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-refresh`],
|
|
27
38
|
width: "1em",
|
|
28
39
|
height: "1em"
|
|
29
|
-
}, _ctx.$attrs),
|
|
40
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
30
41
|
}
|
|
31
42
|
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
43
|
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -243,3 +243,16 @@ export { default as IconLineLlm } from "./IconLineLlm/index.js";
|
|
|
243
243
|
export { default as IconColorLogicFlow } from "./IconColorLogicFlow/index.js";
|
|
244
244
|
export { default as IconLineSkill } from "./IconLineSkill/index.js";
|
|
245
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";
|
|
258
|
+
export { default as IconLinePlay } from "./IconLinePlay/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), [
|