@arco-iconbox/react-hiagent 0.3.11 → 0.3.13

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 (58) hide show
  1. package/cjs/IconAiTest/index.d.ts +4 -0
  2. package/cjs/IconAiTest/index.js +64 -0
  3. package/cjs/IconArrangementKnDownload/index.d.ts +4 -0
  4. package/cjs/IconArrangementKnDownload/index.js +59 -0
  5. package/cjs/IconDiffReport/index.d.ts +4 -0
  6. package/cjs/IconDiffReport/index.js +59 -0
  7. package/cjs/IconDynamicDecisionMaking/index.d.ts +4 -0
  8. package/cjs/IconDynamicDecisionMaking/index.js +63 -0
  9. package/cjs/IconEditNew/index.d.ts +4 -0
  10. package/cjs/IconEditNew/index.js +59 -0
  11. package/cjs/IconHandTap/index.d.ts +4 -0
  12. package/cjs/IconHandTap/index.js +59 -0
  13. package/cjs/IconWorkflowWaiting/index.d.ts +4 -0
  14. package/cjs/IconWorkflowWaiting/index.js +60 -0
  15. package/cjs/index.d.ts +7 -0
  16. package/cjs/index.js +15 -1
  17. package/dist/icon.min.js +1 -1
  18. package/esm/IconAiTest/index.d.ts +4 -0
  19. package/esm/IconAiTest/index.js +39 -0
  20. package/esm/IconArrangementKnDownload/index.d.ts +4 -0
  21. package/esm/IconArrangementKnDownload/index.js +34 -0
  22. package/esm/IconDiffReport/index.d.ts +4 -0
  23. package/esm/IconDiffReport/index.js +34 -0
  24. package/esm/IconDynamicDecisionMaking/index.d.ts +4 -0
  25. package/esm/IconDynamicDecisionMaking/index.js +38 -0
  26. package/esm/IconEditNew/index.d.ts +4 -0
  27. package/esm/IconEditNew/index.js +34 -0
  28. package/esm/IconHandTap/index.d.ts +4 -0
  29. package/esm/IconHandTap/index.js +34 -0
  30. package/esm/IconWorkflowWaiting/index.d.ts +4 -0
  31. package/esm/IconWorkflowWaiting/index.js +35 -0
  32. package/esm/index.d.ts +7 -0
  33. package/esm/index.js +7 -0
  34. package/package.json +1 -1
  35. package/src/IconAiTest/index.tsx +15 -0
  36. package/src/IconArrangementKnDownload/index.tsx +15 -0
  37. package/src/IconDiffReport/index.tsx +15 -0
  38. package/src/IconDynamicDecisionMaking/index.tsx +15 -0
  39. package/src/IconEditNew/index.tsx +15 -0
  40. package/src/IconHandTap/index.tsx +15 -0
  41. package/src/IconWorkflowWaiting/index.tsx +15 -0
  42. package/src/index.ts +7 -0
  43. package/umd/IconAiTest/index.d.ts +4 -0
  44. package/umd/IconAiTest/index.js +74 -0
  45. package/umd/IconArrangementKnDownload/index.d.ts +4 -0
  46. package/umd/IconArrangementKnDownload/index.js +69 -0
  47. package/umd/IconDiffReport/index.d.ts +4 -0
  48. package/umd/IconDiffReport/index.js +69 -0
  49. package/umd/IconDynamicDecisionMaking/index.d.ts +4 -0
  50. package/umd/IconDynamicDecisionMaking/index.js +73 -0
  51. package/umd/IconEditNew/index.d.ts +4 -0
  52. package/umd/IconEditNew/index.js +69 -0
  53. package/umd/IconHandTap/index.d.ts +4 -0
  54. package/umd/IconHandTap/index.js +69 -0
  55. package/umd/IconWorkflowWaiting/index.d.ts +4 -0
  56. package/umd/IconWorkflowWaiting/index.js +70 -0
  57. package/umd/index.d.ts +7 -0
  58. package/umd/index.js +16 -2
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAiTest: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAiTest;
@@ -0,0 +1,39 @@
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 IconAiTestComponent(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-ai_test").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 40 40", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M27.5175 4.34766C28.0695 4.3479 28.5173 4.79573 28.5175 5.34766V6.47852C28.5175 7.03064 28.0696 7.47827 27.5175 7.47852H25.8369V12.7539L35.2207 29.959C36.5718 32.4361 34.975 35.6523 32.1533 35.6523H8.3681C5.54644 35.6523 3.55799 32.4361 4.90911 29.959L7.96771 24.3506C8.65022 23.0997 10.1303 22.6987 11.3251 23.1602C11.3987 23.1886 11.4707 23.216 11.541 23.2432C13.1468 23.8638 13.9117 24.1601 14.6787 24.2012C15.3917 24.2393 16.2306 24.0486 17.9326 23.209C19.7994 22.288 21.4225 21.8124 23.0107 21.8457C24.2917 21.8726 25.4471 22.2291 26.5869 22.792C27.0717 23.0317 27.2367 23.6306 26.9795 24.1064L26.5527 24.8975C26.2846 25.3932 25.6624 25.562 25.1543 25.3184C24.3587 24.937 23.6647 24.7366 22.9531 24.7217C21.9706 24.7011 20.7991 24.9864 19.1445 25.8027C17.3253 26.7002 15.9656 27.1498 14.5331 27.0732C13.3095 27.0078 12.3115 26.7172 10.9374 26.1826C9.77676 25.731 7.85849 30.7995 7.54193 31.3594C7.18663 32.0111 7.54407 32.5215 8.17279 32.5215H31.958C32.7003 32.5213 33 31.8471 32.6445 31.1953L23.124 14.04C22.9139 13.6549 22.8046 13.2228 22.8046 12.7842V7.47852H17.3261V12.7842C17.3261 13.2227 17.2158 13.6541 17.0058 14.0391L13.8984 20.2109C13.6365 20.7306 12.9877 20.9174 12.4892 20.6172L11.4394 19.9854C10.9805 19.709 10.8206 19.1197 11.0771 18.6494L14.2939 12.7539V7.47852H12.6132C12.0609 7.47852 11.6132 7.03078 11.6132 6.47852V5.34766C11.6135 4.79558 12.0611 4.34766 12.6132 4.34766H27.5175ZM32.1836 8.23047C32.3927 7.42304 33.5379 7.42022 33.7509 8.22656L33.9629 9.02734C34.2605 10.1553 35.1415 11.0363 36.2695 11.334L37.0703 11.5459C37.8768 11.7589 37.8739 12.9042 37.0664 13.1133L36.2793 13.3174C35.1446 13.6111 34.2571 14.4946 33.958 15.6279L33.7509 16.4111C33.538 17.2176 32.3926 17.2147 32.1836 16.4072L31.9843 15.6377C31.6892 14.4979 30.7989 13.6076 29.6591 13.3125L28.8896 13.1133C28.0822 12.9042 28.0794 11.7589 28.8857 11.5459L29.6689 11.3389C30.8022 11.0398 31.6858 10.1523 31.9795 9.01758L32.1836 8.23047Z" }),
32
+ React.createElement("defs", null,
33
+ React.createElement("linearGradient", { id: "svg_dd04af4af9__paint0_linear_2418_15291", x1: "4.476", y1: "35.652", x2: "37.674", y2: "35.652", gradientUnits: "userSpaceOnUse" },
34
+ React.createElement("stop", { offset: ".01", stopColor: "#3B91FF" }),
35
+ React.createElement("stop", { offset: ".4", stopColor: "#0D5EFF" }),
36
+ React.createElement("stop", { offset: ".995", stopColor: "#C069FF" }))));
37
+ }
38
+ var IconAiTest = React.forwardRef(IconAiTestComponent);
39
+ export default IconAiTest;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconArrangementKnDownload: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconArrangementKnDownload;
@@ -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 IconArrangementKnDownloadComponent(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-arrangement-kn-download").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 18 18" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#50A3EF', d: "M10.625 1.575c.656 0 1.286.26 1.75.725l2.32 2.32a2.48 2.48 0 0 1 .725 1.75v7.58a2.475 2.475 0 0 1-2.475 2.475h-7.9A2.475 2.475 0 0 1 2.57 13.95v-9.9a2.475 2.475 0 0 1 2.475-2.475h5.58Zm-1.7 4.5a.675.675 0 0 0-.675.675v3.621L7.153 9.272a.675.675 0 1 0-.954.955l2.25 2.25c.263.264.69.264.954 0l2.25-2.25a.676.676 0 0 0-.954-.955L9.6 10.37V6.75a.675.675 0 0 0-.677-.674Z" }));
32
+ }
33
+ var IconArrangementKnDownload = React.forwardRef(IconArrangementKnDownloadComponent);
34
+ export default IconArrangementKnDownload;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconDiffReport: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconDiffReport;
@@ -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 IconDiffReportComponent(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-diff_report").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.31461 1.70736C8.31461 1.3164 7.99764 0.999466 7.60672 0.999466C7.21573 0.999466 6.89883 1.3164 6.89883 1.70736V1.78601H3.67414C2.41439 1.78601 1.39316 2.80724 1.39316 4.067V11.6178C1.39316 12.8776 2.41439 13.8988 3.67414 13.8988H6.89883V14.2921C6.89883 14.6831 7.21573 15 7.60672 15C7.99764 15 8.31461 14.6831 8.31461 14.2921V1.70736ZM3.67414 3.2018C3.1963 3.2018 2.80894 3.58916 2.80894 4.067V11.6178C2.80894 12.0957 3.1963 12.483 3.67414 12.483H6.74168V3.2018H3.67414ZM12.326 12.7983C12.8038 12.7983 13.1912 12.4109 13.1912 11.9331V4.06761C13.1912 3.58978 12.8038 3.20241 12.326 3.20241H9.96636C9.57537 3.20241 9.25847 2.88548 9.25847 2.49452C9.25847 2.10356 9.57537 1.78663 9.96636 1.78663H12.326C13.5857 1.78663 14.607 2.80786 14.607 4.06761V11.9331C14.607 13.1928 13.5857 14.2141 12.326 14.2141H9.96636C9.57537 14.2141 9.25847 13.8971 9.25847 13.5062C9.25847 13.1152 9.57537 12.7983 9.96636 12.7983H12.326Z" }));
32
+ }
33
+ var IconDiffReport = React.forwardRef(IconDiffReportComponent);
34
+ export default IconDiffReport;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconDynamicDecisionMaking: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconDynamicDecisionMaking;
@@ -0,0 +1,38 @@
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 IconDynamicDecisionMakingComponent(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-dynamic-decision-making").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("g", { clipPath: "url(#svg_128d199c52__clip0_2418_15298)" },
32
+ React.createElement("path", { d: "M14.0566 7.71387C14.1173 7.65073 14.2156 7.65084 14.2764 7.71387L15.9697 9.48145C16.0102 9.52368 16.0101 9.59247 15.9697 9.63477C15.9503 9.65502 15.9239 9.66694 15.8965 9.66699H14.8008C14.053 12.7282 11.2916 15 8 15C4.70842 15 1.947 12.7282 1.19922 9.66699H2.58203C3.29381 11.9831 5.45049 13.667 8 13.667C10.5495 13.667 12.7062 11.9831 13.418 9.66699H12.4375C12.3803 9.66699 12.3331 9.6183 12.333 9.55859C12.333 9.52988 12.3438 9.50175 12.3633 9.48145L14.0566 7.71387ZM7.76465 5C7.89478 4.87006 8.10522 4.87006 8.23535 5L10.5928 7.35742C10.7227 7.48756 10.7227 7.69801 10.5928 7.82812L10.1211 8.2998C9.99099 8.4298 9.78055 8.42972 9.65039 8.2998L8.6709 7.32031V10.7646C8.67071 10.9485 8.52179 11.0976 8.33789 11.0977H7.6709C7.48699 11.0976 7.33808 10.9485 7.33789 10.7646V7.31152L6.34961 8.2998C6.21945 8.42972 6.00901 8.42981 5.87891 8.2998L5.40723 7.82812C5.2773 7.69801 5.27733 7.48756 5.40723 7.35742L7.76465 5ZM3.5625 6.33301C3.59001 6.33301 3.61727 6.34493 3.63672 6.36523C3.67117 6.40149 3.67609 6.45738 3.65137 6.49902L3.63672 6.51855L1.94336 8.28613C1.89027 8.34139 1.80834 8.34804 1.74805 8.30664L1.72363 8.28613L0.0302734 6.51855C0.0108242 6.49825 0 6.47012 0 6.44141C9.17717e-05 6.39024 0.0343238 6.34714 0.0800781 6.33594L0.103516 6.33301H1.19922C1.947 3.27177 4.70842 1 8 1C11.2916 1 14.053 3.27177 14.8008 6.33301H13.418C12.7062 4.01688 10.5495 2.33301 8 2.33301C5.45049 2.33301 3.29381 4.01688 2.58203 6.33301H3.5625Z" })),
33
+ React.createElement("defs", null,
34
+ React.createElement("clipPath", { id: "svg_128d199c52__clip0_2418_15298" },
35
+ React.createElement("path", { d: "M0 0H16V16H0z" }))));
36
+ }
37
+ var IconDynamicDecisionMaking = React.forwardRef(IconDynamicDecisionMakingComponent);
38
+ export default IconDynamicDecisionMaking;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconEditNew: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconEditNew;
@@ -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 IconEditNewComponent(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-edit_new").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 24 24", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.2636 3.57066C15.5216 2.82866 14.3185 2.82866 13.5765 3.57066L4.89677 12.2504C4.63422 12.513 4.48672 12.8691 4.48672 13.2404V15.9603C4.48672 16.7554 5.13129 17.3999 5.9264 17.3999H8.64628C9.01758 17.3999 9.37367 17.2524 9.63623 16.9899L18.316 8.31012C19.058 7.56812 19.058 6.36511 18.316 5.62311L16.2636 3.57066ZM14.8493 4.84345C14.8884 4.8044 14.9517 4.8044 14.9908 4.84345L17.0432 6.8959C17.0823 6.93496 17.0823 6.99827 17.0432 7.03732L8.48059 15.5999H6.28672V13.4061L14.8493 4.84345ZM4.5 19.5999C4.00294 19.5999 3.6 20.0029 3.6 20.4999C3.6 20.997 4.00294 21.3999 4.5 21.3999H19.5C19.9971 21.3999 20.4 20.997 20.4 20.4999C20.4 20.0029 19.9971 19.5999 19.5 19.5999H4.5Z" }));
32
+ }
33
+ var IconEditNew = React.forwardRef(IconEditNewComponent);
34
+ export default IconEditNew;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconHandTap: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconHandTap;
@@ -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 IconHandTapComponent(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-hand_tap").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 40 40", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M23.6513 6.51186C23.0656 5.92608 23.0656 4.97633 23.6513 4.39054L25.4191 2.62278C26.0049 2.037 26.9546 2.037 27.5404 2.62278C28.1263 3.20856 28.1263 4.15831 27.5404 4.74409L25.7726 6.51186C25.1869 7.09766 24.2371 7.09766 23.6513 6.51186ZM18.1616 10.1001C17.2581 10.1001 16.5257 10.8325 16.5257 11.736V24.2708C16.5257 24.8455 16.1786 25.3632 15.647 25.5815C15.1153 25.7997 14.5046 25.675 14.1009 25.2662L12.723 23.8703C12.0279 23.1662 10.9299 23.1062 10.1655 23.7255C9.46129 24.2963 9.28354 25.2208 9.67247 25.9283C11.0226 28.3842 13.2812 31.8438 16.1292 34.0348C17.2841 34.9233 18.8553 35.25 20.6286 35.25H25.9234C28.8229 35.25 31.1734 32.8995 31.1734 30V27.9143V25.3962C31.1734 24.557 30.6276 23.8155 29.8264 23.566L20.7929 20.7537C20.2008 20.5693 19.7974 20.0212 19.7974 19.401V11.736C19.7974 10.8325 19.0651 10.1001 18.1616 10.1001ZM18.1616 7.26678C20.6298 7.26678 22.6308 9.26769 22.6308 11.736V18.3583L30.6686 20.8608C32.6541 21.479 34.0068 23.3167 34.0068 25.3962V27.9143V30C34.0068 34.4643 30.3876 38.0833 25.9234 38.0833H20.6286C18.5833 38.0833 16.2731 37.7203 14.4015 36.2805C11.0802 33.7253 8.59339 29.8467 7.18966 27.2933C6.08956 25.2925 6.69617 22.8902 8.38161 21.5243C9.92926 20.2702 12.0363 20.1412 13.6924 21.0775V11.736C13.6924 9.26769 15.6933 7.26678 18.1616 7.26678ZM26.3786 10.517C25.5503 10.517 24.8786 11.1885 24.8786 12.017C24.8786 12.8454 25.5503 13.517 26.3786 13.517H28.8786C29.7071 13.517 30.3786 12.8454 30.3786 12.017C30.3786 11.1885 29.7071 10.517 28.8786 10.517H26.3786ZM12.6375 6.51186C13.2233 5.92608 13.2233 4.97633 12.6375 4.39054L10.8697 2.62278C10.2839 2.037 9.33419 2.037 8.74841 2.62278C8.16261 3.20856 8.16261 4.15831 8.74841 4.74409L10.5162 6.51186C11.102 7.09766 12.0517 7.09766 12.6375 6.51186ZM9.91016 10.517C10.7386 10.517 11.4102 11.1885 11.4102 12.017C11.4102 12.8454 10.7386 13.517 9.91016 13.517H7.41016C6.58174 13.517 5.91016 12.8454 5.91016 12.017C5.91016 11.1885 6.58174 10.517 7.41016 10.517H9.91016Z" }));
32
+ }
33
+ var IconHandTap = React.forwardRef(IconHandTapComponent);
34
+ export default IconHandTap;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconWorkflowWaiting: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconWorkflowWaiting;
@@ -0,0 +1,35 @@
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 IconWorkflowWaitingComponent(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-workflow_waiting").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("rect", { width: "20", height: "20", fill: useCurrentColor ? 'currentColor' : '#F6BB45', rx: "6" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M16.222 10a6.222 6.222 0 1 1-12.444 0 6.222 6.222 0 0 1 12.444 0Zm-3.11.835v-.692a.345.345 0 0 0-.345-.345h-2.552V7.233a.345.345 0 0 0-.345-.344h-.69a.345.345 0 0 0-.346.345v3.6c0 .085.031.167.087.23l.03.029.031.025a.346.346 0 0 0 .198.063h3.588a.345.345 0 0 0 .346-.346Z", clipRule: "evenodd" }));
33
+ }
34
+ var IconWorkflowWaiting = React.forwardRef(IconWorkflowWaitingComponent);
35
+ export default IconWorkflowWaiting;
package/esm/index.d.ts CHANGED
@@ -874,4 +874,11 @@ export { default as IconAlertAI } from './IconAlertAI';
874
874
  export { default as IconTraceAI } from './IconTraceAI';
875
875
  export { default as IconPluginOutlined } from './IconPluginOutlined';
876
876
  export { default as IconLanguageAiOutlined } from './IconLanguageAiOutlined';
877
+ export { default as IconDynamicDecisionMaking } from './IconDynamicDecisionMaking';
878
+ export { default as IconHandTap } from './IconHandTap';
879
+ export { default as IconAiTest } from './IconAiTest';
880
+ export { default as IconDiffReport } from './IconDiffReport';
881
+ export { default as IconWorkflowWaiting } from './IconWorkflowWaiting';
882
+ export { default as IconEditNew } from './IconEditNew';
883
+ export { default as IconArrangementKnDownload } from './IconArrangementKnDownload';
877
884
  export * from './type';
package/esm/index.js CHANGED
@@ -874,4 +874,11 @@ export { default as IconAlertAI } from './IconAlertAI';
874
874
  export { default as IconTraceAI } from './IconTraceAI';
875
875
  export { default as IconPluginOutlined } from './IconPluginOutlined';
876
876
  export { default as IconLanguageAiOutlined } from './IconLanguageAiOutlined';
877
+ export { default as IconDynamicDecisionMaking } from './IconDynamicDecisionMaking';
878
+ export { default as IconHandTap } from './IconHandTap';
879
+ export { default as IconAiTest } from './IconAiTest';
880
+ export { default as IconDiffReport } from './IconDiffReport';
881
+ export { default as IconWorkflowWaiting } from './IconWorkflowWaiting';
882
+ export { default as IconEditNew } from './IconEditNew';
883
+ export { default as IconArrangementKnDownload } from './IconArrangementKnDownload';
877
884
  export * from './type';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/react-hiagent",
3
- "version": "0.3.11",
3
+ "version": "0.3.13",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "license": "ISC",
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconAiTestComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-ai_test${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 40 40" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M27.5175 4.34766C28.0695 4.3479 28.5173 4.79573 28.5175 5.34766V6.47852C28.5175 7.03064 28.0696 7.47827 27.5175 7.47852H25.8369V12.7539L35.2207 29.959C36.5718 32.4361 34.975 35.6523 32.1533 35.6523H8.3681C5.54644 35.6523 3.55799 32.4361 4.90911 29.959L7.96771 24.3506C8.65022 23.0997 10.1303 22.6987 11.3251 23.1602C11.3987 23.1886 11.4707 23.216 11.541 23.2432C13.1468 23.8638 13.9117 24.1601 14.6787 24.2012C15.3917 24.2393 16.2306 24.0486 17.9326 23.209C19.7994 22.288 21.4225 21.8124 23.0107 21.8457C24.2917 21.8726 25.4471 22.2291 26.5869 22.792C27.0717 23.0317 27.2367 23.6306 26.9795 24.1064L26.5527 24.8975C26.2846 25.3932 25.6624 25.562 25.1543 25.3184C24.3587 24.937 23.6647 24.7366 22.9531 24.7217C21.9706 24.7011 20.7991 24.9864 19.1445 25.8027C17.3253 26.7002 15.9656 27.1498 14.5331 27.0732C13.3095 27.0078 12.3115 26.7172 10.9374 26.1826C9.77676 25.731 7.85849 30.7995 7.54193 31.3594C7.18663 32.0111 7.54407 32.5215 8.17279 32.5215H31.958C32.7003 32.5213 33 31.8471 32.6445 31.1953L23.124 14.04C22.9139 13.6549 22.8046 13.2228 22.8046 12.7842V7.47852H17.3261V12.7842C17.3261 13.2227 17.2158 13.6541 17.0058 14.0391L13.8984 20.2109C13.6365 20.7306 12.9877 20.9174 12.4892 20.6172L11.4394 19.9854C10.9805 19.709 10.8206 19.1197 11.0771 18.6494L14.2939 12.7539V7.47852H12.6132C12.0609 7.47852 11.6132 7.03078 11.6132 6.47852V5.34766C11.6135 4.79558 12.0611 4.34766 12.6132 4.34766H27.5175ZM32.1836 8.23047C32.3927 7.42304 33.5379 7.42022 33.7509 8.22656L33.9629 9.02734C34.2605 10.1553 35.1415 11.0363 36.2695 11.334L37.0703 11.5459C37.8768 11.7589 37.8739 12.9042 37.0664 13.1133L36.2793 13.3174C35.1446 13.6111 34.2571 14.4946 33.958 15.6279L33.7509 16.4111C33.538 17.2176 32.3926 17.2147 32.1836 16.4072L31.9843 15.6377C31.6892 14.4979 30.7989 13.6076 29.6591 13.3125L28.8896 13.1133C28.0822 12.9042 28.0794 11.7589 28.8857 11.5459L29.6689 11.3389C30.8022 11.0398 31.6858 10.1523 31.9795 9.01758L32.1836 8.23047Z"/><defs><linearGradient id="svg_dd04af4af9__paint0_linear_2418_15291" x1="4.476" y1="35.652" x2="37.674" y2="35.652" gradientUnits="userSpaceOnUse"><stop offset=".01" stopColor="#3B91FF"/><stop offset=".4" stopColor="#0D5EFF"/><stop offset=".995" stopColor="#C069FF"/></linearGradient></defs></svg>;
12
+ }
13
+
14
+ const IconAiTest = React.forwardRef(IconAiTestComponent);
15
+ export default IconAiTest;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconArrangementKnDownloadComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-arrangement-kn-download${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 18 18" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#50A3EF'} d="M10.625 1.575c.656 0 1.286.26 1.75.725l2.32 2.32a2.48 2.48 0 0 1 .725 1.75v7.58a2.475 2.475 0 0 1-2.475 2.475h-7.9A2.475 2.475 0 0 1 2.57 13.95v-9.9a2.475 2.475 0 0 1 2.475-2.475h5.58Zm-1.7 4.5a.675.675 0 0 0-.675.675v3.621L7.153 9.272a.675.675 0 1 0-.954.955l2.25 2.25c.263.264.69.264.954 0l2.25-2.25a.676.676 0 0 0-.954-.955L9.6 10.37V6.75a.675.675 0 0 0-.677-.674Z"/></svg>;
12
+ }
13
+
14
+ const IconArrangementKnDownload = React.forwardRef(IconArrangementKnDownloadComponent);
15
+ export default IconArrangementKnDownload;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconDiffReportComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-diff_report${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 16 16" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path fillRule="evenodd" clipRule="evenodd" d="M8.31461 1.70736C8.31461 1.3164 7.99764 0.999466 7.60672 0.999466C7.21573 0.999466 6.89883 1.3164 6.89883 1.70736V1.78601H3.67414C2.41439 1.78601 1.39316 2.80724 1.39316 4.067V11.6178C1.39316 12.8776 2.41439 13.8988 3.67414 13.8988H6.89883V14.2921C6.89883 14.6831 7.21573 15 7.60672 15C7.99764 15 8.31461 14.6831 8.31461 14.2921V1.70736ZM3.67414 3.2018C3.1963 3.2018 2.80894 3.58916 2.80894 4.067V11.6178C2.80894 12.0957 3.1963 12.483 3.67414 12.483H6.74168V3.2018H3.67414ZM12.326 12.7983C12.8038 12.7983 13.1912 12.4109 13.1912 11.9331V4.06761C13.1912 3.58978 12.8038 3.20241 12.326 3.20241H9.96636C9.57537 3.20241 9.25847 2.88548 9.25847 2.49452C9.25847 2.10356 9.57537 1.78663 9.96636 1.78663H12.326C13.5857 1.78663 14.607 2.80786 14.607 4.06761V11.9331C14.607 13.1928 13.5857 14.2141 12.326 14.2141H9.96636C9.57537 14.2141 9.25847 13.8971 9.25847 13.5062C9.25847 13.1152 9.57537 12.7983 9.96636 12.7983H12.326Z"/></svg>;
12
+ }
13
+
14
+ const IconDiffReport = React.forwardRef(IconDiffReportComponent);
15
+ export default IconDiffReport;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconDynamicDecisionMakingComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-dynamic-decision-making${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 16 16" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><g clipPath="url(#svg_128d199c52__clip0_2418_15298)"><path d="M14.0566 7.71387C14.1173 7.65073 14.2156 7.65084 14.2764 7.71387L15.9697 9.48145C16.0102 9.52368 16.0101 9.59247 15.9697 9.63477C15.9503 9.65502 15.9239 9.66694 15.8965 9.66699H14.8008C14.053 12.7282 11.2916 15 8 15C4.70842 15 1.947 12.7282 1.19922 9.66699H2.58203C3.29381 11.9831 5.45049 13.667 8 13.667C10.5495 13.667 12.7062 11.9831 13.418 9.66699H12.4375C12.3803 9.66699 12.3331 9.6183 12.333 9.55859C12.333 9.52988 12.3438 9.50175 12.3633 9.48145L14.0566 7.71387ZM7.76465 5C7.89478 4.87006 8.10522 4.87006 8.23535 5L10.5928 7.35742C10.7227 7.48756 10.7227 7.69801 10.5928 7.82812L10.1211 8.2998C9.99099 8.4298 9.78055 8.42972 9.65039 8.2998L8.6709 7.32031V10.7646C8.67071 10.9485 8.52179 11.0976 8.33789 11.0977H7.6709C7.48699 11.0976 7.33808 10.9485 7.33789 10.7646V7.31152L6.34961 8.2998C6.21945 8.42972 6.00901 8.42981 5.87891 8.2998L5.40723 7.82812C5.2773 7.69801 5.27733 7.48756 5.40723 7.35742L7.76465 5ZM3.5625 6.33301C3.59001 6.33301 3.61727 6.34493 3.63672 6.36523C3.67117 6.40149 3.67609 6.45738 3.65137 6.49902L3.63672 6.51855L1.94336 8.28613C1.89027 8.34139 1.80834 8.34804 1.74805 8.30664L1.72363 8.28613L0.0302734 6.51855C0.0108242 6.49825 0 6.47012 0 6.44141C9.17717e-05 6.39024 0.0343238 6.34714 0.0800781 6.33594L0.103516 6.33301H1.19922C1.947 3.27177 4.70842 1 8 1C11.2916 1 14.053 3.27177 14.8008 6.33301H13.418C12.7062 4.01688 10.5495 2.33301 8 2.33301C5.45049 2.33301 3.29381 4.01688 2.58203 6.33301H3.5625Z"/></g><defs><clipPath id="svg_128d199c52__clip0_2418_15298"><path d="M0 0H16V16H0z"/></clipPath></defs></svg>;
12
+ }
13
+
14
+ const IconDynamicDecisionMaking = React.forwardRef(IconDynamicDecisionMakingComponent);
15
+ export default IconDynamicDecisionMaking;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconEditNewComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-edit_new${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 24 24" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path fillRule="evenodd" clipRule="evenodd" d="M16.2636 3.57066C15.5216 2.82866 14.3185 2.82866 13.5765 3.57066L4.89677 12.2504C4.63422 12.513 4.48672 12.8691 4.48672 13.2404V15.9603C4.48672 16.7554 5.13129 17.3999 5.9264 17.3999H8.64628C9.01758 17.3999 9.37367 17.2524 9.63623 16.9899L18.316 8.31012C19.058 7.56812 19.058 6.36511 18.316 5.62311L16.2636 3.57066ZM14.8493 4.84345C14.8884 4.8044 14.9517 4.8044 14.9908 4.84345L17.0432 6.8959C17.0823 6.93496 17.0823 6.99827 17.0432 7.03732L8.48059 15.5999H6.28672V13.4061L14.8493 4.84345ZM4.5 19.5999C4.00294 19.5999 3.6 20.0029 3.6 20.4999C3.6 20.997 4.00294 21.3999 4.5 21.3999H19.5C19.9971 21.3999 20.4 20.997 20.4 20.4999C20.4 20.0029 19.9971 19.5999 19.5 19.5999H4.5Z"/></svg>;
12
+ }
13
+
14
+ const IconEditNew = React.forwardRef(IconEditNewComponent);
15
+ export default IconEditNew;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconHandTapComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-hand_tap${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 40 40" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path fillRule="evenodd" clipRule="evenodd" d="M23.6513 6.51186C23.0656 5.92608 23.0656 4.97633 23.6513 4.39054L25.4191 2.62278C26.0049 2.037 26.9546 2.037 27.5404 2.62278C28.1263 3.20856 28.1263 4.15831 27.5404 4.74409L25.7726 6.51186C25.1869 7.09766 24.2371 7.09766 23.6513 6.51186ZM18.1616 10.1001C17.2581 10.1001 16.5257 10.8325 16.5257 11.736V24.2708C16.5257 24.8455 16.1786 25.3632 15.647 25.5815C15.1153 25.7997 14.5046 25.675 14.1009 25.2662L12.723 23.8703C12.0279 23.1662 10.9299 23.1062 10.1655 23.7255C9.46129 24.2963 9.28354 25.2208 9.67247 25.9283C11.0226 28.3842 13.2812 31.8438 16.1292 34.0348C17.2841 34.9233 18.8553 35.25 20.6286 35.25H25.9234C28.8229 35.25 31.1734 32.8995 31.1734 30V27.9143V25.3962C31.1734 24.557 30.6276 23.8155 29.8264 23.566L20.7929 20.7537C20.2008 20.5693 19.7974 20.0212 19.7974 19.401V11.736C19.7974 10.8325 19.0651 10.1001 18.1616 10.1001ZM18.1616 7.26678C20.6298 7.26678 22.6308 9.26769 22.6308 11.736V18.3583L30.6686 20.8608C32.6541 21.479 34.0068 23.3167 34.0068 25.3962V27.9143V30C34.0068 34.4643 30.3876 38.0833 25.9234 38.0833H20.6286C18.5833 38.0833 16.2731 37.7203 14.4015 36.2805C11.0802 33.7253 8.59339 29.8467 7.18966 27.2933C6.08956 25.2925 6.69617 22.8902 8.38161 21.5243C9.92926 20.2702 12.0363 20.1412 13.6924 21.0775V11.736C13.6924 9.26769 15.6933 7.26678 18.1616 7.26678ZM26.3786 10.517C25.5503 10.517 24.8786 11.1885 24.8786 12.017C24.8786 12.8454 25.5503 13.517 26.3786 13.517H28.8786C29.7071 13.517 30.3786 12.8454 30.3786 12.017C30.3786 11.1885 29.7071 10.517 28.8786 10.517H26.3786ZM12.6375 6.51186C13.2233 5.92608 13.2233 4.97633 12.6375 4.39054L10.8697 2.62278C10.2839 2.037 9.33419 2.037 8.74841 2.62278C8.16261 3.20856 8.16261 4.15831 8.74841 4.74409L10.5162 6.51186C11.102 7.09766 12.0517 7.09766 12.6375 6.51186ZM9.91016 10.517C10.7386 10.517 11.4102 11.1885 11.4102 12.017C11.4102 12.8454 10.7386 13.517 9.91016 13.517H7.41016C6.58174 13.517 5.91016 12.8454 5.91016 12.017C5.91016 11.1885 6.58174 10.517 7.41016 10.517H9.91016Z"/></svg>;
12
+ }
13
+
14
+ const IconHandTap = React.forwardRef(IconHandTapComponent);
15
+ export default IconHandTap;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowWaitingComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-workflow_waiting${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 20 20" {...rest} ref={ref}><rect width="20" height="20" fill={useCurrentColor ? 'currentColor' : '#F6BB45'} rx="6"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M16.222 10a6.222 6.222 0 1 1-12.444 0 6.222 6.222 0 0 1 12.444 0Zm-3.11.835v-.692a.345.345 0 0 0-.345-.345h-2.552V7.233a.345.345 0 0 0-.345-.344h-.69a.345.345 0 0 0-.346.345v3.6c0 .085.031.167.087.23l.03.029.031.025a.346.346 0 0 0 .198.063h3.588a.345.345 0 0 0 .346-.346Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowWaiting = React.forwardRef(IconWorkflowWaitingComponent);
15
+ export default IconWorkflowWaiting;
package/src/index.ts CHANGED
@@ -874,5 +874,12 @@ export { default as IconAlertAI } from './IconAlertAI';
874
874
  export { default as IconTraceAI } from './IconTraceAI';
875
875
  export { default as IconPluginOutlined } from './IconPluginOutlined';
876
876
  export { default as IconLanguageAiOutlined } from './IconLanguageAiOutlined';
877
+ export { default as IconDynamicDecisionMaking } from './IconDynamicDecisionMaking';
878
+ export { default as IconHandTap } from './IconHandTap';
879
+ export { default as IconAiTest } from './IconAiTest';
880
+ export { default as IconDiffReport } from './IconDiffReport';
881
+ export { default as IconWorkflowWaiting } from './IconWorkflowWaiting';
882
+ export { default as IconEditNew } from './IconEditNew';
883
+ export { default as IconArrangementKnDownload } from './IconArrangementKnDownload';
877
884
 
878
885
  export * from './type';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAiTest: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAiTest;
@@ -0,0 +1,74 @@
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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ var desc = Object.getOwnPropertyDescriptor(m, k);
15
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
16
+ desc = { enumerable: true, get: function() { return m[k]; } };
17
+ }
18
+ Object.defineProperty(o, k2, desc);
19
+ }) : (function(o, m, k, k2) {
20
+ if (k2 === undefined) k2 = k;
21
+ o[k2] = m[k];
22
+ }));
23
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
24
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
25
+ }) : function(o, v) {
26
+ o["default"] = v;
27
+ });
28
+ var __importStar = (this && this.__importStar) || function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ (function (factory) {
47
+ if (typeof module === "object" && typeof module.exports === "object") {
48
+ var v = factory(require, exports);
49
+ if (v !== undefined) module.exports = v;
50
+ }
51
+ else if (typeof define === "function" && define.amd) {
52
+ define(["require", "exports", "react", "../context"], factory);
53
+ }
54
+ })(function (require, exports) {
55
+ "use strict";
56
+ Object.defineProperty(exports, "__esModule", { value: true });
57
+ var react_1 = __importStar(require("react"));
58
+ var context_1 = require("../context");
59
+ function IconAiTestComponent(props, ref) {
60
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
61
+ 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"]);
62
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
63
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
64
+ return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-ai_test").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 40 40", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { d: "M27.5175 4.34766C28.0695 4.3479 28.5173 4.79573 28.5175 5.34766V6.47852C28.5175 7.03064 28.0696 7.47827 27.5175 7.47852H25.8369V12.7539L35.2207 29.959C36.5718 32.4361 34.975 35.6523 32.1533 35.6523H8.3681C5.54644 35.6523 3.55799 32.4361 4.90911 29.959L7.96771 24.3506C8.65022 23.0997 10.1303 22.6987 11.3251 23.1602C11.3987 23.1886 11.4707 23.216 11.541 23.2432C13.1468 23.8638 13.9117 24.1601 14.6787 24.2012C15.3917 24.2393 16.2306 24.0486 17.9326 23.209C19.7994 22.288 21.4225 21.8124 23.0107 21.8457C24.2917 21.8726 25.4471 22.2291 26.5869 22.792C27.0717 23.0317 27.2367 23.6306 26.9795 24.1064L26.5527 24.8975C26.2846 25.3932 25.6624 25.562 25.1543 25.3184C24.3587 24.937 23.6647 24.7366 22.9531 24.7217C21.9706 24.7011 20.7991 24.9864 19.1445 25.8027C17.3253 26.7002 15.9656 27.1498 14.5331 27.0732C13.3095 27.0078 12.3115 26.7172 10.9374 26.1826C9.77676 25.731 7.85849 30.7995 7.54193 31.3594C7.18663 32.0111 7.54407 32.5215 8.17279 32.5215H31.958C32.7003 32.5213 33 31.8471 32.6445 31.1953L23.124 14.04C22.9139 13.6549 22.8046 13.2228 22.8046 12.7842V7.47852H17.3261V12.7842C17.3261 13.2227 17.2158 13.6541 17.0058 14.0391L13.8984 20.2109C13.6365 20.7306 12.9877 20.9174 12.4892 20.6172L11.4394 19.9854C10.9805 19.709 10.8206 19.1197 11.0771 18.6494L14.2939 12.7539V7.47852H12.6132C12.0609 7.47852 11.6132 7.03078 11.6132 6.47852V5.34766C11.6135 4.79558 12.0611 4.34766 12.6132 4.34766H27.5175ZM32.1836 8.23047C32.3927 7.42304 33.5379 7.42022 33.7509 8.22656L33.9629 9.02734C34.2605 10.1553 35.1415 11.0363 36.2695 11.334L37.0703 11.5459C37.8768 11.7589 37.8739 12.9042 37.0664 13.1133L36.2793 13.3174C35.1446 13.6111 34.2571 14.4946 33.958 15.6279L33.7509 16.4111C33.538 17.2176 32.3926 17.2147 32.1836 16.4072L31.9843 15.6377C31.6892 14.4979 30.7989 13.6076 29.6591 13.3125L28.8896 13.1133C28.0822 12.9042 28.0794 11.7589 28.8857 11.5459L29.6689 11.3389C30.8022 11.0398 31.6858 10.1523 31.9795 9.01758L32.1836 8.23047Z" }),
66
+ react_1.default.createElement("defs", null,
67
+ react_1.default.createElement("linearGradient", { id: "svg_dd04af4af9__paint0_linear_2418_15291", x1: "4.476", y1: "35.652", x2: "37.674", y2: "35.652", gradientUnits: "userSpaceOnUse" },
68
+ react_1.default.createElement("stop", { offset: ".01", stopColor: "#3B91FF" }),
69
+ react_1.default.createElement("stop", { offset: ".4", stopColor: "#0D5EFF" }),
70
+ react_1.default.createElement("stop", { offset: ".995", stopColor: "#C069FF" }))));
71
+ }
72
+ var IconAiTest = react_1.default.forwardRef(IconAiTestComponent);
73
+ exports.default = IconAiTest;
74
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconArrangementKnDownload: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconArrangementKnDownload;