@arco-iconbox/react-hiagent 0.1.33 → 0.1.34

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 (138) hide show
  1. package/cjs/IconAudio/index.js +5 -30
  2. package/cjs/IconDataExternal/index.js +5 -22
  3. package/cjs/IconUnknownFile/index.js +4 -19
  4. package/cjs/IconUploadingCsv/index.js +7 -25
  5. package/cjs/IconUploadingDoc/index.js +5 -5
  6. package/cjs/IconUploadingHtml/index.js +5 -14
  7. package/cjs/IconUploadingJson/index.d.ts +4 -0
  8. package/cjs/IconUploadingJson/index.js +61 -0
  9. package/cjs/IconUploadingLarksheet/index.d.ts +4 -0
  10. package/cjs/IconUploadingLarksheet/index.js +63 -0
  11. package/cjs/IconUploadingMd/index.js +5 -44
  12. package/cjs/IconUploadingOfd/index.d.ts +4 -0
  13. package/cjs/IconUploadingOfd/index.js +62 -0
  14. package/cjs/IconUploadingPdf/index.js +6 -11
  15. package/cjs/IconUploadingPng/index.js +6 -27
  16. package/cjs/IconUploadingPpt/index.js +4 -35
  17. package/cjs/IconUploadingTxt/index.js +5 -13
  18. package/cjs/IconUploadingWps/index.d.ts +4 -0
  19. package/cjs/IconUploadingWps/index.js +62 -0
  20. package/cjs/IconUploadingXlsx/index.js +5 -33
  21. package/cjs/IconWorkflowClose/index.d.ts +4 -0
  22. package/cjs/IconWorkflowClose/index.js +59 -0
  23. package/cjs/IconWorkflowDownward/index.d.ts +4 -0
  24. package/cjs/IconWorkflowDownward/index.js +59 -0
  25. package/cjs/IconWorkflowEditor/index.d.ts +4 -0
  26. package/cjs/IconWorkflowEditor/index.js +59 -0
  27. package/cjs/IconWorkflowMore/index.d.ts +4 -0
  28. package/cjs/IconWorkflowMore/index.js +59 -0
  29. package/cjs/IconWorkflowNodeInput/index.d.ts +4 -0
  30. package/cjs/IconWorkflowNodeInput/index.js +59 -0
  31. package/cjs/IconWorkflowUpwards/index.d.ts +4 -0
  32. package/cjs/IconWorkflowUpwards/index.js +59 -0
  33. package/cjs/IconZip/index.js +6 -12
  34. package/cjs/index.d.ts +23 -14
  35. package/cjs/index.js +78 -59
  36. package/dist/icon.min.js +1 -1
  37. package/esm/IconAudio/index.js +5 -30
  38. package/esm/IconDataExternal/index.js +5 -22
  39. package/esm/IconUnknownFile/index.js +4 -19
  40. package/esm/IconUploadingCsv/index.js +7 -25
  41. package/esm/IconUploadingDoc/index.js +5 -5
  42. package/esm/IconUploadingHtml/index.js +5 -14
  43. package/esm/IconUploadingJson/index.d.ts +4 -0
  44. package/esm/IconUploadingJson/index.js +36 -0
  45. package/esm/IconUploadingLarksheet/index.d.ts +4 -0
  46. package/esm/IconUploadingLarksheet/index.js +38 -0
  47. package/esm/IconUploadingMd/index.js +5 -44
  48. package/esm/IconUploadingOfd/index.d.ts +4 -0
  49. package/esm/IconUploadingOfd/index.js +37 -0
  50. package/esm/IconUploadingPdf/index.js +6 -11
  51. package/esm/IconUploadingPng/index.js +6 -27
  52. package/esm/IconUploadingPpt/index.js +4 -35
  53. package/esm/IconUploadingTxt/index.js +5 -13
  54. package/esm/IconUploadingWps/index.d.ts +4 -0
  55. package/esm/IconUploadingWps/index.js +37 -0
  56. package/esm/IconUploadingXlsx/index.js +5 -33
  57. package/esm/IconWorkflowClose/index.d.ts +4 -0
  58. package/esm/IconWorkflowClose/index.js +34 -0
  59. package/esm/IconWorkflowDownward/index.d.ts +4 -0
  60. package/esm/IconWorkflowDownward/index.js +34 -0
  61. package/esm/IconWorkflowEditor/index.d.ts +4 -0
  62. package/esm/IconWorkflowEditor/index.js +34 -0
  63. package/esm/IconWorkflowMore/index.d.ts +4 -0
  64. package/esm/IconWorkflowMore/index.js +34 -0
  65. package/esm/IconWorkflowNodeInput/index.d.ts +4 -0
  66. package/esm/IconWorkflowNodeInput/index.js +34 -0
  67. package/esm/IconWorkflowUpwards/index.d.ts +4 -0
  68. package/esm/IconWorkflowUpwards/index.js +34 -0
  69. package/esm/IconZip/index.js +6 -12
  70. package/esm/index.d.ts +23 -14
  71. package/esm/index.js +23 -14
  72. package/package.json +1 -1
  73. package/src/IconAudio/index.tsx +1 -1
  74. package/src/IconDataExternal/index.tsx +1 -1
  75. package/src/IconUnknownFile/index.tsx +1 -1
  76. package/src/IconUploadingCsv/index.tsx +1 -1
  77. package/src/IconUploadingDoc/index.tsx +1 -1
  78. package/src/IconUploadingHtml/index.tsx +1 -1
  79. package/src/IconUploadingJson/index.tsx +15 -0
  80. package/src/IconUploadingLarksheet/index.tsx +15 -0
  81. package/src/IconUploadingMd/index.tsx +1 -1
  82. package/src/IconUploadingOfd/index.tsx +15 -0
  83. package/src/IconUploadingPdf/index.tsx +1 -1
  84. package/src/IconUploadingPng/index.tsx +1 -1
  85. package/src/IconUploadingPpt/index.tsx +1 -1
  86. package/src/IconUploadingTxt/index.tsx +1 -1
  87. package/src/IconUploadingWps/index.tsx +15 -0
  88. package/src/IconUploadingXlsx/index.tsx +1 -1
  89. package/src/IconWorkflowClose/index.tsx +15 -0
  90. package/src/IconWorkflowDownward/index.tsx +15 -0
  91. package/src/IconWorkflowEditor/index.tsx +15 -0
  92. package/src/IconWorkflowMore/index.tsx +15 -0
  93. package/src/IconWorkflowNodeInput/index.tsx +15 -0
  94. package/src/IconWorkflowUpwards/index.tsx +15 -0
  95. package/src/IconZip/index.tsx +1 -1
  96. package/src/index.ts +23 -14
  97. package/umd/IconAudio/index.js +5 -30
  98. package/umd/IconDataExternal/index.js +5 -22
  99. package/umd/IconUnknownFile/index.js +4 -19
  100. package/umd/IconUploadingCsv/index.js +7 -25
  101. package/umd/IconUploadingDoc/index.js +5 -5
  102. package/umd/IconUploadingHtml/index.js +5 -14
  103. package/umd/IconUploadingJson/index.d.ts +4 -0
  104. package/umd/IconUploadingJson/index.js +71 -0
  105. package/umd/IconUploadingLarksheet/index.d.ts +4 -0
  106. package/umd/IconUploadingLarksheet/index.js +73 -0
  107. package/umd/IconUploadingMd/index.js +5 -44
  108. package/umd/IconUploadingOfd/index.d.ts +4 -0
  109. package/umd/IconUploadingOfd/index.js +72 -0
  110. package/umd/IconUploadingPdf/index.js +6 -11
  111. package/umd/IconUploadingPng/index.js +6 -27
  112. package/umd/IconUploadingPpt/index.js +4 -35
  113. package/umd/IconUploadingTxt/index.js +5 -13
  114. package/umd/IconUploadingWps/index.d.ts +4 -0
  115. package/umd/IconUploadingWps/index.js +72 -0
  116. package/umd/IconUploadingXlsx/index.js +5 -33
  117. package/umd/IconWorkflowClose/index.d.ts +4 -0
  118. package/umd/IconWorkflowClose/index.js +69 -0
  119. package/umd/IconWorkflowDownward/index.d.ts +4 -0
  120. package/umd/IconWorkflowDownward/index.js +69 -0
  121. package/umd/IconWorkflowEditor/index.d.ts +4 -0
  122. package/umd/IconWorkflowEditor/index.js +69 -0
  123. package/umd/IconWorkflowMore/index.d.ts +4 -0
  124. package/umd/IconWorkflowMore/index.js +69 -0
  125. package/umd/IconWorkflowNodeInput/index.d.ts +4 -0
  126. package/umd/IconWorkflowNodeInput/index.js +69 -0
  127. package/umd/IconWorkflowUpwards/index.d.ts +4 -0
  128. package/umd/IconWorkflowUpwards/index.js +69 -0
  129. package/umd/IconZip/index.js +6 -12
  130. package/umd/index.d.ts +23 -14
  131. package/umd/index.js +48 -30
  132. package/cjs/IconOfd/index.d.ts +0 -4
  133. package/cjs/IconOfd/index.js +0 -73
  134. package/esm/IconOfd/index.d.ts +0 -4
  135. package/esm/IconOfd/index.js +0 -48
  136. package/src/IconOfd/index.tsx +0 -15
  137. package/umd/IconOfd/index.d.ts +0 -4
  138. package/umd/IconOfd/index.js +0 -83
