@arco-iconbox/vue-smartcode 0.1.49 → 0.1.51

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.
Files changed (44) hide show
  1. package/dist/icon.js +3184 -2810
  2. package/dist/icon.js.map +1 -1
  3. package/dist/icon.min.js +854 -818
  4. package/dist/icon.min.js.map +1 -1
  5. package/esm/IconColorDoc/index.js +19 -26
  6. package/esm/IconColorImageNew/index.js +61 -0
  7. package/esm/IconColorMusic/index.js +48 -0
  8. package/esm/IconColorNone/index.js +48 -0
  9. package/esm/IconColorPdf/index.js +19 -26
  10. package/esm/IconColorPpt/index.js +48 -0
  11. package/esm/IconColorTxt/index.js +48 -0
  12. package/esm/IconColorVideo/index.js +48 -0
  13. package/esm/IconColorXls/index.js +19 -26
  14. package/esm/IconColorZip/index.js +48 -0
  15. package/esm/IconFillClick/index.js +32 -0
  16. package/esm/IconLineExportNew/index.js +32 -0
  17. package/esm/index.js +12 -3
  18. package/lib/IconColorDoc/index.js +18 -25
  19. package/lib/IconColorImageNew/index.js +62 -0
  20. package/lib/IconColorMusic/index.js +49 -0
  21. package/lib/IconColorNone/index.js +49 -0
  22. package/lib/IconColorPdf/index.js +18 -25
  23. package/lib/IconColorPpt/index.js +49 -0
  24. package/lib/IconColorTxt/index.js +49 -0
  25. package/lib/IconColorVideo/index.js +49 -0
  26. package/lib/IconColorXls/index.js +18 -25
  27. package/lib/IconColorZip/index.js +49 -0
  28. package/lib/IconFillClick/index.js +33 -0
  29. package/lib/IconLineExportNew/index.js +33 -0
  30. package/lib/index.js +130 -112
  31. package/package.json +1 -1
  32. package/src/IconColorDoc/index.vue +1 -1
  33. package/src/IconColorImageNew/index.vue +19 -0
  34. package/src/IconColorMusic/index.vue +19 -0
  35. package/src/IconColorNone/index.vue +19 -0
  36. package/src/IconColorPdf/index.vue +1 -1
  37. package/src/IconColorPpt/index.vue +19 -0
  38. package/src/IconColorTxt/index.vue +19 -0
  39. package/src/IconColorVideo/index.vue +19 -0
  40. package/src/IconColorXls/index.vue +1 -1
  41. package/src/IconColorZip/index.vue +19 -0
  42. package/src/IconFillClick/index.vue +19 -0
  43. package/src/IconLineExportNew/index.vue +19 -0
  44. package/src/index.js +13 -4
