@arco-iconbox/vue-smartcode 0.1.78 → 0.1.80
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 +2804 -2766
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +5 -1
- package/dist/icon.min.js.map +1 -1
- package/esm/IconLineStop/index.js +40 -0
- package/esm/index.js +1 -0
- package/lib/IconLineStop/index.js +41 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconLineStop/index.vue +19 -0
- package/src/index.js +2 -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: "IconLineStop",
|
|
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_d37fa5fc29__clip0_9683_2600)" }, [
|
|
18
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M5.99963 0.562134C9.00252 0.562266 11.4379 2.99678 11.4381 5.99963C11.4381 9.00268 9.00265 11.438 5.99963 11.4381C2.99671 11.4379 0.562152 9.00261 0.562134 5.99963C0.562374 2.99684 2.99684 0.562374 5.99963 0.562134ZM5.99963 1.56018C3.54775 1.56042 1.56042 3.54775 1.56018 5.99963C1.5602 8.45171 3.54761 10.4398 5.99963 10.4401C8.45175 10.4399 10.44 8.45178 10.4401 5.99963C10.4398 3.54768 8.45161 1.56031 5.99963 1.56018ZM8.31995 5.50061C8.59501 5.50091 8.81777 5.72456 8.81799 5.99963C8.81799 6.2749 8.59514 6.49836 8.31995 6.49866H3.6803C3.40485 6.49866 3.18127 6.27509 3.18127 5.99963C3.1815 5.72437 3.40498 5.50061 3.6803 5.50061H8.31995Z" })
|
|
19
|
+
], -1);
|
|
20
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("defs", null, [
|
|
21
|
+
/* @__PURE__ */ createElementVNode("clipPath", { id: "svg_d37fa5fc29__clip0_9683_2600" }, [
|
|
22
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M0 0H12V12H0z" })
|
|
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 12 12",
|
|
32
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-stop`],
|
|
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 };
|
package/esm/index.js
CHANGED
|
@@ -362,3 +362,4 @@ export { default as IconColorLine } from "./IconColorLine/index.js";
|
|
|
362
362
|
export { default as IconColorUpload2 } from "./IconColorUpload2/index.js";
|
|
363
363
|
export { default as IconColorSelect } from "./IconColorSelect/index.js";
|
|
364
364
|
export { default as IconColorRichtext } from "./IconColorRichtext/index.js";
|
|
365
|
+
export { default as IconLineStop } from "./IconLineStop/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: "IconLineStop",
|
|
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("g", { "clip-path": "url(#svg_d37fa5fc29__clip0_9683_2600)" }, [
|
|
19
|
+
/* @__PURE__ */ vue.createElementVNode("path", { d: "M5.99963 0.562134C9.00252 0.562266 11.4379 2.99678 11.4381 5.99963C11.4381 9.00268 9.00265 11.438 5.99963 11.4381C2.99671 11.4379 0.562152 9.00261 0.562134 5.99963C0.562374 2.99684 2.99684 0.562374 5.99963 0.562134ZM5.99963 1.56018C3.54775 1.56042 1.56042 3.54775 1.56018 5.99963C1.5602 8.45171 3.54761 10.4398 5.99963 10.4401C8.45175 10.4399 10.44 8.45178 10.4401 5.99963C10.4398 3.54768 8.45161 1.56031 5.99963 1.56018ZM8.31995 5.50061C8.59501 5.50091 8.81777 5.72456 8.81799 5.99963C8.81799 6.2749 8.59514 6.49836 8.31995 6.49866H3.6803C3.40485 6.49866 3.18127 6.27509 3.18127 5.99963C3.1815 5.72437 3.40498 5.50061 3.6803 5.50061H8.31995Z" })
|
|
20
|
+
], -1);
|
|
21
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("defs", null, [
|
|
22
|
+
/* @__PURE__ */ vue.createElementVNode("clipPath", { id: "svg_d37fa5fc29__clip0_9683_2600" }, [
|
|
23
|
+
/* @__PURE__ */ vue.createElementVNode("path", { d: "M0 0H12V12H0z" })
|
|
24
|
+
])
|
|
25
|
+
], -1);
|
|
26
|
+
const _hoisted_4 = [
|
|
27
|
+
_hoisted_2,
|
|
28
|
+
_hoisted_3
|
|
29
|
+
];
|
|
30
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
31
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
32
|
+
viewBox: "0 0 12 12",
|
|
33
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-stop`],
|
|
36
|
+
width: "1em",
|
|
37
|
+
height: "1em"
|
|
38
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
39
|
+
}
|
|
40
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
41
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -364,6 +364,7 @@ var index$5E = require("./IconColorLine/index.js");
|
|
|
364
364
|
var index$5F = require("./IconColorUpload2/index.js");
|
|
365
365
|
var index$5G = require("./IconColorSelect/index.js");
|
|
366
366
|
var index$5H = require("./IconColorRichtext/index.js");
|
|
367
|
+
var index$5I = require("./IconLineStop/index.js");
|
|
367
368
|
exports.IconFillHeart = index;
|
|
368
369
|
exports.IconFillMute = index$1;
|
|
369
370
|
exports.IconFillSound = index$2;
|
|
@@ -728,3 +729,4 @@ exports.IconColorLine = index$5E;
|
|
|
728
729
|
exports.IconColorUpload2 = index$5F;
|
|
729
730
|
exports.IconColorSelect = index$5G;
|
|
730
731
|
exports.IconColorRichtext = index$5H;
|
|
732
|
+
exports.IconLineStop = index$5I;
|
package/package.json
CHANGED
|
@@ -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-stop`]" width="1em" height="1em" v-bind="$attrs"><g clip-path="url(#svg_d37fa5fc29__clip0_9683_2600)"><path d="M5.99963 0.562134C9.00252 0.562266 11.4379 2.99678 11.4381 5.99963C11.4381 9.00268 9.00265 11.438 5.99963 11.4381C2.99671 11.4379 0.562152 9.00261 0.562134 5.99963C0.562374 2.99684 2.99684 0.562374 5.99963 0.562134ZM5.99963 1.56018C3.54775 1.56042 1.56042 3.54775 1.56018 5.99963C1.5602 8.45171 3.54761 10.4398 5.99963 10.4401C8.45175 10.4399 10.44 8.45178 10.4401 5.99963C10.4398 3.54768 8.45161 1.56031 5.99963 1.56018ZM8.31995 5.50061C8.59501 5.50091 8.81777 5.72456 8.81799 5.99963C8.81799 6.2749 8.59514 6.49836 8.31995 6.49866H3.6803C3.40485 6.49866 3.18127 6.27509 3.18127 5.99963C3.1815 5.72437 3.40498 5.50061 3.6803 5.50061H8.31995Z"/></g><defs><clipPath id="svg_d37fa5fc29__clip0_9683_2600"><path d="M0 0H12V12H0z"/></clipPath></defs></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineStop',
|
|
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
|
@@ -361,4 +361,5 @@ export { default as IconColorCard } from './IconColorCard/index.vue';
|
|
|
361
361
|
export { default as IconColorLine } from './IconColorLine/index.vue';
|
|
362
362
|
export { default as IconColorUpload2 } from './IconColorUpload2/index.vue';
|
|
363
363
|
export { default as IconColorSelect } from './IconColorSelect/index.vue';
|
|
364
|
-
export { default as IconColorRichtext } from './IconColorRichtext/index.vue';
|
|
364
|
+
export { default as IconColorRichtext } from './IconColorRichtext/index.vue';
|
|
365
|
+
export { default as IconLineStop } from './IconLineStop/index.vue';
|