@arco-iconbox/react-hiagent 0.3.20 → 0.3.21

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 (72) hide show
  1. package/cjs/IconAccount/index.d.ts +4 -0
  2. package/cjs/IconAccount/index.js +59 -0
  3. package/cjs/IconApproval/index.d.ts +4 -0
  4. package/cjs/IconApproval/index.js +59 -0
  5. package/cjs/IconExecutionEnvironment/index.d.ts +4 -0
  6. package/cjs/IconExecutionEnvironment/index.js +59 -0
  7. package/cjs/IconHelp/index.d.ts +4 -0
  8. package/cjs/IconHelp/index.js +59 -0
  9. package/cjs/IconHome/index.d.ts +4 -0
  10. package/cjs/IconHome/index.js +59 -0
  11. package/cjs/IconKnowledgeGraphMonochrome/index.d.ts +4 -0
  12. package/cjs/IconKnowledgeGraphMonochrome/index.js +60 -0
  13. package/cjs/IconLogout/index.d.ts +4 -0
  14. package/cjs/IconLogout/index.js +59 -0
  15. package/cjs/IconNotebook/index.d.ts +4 -0
  16. package/cjs/IconNotebook/index.js +59 -0
  17. package/cjs/IconToolbox/index.d.ts +4 -0
  18. package/cjs/IconToolbox/index.js +61 -0
  19. package/cjs/index.d.ts +9 -0
  20. package/cjs/index.js +19 -1
  21. package/dist/icon.min.js +1 -1
  22. package/esm/IconAccount/index.d.ts +4 -0
  23. package/esm/IconAccount/index.js +34 -0
  24. package/esm/IconApproval/index.d.ts +4 -0
  25. package/esm/IconApproval/index.js +34 -0
  26. package/esm/IconExecutionEnvironment/index.d.ts +4 -0
  27. package/esm/IconExecutionEnvironment/index.js +34 -0
  28. package/esm/IconHelp/index.d.ts +4 -0
  29. package/esm/IconHelp/index.js +34 -0
  30. package/esm/IconHome/index.d.ts +4 -0
  31. package/esm/IconHome/index.js +34 -0
  32. package/esm/IconKnowledgeGraphMonochrome/index.d.ts +4 -0
  33. package/esm/IconKnowledgeGraphMonochrome/index.js +35 -0
  34. package/esm/IconLogout/index.d.ts +4 -0
  35. package/esm/IconLogout/index.js +34 -0
  36. package/esm/IconNotebook/index.d.ts +4 -0
  37. package/esm/IconNotebook/index.js +34 -0
  38. package/esm/IconToolbox/index.d.ts +4 -0
  39. package/esm/IconToolbox/index.js +36 -0
  40. package/esm/index.d.ts +9 -0
  41. package/esm/index.js +9 -0
  42. package/package.json +1 -1
  43. package/src/IconAccount/index.tsx +15 -0
  44. package/src/IconApproval/index.tsx +15 -0
  45. package/src/IconExecutionEnvironment/index.tsx +15 -0
  46. package/src/IconHelp/index.tsx +15 -0
  47. package/src/IconHome/index.tsx +15 -0
  48. package/src/IconKnowledgeGraphMonochrome/index.tsx +15 -0
  49. package/src/IconLogout/index.tsx +15 -0
  50. package/src/IconNotebook/index.tsx +15 -0
  51. package/src/IconToolbox/index.tsx +15 -0
  52. package/src/index.ts +9 -0
  53. package/umd/IconAccount/index.d.ts +4 -0
  54. package/umd/IconAccount/index.js +69 -0
  55. package/umd/IconApproval/index.d.ts +4 -0
  56. package/umd/IconApproval/index.js +69 -0
  57. package/umd/IconExecutionEnvironment/index.d.ts +4 -0
  58. package/umd/IconExecutionEnvironment/index.js +69 -0
  59. package/umd/IconHelp/index.d.ts +4 -0
  60. package/umd/IconHelp/index.js +69 -0
  61. package/umd/IconHome/index.d.ts +4 -0
  62. package/umd/IconHome/index.js +69 -0
  63. package/umd/IconKnowledgeGraphMonochrome/index.d.ts +4 -0
  64. package/umd/IconKnowledgeGraphMonochrome/index.js +70 -0
  65. package/umd/IconLogout/index.d.ts +4 -0
  66. package/umd/IconLogout/index.js +69 -0
  67. package/umd/IconNotebook/index.d.ts +4 -0
  68. package/umd/IconNotebook/index.js +69 -0
  69. package/umd/IconToolbox/index.d.ts +4 -0
  70. package/umd/IconToolbox/index.js +71 -0
  71. package/umd/index.d.ts +9 -0
  72. package/umd/index.js +20 -2
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAccount: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAccount;
@@ -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 IconAccountComponent(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-account").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M13.841 5.556c0 1.963-1.57 3.555-3.508 3.555s-3.51-1.591-3.51-3.555C6.824 3.592 8.394 2 10.332 2s3.509 1.592 3.509 3.556ZM9.005 18H2.877A.883.883 0 0 1 2 17.111v-.889c0-2.945 2.356-5.333 5.263-5.333h6.174c.19 0 .254.286.088.38-3.003 1.72-4.13 4.94-4.343 6.572a.18.18 0 0 1-.177.159Zm6.974-7.122a.507.507 0 0 1 .724 0l1.147 1.163c.2.202.2.53 0 .733l-3.463 3.509h2.158c.363 0 .658.298.658.667a.662.662 0 0 1-.658.666h-3.531a.25.25 0 0 1-.054.006h-1.489a.278.278 0 0 1-.276-.28v-1.509a.26.26 0 0 1 .075-.183l4.709-4.772Z", clipRule: "evenodd" }));
32
+ }
33
+ var IconAccount = React.forwardRef(IconAccountComponent);
34
+ export default IconAccount;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconApproval: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconApproval;
@@ -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 IconApprovalComponent(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-approval").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M3.5 4.5a2.667 2.667 0 0 1 2.667-2.667h7.666A2.667 2.667 0 0 1 16.5 4.5v4.226a.667.667 0 0 1-1.333 0V4.5c0-.736-.597-1.333-1.334-1.333H6.167c-.737 0-1.334.597-1.334 1.333v11c0 .736.597 1.333 1.334 1.333h2.166a.667.667 0 0 1 0 1.334H6.167A2.667 2.667 0 0 1 3.5 15.5v-11Zm3.333 1.75c0-.368.299-.667.667-.667h5a.667.667 0 1 1 0 1.334h-5a.667.667 0 0 1-.667-.667ZM7.5 8.5a.667.667 0 0 0 0 1.333h3.333a.667.667 0 1 0 0-1.333H7.5Zm3.534 6.29a.667.667 0 0 1 .633-.457h.703l.193-.963a1.5 1.5 0 0 1-.73-1.287v-.208c0-.943.765-1.708 1.709-1.708h1.25c.943 0 1.708.765 1.708 1.708v.208c0 .547-.292 1.025-.73 1.287l.193.963h.704c.287 0 .541.184.632.456l.834 2.5a.667.667 0 0 1-.633.878h-6.667a.666.666 0 0 1-.632-.878l.833-2.5Zm4.369.877h.783l.389 1.166h-4.817l.39-1.166h3.255Zm-.8-1.334-.254-1.272a.664.664 0 0 1 .204-.64.664.664 0 0 1 .447-.171.167.167 0 0 0 .167-.167v-.208a.375.375 0 0 0-.375-.375h-1.25a.375.375 0 0 0-.375.375v.208c0 .092.074.167.166.167a.667.667 0 0 1 .654.797l-.257 1.286h.873Z", clipRule: "evenodd" }));
32
+ }
33
+ var IconApproval = React.forwardRef(IconApprovalComponent);
34
+ export default IconApproval;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconExecutionEnvironment: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconExecutionEnvironment;
@@ -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 IconExecutionEnvironmentComponent(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-execution-environment").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M11.731 2.606a9.832 9.832 0 0 1 5.617-.353.574.574 0 0 1 .445.444 9.71 9.71 0 0 1-3.774 10.078.963.963 0 0 0-.221.354 7.866 7.866 0 0 1-2.042 3.596c-.48.448-1 .85-1.554 1.199a.616.616 0 0 1-.694-.068.561.561 0 0 1-.15-.643 8.178 8.178 0 0 0 .443-2.308.633.633 0 0 0-.265-.533 20.525 20.525 0 0 1-2.131-1.775 20.537 20.537 0 0 1-1.775-2.131.635.635 0 0 0-.534-.267 8.181 8.181 0 0 0-2.308.445.63.63 0 0 1-.488-.045.584.584 0 0 1-.295-.581.583.583 0 0 1 .073-.218 8.49 8.49 0 0 1 1.198-1.554 7.697 7.697 0 0 1 3.596-2.042.61.61 0 0 0 .355-.221 9.833 9.833 0 0 1 4.504-3.377ZM5.74 12.986c.262 0 .518.082.732.234a1.293 1.293 0 0 1 .356 1.82c-.4.399-3.018 2.174-3.507 1.687-.488-.489 1.286-3.106 1.687-3.507.214-.152.47-.234.732-.234Zm8.244-8.818a1.697 1.697 0 1 0 .002 3.395 1.697 1.697 0 0 0-.002-3.395Z" }));
32
+ }
33
+ var IconExecutionEnvironment = React.forwardRef(IconExecutionEnvironmentComponent);
34
+ export default IconExecutionEnvironment;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconHelp: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconHelp;
@@ -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 IconHelpComponent(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-help").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M5.455 1.75h9.659c.504 0 .985.203 1.337.562.353.358.549.84.549 1.342v9.23a1.913 1.913 0 0 1-1.136 1.748v2.118h.386a.75.75 0 0 1 0 1.5H5.455c-.655 0-1.28-.264-1.74-.73A2.494 2.494 0 0 1 3 15.77V4.184a2.493 2.493 0 0 1 .738-1.728 2.441 2.441 0 0 1 1.717-.707Zm8.909 15v-1.962h-8.91c-.249 0-.49.1-.67.284a.994.994 0 0 0-.284.697c0 .264.103.515.284.698.18.182.421.283.67.283h8.91Zm.761-3.462h-9.67c-.332 0-.656.068-.955.196V4.196a.993.993 0 0 1 .292-.672.941.941 0 0 1 .662-.274h9.66c.098 0 .195.04.269.114a.413.413 0 0 1 .117.29v9.23a.412.412 0 0 1-.117.29.378.378 0 0 1-.257.114Zm-4.728-7.647a1.212 1.212 0 0 0-.669.062c-.21.083-.383.221-.503.391a.976.976 0 0 0-.18.562.75.75 0 1 1-1.5 0c0-.51.16-1.006.453-1.423a2.608 2.608 0 0 1 1.18-.925 2.712 2.712 0 0 1 1.498-.14c.502.094.968.33 1.338.682.37.352.625.805.73 1.304.104.5.05 1.016-.153 1.484-.204.467-.545.86-.976 1.135a2.667 2.667 0 0 1-.696.313.75.75 0 0 1-1.499-.05v-.595a.75.75 0 0 1 .75-.75c.23 0 .453-.065.64-.183a1.07 1.07 0 0 0 .405-.468c.08-.185.1-.386.06-.58a1.011 1.011 0 0 0-.296-.524 1.156 1.156 0 0 0-.582-.295Zm-.39 6.248a.887.887 0 1 1 0-1.774.887.887 0 0 1 0 1.774Z", clipRule: "evenodd" }));
32
+ }
33
+ var IconHelp = React.forwardRef(IconHelpComponent);
34
+ export default IconHelp;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconHome: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconHome;
@@ -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 IconHomeComponent(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-home").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M8.556 2.48a2.404 2.404 0 0 1 2.884 0l4.974 3.732c.605.454.962 1.166.962 1.923v7.462A2.404 2.404 0 0 1 14.972 18H5.024a2.404 2.404 0 0 1-2.404-2.403V8.135c0-.757.357-1.469.962-1.923l4.974-3.731Zm1.442 7.81a.747.747 0 0 0-.746.747v3.73a.746.746 0 0 0 1.492 0v-3.73a.747.747 0 0 0-.746-.747Z" }));
32
+ }
33
+ var IconHome = React.forwardRef(IconHomeComponent);
34
+ export default IconHome;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconKnowledgeGraphMonochrome: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconKnowledgeGraphMonochrome;
@@ -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 IconKnowledgeGraphMonochromeComponent(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-knowledge-graph-Monochrome").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M5.972 1.944H16.33c.95 0 1.727.777 1.727 1.727v10.357a1.726 1.726 0 0 1-1.727 1.726H5.972a1.726 1.726 0 0 1-1.726-1.726V3.67c0-.95.777-1.727 1.726-1.727Zm4.88 7.3A1.292 1.292 0 0 0 13 8.277c0-.716-.578-1.294-1.294-1.294a1.292 1.292 0 0 0-1.277 1.501l-3.487 2.011a.687.687 0 0 0-.19-.164l.284-2.037v-.008a.853.853 0 0 0 .57-.803.86.86 0 0 0-.864-.863.86.86 0 0 0-.781 1.223.889.889 0 0 0 .22.296l-.276 1.942a1.287 1.287 0 0 0-1.208 1.286c0 .708.578 1.295 1.295 1.295.328 0 .638-.13.863-.346l1.9 1.174a1.62 1.62 0 0 0-.069.466 1.726 1.726 0 1 0 1.726-1.726c-.484 0-.923.2-1.225.518h-.01L7.27 11.557c.008-.06.017-.12.017-.19 0-.026 0-.052-.009-.069l3.574-2.054Z", clipRule: "evenodd", opacity: ".6" }),
32
+ React.createElement("path", { fillRule: "evenodd", d: "M3.67 4.246h10.358c.95 0 1.726.777 1.726 1.726V16.33a1.726 1.726 0 0 1-1.726 1.726H3.67a1.726 1.726 0 0 1-1.727-1.726V5.972c0-.95.777-1.726 1.727-1.726Zm7.182 4.998A1.292 1.292 0 0 0 13 8.277c0-.716-.578-1.294-1.294-1.294a1.293 1.293 0 0 0-1.277 1.501l-3.487 2.011a.687.687 0 0 0-.19-.164l.284-2.037v-.008a.853.853 0 0 0 .57-.803.86.86 0 0 0-.864-.863.86.86 0 0 0-.781 1.223.89.89 0 0 0 .22.296l-.276 1.942a1.287 1.287 0 0 0-1.208 1.286c0 .708.578 1.295 1.294 1.295.33 0 .64-.13.863-.346l1.901 1.174a1.619 1.619 0 0 0-.069.466 1.726 1.726 0 1 0 1.726-1.726c-.484 0-.923.2-1.225.518h-.01L7.27 11.557c.008-.06.017-.12.017-.19 0-.026 0-.052-.009-.069l3.574-2.054Z", clipRule: "evenodd" }));
33
+ }
34
+ var IconKnowledgeGraphMonochrome = React.forwardRef(IconKnowledgeGraphMonochromeComponent);
35
+ export default IconKnowledgeGraphMonochrome;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconLogout: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconLogout;
@@ -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 IconLogoutComponent(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-logout").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M15.231 2.5c.977 0 1.769.792 1.769 1.769V15.73c0 .977-.792 1.769-1.769 1.769H4.77A1.769 1.769 0 0 1 3 15.731V11.42h7.053v1.75c0 .494.583.788 1.018.514l3.427-3.107a.6.6 0 0 0 .015-1.018l-3.428-3.235c-.434-.289-1.032.004-1.032.505v1.75H3v-4.31C3 3.292 3.792 2.5 4.769 2.5H15.23Z" }));
32
+ }
33
+ var IconLogout = React.forwardRef(IconLogoutComponent);
34
+ export default IconLogout;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconNotebook: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconNotebook;
@@ -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 IconNotebookComponent(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-notebook").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M5.417 18.327h11.25c.46 0 .833-.373.833-.833V2.506a.833.833 0 0 0-.833-.833H5a2.5 2.5 0 0 0-2.5 2.498v11.241a2.913 2.913 0 0 0 2.917 2.915ZM10 3.339h5.833V10l-2.916-1.665L10 10V3.339Zm5.833 10.824v2.498H5.417a1.25 1.25 0 1 1 0-2.498h10.416Z" }));
32
+ }
33
+ var IconNotebook = React.forwardRef(IconNotebookComponent);
34
+ export default IconNotebook;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconToolbox: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconToolbox;
@@ -0,0 +1,36 @@
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 IconToolboxComponent(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-toolbox").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M9.423 14.697c.318.185.835.185 1.154 0l4.739-2.744 2.796 1.62c.319.184.319.483 0 .668l-7.535 4.363c-.319.184-.836.184-1.154 0L1.887 14.24c-.318-.184-.318-.483 0-.668l2.797-1.619 4.739 2.744Z" }),
32
+ React.createElement("path", { d: "M9.423 11.384c.318.184.835.185 1.154 0l5.251-3.04 2.284 1.322c.319.185.319.484 0 .668l-7.535 4.363c-.319.185-.836.185-1.154 0l-7.536-4.363c-.318-.185-.318-.484 0-.668l2.284-1.323 5.252 3.041Z", opacity: ".5" }),
33
+ React.createElement("path", { d: "M10.577 11.384c-.319.185-.836.185-1.154 0L1.887 7.021c-.318-.185-.318-.484 0-.668L9.423 1.99c.319-.185.835-.185 1.154 0l7.535 4.363c.319.185.319.484 0 .668l-7.535 4.363Z" }));
34
+ }
35
+ var IconToolbox = React.forwardRef(IconToolboxComponent);
36
+ export default IconToolbox;
package/esm/index.d.ts CHANGED
@@ -900,4 +900,13 @@ export { default as IconRemoveBookshelf1 } from './IconRemoveBookshelf1';
900
900
  export { default as IconFunnelPlot } from './IconFunnelPlot';
