@arco-iconbox/vue-smartcode 0.1.3 → 0.1.5
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 +1281 -1191
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +69 -57
- package/dist/icon.min.js.map +1 -1
- package/esm/IconLineBatch/index.js +32 -0
- package/esm/IconLineRedo/index.js +32 -0
- package/esm/IconLineUndo/index.js +32 -0
- package/esm/index.js +3 -0
- package/lib/IconLineBatch/index.js +33 -0
- package/lib/IconLineRedo/index.js +33 -0
- package/lib/IconLineUndo/index.js +33 -0
- package/lib/index.js +6 -0
- package/package.json +1 -1
- package/src/IconLineBatch/index.vue +19 -0
- package/src/IconLineRedo/index.vue +19 -0
- package/src/IconLineUndo/index.vue +19 -0
- package/src/index.js +4 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconLineBatch",
|
|
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: "M3.59766 9.2168C4.88244 9.21696 5.92357 10.2592 5.92383 11.5439C5.92369 12.8288 4.88251 13.87 3.59766 13.8701C2.31286 13.8699 1.27064 12.8288 1.27051 11.5439C1.27076 10.2592 2.31294 9.21703 3.59766 9.2168ZM3.59766 10.5469C3.04751 10.5471 2.60084 10.9937 2.60059 11.5439C2.60072 12.0943 3.04744 12.5408 3.59766 12.541C4.14794 12.5409 4.59361 12.0943 4.59375 11.5439C4.59349 10.9937 4.14786 10.547 3.59766 10.5469ZM14.0645 10.8789C14.4315 10.8791 14.7294 11.1769 14.7295 11.5439C14.7295 11.9111 14.4316 12.2088 14.0645 12.209H7.60449C7.23739 12.2088 6.93945 11.9111 6.93945 11.5439C6.93958 11.1769 7.23747 10.8791 7.60449 10.8789H14.0645ZM3.59766 2.13281C4.8826 2.13297 5.92383 3.17499 5.92383 4.45996C5.92349 5.74465 4.88239 6.78597 3.59766 6.78613C2.31298 6.7859 1.27084 5.7446 1.27051 4.45996C1.27051 3.17504 2.31278 2.13305 3.59766 2.13281ZM3.59766 3.46289C3.04735 3.46313 2.60059 3.90954 2.60059 4.45996C2.60092 5.0101 3.04756 5.4568 3.59766 5.45703C4.14782 5.45687 4.59341 5.01014 4.59375 4.45996C4.59375 3.90949 4.14802 3.46305 3.59766 3.46289ZM14.0645 3.79395C14.4315 3.79411 14.7293 4.09198 14.7295 4.45898C14.7295 4.82616 14.4316 5.12386 14.0645 5.12402H7.60449C7.23739 5.12383 6.93945 4.82613 6.93945 4.45898C6.93965 4.092 7.23751 3.79414 7.60449 3.79395H14.0645Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = [
|
|
19
|
+
_hoisted_2
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-batch`],
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em"
|
|
29
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
30
|
+
}
|
|
31
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
|
+
export { index as default };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconLineRedo",
|
|
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.45166 4.28906C8.68867 4.28906 10.5401 5.29374 12.0278 6.47852C12.9298 7.19683 13.7359 8.01816 14.4214 8.74219V6.75977C14.4214 6.3925 14.7192 6.09473 15.0864 6.09473C15.4537 6.09473 15.7515 6.3925 15.7515 6.75977V10.3789C15.7515 10.3835 15.7496 10.388 15.7495 10.3926C15.7532 10.5683 15.6897 10.7454 15.5552 10.8789C15.3792 11.0533 15.1307 11.1061 14.9077 11.0439H11.5542C11.1871 11.0439 10.8894 10.7459 10.8892 10.3789C10.8892 10.0116 11.1869 9.71387 11.5542 9.71387H13.5073C12.8306 8.99557 12.0787 8.2196 11.1997 7.51953C9.83469 6.43246 8.26997 5.61914 6.45166 5.61914C4.61783 5.61916 3.4347 6.31468 2.69092 7.29102C1.92689 8.29414 1.57861 9.66026 1.57861 11.0449C1.57842 11.412 1.28065 11.7099 0.913574 11.71C0.546424 11.71 0.248728 11.412 0.248535 11.0449C0.248535 9.46481 0.6414 7.78527 1.63232 6.48438C2.6438 5.15665 4.23009 4.28908 6.45166 4.28906Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = [
|
|
19
|
+
_hoisted_2
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-redo`],
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em"
|
|
29
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
30
|
+
}
|
|
31
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
|
+
export { index as default };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconLineUndo",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", { d: "M9.54834 4.28906C11.7697 4.28908 13.3562 5.15684 14.3677 6.48438C15.3586 7.78522 15.7514 9.46484 15.7515 11.0449C15.7513 11.4121 15.4536 11.71 15.0864 11.71C14.7195 11.7097 14.4215 11.4119 14.4214 11.0449C14.4214 9.66018 14.0733 8.29314 13.3091 7.29004C12.5653 6.31408 11.3818 5.61916 9.54834 5.61914C7.73027 5.61925 6.16517 6.43166 4.80029 7.51855C3.92116 8.21869 3.16944 8.99526 2.49268 9.71387H4.4458C4.81298 9.71387 5.11069 10.0118 5.11084 10.3789C5.11063 10.746 4.81294 11.0439 4.4458 11.0439H1.09521C0.87155 11.1072 0.62142 11.054 0.444824 10.8789C0.310663 10.7456 0.246007 10.569 0.249512 10.3936C0.249407 10.3888 0.248538 10.3837 0.248535 10.3789V6.75977C0.248682 6.39274 0.546566 6.09493 0.913574 6.09473C1.28075 6.09473 1.57847 6.39262 1.57861 6.75977V8.74316C2.26415 8.01902 3.07002 7.19698 3.97217 6.47852C5.45987 5.29382 7.31149 4.28917 9.54834 4.28906Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = [
|
|
19
|
+
_hoisted_2
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-undo`],
|
|
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
|
@@ -150,3 +150,6 @@ export { default as IconLineStr } from "./IconLineStr/index.js";
|
|
|
150
150
|
export { default as IconLineEdit } from "./IconLineEdit/index.js";
|
|
151
151
|
export { default as IconFillStart } from "./IconFillStart/index.js";
|
|
152
152
|
export { default as IconLineCode } from "./IconLineCode/index.js";
|
|
153
|
+
export { default as IconLineBatch } from "./IconLineBatch/index.js";
|
|
154
|
+
export { default as IconLineRedo } from "./IconLineRedo/index.js";
|
|
155
|
+
export { default as IconLineUndo } from "./IconLineUndo/index.js";
|
|
@@ -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: "IconLineBatch",
|
|
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: "M3.59766 9.2168C4.88244 9.21696 5.92357 10.2592 5.92383 11.5439C5.92369 12.8288 4.88251 13.87 3.59766 13.8701C2.31286 13.8699 1.27064 12.8288 1.27051 11.5439C1.27076 10.2592 2.31294 9.21703 3.59766 9.2168ZM3.59766 10.5469C3.04751 10.5471 2.60084 10.9937 2.60059 11.5439C2.60072 12.0943 3.04744 12.5408 3.59766 12.541C4.14794 12.5409 4.59361 12.0943 4.59375 11.5439C4.59349 10.9937 4.14786 10.547 3.59766 10.5469ZM14.0645 10.8789C14.4315 10.8791 14.7294 11.1769 14.7295 11.5439C14.7295 11.9111 14.4316 12.2088 14.0645 12.209H7.60449C7.23739 12.2088 6.93945 11.9111 6.93945 11.5439C6.93958 11.1769 7.23747 10.8791 7.60449 10.8789H14.0645ZM3.59766 2.13281C4.8826 2.13297 5.92383 3.17499 5.92383 4.45996C5.92349 5.74465 4.88239 6.78597 3.59766 6.78613C2.31298 6.7859 1.27084 5.7446 1.27051 4.45996C1.27051 3.17504 2.31278 2.13305 3.59766 2.13281ZM3.59766 3.46289C3.04735 3.46313 2.60059 3.90954 2.60059 4.45996C2.60092 5.0101 3.04756 5.4568 3.59766 5.45703C4.14782 5.45687 4.59341 5.01014 4.59375 4.45996C4.59375 3.90949 4.14802 3.46305 3.59766 3.46289ZM14.0645 3.79395C14.4315 3.79411 14.7293 4.09198 14.7295 4.45898C14.7295 4.82616 14.4316 5.12386 14.0645 5.12402H7.60449C7.23739 5.12383 6.93945 4.82613 6.93945 4.45898C6.93965 4.092 7.23751 3.79414 7.60449 3.79395H14.0645Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
|
+
viewBox: "0 0 16 16",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-batch`],
|
|
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;
|
|
@@ -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: "IconLineRedo",
|
|
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.45166 4.28906C8.68867 4.28906 10.5401 5.29374 12.0278 6.47852C12.9298 7.19683 13.7359 8.01816 14.4214 8.74219V6.75977C14.4214 6.3925 14.7192 6.09473 15.0864 6.09473C15.4537 6.09473 15.7515 6.3925 15.7515 6.75977V10.3789C15.7515 10.3835 15.7496 10.388 15.7495 10.3926C15.7532 10.5683 15.6897 10.7454 15.5552 10.8789C15.3792 11.0533 15.1307 11.1061 14.9077 11.0439H11.5542C11.1871 11.0439 10.8894 10.7459 10.8892 10.3789C10.8892 10.0116 11.1869 9.71387 11.5542 9.71387H13.5073C12.8306 8.99557 12.0787 8.2196 11.1997 7.51953C9.83469 6.43246 8.26997 5.61914 6.45166 5.61914C4.61783 5.61916 3.4347 6.31468 2.69092 7.29102C1.92689 8.29414 1.57861 9.66026 1.57861 11.0449C1.57842 11.412 1.28065 11.7099 0.913574 11.71C0.546424 11.71 0.248728 11.412 0.248535 11.0449C0.248535 9.46481 0.6414 7.78527 1.63232 6.48438C2.6438 5.15665 4.23009 4.28908 6.45166 4.28906Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
|
+
viewBox: "0 0 16 16",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-redo`],
|
|
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;
|
|
@@ -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: "IconLineUndo",
|
|
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: "M9.54834 4.28906C11.7697 4.28908 13.3562 5.15684 14.3677 6.48438C15.3586 7.78522 15.7514 9.46484 15.7515 11.0449C15.7513 11.4121 15.4536 11.71 15.0864 11.71C14.7195 11.7097 14.4215 11.4119 14.4214 11.0449C14.4214 9.66018 14.0733 8.29314 13.3091 7.29004C12.5653 6.31408 11.3818 5.61916 9.54834 5.61914C7.73027 5.61925 6.16517 6.43166 4.80029 7.51855C3.92116 8.21869 3.16944 8.99526 2.49268 9.71387H4.4458C4.81298 9.71387 5.11069 10.0118 5.11084 10.3789C5.11063 10.746 4.81294 11.0439 4.4458 11.0439H1.09521C0.87155 11.1072 0.62142 11.054 0.444824 10.8789C0.310663 10.7456 0.246007 10.569 0.249512 10.3936C0.249407 10.3888 0.248538 10.3837 0.248535 10.3789V6.75977C0.248682 6.39274 0.546566 6.09493 0.913574 6.09473C1.28075 6.09473 1.57847 6.39262 1.57861 6.75977V8.74316C2.26415 8.01902 3.07002 7.19698 3.97217 6.47852C5.45987 5.29382 7.31149 4.28917 9.54834 4.28906Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
|
+
viewBox: "0 0 16 16",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-undo`],
|
|
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
|
@@ -152,6 +152,9 @@ var index$2k = require("./IconLineStr/index.js");
|
|
|
152
152
|
var index$2l = require("./IconLineEdit/index.js");
|
|
153
153
|
var index$2m = require("./IconFillStart/index.js");
|
|
154
154
|
var index$2n = require("./IconLineCode/index.js");
|
|
155
|
+
var index$2o = require("./IconLineBatch/index.js");
|
|
156
|
+
var index$2p = require("./IconLineRedo/index.js");
|
|
157
|
+
var index$2q = require("./IconLineUndo/index.js");
|
|
155
158
|
exports.IconFillHeart = index;
|
|
156
159
|
exports.IconFillMute = index$1;
|
|
157
160
|
exports.IconFillSound = index$2;
|
|
@@ -304,3 +307,6 @@ exports.IconLineStr = index$2k;
|
|
|
304
307
|
exports.IconLineEdit = index$2l;
|
|
305
308
|
exports.IconFillStart = index$2m;
|
|
306
309
|
exports.IconLineCode = index$2n;
|
|
310
|
+
exports.IconLineBatch = index$2o;
|
|
311
|
+
exports.IconLineRedo = index$2p;
|
|
312
|
+
exports.IconLineUndo = index$2q;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-batch`]" width="1em" height="1em" v-bind="$attrs"><path d="M3.59766 9.2168C4.88244 9.21696 5.92357 10.2592 5.92383 11.5439C5.92369 12.8288 4.88251 13.87 3.59766 13.8701C2.31286 13.8699 1.27064 12.8288 1.27051 11.5439C1.27076 10.2592 2.31294 9.21703 3.59766 9.2168ZM3.59766 10.5469C3.04751 10.5471 2.60084 10.9937 2.60059 11.5439C2.60072 12.0943 3.04744 12.5408 3.59766 12.541C4.14794 12.5409 4.59361 12.0943 4.59375 11.5439C4.59349 10.9937 4.14786 10.547 3.59766 10.5469ZM14.0645 10.8789C14.4315 10.8791 14.7294 11.1769 14.7295 11.5439C14.7295 11.9111 14.4316 12.2088 14.0645 12.209H7.60449C7.23739 12.2088 6.93945 11.9111 6.93945 11.5439C6.93958 11.1769 7.23747 10.8791 7.60449 10.8789H14.0645ZM3.59766 2.13281C4.8826 2.13297 5.92383 3.17499 5.92383 4.45996C5.92349 5.74465 4.88239 6.78597 3.59766 6.78613C2.31298 6.7859 1.27084 5.7446 1.27051 4.45996C1.27051 3.17504 2.31278 2.13305 3.59766 2.13281ZM3.59766 3.46289C3.04735 3.46313 2.60059 3.90954 2.60059 4.45996C2.60092 5.0101 3.04756 5.4568 3.59766 5.45703C4.14782 5.45687 4.59341 5.01014 4.59375 4.45996C4.59375 3.90949 4.14802 3.46305 3.59766 3.46289ZM14.0645 3.79395C14.4315 3.79411 14.7293 4.09198 14.7295 4.45898C14.7295 4.82616 14.4316 5.12386 14.0645 5.12402H7.60449C7.23739 5.12383 6.93945 4.82613 6.93945 4.45898C6.93965 4.092 7.23751 3.79414 7.60449 3.79395H14.0645Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineBatch',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-redo`]" width="1em" height="1em" v-bind="$attrs"><path d="M6.45166 4.28906C8.68867 4.28906 10.5401 5.29374 12.0278 6.47852C12.9298 7.19683 13.7359 8.01816 14.4214 8.74219V6.75977C14.4214 6.3925 14.7192 6.09473 15.0864 6.09473C15.4537 6.09473 15.7515 6.3925 15.7515 6.75977V10.3789C15.7515 10.3835 15.7496 10.388 15.7495 10.3926C15.7532 10.5683 15.6897 10.7454 15.5552 10.8789C15.3792 11.0533 15.1307 11.1061 14.9077 11.0439H11.5542C11.1871 11.0439 10.8894 10.7459 10.8892 10.3789C10.8892 10.0116 11.1869 9.71387 11.5542 9.71387H13.5073C12.8306 8.99557 12.0787 8.2196 11.1997 7.51953C9.83469 6.43246 8.26997 5.61914 6.45166 5.61914C4.61783 5.61916 3.4347 6.31468 2.69092 7.29102C1.92689 8.29414 1.57861 9.66026 1.57861 11.0449C1.57842 11.412 1.28065 11.7099 0.913574 11.71C0.546424 11.71 0.248728 11.412 0.248535 11.0449C0.248535 9.46481 0.6414 7.78527 1.63232 6.48438C2.6438 5.15665 4.23009 4.28908 6.45166 4.28906Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineRedo',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-undo`]" width="1em" height="1em" v-bind="$attrs"><path d="M9.54834 4.28906C11.7697 4.28908 13.3562 5.15684 14.3677 6.48438C15.3586 7.78522 15.7514 9.46484 15.7515 11.0449C15.7513 11.4121 15.4536 11.71 15.0864 11.71C14.7195 11.7097 14.4215 11.4119 14.4214 11.0449C14.4214 9.66018 14.0733 8.29314 13.3091 7.29004C12.5653 6.31408 11.3818 5.61916 9.54834 5.61914C7.73027 5.61925 6.16517 6.43166 4.80029 7.51855C3.92116 8.21869 3.16944 8.99526 2.49268 9.71387H4.4458C4.81298 9.71387 5.11069 10.0118 5.11084 10.3789C5.11063 10.746 4.81294 11.0439 4.4458 11.0439H1.09521C0.87155 11.1072 0.62142 11.054 0.444824 10.8789C0.310663 10.7456 0.246007 10.569 0.249512 10.3936C0.249407 10.3888 0.248538 10.3837 0.248535 10.3789V6.75977C0.248682 6.39274 0.546566 6.09493 0.913574 6.09473C1.28075 6.09473 1.57847 6.39262 1.57861 6.75977V8.74316C2.26415 8.01902 3.07002 7.19698 3.97217 6.47852C5.45987 5.29382 7.31149 4.28917 9.54834 4.28906Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineUndo',
|
|
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
|
@@ -149,4 +149,7 @@ export { default as IconLineStrArray } from './IconLineStrArray/index.vue';
|
|
|
149
149
|
export { default as IconLineStr } from './IconLineStr/index.vue';
|
|
150
150
|
export { default as IconLineEdit } from './IconLineEdit/index.vue';
|
|
151
151
|
export { default as IconFillStart } from './IconFillStart/index.vue';
|
|
152
|
-
export { default as IconLineCode } from './IconLineCode/index.vue';
|
|
152
|
+
export { default as IconLineCode } from './IconLineCode/index.vue';
|
|
153
|
+
export { default as IconLineBatch } from './IconLineBatch/index.vue';
|
|
154
|
+
export { default as IconLineRedo } from './IconLineRedo/index.vue';
|
|
155
|
+
export { default as IconLineUndo } from './IconLineUndo/index.vue';
|