@arco-iconbox/vue-smartcode 0.1.98 → 0.1.100
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 +2395 -2333
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +9 -1
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorForm/index.js +33 -0
- package/esm/IconColorInputParam/index.js +33 -0
- package/esm/index.js +2 -0
- package/lib/IconColorForm/index.js +34 -0
- package/lib/IconColorInputParam/index.js +34 -0
- package/lib/index.js +4 -0
- package/package.json +1 -1
- package/src/IconColorForm/index.vue +19 -0
- package/src/IconColorInputParam/index.vue +19 -0
- package/src/index.js +3 -1
|
@@ -0,0 +1,33 @@
|
|
|
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: "IconColorForm",
|
|
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
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
18
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
19
|
+
viewBox: "0 0 14 15",
|
|
20
|
+
fill: "none",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-form`],
|
|
23
|
+
width: "1em",
|
|
24
|
+
height: "1em"
|
|
25
|
+
}, _ctx.$attrs), [
|
|
26
|
+
createElementVNode("path", {
|
|
27
|
+
d: "M7.26074 4.66993e-05C8.15345 4.41694e-05 8.7416 -0.0084283 9.28125 0.204148C9.82073 0.416797 10.2447 0.823904 10.8975 1.43266L12.1309 2.58305C12.8492 3.25294 13.3296 3.68682 13.583 4.26958C13.8363 4.85241 13.8262 5.49996 13.8262 6.48247V9.28325C13.8262 10.3992 13.8271 11.2903 13.7334 11.9874C13.6376 12.6996 13.4343 13.2893 12.9678 13.7559C12.5011 14.2226 11.9106 14.4267 11.1982 14.5225C10.5011 14.6162 9.61008 14.6143 8.49414 14.6143H5.33203C4.21606 14.6143 3.32506 14.6162 2.62793 14.5225C1.91561 14.4267 1.3261 14.2224 0.859375 13.7559C0.392688 13.2892 0.1886 12.6997 0.0927738 11.9874C-0.000946013 11.2903 -4.45611e-08 10.3992 3.96187e-07 9.28325V5.33208C2.51973e-07 4.21597 -0.000932251 3.32514 0.0927738 2.62798C0.188575 1.91544 0.392588 1.32621 0.859375 0.859422C1.32615 0.392701 1.91544 0.188613 2.62793 0.0928201C3.32507 -0.000859665 4.21601 4.65674e-05 5.33203 4.66993e-05H7.26074ZM3.56055 9.70708C3.11882 9.70708 2.7609 10.0652 2.76074 10.5069C2.76074 10.9487 3.11872 11.3067 3.56055 11.3067H7.98633C8.42775 11.3062 8.78613 10.9484 8.78613 10.5069C8.78598 10.0655 8.42766 9.70755 7.98633 9.70708H3.56055ZM3.56055 6.50688C3.11888 6.50688 2.76101 6.86508 2.76074 7.30669C2.76074 7.74852 3.11872 8.10649 3.56055 8.10649H6.57129C7.01271 8.10602 7.37207 7.74822 7.37207 7.30669C7.37181 6.86538 7.01255 6.50736 6.57129 6.50688H3.56055ZM8.74121 1.35649C8.69031 1.35263 8.64059 1.37332 8.60742 1.41216C8.5692 1.4571 8.56934 1.55442 8.56934 1.74809V4.12602C8.56934 4.57407 8.56906 4.79864 8.65625 4.96977C8.73295 5.12023 8.85538 5.24271 9.00586 5.31938C9.17692 5.40653 9.40095 5.4063 9.84863 5.4063H12.2275C12.4212 5.4063 12.5185 5.40644 12.5635 5.36821C12.6024 5.33495 12.6232 5.2845 12.6191 5.23345C12.6143 5.17473 12.5457 5.10633 12.4092 4.96977L9.00586 1.56645C8.86892 1.42952 8.80003 1.36112 8.74121 1.35649Z",
|
|
28
|
+
fill: $props.useCurrentColor ? "currentColor" : "#009A29"
|
|
29
|
+
}, null, 8, _hoisted_1)
|
|
30
|
+
], 16);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
export { index as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
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: "IconColorInputParam",
|
|
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
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
18
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
19
|
+
viewBox: "0 0 16 16",
|
|
20
|
+
fill: "none",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-input-param`],
|
|
23
|
+
width: "1em",
|
|
24
|
+
height: "1em"
|
|
25
|
+
}, _ctx.$attrs), [
|
|
26
|
+
createElementVNode("path", {
|
|
27
|
+
d: "M7.93164 1.19922C11.6871 1.19922 14.7313 4.24358 14.7314 7.99902C14.7314 11.7546 11.6872 14.7988 7.93164 14.7988C4.51005 14.7988 1.67961 12.272 1.20312 8.98242H6.73145L6.53906 10.3857C6.47179 10.8761 6.43765 11.1213 6.51855 11.2461C6.5888 11.3543 6.70707 11.4218 6.83594 11.4277C6.98452 11.4344 7.17932 11.2817 7.56836 10.9756L10.7119 8.50195C10.9299 8.33047 11.0388 8.24464 11.0781 8.14062C11.1126 8.04945 11.1126 7.94859 11.0781 7.85742C11.0387 7.75354 10.9298 7.66749 10.7119 7.49609L7.56836 5.02344C7.1792 4.71726 6.98454 4.56361 6.83594 4.57031C6.70718 4.5762 6.58882 4.64391 6.51855 4.75195C6.43755 4.87673 6.47175 5.12264 6.53906 5.61328L6.73145 7.0166H1.20312C1.67936 3.72676 4.50985 1.19922 7.93164 1.19922Z",
|
|
28
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
29
|
+
}, null, 8, _hoisted_1)
|
|
30
|
+
], 16);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -387,3 +387,5 @@ export { default as IconLineArrowsUp } from "./IconLineArrowsUp/index.js";
|
|
|
387
387
|
export { default as IconLineForm } from "./IconLineForm/index.js";
|
|
388
388
|
export { default as IconColorDateRange } from "./IconColorDateRange/index.js";
|
|
389
389
|
export { default as IconColorNumRange } from "./IconColorNumRange/index.js";
|
|
390
|
+
export { default as IconColorInputParam } from "./IconColorInputParam/index.js";
|
|
391
|
+
export { default as IconColorForm } from "./IconColorForm/index.js";
|
|
@@ -0,0 +1,34 @@
|
|
|
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: "IconColorForm",
|
|
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
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
19
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
20
|
+
viewBox: "0 0 14 15",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-form`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
vue.createElementVNode("path", {
|
|
28
|
+
d: "M7.26074 4.66993e-05C8.15345 4.41694e-05 8.7416 -0.0084283 9.28125 0.204148C9.82073 0.416797 10.2447 0.823904 10.8975 1.43266L12.1309 2.58305C12.8492 3.25294 13.3296 3.68682 13.583 4.26958C13.8363 4.85241 13.8262 5.49996 13.8262 6.48247V9.28325C13.8262 10.3992 13.8271 11.2903 13.7334 11.9874C13.6376 12.6996 13.4343 13.2893 12.9678 13.7559C12.5011 14.2226 11.9106 14.4267 11.1982 14.5225C10.5011 14.6162 9.61008 14.6143 8.49414 14.6143H5.33203C4.21606 14.6143 3.32506 14.6162 2.62793 14.5225C1.91561 14.4267 1.3261 14.2224 0.859375 13.7559C0.392688 13.2892 0.1886 12.6997 0.0927738 11.9874C-0.000946013 11.2903 -4.45611e-08 10.3992 3.96187e-07 9.28325V5.33208C2.51973e-07 4.21597 -0.000932251 3.32514 0.0927738 2.62798C0.188575 1.91544 0.392588 1.32621 0.859375 0.859422C1.32615 0.392701 1.91544 0.188613 2.62793 0.0928201C3.32507 -0.000859665 4.21601 4.65674e-05 5.33203 4.66993e-05H7.26074ZM3.56055 9.70708C3.11882 9.70708 2.7609 10.0652 2.76074 10.5069C2.76074 10.9487 3.11872 11.3067 3.56055 11.3067H7.98633C8.42775 11.3062 8.78613 10.9484 8.78613 10.5069C8.78598 10.0655 8.42766 9.70755 7.98633 9.70708H3.56055ZM3.56055 6.50688C3.11888 6.50688 2.76101 6.86508 2.76074 7.30669C2.76074 7.74852 3.11872 8.10649 3.56055 8.10649H6.57129C7.01271 8.10602 7.37207 7.74822 7.37207 7.30669C7.37181 6.86538 7.01255 6.50736 6.57129 6.50688H3.56055ZM8.74121 1.35649C8.69031 1.35263 8.64059 1.37332 8.60742 1.41216C8.5692 1.4571 8.56934 1.55442 8.56934 1.74809V4.12602C8.56934 4.57407 8.56906 4.79864 8.65625 4.96977C8.73295 5.12023 8.85538 5.24271 9.00586 5.31938C9.17692 5.40653 9.40095 5.4063 9.84863 5.4063H12.2275C12.4212 5.4063 12.5185 5.40644 12.5635 5.36821C12.6024 5.33495 12.6232 5.2845 12.6191 5.23345C12.6143 5.17473 12.5457 5.10633 12.4092 4.96977L9.00586 1.56645C8.86892 1.42952 8.80003 1.36112 8.74121 1.35649Z",
|
|
29
|
+
fill: $props.useCurrentColor ? "currentColor" : "#009A29"
|
|
30
|
+
}, null, 8, _hoisted_1)
|
|
31
|
+
], 16);
|
|
32
|
+
}
|
|
33
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
34
|
+
module.exports = index;
|
|
@@ -0,0 +1,34 @@
|
|
|
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: "IconColorInputParam",
|
|
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
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
19
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
20
|
+
viewBox: "0 0 16 16",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-input-param`],
|
|
24
|
+
width: "1em",
|
|
25
|
+
height: "1em"
|
|
26
|
+
}, _ctx.$attrs), [
|
|
27
|
+
vue.createElementVNode("path", {
|
|
28
|
+
d: "M7.93164 1.19922C11.6871 1.19922 14.7313 4.24358 14.7314 7.99902C14.7314 11.7546 11.6872 14.7988 7.93164 14.7988C4.51005 14.7988 1.67961 12.272 1.20312 8.98242H6.73145L6.53906 10.3857C6.47179 10.8761 6.43765 11.1213 6.51855 11.2461C6.5888 11.3543 6.70707 11.4218 6.83594 11.4277C6.98452 11.4344 7.17932 11.2817 7.56836 10.9756L10.7119 8.50195C10.9299 8.33047 11.0388 8.24464 11.0781 8.14062C11.1126 8.04945 11.1126 7.94859 11.0781 7.85742C11.0387 7.75354 10.9298 7.66749 10.7119 7.49609L7.56836 5.02344C7.1792 4.71726 6.98454 4.56361 6.83594 4.57031C6.70718 4.5762 6.58882 4.64391 6.51855 4.75195C6.43755 4.87673 6.47175 5.12264 6.53906 5.61328L6.73145 7.0166H1.20312C1.67936 3.72676 4.50985 1.19922 7.93164 1.19922Z",
|
|
29
|
+
fill: $props.useCurrentColor ? "currentColor" : "#165DFF"
|
|
30
|
+
}, null, 8, _hoisted_1)
|
|
31
|
+
], 16);
|
|
32
|
+
}
|
|
33
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
34
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -389,6 +389,8 @@ var index$61 = require("./IconLineArrowsUp/index.js");
|
|
|
389
389
|
var index$62 = require("./IconLineForm/index.js");
|
|
390
390
|
var index$63 = require("./IconColorDateRange/index.js");
|
|
391
391
|
var index$64 = require("./IconColorNumRange/index.js");
|
|
392
|
+
var index$65 = require("./IconColorInputParam/index.js");
|
|
393
|
+
var index$66 = require("./IconColorForm/index.js");
|
|
392
394
|
exports.IconFillHeart = index;
|
|
393
395
|
exports.IconFillMute = index$1;
|
|
394
396
|
exports.IconFillSound = index$2;
|
|
@@ -778,3 +780,5 @@ exports.IconLineArrowsUp = index$61;
|
|
|
778
780
|
exports.IconLineForm = index$62;
|
|
779
781
|
exports.IconColorDateRange = index$63;
|
|
780
782
|
exports.IconColorNumRange = index$64;
|
|
783
|
+
exports.IconColorInputParam = index$65;
|
|
784
|
+
exports.IconColorForm = index$66;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-form`]" width="1em" height="1em" v-bind="$attrs"><path d="M7.26074 4.66993e-05C8.15345 4.41694e-05 8.7416 -0.0084283 9.28125 0.204148C9.82073 0.416797 10.2447 0.823904 10.8975 1.43266L12.1309 2.58305C12.8492 3.25294 13.3296 3.68682 13.583 4.26958C13.8363 4.85241 13.8262 5.49996 13.8262 6.48247V9.28325C13.8262 10.3992 13.8271 11.2903 13.7334 11.9874C13.6376 12.6996 13.4343 13.2893 12.9678 13.7559C12.5011 14.2226 11.9106 14.4267 11.1982 14.5225C10.5011 14.6162 9.61008 14.6143 8.49414 14.6143H5.33203C4.21606 14.6143 3.32506 14.6162 2.62793 14.5225C1.91561 14.4267 1.3261 14.2224 0.859375 13.7559C0.392688 13.2892 0.1886 12.6997 0.0927738 11.9874C-0.000946013 11.2903 -4.45611e-08 10.3992 3.96187e-07 9.28325V5.33208C2.51973e-07 4.21597 -0.000932251 3.32514 0.0927738 2.62798C0.188575 1.91544 0.392588 1.32621 0.859375 0.859422C1.32615 0.392701 1.91544 0.188613 2.62793 0.0928201C3.32507 -0.000859665 4.21601 4.65674e-05 5.33203 4.66993e-05H7.26074ZM3.56055 9.70708C3.11882 9.70708 2.7609 10.0652 2.76074 10.5069C2.76074 10.9487 3.11872 11.3067 3.56055 11.3067H7.98633C8.42775 11.3062 8.78613 10.9484 8.78613 10.5069C8.78598 10.0655 8.42766 9.70755 7.98633 9.70708H3.56055ZM3.56055 6.50688C3.11888 6.50688 2.76101 6.86508 2.76074 7.30669C2.76074 7.74852 3.11872 8.10649 3.56055 8.10649H6.57129C7.01271 8.10602 7.37207 7.74822 7.37207 7.30669C7.37181 6.86538 7.01255 6.50736 6.57129 6.50688H3.56055ZM8.74121 1.35649C8.69031 1.35263 8.64059 1.37332 8.60742 1.41216C8.5692 1.4571 8.56934 1.55442 8.56934 1.74809V4.12602C8.56934 4.57407 8.56906 4.79864 8.65625 4.96977C8.73295 5.12023 8.85538 5.24271 9.00586 5.31938C9.17692 5.40653 9.40095 5.4063 9.84863 5.4063H12.2275C12.4212 5.4063 12.5185 5.40644 12.5635 5.36821C12.6024 5.33495 12.6232 5.2845 12.6191 5.23345C12.6143 5.17473 12.5457 5.10633 12.4092 4.96977L9.00586 1.56645C8.86892 1.42952 8.80003 1.36112 8.74121 1.35649Z" :fill="useCurrentColor ? 'currentColor' : '#009A29'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorForm',
|
|
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 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-input-param`]" width="1em" height="1em" v-bind="$attrs"><path d="M7.93164 1.19922C11.6871 1.19922 14.7313 4.24358 14.7314 7.99902C14.7314 11.7546 11.6872 14.7988 7.93164 14.7988C4.51005 14.7988 1.67961 12.272 1.20312 8.98242H6.73145L6.53906 10.3857C6.47179 10.8761 6.43765 11.1213 6.51855 11.2461C6.5888 11.3543 6.70707 11.4218 6.83594 11.4277C6.98452 11.4344 7.17932 11.2817 7.56836 10.9756L10.7119 8.50195C10.9299 8.33047 11.0388 8.24464 11.0781 8.14062C11.1126 8.04945 11.1126 7.94859 11.0781 7.85742C11.0387 7.75354 10.9298 7.66749 10.7119 7.49609L7.56836 5.02344C7.1792 4.71726 6.98454 4.56361 6.83594 4.57031C6.70718 4.5762 6.58882 4.64391 6.51855 4.75195C6.43755 4.87673 6.47175 5.12264 6.53906 5.61328L6.73145 7.0166H1.20312C1.67936 3.72676 4.50985 1.19922 7.93164 1.19922Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorInputParam',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -386,4 +386,6 @@ export { default as IconLineArrowsDown } from './IconLineArrowsDown/index.vue';
|
|
|
386
386
|
export { default as IconLineArrowsUp } from './IconLineArrowsUp/index.vue';
|
|
387
387
|
export { default as IconLineForm } from './IconLineForm/index.vue';
|
|
388
388
|
export { default as IconColorDateRange } from './IconColorDateRange/index.vue';
|
|
389
|
-
export { default as IconColorNumRange } from './IconColorNumRange/index.vue';
|
|
389
|
+
export { default as IconColorNumRange } from './IconColorNumRange/index.vue';
|
|
390
|
+
export { default as IconColorInputParam } from './IconColorInputParam/index.vue';
|
|
391
|
+
export { default as IconColorForm } from './IconColorForm/index.vue';
|