901
901
  export { default as IconSearchLog } from './IconSearchLog';
902
902
  export { default as IconTexture } from './IconTexture';
903
+ export { default as IconHome } from './IconHome';
904
+ export { default as IconAccount } from './IconAccount';
905
+ export { default as IconLogout } from './IconLogout';
906
+ export { default as IconApproval } from './IconApproval';
907
+ export { default as IconHelp } from './IconHelp';
908
+ export { default as IconKnowledgeGraphMonochrome } from './IconKnowledgeGraphMonochrome';
909
+ export { default as IconExecutionEnvironment } from './IconExecutionEnvironment';
910
+ export { default as IconNotebook } from './IconNotebook';
911
+ export { default as IconToolbox } from './IconToolbox';
903
912
  export * from './type';
package/esm/index.js CHANGED
@@ -900,4 +900,13 @@ export { default as IconRemoveBookshelf1 } from './IconRemoveBookshelf1';
900
900
  export { default as IconFunnelPlot } from './IconFunnelPlot';
901
901
  export { default as IconSearchLog } from './IconSearchLog';
902
902
  export { default as IconTexture } from './IconTexture';
903
+ export { default as IconHome } from './IconHome';
904
+ export { default as IconAccount } from './IconAccount';
905
+ export { default as IconLogout } from './IconLogout';
906
+ export { default as IconApproval } from './IconApproval';
907
+ export { default as IconHelp } from './IconHelp';
908
+ export { default as IconKnowledgeGraphMonochrome } from './IconKnowledgeGraphMonochrome';
909
+ export { default as IconExecutionEnvironment } from './IconExecutionEnvironment';
910
+ export { default as IconNotebook } from './IconNotebook';
911
+ export { default as IconToolbox } from './IconToolbox';
903
912
  export * from './type';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/react-hiagent",
