@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
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconUploadingOfdComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-uploading-ofd").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 }),
56
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FB0', 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" }),
57
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M22.044 18.831a1.059 1.059 0 0 1 .744.299 1.038 1.038 0 0 1 .312.738 1.032 1.032 0 0 1-.654.962 1.054 1.054 0 0 1-.402.074l-3.389.001a1.053 1.053 0 0 1-.73-.307 1.033 1.033 0 0 1 0-1.46c.193-.194.456-.304.73-.307h3.39Zm.326 1.814a.882.882 0 0 1-.083.028l.005-.001.078-.027Zm.464-.454a.831.831 0 0 1-.048.094c.004-.006.01-.013.013-.02l.035-.075Zm.066-.323-.001.026v-.026Zm-.066-.322c.01.025.021.05.03.077l-.03-.077Zm-.464-.454a.863.863 0 0 1 .091.044l-.013-.009-.078-.035Z", opacity: ".7" }),
58
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M19.506 12.3c.275.003.538.114.732.307a1.032 1.032 0 0 1 0 1.46 1.051 1.051 0 0 1-.732.307h-.002c-.62 0-1.216.245-1.655.679a2.299 2.299 0 0 0-.684 1.633v6.029c0 .937-.305 1.85-.867 2.603a4.433 4.433 0 0 1-2.256 1.586 4.478 4.478 0 0 1-2.767-.047 4.43 4.43 0 0 1-2.2-1.665 4.354 4.354 0 0 1 .183-5.203 4.438 4.438 0 0 1 2.31-1.509 4.479 4.479 0 0 1 2.764.143 1.044 1.044 0 0 1 .671.943 1.03 1.03 0 0 1-.29.743 1.048 1.048 0 0 1-1.135.249 2.366 2.366 0 0 0-1.444-.08 2.345 2.345 0 0 0-1.215.774 2.298 2.298 0 0 0-.156 2.71c.267.41.658.728 1.118.905.46.178.966.207 1.444.083a2.344 2.344 0 0 0 1.216-.771c.312-.376.495-.838.526-1.322l.005-.142v-6.197c0-.04.003-.08.009-.12l.018-.208a4.371 4.371 0 0 1 1.376-2.707 4.46 4.46 0 0 1 3.03-1.183h.001Zm-5.008 12.217c.069-.067.136-.136.198-.21l-.134.148c-.02.021-.043.041-.064.062Zm-5.966-1.29a4.142 4.142 0 0 1-.03-.659l.001.334c.005.11.015.218.029.326Zm2.006-1.778c-.016.026-.029.054-.043.08a1.96 1.96 0 0 1 .056-.1l-.013.02Zm6.073-7.82-.144.14a4.164 4.164 0 0 0 .144-.14Z" }),
59
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFDD80', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
60
+ }
61
+ var IconUploadingOfd = react_1.default.forwardRef(IconUploadingOfdComponent);
62
+ exports.default = IconUploadingOfd;
@@ -52,17 +52,12 @@ function IconUploadingPdfComponent(props, ref) {
52
52
  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"]);
53
53
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
54
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
- return react_1.default.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 }),
56
- react_1.default.createElement("g", null,
57
- react_1.default.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" }),
58
- react_1.default.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" }),
59
- react_1.default.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" }),
60
- react_1.default.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" }),
61
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M13.5 1.5 21 9h-4.5a3 3 0 0 1-3-3V1.5Z", opacity: ".4" })),
62
- react_1.default.createElement("defs", null,
63
- react_1.default.createElement("linearGradient", { id: "svg_b3224be663__a", x1: "6.215", x2: "19.374", y1: "17.819", y2: "17.819", gradientUnits: "userSpaceOnUse" },
64
- react_1.default.createElement("stop", { stopColor: "#FFE4E4" }),
65
- react_1.default.createElement("stop", { offset: "1", stopColor: "#F1BDBC" }))));
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.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" }),
60
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFB0BF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
66
61
  }
67
62
  var IconUploadingPdf = react_1.default.forwardRef(IconUploadingPdfComponent);
68
63
  exports.default = IconUploadingPdf;
@@ -52,33 +52,12 @@ function IconUploadingPngComponent(props, ref) {
52
52
  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"]);
53
53
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
54
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
- return react_1.default.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 }),
56
- react_1.default.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" }),
57
- react_1.default.createElement("g", { opacity: ".5" },
58
- react_1.default.createElement("mask", { id: "svg_82d8c3d948__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
59
- react_1.default.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" })),
60
- react_1.default.createElement("g", { mask: "url(#svg_82d8c3d948__a)" },
61
- react_1.default.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" }))),
62
- react_1.default.createElement("g", { filter: "url(#svg_82d8c3d948__svg_bff139fa05__b)" },
63
- react_1.default.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" }),
64
- react_1.default.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" }),
65
- react_1.default.createElement("circle", { cx: "7.252", cy: "7.2", r: "1.4", fill: useCurrentColor ? 'currentColor' : '#fff', opacity: ".4" })),
66
- react_1.default.createElement("defs", null,
67
- react_1.default.createElement("linearGradient", { id: "svg_82d8c3d948__svg_bff139fa05__c", x1: "9.78", x2: "4.856", y1: "15.6", y2: "15.6", gradientUnits: "userSpaceOnUse" },
68
- react_1.default.createElement("stop", { stopColor: "#fff", stopOpacity: ".3" }),
69
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff" })),
70
- react_1.default.createElement("linearGradient", { id: "svg_82d8c3d948__svg_bff139fa05__d", x1: "11.352", x2: "11.352", y1: "8.6", y2: "15.6", gradientUnits: "userSpaceOnUse" },
71
- react_1.default.createElement("stop", { stopColor: "#fff", stopOpacity: ".4" }),
72
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff" })),
73
- react_1.default.createElement("filter", { id: "svg_82d8c3d948__svg_bff139fa05__b", width: "11.383", height: "11.8", x: "4.16", y: "5.8", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
74
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
75
- react_1.default.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" }),
76
- react_1.default.createElement("feOffset", { dy: "1" }),
77
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
78
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
79
- react_1.default.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" }),
80
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1840_22939" }),
81
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1840_22939", result: "shape" }))));
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.createElement("circle", { cx: "11.603", cy: "11.52", r: "2.24", fill: useCurrentColor ? 'currentColor' : '#fff', opacity: ".8" }),
60
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#BBC1ED', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
82
61
  }
83
62
  var IconUploadingPng = react_1.default.forwardRef(IconUploadingPngComponent);
84
63
  exports.default = IconUploadingPng;
@@ -53,41 +53,10 @@ function IconUploadingPptComponent(props, ref) {
53
53
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
54
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
55
  return react_1.default.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 }),
56
- react_1.default.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" }),
57
- react_1.default.createElement("g", { filter: "url(#svg_8fc684f11f__a)" },
58
- react_1.default.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" })),
59
- react_1.default.createElement("g", { filter: "url(#svg_8fc684f11f__svg_8a267223a8__c)" },
60
- react_1.default.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" })),
61
- react_1.default.createElement("g", { opacity: ".5" },
62
- react_1.default.createElement("mask", { id: "svg_8fc684f11f__a", width: "10", height: "10", x: "18", y: "2", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
63
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" })),
64
- react_1.default.createElement("g", { mask: "url(#svg_8fc684f11f__a)" },
65
- react_1.default.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" }))),
66
- react_1.default.createElement("defs", null,
67
- react_1.default.createElement("linearGradient", { id: "svg_8fc684f11f__svg_8a267223a8__b", x1: "10.8", x2: "10.8", y1: "20", y2: "26", gradientUnits: "userSpaceOnUse" },
68
- react_1.default.createElement("stop", { stopColor: "#fff" }),
69
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".3" })),
70
- react_1.default.createElement("linearGradient", { id: "svg_8fc684f11f__svg_8a267223a8__d", x1: "15.952", x2: "15.952", y1: "13.6", y2: "23.008", gradientUnits: "userSpaceOnUse" },
71
- react_1.default.createElement("stop", { stopColor: "#fff" }),
72
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".4" })),
73
- react_1.default.createElement("filter", { id: "svg_8fc684f11f__svg_8a267223a8__a", width: "5.2", height: "8", x: "8.6", y: "20", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
74
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
75
- react_1.default.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" }),
76
- react_1.default.createElement("feOffset", { dy: "1" }),
77
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
78
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
79
- react_1.default.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" }),
80
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1830_145040" }),
81
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1830_145040", result: "shape" })),
82
- react_1.default.createElement("filter", { id: "svg_8fc684f11f__svg_8a267223a8__c", width: "14.704", height: "11.408", x: "8.6", y: "13.6", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
83
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
84
- react_1.default.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" }),
85
- react_1.default.createElement("feOffset", { dy: "1" }),
86
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
87
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
88
- react_1.default.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" }),
89
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1830_145040" }),
90
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1830_145040", result: "shape" }))));
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFC6A3', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
91
60
  }
92
61
  var IconUploadingPpt = react_1.default.forwardRef(IconUploadingPptComponent);
93
62
  exports.default = IconUploadingPpt;
@@ -52,19 +52,11 @@ function IconUploadingTxtComponent(props, ref) {
52
52
  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"]);
53
53
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
54
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
- return react_1.default.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 }),
56
- react_1.default.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" }),
57
- react_1.default.createElement("g", { opacity: ".5" },
58
- react_1.default.createElement("mask", { id: "svg_eb86c923de__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
59
- react_1.default.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" })),
60
- react_1.default.createElement("g", { mask: "url(#svg_eb86c923de__a)" },
61
- react_1.default.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" }))),
62
- react_1.default.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" }),
63
- react_1.default.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" }),
64
- react_1.default.createElement("defs", null,
65
- react_1.default.createElement("linearGradient", { id: "svg_eb86c923de__svg_c7824f3d4d__b", x1: "10", x2: "10", y1: "16.328", y2: "9.828", gradientUnits: "userSpaceOnUse" },
66
- react_1.default.createElement("stop", { stopColor: "#fff" }),
67
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".3" }))));
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#C7D1E3', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
68
60
  }
69
61
  var IconUploadingTxt = react_1.default.forwardRef(IconUploadingTxtComponent);
70
62
  exports.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,62 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconUploadingWpsComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FFB0BF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
60
+ }
61
+ var IconUploadingWps = react_1.default.forwardRef(IconUploadingWpsComponent);
62
+ exports.default = IconUploadingWps;
@@ -52,39 +52,11 @@ function IconUploadingXlsxComponent(props, ref) {
52
52
  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"]);
53
53
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
54
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
- return react_1.default.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 }),
56
- react_1.default.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" }),
57
- react_1.default.createElement("g", { opacity: ".5" },
58
- react_1.default.createElement("mask", { id: "svg_3a6916ea63__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
59
- react_1.default.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" })),
60
- react_1.default.createElement("g", { mask: "url(#svg_3a6916ea63__a)" },
61
- react_1.default.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" }))),
62
- react_1.default.createElement("g", { filter: "url(#svg_3a6916ea63__svg_c818196b07__b)", opacity: ".9" },
63
- react_1.default.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" })),
64
- react_1.default.createElement("g", { filter: "url(#svg_3a6916ea63__svg_c818196b07__c)" },
65
- react_1.default.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" })),
66
- react_1.default.createElement("defs", null,
67
- react_1.default.createElement("filter", { id: "svg_3a6916ea63__svg_c818196b07__b", width: "8.801", height: "8.8", x: "5.6", y: "8.95", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
68
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
69
- react_1.default.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" }),
70
- react_1.default.createElement("feOffset", { dy: "1" }),
71
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
72
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
73
- react_1.default.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" }),
74
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1280_29706" }),
75
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1280_29706", result: "shape" })),
76
- react_1.default.createElement("filter", { id: "svg_3a6916ea63__svg_c818196b07__c", width: "8.801", height: "8.8", x: "5.6", y: "8.95", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
77
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
78
- react_1.default.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" }),
79
- react_1.default.createElement("feOffset", { dy: "1" }),
80
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
81
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
82
- react_1.default.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" }),
83
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_1280_29706" }),
84
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_1280_29706", result: "shape" })),
85
- react_1.default.createElement("linearGradient", { id: "svg_3a6916ea63__svg_c818196b07__d", x1: "13.606", x2: "6.394", y1: "8.692", y2: "15.905", gradientUnits: "userSpaceOnUse" },
86
- react_1.default.createElement("stop", { stopColor: "#fff", stopOpacity: ".4" }),
87
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff" }))));
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#95DFBE', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
88
60
  }
89
61
  var IconUploadingXlsx = react_1.default.forwardRef(IconUploadingXlsxComponent);
90
62
  exports.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,59 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconWorkflowCloseComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }));
57
+ }
58
+ var IconWorkflowClose = react_1.default.forwardRef(IconWorkflowCloseComponent);
59
+ exports.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,59 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconWorkflowDownwardComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }));
57
+ }
58
+ var IconWorkflowDownward = react_1.default.forwardRef(IconWorkflowDownwardComponent);
59
+ exports.default = IconWorkflowDownward;