@@ -27,17 +27,12 @@ function IconUploadingPdfComponent(props, ref) {
27
27
  var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
28
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
29
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
- return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-pdf").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 24 24" }, rest, { ref: ref }),
31
- React.createElement("g", null,
32
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FF6C6B', fillRule: "evenodd", d: "M6 1.5a3 3 0 0 0-3 3v15a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V9l-7.5-7.5H6Z", clipRule: "evenodd" }),
33
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "m6.36 16.904 1.306 1.797c2.741-1.94 5.275-5.83 5.275-9.725h-2.22c0 3.373-2.323 6.492-4.36 7.928Z", clipRule: "evenodd", opacity: ".4" }),
34
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_b3224be663__a)', fillRule: "evenodd", d: "M6.393 16.949c2.588-1.692 6.346-2.79 9.408-2.787l.779 2.245c-2.645-.238-6.452.788-8.881 2.34l-1.306-1.798Z", clipRule: "evenodd" }),
35
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M17.444 14.413c-2.459-.548-4.014-2.993-4.503-5.437h-2.22c.508 3.667 3.006 7.138 6.723 7.694v-2.257Z", clipRule: "evenodd" }),
36
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M13.5 1.5 21 9h-4.5a3 3 0 0 1-3-3V1.5Z", opacity: ".4" })),
37
- React.createElement("defs", null,
38
- React.createElement("linearGradient", { id: "svg_b3224be663__a", x1: "6.215", x2: "19.374", y1: "17.819", y2: "17.819", gradientUnits: "userSpaceOnUse" },
39
- React.createElement("stop", { stopColor: "#FFE4E4" }),
40
- React.createElement("stop", { offset: "1", stopColor: "#F1BDBC" }))));
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-pdf").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FF617E', fillRule: "evenodd", d: "M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z", clipRule: "evenodd" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "m8.48 22.539 1.74 2.396c3.656-2.588 7.034-7.773 7.034-12.967h-2.96c0 4.497-3.096 8.656-5.814 10.57Z", clipRule: "evenodd", opacity: ".5" }),
33
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M22.5 22c-2.398 0-5.033.542-7.321 1.246-2.306.71-4.115 1.537-4.873 2.02l-1.612-2.532c1.075-.684 3.167-1.606 5.603-2.355C16.75 19.624 19.698 19 22.5 19v3Z", opacity: ".84" }),
34
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M23.258 19.217c-3.277-.73-5.351-3.99-6.003-7.249h-2.96c.678 4.889 4.008 9.518 8.963 10.258v-3.009Z", clipRule: "evenodd" }),
35
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFB0BF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
41
36
  }