3
- "version": "0.3.20",
3
+ "version": "0.3.21",
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 IconAccountComponent(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-account${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path fillRule="evenodd" d="M13.841 5.556c0 1.963-1.57 3.555-3.508 3.555s-3.51-1.591-3.51-3.555C6.824 3.592 8.394 2 10.332 2s3.509 1.592 3.509 3.556ZM9.005 18H2.877A.883.883 0 0 1 2 17.111v-.889c0-2.945 2.356-5.333 5.263-5.333h6.174c.19 0 .254.286.088.38-3.003 1.72-4.13 4.94-4.343 6.572a.18.18 0 0 1-.177.159Zm6.974-7.122a.507.507 0 0 1 .724 0l1.147 1.163c.2.202.2.53 0 .733l-3.463 3.509h2.158c.363 0 .658.298.658.667a.662.662 0 0 1-.658.666h-3.531a.25.25 0 0 1-.054.006h-1.489a.278.278 0 0 1-.276-.28v-1.509a.26.26 0 0 1 .075-.183l4.709-4.772Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconAccount = React.forwardRef(IconAccountComponent);
15
+ export default IconAccount;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconApprovalComponent(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-approval${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path fillRule="evenodd" d="M3.5 4.5a2.667 2.667 0 0 1 2.667-2.667h7.666A2.667 2.667 0 0 1 16.5 4.5v4.226a.667.667 0 0 1-1.333 0V4.5c0-.736-.597-1.333-1.334-1.333H6.167c-.737 0-1.334.597-1.334 1.333v11c0 .736.597 1.333 1.334 1.333h2.166a.667.667 0 0 1 0 1.334H6.167A2.667 2.667 0 0 1 3.5 15.5v-11Zm3.333 1.75c0-.368.299-.667.667-.667h5a.667.667 0 1 1 0 1.334h-5a.667.667 0 0 1-.667-.667ZM7.5 8.5a.667.667 0 0 0 0 1.333h3.333a.667.667 0 1 0 0-1.333H7.5Zm3.534 6.29a.667.667 0 0 1 .633-.457h.703l.193-.963a1.5 1.5 0 0 1-.73-1.287v-.208c0-.943.765-1.708 1.709-1.708h1.25c.943 0 1.708.765 1.708 1.708v.208c0 .547-.292 1.025-.73 1.287l.193.963h.704c.287 0 .541.184.632.456l.834 2.5a.667.667 0 0 1-.633.878h-6.667a.666.666 0 0 1-.632-.878l.833-2.5Zm4.369.877h.783l.389 1.166h-4.817l.39-1.166h3.255Zm-.8-1.334-.254-1.272a.664.664 0 0 1 .204-.64.664.664 0 0 1 .447-.171.167.167 0 0 0 .167-.167v-.208a.375.375 0 0 0-.375-.375h-1.25a.375.375 0 0 0-.375.375v.208c0 .092.074.167.166.167a.667.667 0 0 1 .654.797l-.257 1.286h.873Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconApproval = React.forwardRef(IconApprovalComponent);
15
+ export default IconApproval;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconExecutionEnvironmentComponent(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-execution-environment${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M11.731 2.606a9.832 9.832 0 0 1 5.617-.353.574.574 0 0 1 .445.444 9.71 9.71 0 0 1-3.774 10.078.963.963 0 0 0-.221.354 7.866 7.866 0 0 1-2.042 3.596c-.48.448-1 .85-1.554 1.199a.616.616 0 0 1-.694-.068.561.561 0 0 1-.15-.643 8.178 8.178 0 0 0 .443-2.308.633.633 0 0 0-.265-.533 20.525 20.525 0 0 1-2.131-1.775 20.537 20.537 0 0 1-1.775-2.131.635.635 0 0 0-.534-.267 8.181 8.181 0 0 0-2.308.445.63.63 0 0 1-.488-.045.584.584 0 0 1-.295-.581.583.583 0 0 1 .073-.218 8.49 8.49 0 0 1 1.198-1.554 7.697 7.697 0 0 1 3.596-2.042.61.61 0 0 0 .355-.221 9.833 9.833 0 0 1 4.504-3.377ZM5.74 12.986c.262 0 .518.082.732.234a1.293 1.293 0 0 1 .356 1.82c-.4.399-3.018 2.174-3.507 1.687-.488-.489 1.286-3.106 1.687-3.507.214-.152.47-.234.732-.234Zm8.244-8.818a1.697 1.697 0 1 0 .002 3.395 1.697 1.697 0 0 0-.002-3.395Z"/></svg>;
12
+ }
13
+
14
+ const IconExecutionEnvironment = React.forwardRef(IconExecutionEnvironmentComponent);
15
+ export default IconExecutionEnvironment;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconHelpComponent(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-help${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path fillRule="evenodd" d="M5.455 1.75h9.659c.504 0 .985.203 1.337.562.353.358.549.84.549 1.342v9.23a1.913 1.913 0 0 1-1.136 1.748v2.118h.386a.75.75 0 0 1 0 1.5H5.455c-.655 0-1.28-.264-1.74-.73A2.494 2.494 0 0 1 3 15.77V4.184a2.493 2.493 0 0 1 .738-1.728 2.441 2.441 0 0 1 1.717-.707Zm8.909 15v-1.962h-8.91c-.249 0-.49.1-.67.284a.994.994 0 0 0-.284.697c0 .264.103.515.284.698.18.182.421.283.67.283h8.91Zm.761-3.462h-9.67c-.332 0-.656.068-.955.196V4.196a.993.993 0 0 1 .292-.672.941.941 0 0 1 .662-.274h9.66c.098 0 .195.04.269.114a.413.413 0 0 1 .117.29v9.23a.412.412 0 0 1-.117.29.378.378 0 0 1-.257.114Zm-4.728-7.647a1.212 1.212 0 0 0-.669.062c-.21.083-.383.221-.503.391a.976.976 0 0 0-.18.562.75.75 0 1 1-1.5 0c0-.51.16-1.006.453-1.423a2.608 2.608 0 0 1 1.18-.925 2.712 2.712 0 0 1 1.498-.14c.502.094.968.33 1.338.682.37.352.625.805.73 1.304.104.5.05 1.016-.153 1.484-.204.467-.545.86-.976 1.135a2.667 2.667 0 0 1-.696.313.75.75 0 0 1-1.499-.05v-.595a.75.75 0 0 1 .75-.75c.23 0 .453-.065.64-.183a1.07 1.07 0 0 0 .405-.468c.08-.185.1-.386.06-.58a1.011 1.011 0 0 0-.296-.524 1.156 1.156 0 0 0-.582-.295Zm-.39 6.248a.887.887 0 1 1 0-1.774.887.887 0 0 1 0 1.774Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconHelp = React.forwardRef(IconHelpComponent);
15
+ export default IconHelp;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconHomeComponent(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-home${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M8.556 2.48a2.404 2.404 0 0 1 2.884 0l4.974 3.732c.605.454.962 1.166.962 1.923v7.462A2.404 2.404 0 0 1 14.972 18H5.024a2.404 2.404 0 0 1-2.404-2.403V8.135c0-.757.357-1.469.962-1.923l4.974-3.731Zm1.442 7.81a.747.747 0 0 0-.746.747v3.73a.746.746 0 0 0 1.492 0v-3.73a.747.747 0 0 0-.746-.747Z"/></svg>;
12
+ }
13
+
14
+ const IconHome = React.forwardRef(IconHomeComponent);
15
+ export default IconHome;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconKnowledgeGraphMonochromeComponent(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-knowledge-graph-Monochrome${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path fillRule="evenodd" d="M5.972 1.944H16.33c.95 0 1.727.777 1.727 1.727v10.357a1.726 1.726 0 0 1-1.727 1.726H5.972a1.726 1.726 0 0 1-1.726-1.726V3.67c0-.95.777-1.727 1.726-1.727Zm4.88 7.3A1.292 1.292 0 0 0 13 8.277c0-.716-.578-1.294-1.294-1.294a1.292 1.292 0 0 0-1.277 1.501l-3.487 2.011a.687.687 0 0 0-.19-.164l.284-2.037v-.008a.853.853 0 0 0 .57-.803.86.86 0 0 0-.864-.863.86.86 0 0 0-.781 1.223.889.889 0 0 0 .22.296l-.276 1.942a1.287 1.287 0 0 0-1.208 1.286c0 .708.578 1.295 1.295 1.295.328 0 .638-.13.863-.346l1.9 1.174a1.62 1.62 0 0 0-.069.466 1.726 1.726 0 1 0 1.726-1.726c-.484 0-.923.2-1.225.518h-.01L7.27 11.557c.008-.06.017-.12.017-.19 0-.026 0-.052-.009-.069l3.574-2.054Z" clipRule="evenodd" opacity=".6"/><path fillRule="evenodd" d="M3.67 4.246h10.358c.95 0 1.726.777 1.726 1.726V16.33a1.726 1.726 0 0 1-1.726 1.726H3.67a1.726 1.726 0 0 1-1.727-1.726V5.972c0-.95.777-1.726 1.727-1.726Zm7.182 4.998A1.292 1.292 0 0 0 13 8.277c0-.716-.578-1.294-1.294-1.294a1.293 1.293 0 0 0-1.277 1.501l-3.487 2.011a.687.687 0 0 0-.19-.164l.284-2.037v-.008a.853.853 0 0 0 .57-.803.86.86 0 0 0-.864-.863.86.86 0 0 0-.781 1.223.89.89 0 0 0 .22.296l-.276 1.942a1.287 1.287 0 0 0-1.208 1.286c0 .708.578 1.295 1.294 1.295.33 0 .64-.13.863-.346l1.901 1.174a1.619 1.619 0 0 0-.069.466 1.726 1.726 0 1 0 1.726-1.726c-.484 0-.923.2-1.225.518h-.01L7.27 11.557c.008-.06.017-.12.017-.19 0-.026 0-.052-.009-.069l3.574-2.054Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconKnowledgeGraphMonochrome = React.forwardRef(IconKnowledgeGraphMonochromeComponent);
15
+ export default IconKnowledgeGraphMonochrome;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconLogoutComponent(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-logout${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M15.231 2.5c.977 0 1.769.792 1.769 1.769V15.73c0 .977-.792 1.769-1.769 1.769H4.77A1.769 1.769 0 0 1 3 15.731V11.42h7.053v1.75c0 .494.583.788 1.018.514l3.427-3.107a.6.6 0 0 0 .015-1.018l-3.428-3.235c-.434-.289-1.032.004-1.032.505v1.75H3v-4.31C3 3.292 3.792 2.5 4.769 2.5H15.23Z"/></svg>;
12
+ }
13
+
14
+ const IconLogout = React.forwardRef(IconLogoutComponent);
15
+ export default IconLogout;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconNotebookComponent(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-notebook${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M5.417 18.327h11.25c.46 0 .833-.373.833-.833V2.506a.833.833 0 0 0-.833-.833H5a2.5 2.5 0 0 0-2.5 2.498v11.241a2.913 2.913 0 0 0 2.917 2.915ZM10 3.339h5.833V10l-2.916-1.665L10 10V3.339Zm5.833 10.824v2.498H5.417a1.25 1.25 0 1 1 0-2.498h10.416Z"/></svg>;
12
+ }
13
+
14
+ const IconNotebook = React.forwardRef(IconNotebookComponent);
15
+ export default IconNotebook;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconToolboxComponent(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-toolbox${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M9.423 14.697c.318.185.835.185 1.154 0l4.739-2.744 2.796 1.62c.319.184.319.483 0 .668l-7.535 4.363c-.319.184-.836.184-1.154 0L1.887 14.24c-.318-.184-.318-.483 0-.668l2.797-1.619 4.739 2.744Z"/><path d="M9.423 11.384c.318.184.835.185 1.154 0l5.251-3.04 2.284 1.322c.319.185.319.484 0 .668l-7.535 4.363c-.319.185-.836.185-1.154 0l-7.536-4.363c-.318-.185-.318-.484 0-.668l2.284-1.323 5.252 3.041Z" opacity=".5"/><path d="M10.577 11.384c-.319.185-.836.185-1.154 0L1.887 7.021c-.318-.185-.318-.484 0-.668L9.423 1.99c.319-.185.835-.185 1.154 0l7.535 4.363c.319.185.319.484 0 .668l-7.535 4.363Z"/></svg>;
12
+ }
13
+
14
+ const IconToolbox = React.forwardRef(IconToolboxComponent);
15
+ export default IconToolbox;
package/src/index.ts CHANGED
@@ -900,5 +900,14 @@ export { default as IconRemoveBookshelf1 } from './IconRemoveBookshelf1';
900
900
  export { default as IconFunnelPlot } from './IconFunnelPlot';
901
901
  export { default as IconSearchLog } from './IconSearchLog';
902
902
  export { default as IconTexture } from './IconTexture';
903
+ export { default as IconHome } from './IconHome';
904
+ export { default as IconAccount } from './IconAccount';
905
+ export { default as IconLogout } from './IconLogout';
906
+ export { default as IconApproval } from './IconApproval';
907
+ export { default as IconHelp } from './IconHelp';
908
+ export { default as IconKnowledgeGraphMonochrome } from './IconKnowledgeGraphMonochrome';
909
+ export { default as IconExecutionEnvironment } from './IconExecutionEnvironment';
910
+ export { default as IconNotebook } from './IconNotebook';
911
+ export { default as IconToolbox } from './IconToolbox';
903
912
 
904
913
  export * from './type';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAccount: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAccount;