@arco-iconbox/vue-smartcode 0.1.33 → 0.1.35
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 +2862 -2291
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +776 -724
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorBarcode/index.js +40 -0
- package/esm/IconColorDataFilter/index.js +1 -1
- package/esm/IconColorDoc/index.js +1 -1
- package/esm/IconColorHline/index.js +41 -0
- package/esm/IconColorImage/index.js +45 -0
- package/esm/IconColorLongtext/index.js +40 -0
- package/esm/IconColorNum/index.js +1 -1
- package/esm/IconColorOval/index.js +36 -0
- package/esm/IconColorPdf/index.js +1 -1
- package/esm/IconColorQrcode/index.js +67 -0
- package/esm/IconColorRadio/index.js +1 -1
- package/esm/IconColorRect/index.js +51 -0
- package/esm/IconColorSwitch/index.js +1 -1
- package/esm/IconColorTable/index.js +52 -0
- package/esm/IconColorText/index.js +38 -0
- package/esm/IconColorTextarea/index.js +1 -1
- package/esm/IconColorTime/index.js +48 -0
- package/esm/IconColorUser/index.js +47 -0
- package/esm/IconColorVline/index.js +41 -0
- package/esm/IconColorXls/index.js +1 -1
- package/esm/IconIconLineSet2/index.js +1 -1
- package/esm/IconLinePlay/index.js +40 -0
- package/esm/IconLineRefresh/index.js +17 -6
- package/esm/index.js +13 -0
- package/lib/IconColorBarcode/index.js +41 -0
- package/lib/IconColorDataFilter/index.js +1 -1
- package/lib/IconColorDoc/index.js +1 -1
- package/lib/IconColorHline/index.js +42 -0
- package/lib/IconColorImage/index.js +46 -0
- package/lib/IconColorLongtext/index.js +41 -0
- package/lib/IconColorNum/index.js +1 -1
- package/lib/IconColorOval/index.js +37 -0
- package/lib/IconColorPdf/index.js +1 -1
- package/lib/IconColorQrcode/index.js +68 -0
- package/lib/IconColorRadio/index.js +1 -1
- package/lib/IconColorRect/index.js +52 -0
- package/lib/IconColorSwitch/index.js +1 -1
- package/lib/IconColorTable/index.js +53 -0
- package/lib/IconColorText/index.js +39 -0
- package/lib/IconColorTextarea/index.js +1 -1
- package/lib/IconColorTime/index.js +49 -0
- package/lib/IconColorUser/index.js +48 -0
- package/lib/IconColorVline/index.js +42 -0
- package/lib/IconColorXls/index.js +1 -1
- package/lib/IconIconLineSet2/index.js +1 -1
- package/lib/IconLinePlay/index.js +41 -0
- package/lib/IconLineRefresh/index.js +17 -6
- package/lib/index.js +26 -0
- package/package.json +1 -1
- package/src/IconColorBarcode/index.vue +19 -0
- package/src/IconColorDataFilter/index.vue +1 -1
- package/src/IconColorDoc/index.vue +1 -1
- package/src/IconColorHline/index.vue +19 -0
- package/src/IconColorImage/index.vue +19 -0
- package/src/IconColorLongtext/index.vue +19 -0
- package/src/IconColorNum/index.vue +1 -1
- package/src/IconColorOval/index.vue +19 -0
- package/src/IconColorPdf/index.vue +1 -1
- package/src/IconColorQrcode/index.vue +19 -0
- package/src/IconColorRadio/index.vue +1 -1
- package/src/IconColorRect/index.vue +19 -0
- package/src/IconColorSwitch/index.vue +1 -1
- package/src/IconColorTable/index.vue +19 -0
- package/src/IconColorText/index.vue +19 -0
- package/src/IconColorTextarea/index.vue +1 -1
- package/src/IconColorTime/index.vue +19 -0
- package/src/IconColorUser/index.vue +19 -0
- package/src/IconColorVline/index.vue +19 -0
- package/src/IconColorXls/index.vue +1 -1
- package/src/IconIconLineSet2/index.vue +1 -1
- package/src/IconLinePlay/index.vue +19 -0
- package/src/IconLineRefresh/index.vue +2 -2
- package/src/index.js +14 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-time`]" width="1em" height="1em" v-bind="$attrs"><rect x="2.579" y="3.523" width="18.841" height="16.957" rx="5" stroke="#165DFF" stroke-width="1.66" stroke-linejoin="round"/><path d="M12 7.28906V11.9994L15.2972 15.2966" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorTime',
|
|
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 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-user`]" width="1em" height="1em" v-bind="$attrs"><path d="M2.3085 17.8152C2.3085 17.3629 2.3085 17.1367 2.32678 16.9462C2.50973 15.039 4.01936 13.5294 5.92654 13.3464C6.11708 13.3281 6.34325 13.3281 6.79557 13.3281H17.2049C17.6572 13.3281 17.8834 13.3281 18.0739 13.3464C19.9811 13.5294 21.4908 15.039 21.6737 16.9462C21.692 17.1367 21.692 17.3629 21.692 17.8152C21.692 18.0414 21.692 18.1544 21.6828 18.2497C21.5914 19.2033 20.8366 19.9581 19.883 20.0496C19.7877 20.0587 19.6746 20.0587 19.4485 20.0587H4.55204C4.32587 20.0587 4.21279 20.0587 4.11752 20.0496C3.16393 19.9581 2.40912 19.2033 2.31764 18.2497C2.3085 18.1544 2.3085 18.0414 2.3085 17.8152Z" stroke="#165DFF" stroke-width="1.66" stroke-linejoin="round"/><rect x="8.39" y="3.203" width="7.22" height="7.22" rx="3.61" stroke="#00BBD8" stroke-width="1.66" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorUser',
|
|
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 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-vline`]" width="1em" height="1em" v-bind="$attrs"><path d="M11.9973 3.04688L11.9973 20.9611" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.3703 6.41211C19.3703 6.87051 18.9986 7.24219 18.5402 7.24219 18.082 7.24198 17.7101 6.87038 17.7101 6.41211L17.7101 3.04102C17.7102 2.5828 18.082 2.21115 18.5402 2.21094 18.9986 2.21094 19.3702 2.58267 19.3703 3.04102L19.3703 6.41211zM19.3703 13.6836C19.3703 14.142 18.9986 14.5137 18.5402 14.5137 18.082 14.5135 17.7101 14.1419 17.7101 13.6836L17.7101 10.3125C17.7102 9.85427 18.082 9.48263 18.5402 9.48242 18.9986 9.48242 19.3703 9.85414 19.3703 10.3125L19.3703 13.6836zM19.3703 20.9551C19.3703 21.4135 18.9986 21.7852 18.5402 21.7852 18.082 21.7849 17.7101 21.4133 17.7101 20.9551L17.7101 17.584C17.7102 17.1257 18.082 16.7541 18.5402 16.7539 18.9986 16.7539 19.3703 17.1256 19.3703 17.584L19.3703 20.9551zM6.28632 6.41211C6.28632 6.87044 5.91455 7.24208 5.45624 7.24219 4.99784 7.24219 4.62616 6.87051 4.62616 6.41211L4.62616 3.04102C4.62622 2.58267 4.99788 2.21094 5.45624 2.21094 5.91451 2.21104 6.28626 2.58274 6.28632 3.04102L6.28632 6.41211zM6.28632 13.6836C6.28632 14.1419 5.91454 14.5136 5.45624 14.5137 4.99784 14.5137 4.62616 14.142 4.62616 13.6836L4.62616 10.3125C4.6262 9.85414 4.99787 9.48242 5.45624 9.48242 5.91452 9.48253 6.28628 9.8542 6.28632 10.3125L6.28632 13.6836zM6.28632 20.9551C6.28632 21.4134 5.91454 21.7851 5.45624 21.7852 4.99784 21.7852 4.62616 21.4135 4.62616 20.9551L4.62616 17.584C4.62618 17.1256 4.99785 16.7539 5.45624 16.7539 5.91453 16.754 6.2863 17.1257 6.28632 17.584L6.28632 20.9551z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorVline',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" :class="[`${prefix}-icon`, `${prefix}-icon-
|
|
2
|
+
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" :class="[`${prefix}-icon`, `${prefix}-icon-color-xls`]" width="1em" height="1em" v-bind="$attrs"><path :fill="useCurrentColor ? 'currentColor' : 'url(#svg_ccbdf139eb__pattern0_6065_112559)'" d="M0 0H32V32H0z"/><defs><pattern id="svg_ccbdf139eb__pattern0_6065_112559" patternContentUnits="objectBoundingBox" width="1" height="1"><use xlink:href="#svg_ccbdf139eb__image0_6065_112559" transform="scale(.025)"/></pattern><image id="svg_ccbdf139eb__image0_6065_112559" width="40" height="40" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAA2hJREFUWEftmDFMU1EUhv+LGguUgMIAgqGolUGUEggFBGmNUQsuGB1c1LJQNKAdZdJoihsNJMIkiBtlxW6UpBAwkdA6iWisCcSSAKkJKgTK0/PKayjl8Up5tA69S/t6zz33u/855/blMPzng4nxVTtMug1AJQf/JVXxyMuCZk80vsIAKxwm1RHGHJxMcAT1oLzBcyw5TW9glXuGDAO86DD1McbuRXNasTUPtTeRrkhzreKovoGV+PbiOwyweqR5CoBmL06kbAkwQ6EEB+aqYxUlUvZb58MAa0ZM3zgwWXJP2EgA3HzuM7BKY6SQ8QAEA2e9zqrMkUDGBXAT7KmBVT6TgownILFJQsYbEBw4cx2rsoopGRPAO0VXcCrzxC7RTLpvYNo3OxnEBLAspxDXzmol0m1db2A1I9uNYgLo9/tRm3setYVlopAMzJeEJP1VVu6K+T0obLj2awUZh1JEIdc2/J7hup6CuAFKXSkc4BnTdScApYQSnU8oGLV0mwsTCiYUJAUO4oU1UmUTORipUmJ2UStYkqGGMb8ezoWPsM0N8/6zFcfRVniX/80+Pw7LuSbYvROwz0+E7E92jfk3oMlQw7uyuKONsCBqQHLQWWyGWpmHVncHZpZnYdM+5/22uAPvmvT82jOE3u9DQUDl4WT0lraBPukgZ5R5vA/Lp/6wg9CifQFmKzLRW/oEP1aW4Fxwo1FVz8NO+WZAczsBatLV6NKYQ8AN2RU87PL677BI7wuQvN3Ou4zW07d4x6QUKRYI986ApFxAaQbnggvvvO/h+vn54P6LKZ8CIUtBq9uKKV9gMzFAYa4xvx6Ux2RHedji7oB3ZUl+BTuLHyNHkRl0bJy0YHn9z66ApCLZbI3AwOwwur4OygtIVUx5Z5nu51WgorF7x2GZfhsEtM0OY2DOEdxYnZoLS5EJnV8G+eqnCNi0LyA7oOCYrhECpEG5SDlJmzsX3cGq3iqL8YMF7UVN/AGEQcVhnGznD7l9RF0kdIdRaKliBccUupqsYj58lIv0ffugaqf5mqwLOJN6Et7VRdEK3vc1I1p6Mk5EraCMDFKuXKO67pD2XHh/0GGygrFHUp4OYv5f269vTPcqpDUXkxZwJIeh8Po5Tj+h7wlpE8ekiS4FmAR4RvU9YW0PWicKKOU0VvN/AYdS7zg1ub7CAAAAAElFTkSuQmCC"/></defs></svg>
|
|
3
3
|
</template>
|
|
4
4
|
<script>
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg viewBox="0 0 18 18" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-
|
|
2
|
+
<svg viewBox="0 0 18 18" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-icon-line-set2`]" width="1em" height="1em" v-bind="$attrs"><path d="M11.835 10.116C12.4563 10.116 12.96 10.6196 12.96 11.241V12.1188H15.6605C16.0736 12.1188 16.4086 12.4538 16.4086 12.8669C16.4085 13.2801 16.0736 13.6151 15.6605 13.6151H12.96V14.494C12.9596 15.1149 12.4561 15.619 11.835 15.619C11.214 15.619 10.7105 15.1149 10.71 14.494V11.241C10.71 10.6196 11.2137 10.116 11.835 10.116ZM9.08954 12.1188C9.50272 12.1188 9.83771 12.4538 9.83771 12.8669C9.83762 13.28 9.50266 13.6151 9.08954 13.6151H2.33954C1.92663 13.6149 1.59146 13.2799 1.59137 12.8669C1.59137 12.4539 1.92657 12.119 2.33954 12.1188H9.08954ZM6.16827 2.375C6.78959 2.375 7.29327 2.87868 7.29327 3.5V6.75305C7.29294 7.37409 6.78939 7.87805 6.16827 7.87805C5.54716 7.87805 5.04361 7.37409 5.04327 6.75305V5.87415H2.33954C1.92658 5.87389 1.59137 5.53899 1.59137 5.12598C1.59141 4.71299 1.9266 4.37807 2.33954 4.37781H5.04327V3.5C5.04327 2.87868 5.54695 2.375 6.16827 2.375ZM15.6605 4.37781C16.0736 4.37781 16.4086 4.71283 16.4086 5.12598C16.4086 5.53915 16.0736 5.87415 15.6605 5.87415H8.91046C8.49743 5.87397 8.16229 5.53905 8.16229 5.12598C8.16233 4.71294 8.49745 4.37798 8.91046 4.37781H15.6605Z"/></svg>
|
|
3
3
|
</template>
|
|
4
4
|
<script>
|
|
5
5
|
|
|
@@ -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
|
@@ -242,4 +242,17 @@ export { default as IconIconLineSet2 } from './IconIconLineSet2/index.vue';
|
|
|
242
242
|
export { default as IconLineLlm } from './IconLineLlm/index.vue';
|
|
243
243
|
export { default as IconColorLogicFlow } from './IconColorLogicFlow/index.vue';
|
|
244
244
|
export { default as IconLineSkill } from './IconLineSkill/index.vue';
|
|
245
|
-
export { default as IconLineAgent } from './IconLineAgent/index.vue';
|
|
245
|
+
export { default as IconLineAgent } from './IconLineAgent/index.vue';
|
|
246
|
+
export { default as IconColorLongtext } from './IconColorLongtext/index.vue';
|
|
247
|
+
export { default as IconColorHline } from './IconColorHline/index.vue';
|
|
248
|
+
export { default as IconColorBarcode } from './IconColorBarcode/index.vue';
|
|
249
|
+
export { default as IconColorTable } from './IconColorTable/index.vue';
|
|
250
|
+
export { default as IconColorQrcode } from './IconColorQrcode/index.vue';
|
|
251
|
+
export { default as IconColorImage } from './IconColorImage/index.vue';
|
|
252
|
+
export { default as IconColorUser } from './IconColorUser/index.vue';
|
|
253
|
+
export { default as IconColorVline } from './IconColorVline/index.vue';
|
|
254
|
+
export { default as IconColorTime } from './IconColorTime/index.vue';
|
|
255
|
+
export { default as IconColorOval } from './IconColorOval/index.vue';
|
|
256
|
+
export { default as IconColorRect } from './IconColorRect/index.vue';
|
|
257
|
+
export { default as IconColorText } from './IconColorText/index.vue';
|
|
258
|
+
export { default as IconLinePlay } from './IconLinePlay/index.vue';
|