@arco-iconbox/vue-update-line-icon 0.0.7 → 0.0.8
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 +1067 -1019
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +45 -41
- package/dist/icon.min.js.map +1 -1
- package/esm/IconXukez/index.js +50 -0
- package/esm/index.js +1 -0
- package/lib/IconXukez/index.js +51 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconXukez/index.vue +19 -0
- package/src/index.js +2 -1
|
@@ -0,0 +1,50 @@
|
|
|
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: "IconXukez",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "update-line-icon"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
18
|
+
d: "M9.75 13.5H2.25C1.83579 13.5 1.5 13.1642 1.5 12.75V3C1.5 2.58579 1.83579 2.25 2.25 2.25H15.75C16.1642 2.25 16.5 2.58579 16.5 3V12.75C16.5 13.1642 16.1642 13.5 15.75 13.5H12.75M4.5 5.25H13.5M4.5 7.875H6.75M4.5 10.5H6",
|
|
19
|
+
stroke: "#000",
|
|
20
|
+
"stroke-width": "1.5",
|
|
21
|
+
"stroke-linejoin": "round"
|
|
22
|
+
}, null, -1);
|
|
23
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("path", {
|
|
24
|
+
d: "M11.25 12.375C12.4926 12.375 13.5 11.3676 13.5 10.125C13.5 8.88236 12.4926 7.875 11.25 7.875C10.0074 7.875 9 8.88236 9 10.125C9 11.3676 10.0074 12.375 11.25 12.375Z",
|
|
25
|
+
stroke: "#000",
|
|
26
|
+
"stroke-width": "1.5"
|
|
27
|
+
}, null, -1);
|
|
28
|
+
const _hoisted_4 = /* @__PURE__ */ createElementVNode("path", {
|
|
29
|
+
d: "M11.25 15L12.75 15.75V11.8021C12.75 11.8021 12.3223 12.375 11.25 12.375C10.1777 12.375 9.75 11.8125 9.75 11.8125V15.75L11.25 15Z",
|
|
30
|
+
stroke: "#000",
|
|
31
|
+
"stroke-width": "1.5",
|
|
32
|
+
"stroke-linejoin": "round"
|
|
33
|
+
}, null, -1);
|
|
34
|
+
const _hoisted_5 = [
|
|
35
|
+
_hoisted_2,
|
|
36
|
+
_hoisted_3,
|
|
37
|
+
_hoisted_4
|
|
38
|
+
];
|
|
39
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
40
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
41
|
+
viewBox: "0 0 18 18",
|
|
42
|
+
fill: $props.useCurrentColor ? "currentColor" : "none",
|
|
43
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
44
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-xukez`],
|
|
45
|
+
width: "1em",
|
|
46
|
+
height: "1em"
|
|
47
|
+
}, _ctx.$attrs), _hoisted_5, 16, _hoisted_1);
|
|
48
|
+
}
|
|
49
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
50
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -96,3 +96,4 @@ export { default as IconChaxun } from "./IconChaxun/index.js";
|
|
|
96
96
|
export { default as IconConsole } from "./IconConsole/index.js";
|
|
97
97
|
export { default as IconLog } from "./IconLog/index.js";
|
|
98
98
|
export { default as IconBind } from "./IconBind/index.js";
|
|
99
|
+
export { default as IconXukez } from "./IconXukez/index.js";
|
|
@@ -0,0 +1,51 @@
|
|
|
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: "IconXukez",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "update-line-icon"
|
|
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", {
|
|
19
|
+
d: "M9.75 13.5H2.25C1.83579 13.5 1.5 13.1642 1.5 12.75V3C1.5 2.58579 1.83579 2.25 2.25 2.25H15.75C16.1642 2.25 16.5 2.58579 16.5 3V12.75C16.5 13.1642 16.1642 13.5 15.75 13.5H12.75M4.5 5.25H13.5M4.5 7.875H6.75M4.5 10.5H6",
|
|
20
|
+
stroke: "#000",
|
|
21
|
+
"stroke-width": "1.5",
|
|
22
|
+
"stroke-linejoin": "round"
|
|
23
|
+
}, null, -1);
|
|
24
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
25
|
+
d: "M11.25 12.375C12.4926 12.375 13.5 11.3676 13.5 10.125C13.5 8.88236 12.4926 7.875 11.25 7.875C10.0074 7.875 9 8.88236 9 10.125C9 11.3676 10.0074 12.375 11.25 12.375Z",
|
|
26
|
+
stroke: "#000",
|
|
27
|
+
"stroke-width": "1.5"
|
|
28
|
+
}, null, -1);
|
|
29
|
+
const _hoisted_4 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
30
|
+
d: "M11.25 15L12.75 15.75V11.8021C12.75 11.8021 12.3223 12.375 11.25 12.375C10.1777 12.375 9.75 11.8125 9.75 11.8125V15.75L11.25 15Z",
|
|
31
|
+
stroke: "#000",
|
|
32
|
+
"stroke-width": "1.5",
|
|
33
|
+
"stroke-linejoin": "round"
|
|
34
|
+
}, null, -1);
|
|
35
|
+
const _hoisted_5 = [
|
|
36
|
+
_hoisted_2,
|
|
37
|
+
_hoisted_3,
|
|
38
|
+
_hoisted_4
|
|
39
|
+
];
|
|
40
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
41
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
42
|
+
viewBox: "0 0 18 18",
|
|
43
|
+
fill: $props.useCurrentColor ? "currentColor" : "none",
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-xukez`],
|
|
46
|
+
width: "1em",
|
|
47
|
+
height: "1em"
|
|
48
|
+
}, _ctx.$attrs), _hoisted_5, 16, _hoisted_1);
|
|
49
|
+
}
|
|
50
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
51
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -98,6 +98,7 @@ var index$1u = require("./IconChaxun/index.js");
|
|
|
98
98
|
var index$1v = require("./IconConsole/index.js");
|
|
99
99
|
var index$1w = require("./IconLog/index.js");
|
|
100
100
|
var index$1x = require("./IconBind/index.js");
|
|
101
|
+
var index$1y = require("./IconXukez/index.js");
|
|
101
102
|
exports.Icon3d = index;
|
|
102
103
|
exports.IconAnalysisdetails = index$1;
|
|
103
104
|
exports.IconBusinessprocess = index$2;
|
|
@@ -196,3 +197,4 @@ exports.IconChaxun = index$1u;
|
|
|
196
197
|
exports.IconConsole = index$1v;
|
|
197
198
|
exports.IconLog = index$1w;
|
|
198
199
|
exports.IconBind = index$1x;
|
|
200
|
+
exports.IconXukez = index$1y;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 18 18" :fill="useCurrentColor ? 'currentColor' : 'none'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-xukez`]" width="1em" height="1em" v-bind="$attrs"><path d="M9.75 13.5H2.25C1.83579 13.5 1.5 13.1642 1.5 12.75V3C1.5 2.58579 1.83579 2.25 2.25 2.25H15.75C16.1642 2.25 16.5 2.58579 16.5 3V12.75C16.5 13.1642 16.1642 13.5 15.75 13.5H12.75M4.5 5.25H13.5M4.5 7.875H6.75M4.5 10.5H6" stroke="#000" stroke-width="1.5" stroke-linejoin="round"/><path d="M11.25 12.375C12.4926 12.375 13.5 11.3676 13.5 10.125C13.5 8.88236 12.4926 7.875 11.25 7.875C10.0074 7.875 9 8.88236 9 10.125C9 11.3676 10.0074 12.375 11.25 12.375Z" stroke="#000" stroke-width="1.5"/><path d="M11.25 15L12.75 15.75V11.8021C12.75 11.8021 12.3223 12.375 11.25 12.375C10.1777 12.375 9.75 11.8125 9.75 11.8125V15.75L11.25 15Z" stroke="#000" stroke-width="1.5" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconXukez',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'update-line-icon',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -95,4 +95,5 @@ export { default as IconQingkong } from './IconQingkong/index.vue';
|
|
|
95
95
|
export { default as IconChaxun } from './IconChaxun/index.vue';
|
|
96
96
|
export { default as IconConsole } from './IconConsole/index.vue';
|
|
97
97
|
export { default as IconLog } from './IconLog/index.vue';
|
|
98
|
-
export { default as IconBind } from './IconBind/index.vue';
|
|
98
|
+
export { default as IconBind } from './IconBind/index.vue';
|
|
99
|
+
export { default as IconXukez } from './IconXukez/index.vue';
|