@@ -0,0 +1,49 @@
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: "IconColorZip",
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
+ const _hoisted_2 = { filter: "url(#svg_14f9dc1ead__filter0_d_7405_395817)" };
19
+ const _hoisted_3 = ["fill"];
20
+ const _hoisted_4 = ["fill"];
21
+ const _hoisted_5 = /* @__PURE__ */ vue.createStaticVNode('<defs><filter id="svg_14f9dc1ead__filter0_d_7405_395817" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="1"></feOffset><feGaussianBlur stdDeviation="1"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395817"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395817" result="shape"></feBlend></filter></defs>', 1);
22
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
23
+ return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
24
+ viewBox: "0 0 24 24",
25
+ fill: "none",
26
+ xmlns: "http://www.w3.org/2000/svg",
27
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-zip`],
28
+ width: "1em",
29
+ height: "1em"
30
+ }, _ctx.$attrs), [
31
+ vue.createElementVNode("path", {
32
+ d: "M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z",
33
+ fill: $props.useCurrentColor ? "currentColor" : "#D1D8E0"
34
+ }, null, 8, _hoisted_1),
35
+ vue.createElementVNode("g", _hoisted_2, [
36
+ vue.createElementVNode("path", {
37
+ d: "M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z",
38
+ fill: $props.useCurrentColor ? "currentColor" : "#E9EDF1"
39
+ }, null, 8, _hoisted_3)
40
+ ]),
41
+ vue.createElementVNode("path", {
42
+ d: "M15.0781 18.0293H8.92383V16.3066H12.001V14.584H15.0781V18.0293ZM12.001 14.584H8.92383V12.8604H12.001V14.584ZM15.0781 12.8604H12.001V11.1377H15.0781V12.8604ZM12.001 11.1377H8.92383V9.41504H12.001V11.1377ZM15.0781 9.41504H12.001V7.69238H15.0781V9.41504ZM12.001 7.69238H8.92383V5.96875H12.001V7.69238Z",
43
+ fill: $props.useCurrentColor ? "currentColor" : "#7E8FA3"
44
+ }, null, 8, _hoisted_4),
45
+ _hoisted_5
46
+ ], 16);
47
+ }
48
+ var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
49
+ module.exports = index;
@@ -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: "IconFillClick",
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.29923 6.2101C6.39589 6.17302 6.53592 6.21041 6.81582 6.28541L10.4277 7.25326C10.8261 7.36001 11.0251 7.41373 11.0918 7.51405C11.1495 7.60099 11.1613 7.71082 11.1229 7.80782C11.0784 7.9197 10.8941 8.01295 10.5266 8.19994L9.21832 8.86592C9.10848 8.9218 9.05316 8.94968 9.00546 8.98666C8.96321 9.01943 8.92557 9.0577 8.8928 9.09994C8.85582 9.14764 8.8273 9.20237 8.77143 9.31218L8.10608 10.6211C7.91906 10.9887 7.82525 11.1723 7.71334 11.2168C7.61632 11.2552 7.50651 11.244 7.41956 11.1863C7.31922 11.1196 7.26557 10.9201 7.15877 10.5215L6.19155 6.90969C6.11667 6.63023 6.07874 6.49034 6.11561 6.39371C6.14798 6.30939 6.21491 6.24247 6.29923 6.2101ZM5.89217 0.821289C7.75018 0.821372 9.36885 1.84059 10.2223 3.34515C10.5087 3.85029 10.3315 4.49201 9.82641 4.77856C9.32129 5.06496 8.67956 4.88776 8.39301 4.38271C7.8979 3.50986 6.9626 2.92511 5.89217 2.92503C4.3058 2.92507 3.01976 4.21107 3.01976 5.79744C3.01992 6.906 3.64764 7.86987 4.57204 8.34932C5.08753 8.61676 5.28881 9.25163 5.02142 9.76716C4.75396 10.2825 4.11904 10.4838 3.60357 10.2165C2.00942 9.38971 0.916179 7.72191 0.916016 5.79744C0.916016 3.04948 3.14421 0.82133 5.89217 0.821289Z" }, 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 12 12",
25
+ fill: $props.useCurrentColor ? "currentColor" : "#000",
26
+ xmlns: "http://www.w3.org/2000/svg",
27
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-click`],
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,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: "IconLineExportNew",
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: "M12.3257 11.4102C12.6928 11.4103 12.9907 11.708 12.9907 12.0752C12.9906 12.4423 12.6928 12.7401 12.3257 12.7402H1.67432C1.30711 12.7402 1.00938 12.4424 1.00928 12.0752C1.00928 11.7079 1.30705 11.4102 1.67432 11.4102H12.3257ZM7.00049 0.992188C7.36861 0.992264 7.66748 1.29104 7.66748 1.65918V8.18457L10.1685 5.68359C10.4288 5.4235 10.8515 5.42431 11.1118 5.68457C11.3712 5.94483 11.3714 6.36588 11.1118 6.62598L8.22607 9.51172C8.10195 9.63584 7.98016 9.75872 7.86963 9.85254C7.75325 9.95125 7.60515 10.0575 7.4126 10.1201C7.14499 10.207 6.85598 10.207 6.58838 10.1201C6.39537 10.0574 6.2469 9.95045 6.13037 9.85156C6.0199 9.75776 5.89797 9.63576 5.77393 9.51172L2.88916 6.62695C2.62884 6.36665 2.62891 5.94394 2.88916 5.68359C3.14952 5.42327 3.57217 5.42326 3.83252 5.68359L6.3335 8.18457V1.65918C6.3335 1.291 6.63231 0.992201 7.00049 0.992188Z" }, 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 14 14",
25
+ fill: $props.useCurrentColor ? "currentColor" : "#000",
26
+ xmlns: "http://www.w3.org/2000/svg",
27
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-export-new`],
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;
package/lib/index.js CHANGED
@@ -234,62 +234,71 @@ var index$3C = require("./IconLineAlignLeft/index.js");
234
234
  var index$3D = require("./IconLineAlignVertically/index.js");
235
235
  var index$3E = require("./IconLineAlignCenter/index.js");
236
236
  var index$3F = require("./IconLineAlignBottom/index.js");
237
- var index$3G = require("./IconColorDoc/index.js");
238
- var index$3H = require("./IconColorPdf/index.js");
239
- var index$3I = require("./IconColorXls/index.js");
240
- var index$3J = require("./IconLineInfoData/index.js");
241
- var index$3K = require("./IconLinePrint/index.js");
242
- var index$3L = require("./IconLineInternationalization/index.js");
243
- var index$3M = require("./IconIconLineSet2/index.js");
244
- var index$3N = require("./IconLineLlm/index.js");
245
- var index$3O = require("./IconColorLogicFlow/index.js");
246
- var index$3P = require("./IconLineSkill/index.js");
247
- var index$3Q = require("./IconLineAgent/index.js");
248
- var index$3R = require("./IconColorLongtext/index.js");
249
- var index$3S = require("./IconColorHline/index.js");
250
- var index$3T = require("./IconColorBarcode/index.js");
251
- var index$3U = require("./IconColorTable/index.js");
252
- var index$3V = require("./IconColorQrcode/index.js");
253
- var index$3W = require("./IconColorImage/index.js");
254
- var index$3X = require("./IconColorUser/index.js");
255
- var index$3Y = require("./IconColorVline/index.js");
256
- var index$3Z = require("./IconColorTime/index.js");
257
- var index$3_ = require("./IconColorOval/index.js");
258
- var index$3$ = require("./IconColorRect/index.js");
259
- var index$40 = require("./IconColorText/index.js");
260
- var index$41 = require("./IconLinePlay/index.js");
261
- var index$42 = require("./IconFillResource/index.js");
262
- var index$43 = require("./IconLineTool/index.js");
263
- var index$44 = require("./IconColorMarkdown/index.js");
264
- var index$45 = require("./IconColorYaml/index.js");
265
- var index$46 = require("./IconLineGoUp/index.js");
266
- var index$47 = require("./IconLineDate/index.js");
267
- var index$48 = require("./IconLineNotEqual/index.js");
268
- var index$49 = require("./IconLineEqual/index.js");
269
- var index$4a = require("./IconLineLessEqual/index.js");
270
- var index$4b = require("./IconLineGreaterThan/index.js");
271
- var index$4c = require("./IconLineGreaterEqual/index.js");
272
- var index$4d = require("./IconLineListContain/index.js");
273
- var index$4e = require("./IconLineContain/index.js");
274
- var index$4f = require("./IconLineNotContain/index.js");
275
- var index$4g = require("./IconLineLessThan/index.js");
276
- var index$4h = require("./IconLineNotListContain/index.js");
277
- var index$4i = require("./IconLineDotDrag/index.js");
278
- var index$4j = require("./IconLineWorkFlow/index.js");
279
- var index$4k = require("./IconLineEr/index.js");
280
- var index$4l = require("./IconFillQuotation/index.js");
281
- var index$4m = require("./IconLineOk/index.js");
282
- var index$4n = require("./IconLineComment/index.js");
283
- var index$4o = require("./IconLineSelect/index.js");
284
- var index$4p = require("./IconLineAttachment/index.js");
285
- var index$4q = require("./IconLineDictionary2/index.js");
286
- var index$4r = require("./IconLineLink/index.js");
287
- var index$4s = require("./IconLineScript/index.js");
288
- var index$4t = require("./IconLineKey/index.js");
289
- var index$4u = require("./IconLineKey2/index.js");
290
- var index$4v = require("./IconLineLink2/index.js");
291
- var index$4w = require("./IconLineComputer/index.js");
292
- var index$4x = require("./IconLinePhone/index.js");
237
+ var index$3G = require("./IconLineInfoData/index.js");
238
+ var index$3H = require("./IconLinePrint/index.js");
239
+ var index$3I = require("./IconLineInternationalization/index.js");
240
+ var index$3J = require("./IconIconLineSet2/index.js");
241
+ var index$3K = require("./IconLineLlm/index.js");
242
+ var index$3L = require("./IconColorLogicFlow/index.js");
243
+ var index$3M = require("./IconLineSkill/index.js");
244
+ var index$3N = require("./IconLineAgent/index.js");
245
+ var index$3O = require("./IconColorLongtext/index.js");
246
+ var index$3P = require("./IconColorHline/index.js");
247
+ var index$3Q = require("./IconColorBarcode/index.js");
248
+ var index$3R = require("./IconColorTable/index.js");
249
+ var index$3S = require("./IconColorQrcode/index.js");
250
+ var index$3T = require("./IconColorImage/index.js");
251
+ var index$3U = require("./IconColorUser/index.js");
252
+ var index$3V = require("./IconColorVline/index.js");
253
+ var index$3W = require("./IconColorTime/index.js");
254
+ var index$3X = require("./IconColorOval/index.js");
255
+ var index$3Y = require("./IconColorRect/index.js");
256
+ var index$3Z = require("./IconColorText/index.js");
257
+ var index$3_ = require("./IconLinePlay/index.js");
258
+ var index$3$ = require("./IconFillResource/index.js");
259
+ var index$40 = require("./IconLineTool/index.js");
260
+ var index$41 = require("./IconColorMarkdown/index.js");
261
+ var index$42 = require("./IconColorYaml/index.js");
262
+ var index$43 = require("./IconLineGoUp/index.js");
263
+ var index$44 = require("./IconLineDate/index.js");
264
+ var index$45 = require("./IconLineNotEqual/index.js");
265
+ var index$46 = require("./IconLineEqual/index.js");
266
+ var index$47 = require("./IconLineLessEqual/index.js");
267
+ var index$48 = require("./IconLineGreaterThan/index.js");
268
+ var index$49 = require("./IconLineGreaterEqual/index.js");
269
+ var index$4a = require("./IconLineListContain/index.js");
270
+ var index$4b = require("./IconLineContain/index.js");
271
+ var index$4c = require("./IconLineNotContain/index.js");
272
+ var index$4d = require("./IconLineLessThan/index.js");
273
+ var index$4e = require("./IconLineNotListContain/index.js");
274
+ var index$4f = require("./IconLineDotDrag/index.js");
275
+ var index$4g = require("./IconLineWorkFlow/index.js");
276
+ var index$4h = require("./IconLineEr/index.js");
277
+ var index$4i = require("./IconFillQuotation/index.js");
278
+ var index$4j = require("./IconLineOk/index.js");
279
+ var index$4k = require("./IconLineComment/index.js");
280
+ var index$4l = require("./IconLineSelect/index.js");
281
+ var index$4m = require("./IconLineAttachment/index.js");
282
+ var index$4n = require("./IconLineDictionary2/index.js");
283
+ var index$4o = require("./IconLineLink/index.js");
284
+ var index$4p = require("./IconLineScript/index.js");
285
+ var index$4q = require("./IconLineKey/index.js");
286
+ var index$4r = require("./IconLineKey2/index.js");
287
+ var index$4s = require("./IconLineLink2/index.js");
288
+ var index$4t = require("./IconLineComputer/index.js");
289
+ var index$4u = require("./IconLinePhone/index.js");
290
+ var index$4v = require("./IconLineExportNew/index.js");
291
+ var index$4w = require("./IconColorNone/index.js");
292
+ var index$4x = require("./IconColorDoc/index.js");
293
+ var index$4y = require("./IconColorPpt/index.js");
294
+ var index$4z = require("./IconColorPdf/index.js");
295
+ var index$4A = require("./IconColorVideo/index.js");
296
+ var index$4B = require("./IconColorTxt/index.js");
297
+ var index$4C = require("./IconColorZip/index.js");
298
+ var index$4D = require("./IconColorXls/index.js");
299
+ var index$4E = require("./IconColorMusic/index.js");
300
+ var index$4F = require("./IconColorImageNew/index.js");
301
+ var index$4G = require("./IconFillClick/index.js");
293
302
  exports.IconFillHeart = index;
294
303
  exports.IconFillMute = index$1;
295
304
  exports.IconFillSound = index$2;
@@ -524,59 +533,68 @@ exports.IconLineAlignLeft = index$3C;
524
533
  exports.IconLineAlignVertically = index$3D;
525
534
  exports.IconLineAlignCenter = index$3E;
526
535
  exports.IconLineAlignBottom = index$3F;
527
- exports.IconColorDoc = index$3G;
528
- exports.IconColorPdf = index$3H;
529
- exports.IconColorXls = index$3I;
530
- exports.IconLineInfoData = index$3J;
531
- exports.IconLinePrint = index$3K;
532
- exports.IconLineInternationalization = index$3L;
533
- exports.IconIconLineSet2 = index$3M;
534
- exports.IconLineLlm = index$3N;
535
- exports.IconColorLogicFlow = index$3O;
536
- exports.IconLineSkill = index$3P;
537
- exports.IconLineAgent = index$3Q;
538
- exports.IconColorLongtext = index$3R;
539
- exports.IconColorHline = index$3S;
540
- exports.IconColorBarcode = index$3T;
541
- exports.IconColorTable = index$3U;
542
- exports.IconColorQrcode = index$3V;
543
- exports.IconColorImage = index$3W;
544
- exports.IconColorUser = index$3X;
545
- exports.IconColorVline = index$3Y;
546
- exports.IconColorTime = index$3Z;
547
- exports.IconColorOval = index$3_;
548
- exports.IconColorRect = index$3$;
549
- exports.IconColorText = index$40;
550
- exports.IconLinePlay = index$41;
551
- exports.IconFillResource = index$42;
552
- exports.IconLineTool = index$43;
553
- exports.IconColorMarkdown = index$44;
554
- exports.IconColorYaml = index$45;
555
- exports.IconLineGoUp = index$46;
556
- exports.IconLineDate = index$47;
557
- exports.IconLineNotEqual = index$48;
558
- exports.IconLineEqual = index$49;
559
- exports.IconLineLessEqual = index$4a;
560
- exports.IconLineGreaterThan = index$4b;
561
- exports.IconLineGreaterEqual = index$4c;
562
- exports.IconLineListContain = index$4d;
563
- exports.IconLineContain = index$4e;
564
- exports.IconLineNotContain = index$4f;
565
- exports.IconLineLessThan = index$4g;
566
- exports.IconLineNotListContain = index$4h;
567
- exports.IconLineDotDrag = index$4i;
568
- exports.IconLineWorkFlow = index$4j;
569
- exports.IconLineEr = index$4k;
570
- exports.IconFillQuotation = index$4l;
571
- exports.IconLineOk = index$4m;
572
- exports.IconLineComment = index$4n;
573
- exports.IconLineSelect = index$4o;
574
- exports.IconLineAttachment = index$4p;
575
- exports.IconLineDictionary2 = index$4q;
576
- exports.IconLineLink = index$4r;
577
- exports.IconLineScript = index$4s;
578
- exports.IconLineKey = index$4t;
579
- exports.IconLineKey2 = index$4u;
580
- exports.IconLineLink2 = index$4v;
581
- exports.IconLineComputer = index$4w;
582
- exports.IconLinePhone = index$4x;
536
+ exports.IconLineInfoData = index$3G;
537
+ exports.IconLinePrint = index$3H;
538
+ exports.IconLineInternationalization = index$3I;
539
+ exports.IconIconLineSet2 = index$3J;
540
+ exports.IconLineLlm = index$3K;
541
+ exports.IconColorLogicFlow = index$3L;
542
+ exports.IconLineSkill = index$3M;
543
+ exports.IconLineAgent = index$3N;
544
+ exports.IconColorLongtext = index$3O;
545
+ exports.IconColorHline = index$3P;
546
+ exports.IconColorBarcode = index$3Q;
547
+ exports.IconColorTable = index$3R;
548
+ exports.IconColorQrcode = index$3S;
549
+ exports.IconColorImage = index$3T;
550
+ exports.IconColorUser = index$3U;
551
+ exports.IconColorVline = index$3V;
552
+ exports.IconColorTime = index$3W;
553
+ exports.IconColorOval = index$3X;
554
+ exports.IconColorRect = index$3Y;
555
+ exports.IconColorText = index$3Z;
556
+ exports.IconLinePlay = index$3_;
557
+ exports.IconFillResource = index$3$;
558
+ exports.IconLineTool = index$40;
559
+ exports.IconColorMarkdown = index$41;
560
+ exports.IconColorYaml = index$42;
561
+ exports.IconLineGoUp = index$43;
562
+ exports.IconLineDate = index$44;
563
+ exports.IconLineNotEqual = index$45;
564
+ exports.IconLineEqual = index$46;
565
+ exports.IconLineLessEqual = index$47;
566
+ exports.IconLineGreaterThan = index$48;
567
+ exports.IconLineGreaterEqual = index$49;
568
+ exports.IconLineListContain = index$4a;
569
+ exports.IconLineContain = index$4b;
570
+ exports.IconLineNotContain = index$4c;
571
+ exports.IconLineLessThan = index$4d;
572
+ exports.IconLineNotListContain = index$4e;
573
+ exports.IconLineDotDrag = index$4f;
574
+ exports.IconLineWorkFlow = index$4g;
575
+ exports.IconLineEr = index$4h;
576
+ exports.IconFillQuotation = index$4i;
577
+ exports.IconLineOk = index$4j;
578
+ exports.IconLineComment = index$4k;
579
+ exports.IconLineSelect = index$4l;
580
+ exports.IconLineAttachment = index$4m;
581
+ exports.IconLineDictionary2 = index$4n;
582
+ exports.IconLineLink = index$4o;
583
+ exports.IconLineScript = index$4p;
584
+ exports.IconLineKey = index$4q;
585
+ exports.IconLineKey2 = index$4r;
586
+ exports.IconLineLink2 = index$4s;
587
+ exports.IconLineComputer = index$4t;
588
+ exports.IconLinePhone = index$4u;
589
+ exports.IconLineExportNew = index$4v;
590
+ exports.IconColorNone = index$4w;
591
+ exports.IconColorDoc = index$4x;
592
+ exports.IconColorPpt = index$4y;
593
+ exports.IconColorPdf = index$4z;
594
+ exports.IconColorVideo = index$4A;
595
+ exports.IconColorTxt = index$4B;
596
+ exports.IconColorZip = index$4C;
597
+ exports.IconColorXls = index$4D;
598
+ exports.IconColorMusic = index$4E;
599
+ exports.IconColorImageNew = index$4F;
600
+ exports.IconFillClick = index$4G;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/vue-smartcode",
3
- "version": "0.1.49",
3
+ "version": "0.1.51",
4
4
  "main": "lib/index.js",
5
5
  "module": "esm/index.js",
6
6
  "license": "ISC",
@@ -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-color-doc`]" width="1em" height="1em" v-bind="$attrs"><path :fill="useCurrentColor ? 'currentColor' : 'url(#svg_3456e2184b__pattern0_6065_139064)'" d="M0 0H32V32H0z"/><defs><pattern id="svg_3456e2184b__pattern0_6065_139064" patternContentUnits="objectBoundingBox" width="1" height="1"><use xlink:href="#svg_3456e2184b__image0_6065_139064" transform="scale(.025)"/></pattern><image id="svg_3456e2184b__image0_6065_139064" width="40" height="40" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAy1JREFUWEftmD9ME1Ecx78PXRhwaCcJJDgU4lJ6toOGmLYOBkPDYBysBNQFDhdtcBE1lGjEoTWdhGpMqom64CKw2joYGWysbP5JbKJBFwwBhERLT359Pdt6Pa/XXq4MfUnTP/e73/u87+/7e7k+hl0+mBqfS5Q8WaDDCP7j3UjcHmXpanIpAB2i1LGHIQ6D4Ahq/DTSln3wegX9kApApyjFwHC2mtWq3XPVD1hakJKQg1zVk1sJOCq9BeDQk0QrNg9IYSmPwASt+OLr5RT8DGaM9+SJigDpp5hHYOcrhawHIBgQcQssUAlkXQAJbGfioFtgk1qQdQOsFLKugAQpZRHwOllETUlTAMUTGdja96pWkwHn3AJ7WC7AFMCegxmcPKoOmFOS75GJfyFNAdze/o1e+xp6e6z/64nVPGTK9H1QnjDz8zsszWuqkL8ySL960HWgboBaWwqAdHKaNQArEEo1pKFgLerRvQ0FGwrCKUqGP7DqkLXhQR1ilQ3Vr6DfC3i6C8k+fAWevgCWfxR+a7UA/mM8bn0LeP8FuL9QGuO08ZiuNmB5BZhfBOYWFZD6AYNDgO8wT9bSzCFogstRgGAJLhoA9luVMQO3ODDdExoB1jeBxBLgsvF4ypF4VwJZPaDrAk/UagUeXwG+rQBnpoDgIOA7Akw+KihCC6KF3Vvgr7kbuec9DExxSFrosI9fo+9Fo3ZASjZ2iper/zpXhtTwjpWWKx7iCodngSfjBVgNkxoDONwH0Gtk558EKUjqEGzxINVIHQIkC9A7edcUQFKNfEWqhUSgsw3ov8b9lrOBBXh+k/uLSh8P88/kOXlQmeV4w0qc804fLy81DU0u+23+dd5TW8DEIOBxFHxJClIXyyrS54kh4M6sgU1SXBqCCT8rGFwueXGM3CByY0Uvca/Kg3YCMcJ3hJoUpNXKiTc2geQnRef97W63nU9FzZH8qHSbxw50tnOol0tl8+hvEi1XG3x91wOmktOlx3OK/8WHRCnCGC4arExl6RhiybulR3Nlj4CbGOLMwCPgSugkIJ2V4E3NlB4Tm3KIrgXYBKTfzCiPPeg+VUCtpGZd/wOY1YI423gtpQAAAABJRU5ErkJggg=="/></defs></svg>
2
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-doc`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#3369FF'"/><path d="M18.4352 17.5096C18.3512 17.9949 18.1459 18.3753 17.8192 18.6506 17.5066 18.9119 17.1192 19.0426 16.6572 19.0426 16.1392 19.0426 15.7029 18.8653 15.3482 18.5106 15.1242 18.2866 14.9819 18.0113 14.9212 17.6846 14.8932 17.5446 14.8769 17.3696 14.8722 17.1596 14.8676 17.0709 14.8652 16.9683 14.8652 16.8516V16.1656C14.8652 16.0489 14.8676 15.9463 14.8722 15.8576 14.8769 15.6476 14.8932 15.4726 14.9212 15.3326 14.9819 15.0059 15.1242 14.7306 15.3482 14.5066 15.7029 14.1519 16.1392 13.9746 16.6572 13.9746 17.6606 13.9746 18.2532 14.4856 18.4352 15.5076H17.6652C17.5299 14.9383 17.1939 14.6536 16.6572 14.6536 16.3539 14.6536 16.1089 14.7539 15.9222 14.9546 15.8009 15.0899 15.7192 15.2579 15.6772 15.4586 15.6399 15.6593 15.6212 16.0093 15.6212 16.5086 15.6212 17.0079 15.6399 17.3579 15.6772 17.5586 15.7192 17.7593 15.8009 17.9273 15.9222 18.0626 16.1089 18.2633 16.3539 18.3636 16.6572 18.3636 17.1986 18.3636 17.5369 18.0789 17.6722 17.5096H18.4352zM13.9238 16.8516C13.9238 16.9683 13.9215 17.0709 13.9168 17.1596 13.9122 17.3696 13.8958 17.5446 13.8678 17.6846 13.8072 18.0113 13.6672 18.2866 13.4478 18.5106 13.0932 18.8653 12.6545 19.0426 12.1318 19.0426 11.6138 19.0426 11.1775 18.8653 10.8228 18.5106 10.5988 18.2866 10.4565 18.0113 10.3958 17.6846 10.3678 17.5446 10.3515 17.3696 10.3468 17.1596 10.3422 17.0709 10.3398 16.9683 10.3398 16.8516V16.1656C10.3398 16.0489 10.3422 15.9463 10.3468 15.8576 10.3515 15.6476 10.3678 15.4726 10.3958 15.3326 10.4565 15.0059 10.5988 14.7306 10.8228 14.5066 11.1775 14.1519 11.6138 13.9746 12.1318 13.9746 12.6545 13.9746 13.0932 14.1519 13.4478 14.5066 13.6672 14.7306 13.8072 15.0059 13.8678 15.3326 13.8958 15.4726 13.9122 15.6476 13.9168 15.8576 13.9215 15.9463 13.9238 16.0489 13.9238 16.1656V16.8516zM13.1678 16.5086C13.1678 16.0046 13.1492 15.6546 13.1118 15.4586 13.0745 15.2579 12.9952 15.0923 12.8738 14.9616 12.6825 14.7563 12.4352 14.6536 12.1318 14.6536 11.8285 14.6536 11.5812 14.7563 11.3898 14.9616 11.2685 15.0923 11.1892 15.2579 11.1518 15.4586 11.1145 15.6546 11.0958 16.0046 11.0958 16.5086 11.0958 17.0126 11.1145 17.3626 11.1518 17.5586 11.1892 17.7593 11.2685 17.9249 11.3898 18.0556 11.5812 18.2609 11.8285 18.3636 12.1318 18.3636 12.4352 18.3636 12.6825 18.2609 12.8738 18.0556 12.9952 17.9249 13.0745 17.7593 13.1118 17.5586 13.1492 17.3626 13.1678 17.0126 13.1678 16.5086zM9.40138 17.0276C9.39204 17.2376 9.37571 17.4196 9.35238 17.5736 9.28704 17.9749 9.13538 18.2946 8.89738 18.5326 8.58471 18.8452 8.15538 19.0016 7.60938 19.0016H5.85938V14.0176H7.60938C8.15538 14.0176 8.58471 14.1739 8.89738 14.4866 9.13538 14.7246 9.28704 15.0326 9.35238 15.4106 9.37571 15.5599 9.39204 15.7349 9.40138 15.9356V17.0276zM8.64538 16.4746C8.64538 16.2646 8.64304 16.1059 8.63838 15.9986 8.63371 15.8446 8.62438 15.7139 8.61038 15.6066 8.57304 15.3546 8.49604 15.1632 8.37937 15.0326 8.17404 14.8086 7.89171 14.6966 7.53238 14.6966H6.61538V18.3226H7.53238C7.89171 18.3226 8.17404 18.2106 8.37937 17.9866 8.49604 17.8559 8.57304 17.6529 8.61038 17.3776 8.62438 17.2656 8.63371 17.1256 8.63838 16.9576 8.64304 16.8502 8.64538 16.6892 8.64538 16.4746z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><g filter="url(#svg_cf9d725ffa__filter0_d_7405_395808)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#C0CFFF'"/></g><defs><filter id="svg_cf9d725ffa__filter0_d_7405_395808" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395808"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395808" result="shape"/></filter></defs></svg>
3
3
  </template>
4
4
  <script>
5
5
 
@@ -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-image-new`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#5094FF'"/><g filter="url(#svg_4e4056db09__filter0_d_7405_395813)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#C0CFFF'"/></g><circle cx="9.5" cy="9.5" r="1.5" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><path d="M13.1494 10.5648C13.2405 10.4042 13.2861 10.3239 13.3458 10.2971C13.3979 10.2737 13.4575 10.2737 13.5096 10.2971C13.5694 10.3239 13.6149 10.4042 13.706 10.5648L17.0609 16.4782C17.1499 16.6352 17.1945 16.7137 17.1874 16.7781C17.1812 16.8342 17.1515 16.8851 17.1058 16.9182C17.0533 16.9561 16.9631 16.9561 16.7825 16.9561H10.0729C9.89237 16.9561 9.80211 16.9561 9.74966 16.9182C9.7039 16.8851 9.67426 16.8342 9.66806 16.7781C9.66095 16.7137 9.70549 16.6352 9.79456 16.4782L13.1494 10.5648Z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><path opacity=".5" d="M8.91972 13.389C9.01085 13.2284 9.05641 13.1481 9.11615 13.1213C9.16825 13.0979 9.22785 13.0979 9.27995 13.1213C9.33969 13.1481 9.38526 13.2284 9.47638 13.389L11.2285 16.4774C11.3176 16.6344 11.3621 16.7129 11.355 16.7773C11.3488 16.8334 11.3192 16.8843 11.2734 16.9174C11.2209 16.9553 11.1307 16.9553 10.9502 16.9553H7.44594C7.26542 16.9553 7.17516 16.9553 7.1227 16.9174C7.07694 16.8843 7.0473 16.8334 7.0411 16.7773C7.034 16.7129 7.07853 16.6344 7.16761 16.4774L8.91972 13.389Z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><defs><filter id="svg_4e4056db09__filter0_d_7405_395813" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395813"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395813" result="shape"/></filter></defs></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorImageNew',
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-music`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#F3BD48'"/><g filter="url(#svg_21614769fc__filter0_d_7405_395814)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#F4DFA1'"/></g><path d="M14.0597 8.54609L10.307 9.74061C9.85097 9.87585 9.48447 10.3662 9.48447 10.8391V14.896V14.9522C9.48447 14.9522 9.20811 14.7605 8.6051 14.8509C7.71503 14.9806 6.99414 15.6907 6.99414 16.4345C6.99414 17.1779 7.71503 17.6339 8.6051 17.5046C9.49522 17.3752 10.1492 16.6876 10.1492 15.9435V12.4286C10.1492 12.1016 10.5264 11.9608 10.5264 11.9608L13.8458 10.879C13.8458 10.879 14.2175 10.7493 14.2175 11.104V13.9213C14.2175 13.9213 13.8791 13.7244 13.2712 13.7975C12.3812 13.9102 11.6592 14.6037 11.6592 15.3471C11.6592 16.0912 12.3812 16.5646 13.2712 16.4515C14.161 16.3395 14.8822 15.646 14.8822 14.9019V9.16017C14.8822 8.68687 14.5157 8.41086 14.0597 8.54609Z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><defs><filter id="svg_21614769fc__filter0_d_7405_395814" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395814"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395814" result="shape"/></filter></defs></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorMusic',
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-none`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#D1D8E0'"/><g filter="url(#svg_7dbc985b97__filter0_d_7405_395815)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#E9EDF1'"/></g><path d="M15.05 10.595C15.05 10.925 14.98 11.255 14.84 11.585C14.73 11.835 14.56 12.12 14.33 12.44L13.175 14.06C12.995 14.31 12.905 14.58 12.905 14.87V15.32H11.375V14.795C11.375 14.255 11.545 13.76 11.885 13.31L13.055 11.735C13.365 11.325 13.52 10.945 13.52 10.595C13.52 9.595 13.03 9.095 12.05 9.095C11.6 9.095 11.24 9.245 10.97 9.545C10.72 9.835 10.595 10.19 10.595 10.61H9.065C9.065 9.77 9.35 9.08 9.92 8.54C10.49 8 11.2 7.73 12.05 7.73C12.89 7.73 13.595 7.985 14.165 8.495C14.755 9.035 15.05 9.735 15.05 10.595ZM11.285 18.5V16.865H12.98V18.5H11.285Z" :fill="useCurrentColor ? 'currentColor' : '#7E8FA3'"/><defs><filter id="svg_7dbc985b97__filter0_d_7405_395815" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395815"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395815" result="shape"/></filter></defs></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorNone',
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-color-pdf`]" width="1em" height="1em" v-bind="$attrs"><path :fill="useCurrentColor ? 'currentColor' : 'url(#svg_d46e3ac0c9__pattern0_6065_68894)'" d="M0 0H32V32H0z"/><defs><pattern id="svg_d46e3ac0c9__pattern0_6065_68894" patternContentUnits="objectBoundingBox" width="1" height="1"><use xlink:href="#svg_d46e3ac0c9__image0_6065_68894" transform="scale(.025)"/></pattern><image id="svg_d46e3ac0c9__image0_6065_68894" width="40" height="40" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAxtJREFUWEftmE9IFHEUx78/V7NVF3WhQfekh+riYQRBXEkcckOSYrpUUNAfULuFEUSB/aFLIIjgxSUKOxRrl5a2ru5ek8I5ePHknpTWMmPZbZd1d+L309lmd2ec/TPOdth3nPd+bz7vz+8x8wj+cyF6fNsiPywDXWbwO/pHQ/aHL8Ll+CoA3BL5LhsQhElwFMo58SBss3cIRBBKhiwA/C7yiwS4UU60emeck49ga22XkKynkLul+C4AjIj8KgC+FCdGtgeA1Ewibk+vkb1arwW4YWZ5WYn3M7j/XpksksGRW8VCWg+4TzZH3J6pYiCrBQgQPCUDnmdGkNUDpGRFQFYXkKUvPUXco3N6mbQEsOXyBOxdJ/WrSchNMjDyRsvAEsCG3kG0ecTD2y0NgZzxhPKNLAHcy2RA3OfRMXT2MMhdyLJABs9Jls9B5YW/UkCildOFlPdSYf59sLtqgEYjBUCY80s1wCISpWtSy2Al2aNnaxmsZRARkTf9g7WEtNZ6sIRkaZqWn8G25y+zHuVYFMkvQSSCAfbsMB3Vt9y+j/ru0zlEieWP2fMqRfmAJz6sIhPZRHLtKxp7+lDHuRB7NYP4p3dQ62ycC8d6+rC3sY7d6XHQYGgA9Dk9q0hqJcSCzJPKAGnU0fknzGf7rI+99Mf1IQao1tkvXGNZi/kWEF/yMkAZwO/pcaMWMAeQNDsYIP2Y/Dk5VgBIKZzez0Asip17VxlgXbMD0dcz/zK49k0LtjLAdGSTlZn2E4WM+byILy1oAjIozoWdyTEG2NDTlwO0fUnz/70yQKUHaWaSKyGkDnoqv8QUzDnrQ2pjnZVVKbHSHpSU+tKQygDVfaZ2rgas7z6Fpit30NgvIDr/GInlgPU9mB85BVQLvbmxJS/+BN5mx9CRX5LjwkWktzezZVUDUZ0imXiU2VBIRejYIU0OJFcKxop5Y8ZoPpikL78HTQIwciNxfinnemv9F9M1xF0jT0ekX+T8Us5qTnMFXAcEiYkr4GKCkYFwBhA6/VLOmlh3ib4l8sM2iyDTQLjTLxWsPWhguoDFRG2FzV8Hobg4RqvHAAAAAABJRU5ErkJggg=="/></defs></svg>
2
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-pdf`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#EA5030'"/><path d="M15.8927 14.6946V16.2136H17.9647V16.8926H15.8927V18.9996H15.1367V14.0156H18.3217V14.6946H15.8927zM14.0166 17.0256C14.0073 17.2356 13.9909 17.4176 13.9676 17.5716 13.9023 17.973 13.7506 18.2926 13.5126 18.5306 13.1999 18.8433 12.7706 18.9996 12.2246 18.9996H10.4746V14.0156H12.2246C12.7706 14.0156 13.1999 14.172 13.5126 14.4846 13.7506 14.7226 13.9023 15.0306 13.9676 15.4086 13.9909 15.558 14.0073 15.733 14.0166 15.9336V17.0256zM13.2606 16.4726C13.2606 16.2626 13.2583 16.104 13.2536 15.9966 13.2489 15.8426 13.2396 15.712 13.2256 15.6046 13.1883 15.3526 13.1113 15.1613 12.9946 15.0306 12.7893 14.8066 12.5069 14.6946 12.1476 14.6946H11.2306V18.3206H12.1476C12.5069 18.3206 12.7893 18.2086 12.9946 17.9846 13.1113 17.854 13.1883 17.651 13.2256 17.3756 13.2396 17.2636 13.2489 17.1236 13.2536 16.9556 13.2583 16.8483 13.2606 16.6873 13.2606 16.4726zM9.55827 15.5276C9.55827 15.9663 9.4136 16.3256 9.12427 16.6056 8.83027 16.895 8.44293 17.0396 7.96227 17.0396H6.82827V18.9996H6.07227V14.0156H7.96227C8.44293 14.0156 8.83027 14.158 9.12427 14.4426 9.4136 14.7273 9.55827 15.089 9.55827 15.5276zM8.80227 15.5276C8.80227 14.9723 8.50827 14.6946 7.92027 14.6946H6.82827V16.3536H7.92027C8.50827 16.3536 8.80227 16.0783 8.80227 15.5276z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><g filter="url(#svg_034004db1f__filter0_d_7405_395809)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#FFC6BB'"/></g><defs><filter id="svg_034004db1f__filter0_d_7405_395809" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395809"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395809" result="shape"/></filter></defs></svg>
3
3
  </template>