42
37
  var IconUploadingPdf = React.forwardRef(IconUploadingPdfComponent);
43
38
  export default IconUploadingPdf;
@@ -27,33 +27,12 @@ function IconUploadingPngComponent(props, ref) {
27
27
  var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
28
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
29
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
- return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-png").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFC737', fillRule: "evenodd", d: "M5 1.25a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V7.5l-6.25-6.25H5Z", clipRule: "evenodd" }),
32
- React.createElement("g", { opacity: ".5" },
33
- React.createElement("mask", { id: "svg_82d8c3d948__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
34
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "M11.25 1.25 17.5 7.5h-3.75a2.5 2.5 0 0 1-2.5-2.5V1.25Z" })),
35
- React.createElement("g", { mask: "url(#svg_82d8c3d948__a)" },
36
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M15 1.25H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V3.75a2.5 2.5 0 0 0-2.5-2.5Z" }))),
37
- React.createElement("g", { filter: "url(#svg_82d8c3d948__svg_bff139fa05__b)" },
38
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_82d8c3d948__svg_bff139fa05__c)', fillRule: "evenodd", d: "M8.432 12.761 7.8 11.495a.5.5 0 0 0-.895 0l-1.69 3.382a.5.5 0 0 0 .447.724h1.352l.168-.335 1.251-2.504Zm.839 1.678.206.411h-.412l.206-.412Z", clipRule: "evenodd", opacity: ".8" }),
39
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_82d8c3d948__svg_bff139fa05__d)', d: "m8.213 14.876 2.692-5.382a.5.5 0 0 1 .894 0l2.69 5.382a.5.5 0 0 1-.446.724H8.66a.5.5 0 0 1-.448-.724Z", opacity: ".9" }),
40
- React.createElement("circle", { cx: "7.252", cy: "7.2", r: "1.4", fill: useCurrentColor ? 'currentColor' : '#fff', opacity: ".4" })),
41
- React.createElement("defs", null,
42
- React.createElement("linearGradient", { id: "svg_82d8c3d948__svg_bff139fa05__c", x1: "9.78", x2: "4.856", y1: "15.6", y2: "15.6", gradientUnits: "userSpaceOnUse" },
43
- React.createElement("stop", { stopColor: "#fff", stopOpacity: ".3" }),
44
- React.createElement("stop", { offset: "1", stopColor: "#fff" })),
45
- React.createElement("linearGradient", { id: "svg_82d8c3d948__svg_bff139fa05__d", x1: "11.352", x2: "11.352", y1: "8.6", y2: "15.6", gradientUnits: "userSpaceOnUse" },
46
- React.createElement("stop", { stopColor: "#fff", stopOpacity: ".4" }),
47
- React.createElement("stop", { offset: "1", stopColor: "#fff" })),
48
- React.createElement("filter", { id: "svg_82d8c3d948__svg_bff139fa05__b", width: "11.383", height: "11.8", x: "4.16", y: "5.8", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
49
- React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
50
- React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
51
- React.createElement("feOffset", { dy: "1" }),
52
- React.createElement("feGaussianBlur", { stdDeviation: ".5" }),
53
- React.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
54
- React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 0.780392 0 0 0 0 0.215686 0 0 0 0.2 0" }),
55
- React.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1840_22939" }),
56
- React.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1840_22939", result: "shape" }))));
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-png").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#7883DB', fillRule: "evenodd", d: "M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z", clipRule: "evenodd" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M11.315 17.855a.5.5 0 0 1 .895 0l1.533 3.065-2.02 4.04h-3.15a.5.5 0 0 1-.448-.723l3.19-6.382Z", opacity: ".8" }),
33
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "m12.925 24.236 4.79-9.582a.5.5 0 0 1 .895 0l4.79 9.582a.5.5 0 0 1-.446.724h-9.582a.5.5 0 0 1-.447-.724Z" }),
34
+ React.createElement("circle", { cx: "11.603", cy: "11.52", r: "2.24", fill: useCurrentColor ? 'currentColor' : '#fff', opacity: ".8" }),
35
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#BBC1ED', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
57
36
  }
58
37
  var IconUploadingPng = React.forwardRef(IconUploadingPngComponent);
59
38
  export default IconUploadingPng;
@@ -28,41 +28,10 @@ function IconUploadingPptComponent(props, ref) {
28
28
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
29
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
30
  return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-ppt").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
31
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFA337', stroke: "#FFA337", d: "M4.5 6A3.5 3.5 0 0 1 8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6Z" }),
32
- React.createElement("g", { filter: "url(#svg_8fc684f11f__a)" },
33
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_8fc684f11f__svg_8a267223a8__b)', d: "M12 25.485V20.8c0-.8.8-.8.8-.8h-2.72c-.265 0-.48.23-.48.514v4.971c0 .285.215.515.48.515h1.44c.265 0 .48-.23.48-.515Z", shapeRendering: "crispEdges" })),
34
- React.createElement("g", { filter: "url(#svg_8fc684f11f__svg_8a267223a8__c)" },
35
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_8fc684f11f__svg_8a267223a8__d)', fillRule: "evenodd", d: "M19.296 16.608H9.9a.3.3 0 0 1-.3-.3V13.9a.3.3 0 0 1 .3-.3h10.82c.875 0 1.584.71 1.584 1.584v6.24c0 .875-.71 1.584-1.584 1.584H12V20h7.296v-3.392Z", clipRule: "evenodd", shapeRendering: "crispEdges" })),
36
- React.createElement("g", { opacity: ".5" },
37
- React.createElement("mask", { id: "svg_8fc684f11f__a", width: "10", height: "10", x: "18", y: "2", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
38
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" })),
39
- React.createElement("g", { mask: "url(#svg_8fc684f11f__a)" },
40
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M24 2H8a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V6a4 4 0 0 0-4-4Z" }))),
41
- React.createElement("defs", null,
42
- React.createElement("linearGradient", { id: "svg_8fc684f11f__svg_8a267223a8__b", x1: "10.8", x2: "10.8", y1: "20", y2: "26", gradientUnits: "userSpaceOnUse" },
43
- React.createElement("stop", { stopColor: "#fff" }),
44
- React.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".3" })),
45
- React.createElement("linearGradient", { id: "svg_8fc684f11f__svg_8a267223a8__d", x1: "15.952", x2: "15.952", y1: "13.6", y2: "23.008", gradientUnits: "userSpaceOnUse" },
46
- React.createElement("stop", { stopColor: "#fff" }),
47
- React.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".4" })),
48
- React.createElement("filter", { id: "svg_8fc684f11f__svg_8a267223a8__a", width: "5.2", height: "8", x: "8.6", y: "20", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
49
- React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
50
- React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
51
- React.createElement("feOffset", { dy: "1" }),
52
- React.createElement("feGaussianBlur", { stdDeviation: ".5" }),
53
- React.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
54
- React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 0.545098 0 0 0 0 0.215686 0 0 0 0.2 0" }),
55
- React.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1830_145040" }),
56
- React.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1830_145040", result: "shape" })),
57
- React.createElement("filter", { id: "svg_8fc684f11f__svg_8a267223a8__c", width: "14.704", height: "11.408", x: "8.6", y: "13.6", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
58
- React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
59
- React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
60
- React.createElement("feOffset", { dy: "1" }),
61
- React.createElement("feGaussianBlur", { stdDeviation: ".5" }),
62
- React.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
63
- React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 0.545098 0 0 0 0 0.215686 0 0 0 0.2 0" }),
64
- React.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1830_145040" }),
65
- React.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1830_145040", result: "shape" }))));
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FF8D47', stroke: "#FF8D47", d: "M8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6A3.5 3.5 0 0 1 8 2.5Z" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M12 25.485V20.8c0-.8.8-.8.8-.8h-2.72c-.265 0-.48.23-.48.514v4.971c0 .285.215.515.48.515h1.44c.265 0 .48-.23.48-.515Z", opacity: ".8" }),
33
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M19.296 16.608H9.9a.3.3 0 0 1-.3-.3V13.9a.3.3 0 0 1 .3-.3h10.82c.875 0 1.584.71 1.584 1.584v6.24c0 .875-.71 1.584-1.584 1.584H12V20h7.296v-3.392Z", clipRule: "evenodd" }),
34
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFC6A3', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
66
35
  }
67
36
  var IconUploadingPpt = React.forwardRef(IconUploadingPptComponent);
68
37
  export default IconUploadingPpt;
@@ -27,19 +27,11 @@ function IconUploadingTxtComponent(props, ref) {
27
27
  var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
28
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
29
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
- return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-txt").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 21" }, rest, { ref: ref }),
31
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#ABB8D0', fillRule: "evenodd", d: "M5 1.558a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5v-8.75l-6.25-6.25H5Z", clipRule: "evenodd" }),
32
- React.createElement("g", { opacity: ".5" },
33
- React.createElement("mask", { id: "svg_eb86c923de__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
34
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "m11.25 1.558 6.25 6.25h-3.75a2.5 2.5 0 0 1-2.5-2.5v-3.75Z" })),
35
- React.createElement("g", { mask: "url(#svg_eb86c923de__a)" },
36
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M15 1.558H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5v-12.5a2.5 2.5 0 0 0-2.5-2.5Z" }))),
37
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_eb86c923de__svg_c7824f3d4d__b)', d: "M10.94 16.143v-5.527c0-.17-.168-.308-.375-.308H9.44c-.207 0-.375.138-.375.308v5.527c0 .171.168.31.375.31h1.125c.207 0 .375-.139.375-.31Z" }),
38
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M13.613 9.308H6.387A.381.381 0 0 0 6 9.683v1.125c0 .207.173.375.387.375h7.226a.381.381 0 0 0 .387-.375V9.683a.381.381 0 0 0-.387-.375Z", opacity: ".9" }),
39
- React.createElement("defs", null,
40
- React.createElement("linearGradient", { id: "svg_eb86c923de__svg_c7824f3d4d__b", x1: "10", x2: "10", y1: "16.328", y2: "9.828", gradientUnits: "userSpaceOnUse" },
41
- React.createElement("stop", { stopColor: "#fff" }),
42
- React.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".3" }))));
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-txt").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#ABB8D0', fillRule: "evenodd", d: "M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z", clipRule: "evenodd" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M17.504 24.599v-8.422c0-.26-.269-.47-.6-.47h-1.8c-.331 0-.6.21-.6.47v8.422c0 .26.269.472.6.472h1.8c.331 0 .6-.212.6-.472Z", opacity: ".7" }),
33
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M21.78 14.184H10.22a.638.638 0 0 0-.435.163.581.581 0 0 0-.185.408v1.714c0 .316.277.572.62.572h11.56a.636.636 0 0 0 .435-.164.581.581 0 0 0 .185-.408v-1.714a.558.558 0 0 0-.185-.408.616.616 0 0 0-.434-.163Z" }),
34
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#C7D1E3', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
43
35
  }
44
36
  var IconUploadingTxt = React.forwardRef(IconUploadingTxtComponent);
45
37
  export default IconUploadingTxt;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconUploadingWps: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconUploadingWps;
@@ -0,0 +1,37 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconUploadingWpsComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-wps").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FF617E', fillRule: "evenodd", d: "M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z", clipRule: "evenodd" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M24.503 14.48a1.001 1.001 0 0 0-.852-.48h-5.013c-.374 0-.717.211-.89.547l-1.706 2.923v4.547l1.099-2.277 2.105-4.082h2.797l-3.38 7.05-1.237-2.678-1.1 2.277 1.477 3.144a1 1 0 0 0 .89.549h.014c.38-.005.724-.227.89-.574l4.767-10.052c.152-.317.323-.595.14-.894Z", opacity: ".9" }),
33
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "m16.042 17.47-1.1 2.27-1.522 2.969-3.38-7.05h2.798l1.82 3.791 1.099-2.27-1.421-2.633a1.003 1.003 0 0 0-.89-.547H8.431c-.346 0-.669.182-.852.48-.184.3-.013.577.139.894l4.767 10.052c.167.347.51.569.89.574h.014a1 1 0 0 0 .89-.55l1.762-3.433V17.47Z", opacity: ".9" }),
34
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFB0BF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
35
+ }
36
+ var IconUploadingWps = React.forwardRef(IconUploadingWpsComponent);
37
+ export default IconUploadingWps;
@@ -27,39 +27,11 @@ function IconUploadingXlsxComponent(props, ref) {
27
27
  var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
28
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
29
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
- return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-xlsx").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#7FC934', stroke: "#7FC934", d: "M3 3.75a2 2 0 0 1 2-2h6.043L17 7.707v8.543a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3.75Z" }),
32
- React.createElement("g", { opacity: ".5" },
33
- React.createElement("mask", { id: "svg_3a6916ea63__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
34
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "M11.25 1.25 17.5 7.5h-3.75a2.5 2.5 0 0 1-2.5-2.5V1.25Z" })),
35
- React.createElement("g", { mask: "url(#svg_3a6916ea63__a)" },
36
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M15 1.25H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V3.75a2.5 2.5 0 0 0-2.5-2.5Z" }))),
37
- React.createElement("g", { filter: "url(#svg_3a6916ea63__svg_c818196b07__b)", opacity: ".9" },
38
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M8.268 8.95H6.882a.281.281 0 0 0-.222.454l4.85 6.237a.281.281 0 0 0 .223.109h1.386c.234 0 .366-.27.222-.454l-4.85-6.237a.281.281 0 0 0-.223-.109Z", clipRule: "evenodd" })),
39
- React.createElement("g", { filter: "url(#svg_3a6916ea63__svg_c818196b07__c)" },
40
- React.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_3a6916ea63__svg_c818196b07__d)', fillRule: "evenodd", d: "M11.733 8.95h1.386c.234 0 .366.27.222.454l-4.85 6.237a.281.281 0 0 1-.223.109H6.882a.281.281 0 0 1-.222-.454l4.85-6.237a.281.281 0 0 1 .223-.109Z", clipRule: "evenodd", shapeRendering: "crispEdges" })),
41
- React.createElement("defs", null,
42
- React.createElement("filter", { id: "svg_3a6916ea63__svg_c818196b07__b", width: "8.801", height: "8.8", x: "5.6", y: "8.95", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
43
- React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
44
- React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
45
- React.createElement("feOffset", { dy: "1" }),
46
- React.createElement("feGaussianBlur", { stdDeviation: ".5" }),
47
- React.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
48
- React.createElement("feColorMatrix", { values: "0 0 0 0 0.332711 0 0 0 0 0.62458 0 0 0 0 0.036898 0 0 0 0.2 0" }),
49
- React.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1280_29706" }),
50
- React.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1280_29706", result: "shape" })),
51
- React.createElement("filter", { id: "svg_3a6916ea63__svg_c818196b07__c", width: "8.801", height: "8.8", x: "5.6", y: "8.95", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
52
- React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
53
- React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
54
- React.createElement("feOffset", { dy: "1" }),
55
- React.createElement("feGaussianBlur", { stdDeviation: ".5" }),
56
- React.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
57
- React.createElement("feColorMatrix", { values: "0 0 0 0 0.332711 0 0 0 0 0.62458 0 0 0 0 0.036898 0 0 0 0.2 0" }),
58
- React.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1280_29706" }),
59
- React.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1280_29706", result: "shape" })),
60
- React.createElement("linearGradient", { id: "svg_3a6916ea63__svg_c818196b07__d", x1: "13.606", x2: "6.394", y1: "8.692", y2: "15.905", gradientUnits: "userSpaceOnUse" },
61
- React.createElement("stop", { stopColor: "#fff", stopOpacity: ".4" }),
62
- React.createElement("stop", { offset: "1", stopColor: "#fff" }))));
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-xlsx").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#2CBF7D', stroke: "#2CBF7D", d: "M8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6A3.5 3.5 0 0 1 8 2.5Z" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M13.23 14.32h-2.22a.45.45 0 0 0-.354.726l7.761 9.98a.45.45 0 0 0 .355.174h2.219a.45.45 0 0 0 .355-.726l-7.761-9.98a.45.45 0 0 0-.356-.174Z", clipRule: "evenodd", opacity: ".8" }),
33
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M18.772 14.32h2.219a.45.45 0 0 1 .355.726l-7.761 9.98a.45.45 0 0 1-.356.174h-2.218a.45.45 0 0 1-.355-.726l7.761-9.98a.45.45 0 0 1 .355-.174Z", clipRule: "evenodd" }),
34
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#95DFBE', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
63
35
  }
64
36
  var IconUploadingXlsx = React.forwardRef(IconUploadingXlsxComponent);
65
37
  export default IconUploadingXlsx;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconWorkflowClose: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconWorkflowClose;
@@ -0,0 +1,34 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconWorkflowCloseComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-workflow_close").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 18 18" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M14.506 4.37a.453.453 0 0 1 0 .638L10.49 9.046l4.016 4.038a.453.453 0 0 1 0 .638l-.7.704a.447.447 0 0 1-.635 0l-4.015-4.038-4.17 4.193a.447.447 0 0 1-.634 0l-.7-.704a.453.453 0 0 1 0-.638l4.17-4.193-4.17-4.193a.453.453 0 0 1 0-.638l.7-.704a.447.447 0 0 1 .634 0l4.17 4.193 4.016-4.038a.447.447 0 0 1 .634 0l.7.703Z" }));
32
+ }
33
+ var IconWorkflowClose = React.forwardRef(IconWorkflowCloseComponent);
34
+ export default IconWorkflowClose;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconWorkflowDownward: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconWorkflowDownward;
@@ -0,0 +1,34 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconWorkflowDownwardComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-workflow_downward").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 14 14" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M9.97 4.72a.75.75 0 1 1 1.06 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 1 1 1.06-1.06L7 7.69l2.97-2.97Z" }));
32
+ }
33
+ var IconWorkflowDownward = React.forwardRef(IconWorkflowDownwardComponent);
34
+ export default IconWorkflowDownward;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconWorkflowEditor: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconWorkflowEditor;
@@ -0,0 +1,34 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconWorkflowEditorComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-workflow_editor").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M10.842 2.38a1.267 1.267 0 0 0-1.79 0L3.264 8.167a.933.933 0 0 0-.274.66v1.813c0 .53.43.96.96.96h1.813a.933.933 0 0 0 .66-.274L12.21 5.54a1.267 1.267 0 0 0 0-1.791L10.842 2.38Zm-.942.85a.067.067 0 0 1 .094 0l1.368 1.368a.067.067 0 0 1 0 .094L5.654 10.4H4.19V8.937L9.9 3.23ZM3 13.067a.6.6 0 1 0 0 1.2h10a.6.6 0 0 0 0-1.2H3Z", clipRule: "evenodd" }));
32
+ }
33
+ var IconWorkflowEditor = React.forwardRef(IconWorkflowEditorComponent);
34
+ export default IconWorkflowEditor;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconWorkflowMore: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconWorkflowMore;
@@ -0,0 +1,34 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconWorkflowMoreComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-workflow_more").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 18 18" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M3.554 7.875a.5.5 0 0 0-.5.5v1.25a.5.5 0 0 0 .5.5h1.25a.5.5 0 0 0 .5-.5v-1.25a.5.5 0 0 0-.5-.5h-1.25Zm4.821 0a.5.5 0 0 0-.5.5v1.25a.5.5 0 0 0 .5.5h1.25a.5.5 0 0 0 .5-.5v-1.25a.5.5 0 0 0-.5-.5h-1.25Zm4.821 0a.5.5 0 0 0-.5.5v1.25a.5.5 0 0 0 .5.5h1.25a.5.5 0 0 0 .5-.5v-1.25a.5.5 0 0 0-.5-.5h-1.25Z", clipRule: "evenodd" }));
32
+ }
33
+ var IconWorkflowMore = React.forwardRef(IconWorkflowMoreComponent);
34
+ export default IconWorkflowMore;