@arco-iconbox/vue-smartcode 0.1.86 → 0.1.88
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 +3587 -3441
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +148 -132
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorEditForm/index.js +42 -0
- package/esm/IconColorLr/index.js +38 -0
- package/esm/IconColorSearchTable/index.js +42 -0
- package/esm/IconLineAddBold/index.js +32 -0
- package/esm/index.js +4 -0
- package/lib/IconColorEditForm/index.js +43 -0
- package/lib/IconColorLr/index.js +39 -0
- package/lib/IconColorSearchTable/index.js +43 -0
- package/lib/IconLineAddBold/index.js +33 -0
- package/lib/index.js +8 -0
- package/package.json +1 -1
- package/src/IconColorEditForm/index.vue +19 -0
- package/src/IconColorLr/index.vue +19 -0
- package/src/IconColorSearchTable/index.vue +19 -0
- package/src/IconLineAddBold/index.vue +19 -0
- package/src/index.js +5 -1
|
@@ -0,0 +1,42 @@
|
|
|
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: "IconColorEditForm",
|
|
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-edit-form`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
createElementVNode("rect", {
|
|
28
|
+
x: "2.299",
|
|
29
|
+
y: "3.528",
|
|
30
|
+
width: "18.174",
|
|
31
|
+
height: "18.174",
|
|
32
|
+
rx: "6",
|
|
33
|
+
fill: $props.useCurrentColor ? "currentColor" : "#BEDAFF"
|
|
34
|
+
}, null, 8, _hoisted_1),
|
|
35
|
+
createElementVNode("path", {
|
|
36
|
+
d: "M18.1311 2.15502C18.543 1.74316 18.7489 1.53724 18.961 1.41025C19.5935 1.03162 20.383 1.03162 21.0155 1.41025C21.2277 1.53724 21.4336 1.74316 21.8454 2.15502C22.2573 2.56687 22.4632 2.7728 22.5902 2.98494C22.9688 3.61743 22.9688 4.40693 22.5902 5.03942C22.4632 5.25157 22.2573 5.45749 21.8454 5.86935L15.8786 11.8361C15.3132 12.4016 15.0305 12.6843 14.7056 12.9021C14.4173 13.0953 14.1051 13.2502 13.7768 13.3628C13.4069 13.4898 13.0107 13.5438 12.2184 13.6519L11.0963 13.805C10.7418 13.8534 10.5646 13.8775 10.435 13.8201C10.3214 13.7698 10.2306 13.679 10.1803 13.5655C10.1229 13.4359 10.1471 13.2586 10.1955 12.9042L10.3486 11.7821C10.4567 10.9898 10.5107 10.5936 10.6376 10.2237C10.7503 9.89539 10.9052 9.58319 11.0984 9.2949C11.3161 8.97001 11.5989 8.68728 12.1643 8.12182L18.1311 2.15502Z",
|
|
37
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
38
|
+
}, null, 8, _hoisted_2)
|
|
39
|
+
], 16);
|
|
40
|
+
}
|
|
41
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
42
|
+
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: "IconColorLr",
|
|
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-lr`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
createElementVNode("path", {
|
|
28
|
+
d: "M12.0234 8C10.9189 8 10.0234 7.10457 10.0234 6 10.0234 4.89543 10.9189 4 12.0234 4L20.0234 4C21.128 4 22.0234 4.89543 22.0234 6 22.0234 7.10457 21.128 8 20.0234 8L12.0234 8zM12 14C10.8954 14 10 13.1046 10 12 10 10.8954 10.8954 10 12 10L22 10C23.1046 10 24 10.8954 24 12 24 13.1046 23.1046 14 22 14L12 14zM12.0234 20C10.9189 20 10.0234 19.1046 10.0234 18 10.0234 16.8954 10.9189 16 12.0234 16L20.0234 16C21.128 16 22.0234 16.8954 22.0234 18 22.0234 19.1046 21.128 20 20.0234 20L12.0234 20z",
|
|
29
|
+
fill: $props.useCurrentColor ? "currentColor" : "#BEDAFF"
|
|
30
|
+
}, null, 8, _hoisted_1),
|
|
31
|
+
createElementVNode("path", {
|
|
32
|
+
d: "M2.24609 5.58151C2.24609 4.13097 3.42199 2.95508 4.87252 2.95508C6.32306 2.95508 7.49895 4.13097 7.49895 5.58151L7.49895 18.418C7.49895 19.8685 6.32306 21.0444 4.87252 21.0444C3.42199 21.0444 2.24609 19.8685 2.24609 18.418L2.24609 5.58151Z",
|
|
33
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
34
|
+
}, null, 8, _hoisted_2)
|
|
35
|
+
], 16);
|
|
36
|
+
}
|
|
37
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
38
|
+
export { index as default };
|
|
@@ -0,0 +1,42 @@
|
|
|
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: "IconColorSearchTable",
|
|
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-search-table`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
createElementVNode("path", {
|
|
28
|
+
d: "M14.6267 18.2361C13.601 17.2104 13.601 15.5474 14.6267 14.5217C15.6524 13.4961 17.3153 13.4961 18.341 14.5217L21.8207 18.0014C22.8464 19.0271 22.8464 20.6901 21.8207 21.7157C20.795 22.7414 19.1321 22.7414 18.1064 21.7157L14.6267 18.2361Z",
|
|
29
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
30
|
+
}, null, 8, _hoisted_1),
|
|
31
|
+
createElementVNode("rect", {
|
|
32
|
+
x: "1.5",
|
|
33
|
+
y: "1.5",
|
|
34
|
+
width: "18.416",
|
|
35
|
+
height: "18.416",
|
|
36
|
+
rx: "9.208",
|
|
37
|
+
fill: $props.useCurrentColor ? "currentColor" : "#BEDAFF"
|
|
38
|
+
}, null, 8, _hoisted_2)
|
|
39
|
+
], 16);
|
|
40
|
+
}
|
|
41
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
42
|
+
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: "IconLineAddBold",
|
|
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: "M6 0C6.62132 0 7.125 0.50368 7.125 1.125V4.875H10.875C11.4963 4.875 12 5.37868 12 6C12 6.62132 11.4963 7.125 10.875 7.125H7.125V10.875C7.125 11.4963 6.62132 12 6 12C5.37868 12 4.875 11.4963 4.875 10.875V7.125H1.125C0.50368 7.125 0 6.62132 0 6C0 5.37868 0.50368 4.875 1.125 4.875H4.875V1.125C4.875 0.50368 5.37868 0 6 0Z" }, 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 12 12",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-add-bold`],
|
|
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
|
@@ -374,3 +374,7 @@ export { default as IconLineTuDatabase } from "./IconLineTuDatabase/index.js";
|
|
|
374
374
|
export { default as IconColorStep } from "./IconColorStep/index.js";
|
|
375
375
|
export { default as IconColorSign } from "./IconColorSign/index.js";
|
|
376
376
|
export { default as IconColorDivide } from "./IconColorDivide/index.js";
|
|
377
|
+
export { default as IconColorLr } from "./IconColorLr/index.js";
|
|
378
|
+
export { default as IconColorSearchTable } from "./IconColorSearchTable/index.js";
|
|
379
|
+
export { default as IconColorEditForm } from "./IconColorEditForm/index.js";
|
|
380
|
+
export { default as IconLineAddBold } from "./IconLineAddBold/index.js";
|
|
@@ -0,0 +1,43 @@
|
|
|
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: "IconColorEditForm",
|
|
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-edit-form`],
|
|
25
|
+
width: "1em",
|
|
26
|
+
height: "1em"
|
|
27
|
+
}, _ctx.$attrs), [
|
|
28
|
+
vue.createElementVNode("rect", {
|
|
29
|
+
x: "2.299",
|
|
30
|
+
y: "3.528",
|
|
31
|
+
width: "18.174",
|
|
32
|
+
height: "18.174",
|
|
33
|
+
rx: "6",
|
|
34
|
+
fill: $props.useCurrentColor ? "currentColor" : "#BEDAFF"
|
|
35
|
+
}, null, 8, _hoisted_1),
|
|
36
|
+
vue.createElementVNode("path", {
|
|
37
|
+
d: "M18.1311 2.15502C18.543 1.74316 18.7489 1.53724 18.961 1.41025C19.5935 1.03162 20.383 1.03162 21.0155 1.41025C21.2277 1.53724 21.4336 1.74316 21.8454 2.15502C22.2573 2.56687 22.4632 2.7728 22.5902 2.98494C22.9688 3.61743 22.9688 4.40693 22.5902 5.03942C22.4632 5.25157 22.2573 5.45749 21.8454 5.86935L15.8786 11.8361C15.3132 12.4016 15.0305 12.6843 14.7056 12.9021C14.4173 13.0953 14.1051 13.2502 13.7768 13.3628C13.4069 13.4898 13.0107 13.5438 12.2184 13.6519L11.0963 13.805C10.7418 13.8534 10.5646 13.8775 10.435 13.8201C10.3214 13.7698 10.2306 13.679 10.1803 13.5655C10.1229 13.4359 10.1471 13.2586 10.1955 12.9042L10.3486 11.7821C10.4567 10.9898 10.5107 10.5936 10.6376 10.2237C10.7503 9.89539 10.9052 9.58319 11.0984 9.2949C11.3161 8.97001 11.5989 8.68728 12.1643 8.12182L18.1311 2.15502Z",
|
|
38
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
39
|
+
}, null, 8, _hoisted_2)
|
|
40
|
+
], 16);
|
|
41
|
+
}
|
|
42
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
43
|
+
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: "IconColorLr",
|
|
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-lr`],
|
|
25
|
+
width: "1em",
|
|
26
|
+
height: "1em"
|
|
27
|
+
}, _ctx.$attrs), [
|
|
28
|
+
vue.createElementVNode("path", {
|
|
29
|
+
d: "M12.0234 8C10.9189 8 10.0234 7.10457 10.0234 6 10.0234 4.89543 10.9189 4 12.0234 4L20.0234 4C21.128 4 22.0234 4.89543 22.0234 6 22.0234 7.10457 21.128 8 20.0234 8L12.0234 8zM12 14C10.8954 14 10 13.1046 10 12 10 10.8954 10.8954 10 12 10L22 10C23.1046 10 24 10.8954 24 12 24 13.1046 23.1046 14 22 14L12 14zM12.0234 20C10.9189 20 10.0234 19.1046 10.0234 18 10.0234 16.8954 10.9189 16 12.0234 16L20.0234 16C21.128 16 22.0234 16.8954 22.0234 18 22.0234 19.1046 21.128 20 20.0234 20L12.0234 20z",
|
|
30
|
+
fill: $props.useCurrentColor ? "currentColor" : "#BEDAFF"
|
|
31
|
+
}, null, 8, _hoisted_1),
|
|
32
|
+
vue.createElementVNode("path", {
|
|
33
|
+
d: "M2.24609 5.58151C2.24609 4.13097 3.42199 2.95508 4.87252 2.95508C6.32306 2.95508 7.49895 4.13097 7.49895 5.58151L7.49895 18.418C7.49895 19.8685 6.32306 21.0444 4.87252 21.0444C3.42199 21.0444 2.24609 19.8685 2.24609 18.418L2.24609 5.58151Z",
|
|
34
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
35
|
+
}, null, 8, _hoisted_2)
|
|
36
|
+
], 16);
|
|
37
|
+
}
|
|
38
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
39
|
+
module.exports = index;
|
|
@@ -0,0 +1,43 @@
|
|
|
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: "IconColorSearchTable",
|
|
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-search-table`],
|
|
25
|
+
width: "1em",
|
|
26
|
+
height: "1em"
|
|
27
|
+
}, _ctx.$attrs), [
|
|
28
|
+
vue.createElementVNode("path", {
|
|
29
|
+
d: "M14.6267 18.2361C13.601 17.2104 13.601 15.5474 14.6267 14.5217C15.6524 13.4961 17.3153 13.4961 18.341 14.5217L21.8207 18.0014C22.8464 19.0271 22.8464 20.6901 21.8207 21.7157C20.795 22.7414 19.1321 22.7414 18.1064 21.7157L14.6267 18.2361Z",
|
|
30
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
31
|
+
}, null, 8, _hoisted_1),
|
|
32
|
+
vue.createElementVNode("rect", {
|
|
33
|
+
x: "1.5",
|
|
34
|
+
y: "1.5",
|
|
35
|
+
width: "18.416",
|
|
36
|
+
height: "18.416",
|
|
37
|
+
rx: "9.208",
|
|
38
|
+
fill: $props.useCurrentColor ? "currentColor" : "#BEDAFF"
|
|
39
|
+
}, null, 8, _hoisted_2)
|
|
40
|
+
], 16);
|
|
41
|
+
}
|
|
42
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
43
|
+
module.exports = index;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var vue = require("vue");
|
|
3
|
+
var pluginVue_exportHelper = require("../_virtual/plugin-vue_export-helper.js");
|
|
4
|
+
const _sfc_main = {
|
|
5
|
+
name: "IconLineAddBold",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M6 0C6.62132 0 7.125 0.50368 7.125 1.125V4.875H10.875C11.4963 4.875 12 5.37868 12 6C12 6.62132 11.4963 7.125 10.875 7.125H7.125V10.875C7.125 11.4963 6.62132 12 6 12C5.37868 12 4.875 11.4963 4.875 10.875V7.125H1.125C0.50368 7.125 0 6.62132 0 6C0 5.37868 0.50368 4.875 1.125 4.875H4.875V1.125C4.875 0.50368 5.37868 0 6 0Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
|
+
viewBox: "0 0 12 12",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-add-bold`],
|
|
28
|
+
width: "1em",
|
|
29
|
+
height: "1em"
|
|
30
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -376,6 +376,10 @@ var index$5Q = require("./IconLineTuDatabase/index.js");
|
|
|
376
376
|
var index$5R = require("./IconColorStep/index.js");
|
|
377
377
|
var index$5S = require("./IconColorSign/index.js");
|
|
378
378
|
var index$5T = require("./IconColorDivide/index.js");
|
|
379
|
+
var index$5U = require("./IconColorLr/index.js");
|
|
380
|
+
var index$5V = require("./IconColorSearchTable/index.js");
|
|
381
|
+
var index$5W = require("./IconColorEditForm/index.js");
|
|
382
|
+
var index$5X = require("./IconLineAddBold/index.js");
|
|
379
383
|
exports.IconFillHeart = index;
|
|
380
384
|
exports.IconFillMute = index$1;
|
|
381
385
|
exports.IconFillSound = index$2;
|
|
@@ -752,3 +756,7 @@ exports.IconLineTuDatabase = index$5Q;
|
|
|
752
756
|
exports.IconColorStep = index$5R;
|
|
753
757
|
exports.IconColorSign = index$5S;
|
|
754
758
|
exports.IconColorDivide = index$5T;
|
|
759
|
+
exports.IconColorLr = index$5U;
|
|
760
|
+
exports.IconColorSearchTable = index$5V;
|
|
761
|
+
exports.IconColorEditForm = index$5W;
|
|
762
|
+
exports.IconLineAddBold = index$5X;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-edit-form`]" width="1em" height="1em" v-bind="$attrs"><rect x="2.299" y="3.528" width="18.174" height="18.174" rx="6" :fill="useCurrentColor ? 'currentColor' : '#BEDAFF'"/><path d="M18.1311 2.15502C18.543 1.74316 18.7489 1.53724 18.961 1.41025C19.5935 1.03162 20.383 1.03162 21.0155 1.41025C21.2277 1.53724 21.4336 1.74316 21.8454 2.15502C22.2573 2.56687 22.4632 2.7728 22.5902 2.98494C22.9688 3.61743 22.9688 4.40693 22.5902 5.03942C22.4632 5.25157 22.2573 5.45749 21.8454 5.86935L15.8786 11.8361C15.3132 12.4016 15.0305 12.6843 14.7056 12.9021C14.4173 13.0953 14.1051 13.2502 13.7768 13.3628C13.4069 13.4898 13.0107 13.5438 12.2184 13.6519L11.0963 13.805C10.7418 13.8534 10.5646 13.8775 10.435 13.8201C10.3214 13.7698 10.2306 13.679 10.1803 13.5655C10.1229 13.4359 10.1471 13.2586 10.1955 12.9042L10.3486 11.7821C10.4567 10.9898 10.5107 10.5936 10.6376 10.2237C10.7503 9.89539 10.9052 9.58319 11.0984 9.2949C11.3161 8.97001 11.5989 8.68728 12.1643 8.12182L18.1311 2.15502Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorEditForm',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-lr`]" width="1em" height="1em" v-bind="$attrs"><path d="M12.0234 8C10.9189 8 10.0234 7.10457 10.0234 6 10.0234 4.89543 10.9189 4 12.0234 4L20.0234 4C21.128 4 22.0234 4.89543 22.0234 6 22.0234 7.10457 21.128 8 20.0234 8L12.0234 8zM12 14C10.8954 14 10 13.1046 10 12 10 10.8954 10.8954 10 12 10L22 10C23.1046 10 24 10.8954 24 12 24 13.1046 23.1046 14 22 14L12 14zM12.0234 20C10.9189 20 10.0234 19.1046 10.0234 18 10.0234 16.8954 10.9189 16 12.0234 16L20.0234 16C21.128 16 22.0234 16.8954 22.0234 18 22.0234 19.1046 21.128 20 20.0234 20L12.0234 20z" :fill="useCurrentColor ? 'currentColor' : '#BEDAFF'"/><path d="M2.24609 5.58151C2.24609 4.13097 3.42199 2.95508 4.87252 2.95508C6.32306 2.95508 7.49895 4.13097 7.49895 5.58151L7.49895 18.418C7.49895 19.8685 6.32306 21.0444 4.87252 21.0444C3.42199 21.0444 2.24609 19.8685 2.24609 18.418L2.24609 5.58151Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorLr',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-search-table`]" width="1em" height="1em" v-bind="$attrs"><path d="M14.6267 18.2361C13.601 17.2104 13.601 15.5474 14.6267 14.5217C15.6524 13.4961 17.3153 13.4961 18.341 14.5217L21.8207 18.0014C22.8464 19.0271 22.8464 20.6901 21.8207 21.7157C20.795 22.7414 19.1321 22.7414 18.1064 21.7157L14.6267 18.2361Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/><rect x="1.5" y="1.5" width="18.416" height="18.416" rx="9.208" :fill="useCurrentColor ? 'currentColor' : '#BEDAFF'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorSearchTable',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 12 12" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-add-bold`]" width="1em" height="1em" v-bind="$attrs"><path d="M6 0C6.62132 0 7.125 0.50368 7.125 1.125V4.875H10.875C11.4963 4.875 12 5.37868 12 6C12 6.62132 11.4963 7.125 10.875 7.125H7.125V10.875C7.125 11.4963 6.62132 12 6 12C5.37868 12 4.875 11.4963 4.875 10.875V7.125H1.125C0.50368 7.125 0 6.62132 0 6C0 5.37868 0.50368 4.875 1.125 4.875H4.875V1.125C4.875 0.50368 5.37868 0 6 0Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineAddBold',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -373,4 +373,8 @@ export { default as IconLineGraphData } from './IconLineGraphData/index.vue';
|
|
|
373
373
|
export { default as IconLineTuDatabase } from './IconLineTuDatabase/index.vue';
|
|
374
374
|
export { default as IconColorStep } from './IconColorStep/index.vue';
|
|
375
375
|
export { default as IconColorSign } from './IconColorSign/index.vue';
|
|
376
|
-
export { default as IconColorDivide } from './IconColorDivide/index.vue';
|
|
376
|
+
export { default as IconColorDivide } from './IconColorDivide/index.vue';
|
|
377
|
+
export { default as IconColorLr } from './IconColorLr/index.vue';
|
|
378
|
+
export { default as IconColorSearchTable } from './IconColorSearchTable/index.vue';
|
|
379
|
+
export { default as IconColorEditForm } from './IconColorEditForm/index.vue';
|
|
380
|
+
export { default as IconLineAddBold } from './IconLineAddBold/index.vue';
|