@arco-iconbox/vue-smartcode 0.1.34 → 0.1.36
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 +2153 -2074
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +749 -741
- package/dist/icon.min.js.map +1 -1
- package/esm/IconFillResource/index.js +32 -0
- package/esm/IconLinePlay/index.js +40 -0
- package/esm/IconLineRefresh/index.js +17 -6
- package/esm/index.js +2 -0
- package/lib/IconFillResource/index.js +33 -0
- package/lib/IconLinePlay/index.js +41 -0
- package/lib/IconLineRefresh/index.js +17 -6
- package/lib/index.js +4 -0
- package/package.json +1 -1
- package/src/IconFillResource/index.vue +19 -0
- package/src/IconLinePlay/index.vue +19 -0
- package/src/IconLineRefresh/index.vue +2 -2
- package/src/index.js +3 -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: "IconFillResource",
|
|
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.42627 2.02197C6.89294 2.02197 7.12643 2.02194 7.35107 2.05615C7.74082 2.11556 8.11535 2.25144 8.45264 2.45557C8.64713 2.57328 8.8266 2.72277 9.18506 3.02197C9.54319 3.3209 9.72221 3.47071 9.9165 3.58838C10.2537 3.79249 10.6284 3.92836 11.0181 3.98779C11.2428 4.02205 11.4769 4.02197 11.9438 4.02197H13.9927C15.6722 4.02197 16.5122 4.02235 17.1538 4.34912C17.7183 4.63674 18.1777 5.09616 18.4653 5.66064C18.7921 6.30228 18.7925 7.14222 18.7925 8.82178V13.1772C18.7925 14.8573 18.7922 15.6976 18.4653 16.3394C18.1777 16.9038 17.7183 17.3633 17.1538 17.6509C16.5122 17.9776 15.6722 17.978 13.9927 17.978H6.0083C4.32845 17.978 3.48788 17.9777 2.84619 17.6509C2.28171 17.3633 1.82229 16.9038 1.53467 16.3394C1.20779 15.6976 1.20752 14.8572 1.20752 13.1772V6.82178C1.20752 5.14226 1.20792 4.30227 1.53467 3.66064C1.82229 3.09616 2.28171 2.63674 2.84619 2.34912C3.48789 2.02227 4.32836 2.02197 6.0083 2.02197H6.42627ZM7.00049 7.00049C6.06884 7.00049 5.60236 6.99973 5.23486 7.15186C4.74481 7.35484 4.35484 7.74481 4.15186 8.23486C3.99976 8.60235 4.00049 9.0689 4.00049 10.0005H16.0005C16.0005 9.06887 16.0003 8.60236 15.8481 8.23486C15.6452 7.74481 15.2552 7.35484 14.7651 7.15186C14.3977 6.9998 13.9318 7.00049 13.0005 7.00049H7.00049Z" }, 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 20 20",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-resource`],
|
|
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,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
|
@@ -255,3 +255,5 @@ export { default as IconColorTime } from "./IconColorTime/index.js";
|
|
|
255
255
|
export { default as IconColorOval } from "./IconColorOval/index.js";
|
|
256
256
|
export { default as IconColorRect } from "./IconColorRect/index.js";
|
|
257
257
|
export { default as IconColorText } from "./IconColorText/index.js";
|
|
258
|
+
export { default as IconLinePlay } from "./IconLinePlay/index.js";
|
|
259
|
+
export { default as IconFillResource } from "./IconFillResource/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: "IconFillResource",
|
|
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.42627 2.02197C6.89294 2.02197 7.12643 2.02194 7.35107 2.05615C7.74082 2.11556 8.11535 2.25144 8.45264 2.45557C8.64713 2.57328 8.8266 2.72277 9.18506 3.02197C9.54319 3.3209 9.72221 3.47071 9.9165 3.58838C10.2537 3.79249 10.6284 3.92836 11.0181 3.98779C11.2428 4.02205 11.4769 4.02197 11.9438 4.02197H13.9927C15.6722 4.02197 16.5122 4.02235 17.1538 4.34912C17.7183 4.63674 18.1777 5.09616 18.4653 5.66064C18.7921 6.30228 18.7925 7.14222 18.7925 8.82178V13.1772C18.7925 14.8573 18.7922 15.6976 18.4653 16.3394C18.1777 16.9038 17.7183 17.3633 17.1538 17.6509C16.5122 17.9776 15.6722 17.978 13.9927 17.978H6.0083C4.32845 17.978 3.48788 17.9777 2.84619 17.6509C2.28171 17.3633 1.82229 16.9038 1.53467 16.3394C1.20779 15.6976 1.20752 14.8572 1.20752 13.1772V6.82178C1.20752 5.14226 1.20792 4.30227 1.53467 3.66064C1.82229 3.09616 2.28171 2.63674 2.84619 2.34912C3.48789 2.02227 4.32836 2.02197 6.0083 2.02197H6.42627ZM7.00049 7.00049C6.06884 7.00049 5.60236 6.99973 5.23486 7.15186C4.74481 7.35484 4.35484 7.74481 4.15186 8.23486C3.99976 8.60235 4.00049 9.0689 4.00049 10.0005H16.0005C16.0005 9.06887 16.0003 8.60236 15.8481 8.23486C15.6452 7.74481 15.2552 7.35484 14.7651 7.15186C14.3977 6.9998 13.9318 7.00049 13.0005 7.00049H7.00049Z" }, 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 20 20",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-resource`],
|
|
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,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: "IconLinePlay",
|
|
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_aaff17d8db__clip0_6086_485462)" }, [
|
|
19
|
+
/* @__PURE__ */ vue.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" })
|
|
20
|
+
], -1);
|
|
21
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("defs", null, [
|
|
22
|
+
/* @__PURE__ */ vue.createElementVNode("clipPath", { id: "svg_aaff17d8db__clip0_6086_485462" }, [
|
|
23
|
+
/* @__PURE__ */ vue.createElementVNode("path", { d: "M0 0H16V16H0z" })
|
|
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 16 16",
|
|
33
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-play`],
|
|
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;
|
|
@@ -10,24 +10,35 @@ const _sfc_main = {
|
|
|
10
10
|
},
|
|
11
11
|
useCurrentColor: {
|
|
12
12
|
type: Boolean,
|
|
13
|
-
default:
|
|
13
|
+
default: true
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
17
|
const _hoisted_1 = ["fill"];
|
|
18
|
-
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("g", { "clip-path": "url(#svg_7d741f428e__clip0_6121_45789)" }, [
|
|
19
|
+
/* @__PURE__ */ vue.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" })
|
|
20
|
+
], -1);
|
|
21
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("defs", null, [
|
|
22
|
+
/* @__PURE__ */ vue.createElementVNode("clipPath", { id: "svg_7d741f428e__clip0_6121_45789" }, [
|
|
23
|
+
/* @__PURE__ */ vue.createElementVNode("path", {
|
|
24
|
+
transform: "matrix(1 0 0 -1 0 16)",
|
|
25
|
+
d: "M0 0H16V16H0z"
|
|
26
|
+
})
|
|
27
|
+
])
|
|
28
|
+
], -1);
|
|
29
|
+
const _hoisted_4 = [
|
|
30
|
+
_hoisted_2,
|
|
31
|
+
_hoisted_3
|
|
21
32
|
];
|
|
22
33
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
34
|
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
35
|
viewBox: "0 0 16 16",
|
|
25
|
-
fill: $props.useCurrentColor ? "currentColor" : "
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
37
|
xmlns: "http://www.w3.org/2000/svg",
|
|
27
38
|
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-refresh`],
|
|
28
39
|
width: "1em",
|
|
29
40
|
height: "1em"
|
|
30
|
-
}, _ctx.$attrs),
|
|
41
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
31
42
|
}
|
|
32
43
|
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
33
44
|
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -257,6 +257,8 @@ var index$3Z = require("./IconColorTime/index.js");
|
|
|
257
257
|
var index$3_ = require("./IconColorOval/index.js");
|
|
258
258
|
var index$3$ = require("./IconColorRect/index.js");
|
|
259
259
|
var index$40 = require("./IconColorText/index.js");
|
|
260
|
+
var index$41 = require("./IconLinePlay/index.js");
|
|
261
|
+
var index$42 = require("./IconFillResource/index.js");
|
|
260
262
|
exports.IconFillHeart = index;
|
|
261
263
|
exports.IconFillMute = index$1;
|
|
262
264
|
exports.IconFillSound = index$2;
|
|
@@ -514,3 +516,5 @@ exports.IconColorTime = index$3Z;
|
|
|
514
516
|
exports.IconColorOval = index$3_;
|
|
515
517
|
exports.IconColorRect = index$3$;
|
|
516
518
|
exports.IconColorText = index$40;
|
|
519
|
+
exports.IconLinePlay = index$41;
|
|
520
|
+
exports.IconFillResource = index$42;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 20 20" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-fill-resource`]" width="1em" height="1em" v-bind="$attrs"><path d="M6.42627 2.02197C6.89294 2.02197 7.12643 2.02194 7.35107 2.05615C7.74082 2.11556 8.11535 2.25144 8.45264 2.45557C8.64713 2.57328 8.8266 2.72277 9.18506 3.02197C9.54319 3.3209 9.72221 3.47071 9.9165 3.58838C10.2537 3.79249 10.6284 3.92836 11.0181 3.98779C11.2428 4.02205 11.4769 4.02197 11.9438 4.02197H13.9927C15.6722 4.02197 16.5122 4.02235 17.1538 4.34912C17.7183 4.63674 18.1777 5.09616 18.4653 5.66064C18.7921 6.30228 18.7925 7.14222 18.7925 8.82178V13.1772C18.7925 14.8573 18.7922 15.6976 18.4653 16.3394C18.1777 16.9038 17.7183 17.3633 17.1538 17.6509C16.5122 17.9776 15.6722 17.978 13.9927 17.978H6.0083C4.32845 17.978 3.48788 17.9777 2.84619 17.6509C2.28171 17.3633 1.82229 16.9038 1.53467 16.3394C1.20779 15.6976 1.20752 14.8572 1.20752 13.1772V6.82178C1.20752 5.14226 1.20792 4.30227 1.53467 3.66064C1.82229 3.09616 2.28171 2.63674 2.84619 2.34912C3.48789 2.02227 4.32836 2.02197 6.0083 2.02197H6.42627ZM7.00049 7.00049C6.06884 7.00049 5.60236 6.99973 5.23486 7.15186C4.74481 7.35484 4.35484 7.74481 4.15186 8.23486C3.99976 8.60235 4.00049 9.0689 4.00049 10.0005H16.0005C16.0005 9.06887 16.0003 8.60236 15.8481 8.23486C15.6452 7.74481 15.2552 7.35484 14.7651 7.15186C14.3977 6.9998 13.9318 7.00049 13.0005 7.00049H7.00049Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconFillResource',
|
|
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-play`]" width="1em" height="1em" v-bind="$attrs"><g clip-path="url(#svg_aaff17d8db__clip0_6086_485462)"><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"/></g><defs><clipPath id="svg_aaff17d8db__clip0_6086_485462"><path d="M0 0H16V16H0z"/></clipPath></defs></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLinePlay',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-refresh`]" width="1em" height="1em" v-bind="$attrs"><g clip-path="url(#svg_7d741f428e__clip0_6121_45789)"><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"/></g><defs><clipPath id="svg_7d741f428e__clip0_6121_45789"><path transform="matrix(1 0 0 -1 0 16)" d="M0 0H16V16H0z"/></clipPath></defs></svg>
|
|
3
3
|
</template>
|
|
4
4
|
<script>
|
|
5
5
|
|
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
},
|
|
13
13
|
useCurrentColor: {
|
|
14
14
|
type: Boolean,
|
|
15
|
-
default:
|
|
15
|
+
default: true,
|
|
16
16
|
},
|
|
17
17
|
},
|
|
18
18
|
};
|
package/src/index.js
CHANGED
|
@@ -254,4 +254,6 @@ export { default as IconColorVline } from './IconColorVline/index.vue';
|
|
|
254
254
|
export { default as IconColorTime } from './IconColorTime/index.vue';
|
|
255
255
|
export { default as IconColorOval } from './IconColorOval/index.vue';
|
|
256
256
|
export { default as IconColorRect } from './IconColorRect/index.vue';
|
|
257
|
-
export { default as IconColorText } from './IconColorText/index.vue';
|
|
257
|
+
export { default as IconColorText } from './IconColorText/index.vue';
|
|
258
|
+
export { default as IconLinePlay } from './IconLinePlay/index.vue';
|
|
259
|
+
export { default as IconFillResource } from './IconFillResource/index.vue';
|