4
4
  <script>
5
5
 
@@ -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-ppt`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#FA7235'"/><path d="M16.7823 14.6946V18.9996H16.0263V14.6946H14.6543V14.0156H18.1543V14.6946H16.7823zM14.1794 15.5276C14.1794 15.9663 14.0347 16.3256 13.7454 16.6056 13.4514 16.895 13.064 17.0396 12.5834 17.0396H11.4494V18.9996H10.6934V14.0156H12.5834C13.064 14.0156 13.4514 14.158 13.7454 14.4426 14.0347 14.7273 14.1794 15.089 14.1794 15.5276zM13.4234 15.5276C13.4234 14.9723 13.1294 14.6946 12.5414 14.6946H11.4494V16.3536H12.5414C13.1294 16.3536 13.4234 16.0783 13.4234 15.5276zM9.77702 15.5276C9.77702 15.9663 9.63235 16.3256 9.34302 16.6056 9.04902 16.895 8.66168 17.0396 8.18102 17.0396H7.04702V18.9996H6.29102V14.0156H8.18102C8.66168 14.0156 9.04902 14.158 9.34302 14.4426 9.63235 14.7273 9.77702 15.089 9.77702 15.5276zM9.02102 15.5276C9.02102 14.9723 8.72702 14.6946 8.13902 14.6946H7.04702V16.3536H8.13902C8.72702 16.3536 9.02102 16.0783 9.02102 15.5276z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><g filter="url(#svg_cad3d05f5f__filter0_d_7405_395810)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#FFCDB7'"/></g><defs><filter id="svg_cad3d05f5f__filter0_d_7405_395810" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395810"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395810" result="shape"/></filter></defs></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorPpt',
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-txt`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#5B8CF1'"/><path d="M16.3604 14.6946V18.9996H15.6044V14.6946H14.2324V14.0156H17.7324V14.6946H16.3604zM13.0779 18.9996L11.9929 17.0886 10.9149 18.9996H10.0469L11.5869 16.4446 10.1449 14.0156H11.0129L11.9929 15.8006 12.9799 14.0156H13.8479L12.4059 16.4446 13.9529 18.9996H13.0779zM8.39753 14.6946V18.9996H7.64153V14.6946H6.26953V14.0156H9.76953V14.6946H8.39753z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><g filter="url(#svg_9089f978a5__filter0_d_7405_395811)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#C0CFFF'"/></g><defs><filter id="svg_9089f978a5__filter0_d_7405_395811" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395811"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395811" result="shape"/></filter></defs></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorTxt',
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-video`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#7786E9'"/><g filter="url(#svg_25c5e790dc__filter0_d_7405_395816)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#B0BAF7'"/></g><path d="M14.6975 11.3785C14.6975 10.6969 14.1416 10.1445 13.4558 10.1445H8.67146C7.98564 10.1445 7.42969 10.6969 7.42969 11.3785V15.5275C7.42969 16.2091 7.98564 16.7615 8.67142 16.7615H13.4558C14.1416 16.7615 14.6975 16.209 14.6975 15.5275C14.6975 15.506 14.7025 15.4849 14.7122 15.4656C14.7218 15.4464 14.7358 15.4297 14.7531 15.4169C14.7703 15.4041 14.7903 15.3954 14.8114 15.3917C14.8326 15.3879 14.8543 15.3892 14.8749 15.3953L15.9229 15.7076C16.1889 15.7869 16.4688 15.6355 16.5481 15.3695C16.562 15.323 16.569 15.2746 16.569 15.226V11.6604C16.569 11.3829 16.344 11.1579 16.0665 11.1579C16.0178 11.1579 15.9695 11.1649 15.9229 11.1788L14.8561 11.4967C14.8377 11.5022 14.8183 11.5033 14.7994 11.5C14.7804 11.4966 14.7626 11.4889 14.7472 11.4774C14.7318 11.4659 14.7192 11.451 14.7106 11.4338C14.702 11.4166 14.6975 11.3977 14.6975 11.3785ZM10.0681 14.55V12.3978C10.0681 12.1202 10.2931 11.8953 10.5707 11.8953C10.6659 11.8953 10.7591 11.9223 10.8395 11.9732L12.5387 13.0492C12.7732 13.1977 12.8429 13.5082 12.6944 13.7427C12.6546 13.8055 12.6015 13.8586 12.5387 13.8984L10.8396 14.9746C10.6051 15.1231 10.2946 15.0535 10.1461 14.819C10.0951 14.7385 10.0681 14.6453 10.0681 14.5501V14.55Z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><defs><filter id="svg_25c5e790dc__filter0_d_7405_395816" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395816"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395816" result="shape"/></filter></defs></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorVideo',
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-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>
2
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-xls`]" width="1em" height="1em" v-bind="$attrs"><path d="M2 7.4C2 5.15979 2 4.03969 2.43597 3.18404C2.81947 2.43139 3.43139 1.81947 4.18404 1.43597C5.03969 1 6.15979 1 8.4 1H16L22 7V16.6C22 18.8402 22 19.9603 21.564 20.816C21.1805 21.5686 20.5686 22.1805 19.816 22.564C18.9603 23 17.8402 23 15.6 23H8.4C6.15979 23 5.03969 23 4.18404 22.564C3.43139 22.1805 2.81947 21.5686 2.43597 20.816C2 19.9603 2 18.8402 2 16.6V7.4Z" :fill="useCurrentColor ? 'currentColor' : '#3CC069'"/><path d="M17.7357 17.5796C17.7357 18.0323 17.5677 18.3916 17.2317 18.6576 16.905 18.9143 16.4757 19.0426 15.9437 19.0426 15.2017 19.0426 14.6137 18.8233 14.1797 18.3846L14.6837 17.8876C15.001 18.2049 15.4257 18.3636 15.9577 18.3636 16.6437 18.3636 16.9867 18.1093 16.9867 17.6006 16.9867 17.3719 16.9214 17.1993 16.7907 17.0826 16.6787 16.9799 16.4967 16.9099 16.2447 16.8726L15.6567 16.7886C15.2507 16.7326 14.9357 16.5996 14.7117 16.3896 14.469 16.1609 14.3477 15.8436 14.3477 15.4376 14.3477 14.9989 14.497 14.6466 14.7957 14.3806 15.0944 14.1099 15.5004 13.9746 16.0137 13.9746 16.639 13.9746 17.1547 14.1636 17.5607 14.5416L17.0777 15.0176C16.807 14.7609 16.4454 14.6326 15.9927 14.6326 15.386 14.6326 15.0827 14.8916 15.0827 15.4096 15.0827 15.6056 15.1457 15.7596 15.2717 15.8716 15.4024 15.9883 15.589 16.0653 15.8317 16.1026L16.3987 16.1866C16.814 16.2519 17.1244 16.3756 17.3297 16.5576 17.6004 16.7956 17.7357 17.1363 17.7357 17.5796zM10.5996 19.0016V14.0176H11.3556V18.3226H13.7566V19.0016H10.5996zM9.00366 19.0016L7.91866 17.0906 6.84066 19.0016H5.97266L7.51266 16.4466 6.07066 14.0176H6.93866L7.91866 15.8026 8.90566 14.0176H9.77366L8.33166 16.4466 9.87866 19.0016H9.00366z" :fill="useCurrentColor ? 'currentColor' : '#fff'"/><g filter="url(#svg_87f67b723f__filter0_d_7405_395812)"><path d="M16 1L22 7H19.2C18.0799 7 17.5198 7 17.092 6.78201C16.7157 6.59027 16.4097 6.28431 16.218 5.90798C16 5.48016 16 4.9201 16 3.8V1Z" :fill="useCurrentColor ? 'currentColor' : '#B7FFC7'"/></g><defs><filter id="svg_87f67b723f__filter0_d_7405_395812" x="14" y="0" width="10" height="10" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_7405_395812"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_7405_395812" result="shape"/></filter></defs></svg>
3
3
  </template>
4
4
  <script>
5
5