@arco-iconbox/react-hiagent 0.2.86 → 0.2.88

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 (37) hide show
  1. package/cjs/IconAddFolder2/index.d.ts +4 -0
  2. package/cjs/IconAddFolder2/index.js +59 -0
  3. package/cjs/IconCreateFile2/index.d.ts +4 -0
  4. package/cjs/IconCreateFile2/index.js +63 -0
  5. package/cjs/IconExtractText/index.d.ts +4 -0
  6. package/cjs/IconExtractText/index.js +60 -0
  7. package/cjs/IconJSONFormat/index.d.ts +4 -0
  8. package/cjs/IconJSONFormat/index.js +60 -0
  9. package/cjs/index.d.ts +4 -0
  10. package/cjs/index.js +9 -0
  11. package/dist/icon.min.js +1 -1
  12. package/esm/IconAddFolder2/index.d.ts +4 -0
  13. package/esm/IconAddFolder2/index.js +34 -0
  14. package/esm/IconCreateFile2/index.d.ts +4 -0
  15. package/esm/IconCreateFile2/index.js +38 -0
  16. package/esm/IconExtractText/index.d.ts +4 -0
  17. package/esm/IconExtractText/index.js +35 -0
  18. package/esm/IconJSONFormat/index.d.ts +4 -0
  19. package/esm/IconJSONFormat/index.js +35 -0
  20. package/esm/index.d.ts +4 -0
  21. package/esm/index.js +4 -0
  22. package/package.json +1 -1
  23. package/src/IconAddFolder2/index.tsx +15 -0
  24. package/src/IconCreateFile2/index.tsx +15 -0
  25. package/src/IconExtractText/index.tsx +15 -0
  26. package/src/IconJSONFormat/index.tsx +15 -0
  27. package/src/index.ts +4 -0
  28. package/umd/IconAddFolder2/index.d.ts +4 -0
  29. package/umd/IconAddFolder2/index.js +69 -0
  30. package/umd/IconCreateFile2/index.d.ts +4 -0
  31. package/umd/IconCreateFile2/index.js +73 -0
  32. package/umd/IconExtractText/index.d.ts +4 -0
  33. package/umd/IconExtractText/index.js +70 -0
  34. package/umd/IconJSONFormat/index.d.ts +4 -0
  35. package/umd/IconJSONFormat/index.js +70 -0
  36. package/umd/index.d.ts +4 -0
  37. package/umd/index.js +10 -2
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAddFolder2: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAddFolder2;
@@ -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 IconAddFolder2Component(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-AddFolder2").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 48 48", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.182 5h13.16c.647 0 1.261.312 1.676.85L21.44 9h22.115C44.906 9 46 10.015 46 11.267v29.466C46 41.985 44.906 43 43.556 43H4.444C3.094 43 2 41.985 2 40.733V7.364C2 6.058 2.977 5 4.182 5zM42 39H6V13h36v26zM22 19v5h-5a1 1 0 00-1 1v2a1 1 0 001 1h5v5a1 1 0 001 1h2a1 1 0 001-1v-5h5a1 1 0 001-1v-2a1 1 0 00-1-1h-5v-5a1 1 0 00-1-1h-2a1 1 0 00-1 1z" }));
32
+ }
33
+ var IconAddFolder2 = React.forwardRef(IconAddFolder2Component);
34
+ export default IconAddFolder2;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconCreateFile2: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconCreateFile2;
@@ -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 IconCreateFile2Component(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-CreateFile2").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 12 12" }, rest, { ref: ref }),
31
+ React.createElement("g", { clipPath: "url(#svg_e6dcd06e33__svg_e6dcd06e33__a)" },
32
+ React.createElement("path", { fillRule: "evenodd", d: "m8.25.5 2.25 2.357V6h-1V3.51h-2V1.5h-5v9H6v1H2a.5.5 0 0 1-.5-.5V1A.5.5 0 0 1 2 .5h6.25Zm1 6.5a.25.25 0 0 1 .25.25V8.5h1.25a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25H9.5v1.25a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25V9.5H7.25A.25.25 0 0 1 7 9.25v-.5a.25.25 0 0 1 .25-.25H8.5V7.25A.25.25 0 0 1 8.75 7h.5Z", clipRule: "evenodd" })),
33
+ React.createElement("defs", null,
34
+ React.createElement("clipPath", { id: "svg_e6dcd06e33__svg_e6dcd06e33__a" },
35
+ React.createElement("path", { d: "M0 0h12v12H0z" }))));
36
+ }
37
+ var IconCreateFile2 = React.forwardRef(IconCreateFile2Component);
38
+ export default IconCreateFile2;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconExtractText: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconExtractText;
@@ -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 IconExtractTextComponent(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-extract-text").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#E4F3FC', d: "M0 5a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v6a5 5 0 0 1-5 5H5a5 5 0 0 1-5-5V5Z" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#24758E', d: "M8.74 12H7.26V5.382H3.5V4h9v1.382H8.74V12Z" }));
33
+ }
34
+ var IconExtractText = React.forwardRef(IconExtractTextComponent);
35
+ export default IconExtractText;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconJSONFormat: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconJSONFormat;
@@ -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 IconJSONFormatComponent(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-JSON-format").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#ECEDED', d: "M0 4a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z" }),
32
+ React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#676B72', d: "M10.287 3.6c.65 0 1.16.122 1.504.388.355.273.512.756.512 1.402v.99c0 .283.033.49.091.627a.496.496 0 0 0 .274.278v.001c.132.058.333.094.61.1l.122.002V8.61l-.124.004c-.269.006-.466.04-.6.096a.52.52 0 0 0-.278.276l-.002.005-.036.102-.002.007c-.035.128-.055.3-.055.52v.99c0 .646-.158 1.128-.512 1.402-.344.266-.853.388-1.504.388h-.45v-1.098h.42c.251 0 .414-.052.514-.134l.006-.006.029-.027.004-.005c.098-.11.164-.327.164-.687V9.51c0-.397.062-.729.198-.984l.063-.103c.094-.137.21-.25.349-.338l.13-.084-.13-.084a1.206 1.206 0 0 1-.275-.241l-.073-.097-.063-.104c-.135-.255-.198-.586-.198-.983v-.934c0-.36-.067-.578-.165-.687l-.04-.038c-.1-.082-.263-.133-.513-.133h-.42V3.6h.45Zm-4.124 0v1.1h-.42c-.25 0-.413.05-.514.133l-.039.037c-.098.109-.165.326-.165.687v.934c0 .347-.048.645-.151.884l-.048.099-.062.105c-.09.133-.209.248-.348.337L4.284 8l.132.084a1.2 1.2 0 0 1 .345.332v.001l.065.108v.001c.136.255.2.586.2.983v.934c0 .36.066.578.164.687l.004.005.029.027.006.005c.1.083.263.135.514.135h.42V12.4h-.45c-.65 0-1.16-.122-1.504-.388-.355-.273-.512-.755-.512-1.402v-.99c0-.22-.02-.391-.055-.52l-.002-.006-.036-.103-.002-.004-.047-.089a.501.501 0 0 0-.23-.187V8.71l-.113-.037a2.1 2.1 0 0 0-.488-.059L2.6 8.61V7.388l.123-.002c.276-.006.476-.043.608-.1a.493.493 0 0 0 .272-.276h.001c.06-.138.093-.346.093-.63v-.99c0-.646.157-1.128.511-1.402.345-.266.854-.388 1.505-.388h.45Zm-.726 7.561Zm-.145-.071Zm5.488-.097Zm-5.577-.034Zm5.62-.078Zm-5.686-.202Zm-.024-1.463v-.001Zm-2.055-.474Zm9.656.06Zm-1.68-.216c-.026.058-.046.12-.065.184.007-.024.013-.048.021-.07l.043-.114Zm1.795.18c.022-.006.046-.01.07-.015l-.07.015Zm-8.151-.93A1.317 1.317 0 0 1 4.47 8c.074.048.144.102.207.163h-.001A1.327 1.327 0 0 0 4.47 8a1.33 1.33 0 0 0 .208-.164Zm6.744.24Zm-6.456-.662-.051.107c.023-.044.042-.09.062-.136l-.011.03Zm5.959-.358v-.001Zm1.562-.085Zm-.039-.121Zm-.04-.277ZM5.266 4.937Zm.079-.06Zm.217-.066Zm5.196-1.288Z" }));
33
+ }
34
+ var IconJSONFormat = React.forwardRef(IconJSONFormatComponent);
35
+ export default IconJSONFormat;
package/esm/index.d.ts CHANGED
@@ -848,4 +848,8 @@ export { default as IconAnnotation } from './IconAnnotation';
848
848
  export { default as IconLastRun } from './IconLastRun';
849
849
  export { default as IconOperatingHistory } from './IconOperatingHistory';
850
850
  export { default as IconSchema } from './IconSchema';
851
+ export { default as IconExtractText } from './IconExtractText';
852
+ export { default as IconJSONFormat } from './IconJSONFormat';
853
+ export { default as IconAddFolder2 } from './IconAddFolder2';
854
+ export { default as IconCreateFile2 } from './IconCreateFile2';
851
855
  export * from './type';
package/esm/index.js CHANGED
@@ -848,4 +848,8 @@ export { default as IconAnnotation } from './IconAnnotation';
848
848
  export { default as IconLastRun } from './IconLastRun';
849
849
  export { default as IconOperatingHistory } from './IconOperatingHistory';
850
850
  export { default as IconSchema } from './IconSchema';
851
+ export { default as IconExtractText } from './IconExtractText';
852
+ export { default as IconJSONFormat } from './IconJSONFormat';
853
+ export { default as IconAddFolder2 } from './IconAddFolder2';
854
+ export { default as IconCreateFile2 } from './IconCreateFile2';
851
855
  export * from './type';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/react-hiagent",
3
- "version": "0.2.86",
3
+ "version": "0.2.88",
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 IconAddFolder2Component(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-AddFolder2${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 48 48" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path fillRule="evenodd" clipRule="evenodd" d="M4.182 5h13.16c.647 0 1.261.312 1.676.85L21.44 9h22.115C44.906 9 46 10.015 46 11.267v29.466C46 41.985 44.906 43 43.556 43H4.444C3.094 43 2 41.985 2 40.733V7.364C2 6.058 2.977 5 4.182 5zM42 39H6V13h36v26zM22 19v5h-5a1 1 0 00-1 1v2a1 1 0 001 1h5v5a1 1 0 001 1h2a1 1 0 001-1v-5h5a1 1 0 001-1v-2a1 1 0 00-1-1h-5v-5a1 1 0 00-1-1h-2a1 1 0 00-1 1z"/></svg>;
12
+ }
13
+
14
+ const IconAddFolder2 = React.forwardRef(IconAddFolder2Component);
15
+ export default IconAddFolder2;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconCreateFile2Component(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-CreateFile2${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 12 12" {...rest} ref={ref}><g clipPath="url(#svg_e6dcd06e33__svg_e6dcd06e33__a)"><path fillRule="evenodd" d="m8.25.5 2.25 2.357V6h-1V3.51h-2V1.5h-5v9H6v1H2a.5.5 0 0 1-.5-.5V1A.5.5 0 0 1 2 .5h6.25Zm1 6.5a.25.25 0 0 1 .25.25V8.5h1.25a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25H9.5v1.25a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25V9.5H7.25A.25.25 0 0 1 7 9.25v-.5a.25.25 0 0 1 .25-.25H8.5V7.25A.25.25 0 0 1 8.75 7h.5Z" clipRule="evenodd"/></g><defs><clipPath id="svg_e6dcd06e33__svg_e6dcd06e33__a"><path d="M0 0h12v12H0z"/></clipPath></defs></svg>;
12
+ }
13
+
14
+ const IconCreateFile2 = React.forwardRef(IconCreateFile2Component);
15
+ export default IconCreateFile2;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconExtractTextComponent(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-extract-text${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 16 16" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#E4F3FC'} d="M0 5a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v6a5 5 0 0 1-5 5H5a5 5 0 0 1-5-5V5Z"/><path fill={useCurrentColor ? 'currentColor' : '#24758E'} d="M8.74 12H7.26V5.382H3.5V4h9v1.382H8.74V12Z"/></svg>;
12
+ }
13
+
14
+ const IconExtractText = React.forwardRef(IconExtractTextComponent);
15
+ export default IconExtractText;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconJSONFormatComponent(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-JSON-format${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 16 16" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#ECEDED'} d="M0 4a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z"/><path fill={useCurrentColor ? 'currentColor' : '#676B72'} d="M10.287 3.6c.65 0 1.16.122 1.504.388.355.273.512.756.512 1.402v.99c0 .283.033.49.091.627a.496.496 0 0 0 .274.278v.001c.132.058.333.094.61.1l.122.002V8.61l-.124.004c-.269.006-.466.04-.6.096a.52.52 0 0 0-.278.276l-.002.005-.036.102-.002.007c-.035.128-.055.3-.055.52v.99c0 .646-.158 1.128-.512 1.402-.344.266-.853.388-1.504.388h-.45v-1.098h.42c.251 0 .414-.052.514-.134l.006-.006.029-.027.004-.005c.098-.11.164-.327.164-.687V9.51c0-.397.062-.729.198-.984l.063-.103c.094-.137.21-.25.349-.338l.13-.084-.13-.084a1.206 1.206 0 0 1-.275-.241l-.073-.097-.063-.104c-.135-.255-.198-.586-.198-.983v-.934c0-.36-.067-.578-.165-.687l-.04-.038c-.1-.082-.263-.133-.513-.133h-.42V3.6h.45Zm-4.124 0v1.1h-.42c-.25 0-.413.05-.514.133l-.039.037c-.098.109-.165.326-.165.687v.934c0 .347-.048.645-.151.884l-.048.099-.062.105c-.09.133-.209.248-.348.337L4.284 8l.132.084a1.2 1.2 0 0 1 .345.332v.001l.065.108v.001c.136.255.2.586.2.983v.934c0 .36.066.578.164.687l.004.005.029.027.006.005c.1.083.263.135.514.135h.42V12.4h-.45c-.65 0-1.16-.122-1.504-.388-.355-.273-.512-.755-.512-1.402v-.99c0-.22-.02-.391-.055-.52l-.002-.006-.036-.103-.002-.004-.047-.089a.501.501 0 0 0-.23-.187V8.71l-.113-.037a2.1 2.1 0 0 0-.488-.059L2.6 8.61V7.388l.123-.002c.276-.006.476-.043.608-.1a.493.493 0 0 0 .272-.276h.001c.06-.138.093-.346.093-.63v-.99c0-.646.157-1.128.511-1.402.345-.266.854-.388 1.505-.388h.45Zm-.726 7.561Zm-.145-.071Zm5.488-.097Zm-5.577-.034Zm5.62-.078Zm-5.686-.202Zm-.024-1.463v-.001Zm-2.055-.474Zm9.656.06Zm-1.68-.216c-.026.058-.046.12-.065.184.007-.024.013-.048.021-.07l.043-.114Zm1.795.18c.022-.006.046-.01.07-.015l-.07.015Zm-8.151-.93A1.317 1.317 0 0 1 4.47 8c.074.048.144.102.207.163h-.001A1.327 1.327 0 0 0 4.47 8a1.33 1.33 0 0 0 .208-.164Zm6.744.24Zm-6.456-.662-.051.107c.023-.044.042-.09.062-.136l-.011.03Zm5.959-.358v-.001Zm1.562-.085Zm-.039-.121Zm-.04-.277ZM5.266 4.937Zm.079-.06Zm.217-.066Zm5.196-1.288Z"/></svg>;
12
+ }
13
+
14
+ const IconJSONFormat = React.forwardRef(IconJSONFormatComponent);
15
+ export default IconJSONFormat;
package/src/index.ts CHANGED
@@ -848,5 +848,9 @@ export { default as IconAnnotation } from './IconAnnotation';
848
848
  export { default as IconLastRun } from './IconLastRun';
849
849
  export { default as IconOperatingHistory } from './IconOperatingHistory';
850
850
  export { default as IconSchema } from './IconSchema';
851
+ export { default as IconExtractText } from './IconExtractText';
852
+ export { default as IconJSONFormat } from './IconJSONFormat';
853
+ export { default as IconAddFolder2 } from './IconAddFolder2';
854
+ export { default as IconCreateFile2 } from './IconCreateFile2';
851
855
 
852
856
  export * from './type';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAddFolder2: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAddFolder2;
@@ -0,0 +1,69 @@
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 IconAddFolder2Component(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-AddFolder2").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 48 48", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.182 5h13.16c.647 0 1.261.312 1.676.85L21.44 9h22.115C44.906 9 46 10.015 46 11.267v29.466C46 41.985 44.906 43 43.556 43H4.444C3.094 43 2 41.985 2 40.733V7.364C2 6.058 2.977 5 4.182 5zM42 39H6V13h36v26zM22 19v5h-5a1 1 0 00-1 1v2a1 1 0 001 1h5v5a1 1 0 001 1h2a1 1 0 001-1v-5h5a1 1 0 001-1v-2a1 1 0 00-1-1h-5v-5a1 1 0 00-1-1h-2a1 1 0 00-1 1z" }));
66
+ }
67
+ var IconAddFolder2 = react_1.default.forwardRef(IconAddFolder2Component);
68
+ exports.default = IconAddFolder2;
69
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconCreateFile2: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconCreateFile2;
@@ -0,0 +1,73 @@
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 IconCreateFile2Component(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-CreateFile2").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 12 12" }, rest, { ref: ref }),
65
+ react_1.default.createElement("g", { clipPath: "url(#svg_e6dcd06e33__svg_e6dcd06e33__a)" },
66
+ react_1.default.createElement("path", { fillRule: "evenodd", d: "m8.25.5 2.25 2.357V6h-1V3.51h-2V1.5h-5v9H6v1H2a.5.5 0 0 1-.5-.5V1A.5.5 0 0 1 2 .5h6.25Zm1 6.5a.25.25 0 0 1 .25.25V8.5h1.25a.25.25 0 0 1 .25.25v.5a.25.25 0 0 1-.25.25H9.5v1.25a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25V9.5H7.25A.25.25 0 0 1 7 9.25v-.5a.25.25 0 0 1 .25-.25H8.5V7.25A.25.25 0 0 1 8.75 7h.5Z", clipRule: "evenodd" })),
67
+ react_1.default.createElement("defs", null,
68
+ react_1.default.createElement("clipPath", { id: "svg_e6dcd06e33__svg_e6dcd06e33__a" },
69
+ react_1.default.createElement("path", { d: "M0 0h12v12H0z" }))));
70
+ }
71
+ var IconCreateFile2 = react_1.default.forwardRef(IconCreateFile2Component);
72
+ exports.default = IconCreateFile2;
73
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconExtractText: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconExtractText;
@@ -0,0 +1,70 @@
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 IconExtractTextComponent(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 ? false : _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-extract-text").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 16 16" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#E4F3FC', d: "M0 5a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v6a5 5 0 0 1-5 5H5a5 5 0 0 1-5-5V5Z" }),
66
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#24758E', d: "M8.74 12H7.26V5.382H3.5V4h9v1.382H8.74V12Z" }));
67
+ }
68
+ var IconExtractText = react_1.default.forwardRef(IconExtractTextComponent);
69
+ exports.default = IconExtractText;
70
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconJSONFormat: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconJSONFormat;
@@ -0,0 +1,70 @@
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 IconJSONFormatComponent(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 ? false : _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-JSON-format").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 16 16" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#ECEDED', d: "M0 4a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z" }),
66
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#676B72', d: "M10.287 3.6c.65 0 1.16.122 1.504.388.355.273.512.756.512 1.402v.99c0 .283.033.49.091.627a.496.496 0 0 0 .274.278v.001c.132.058.333.094.61.1l.122.002V8.61l-.124.004c-.269.006-.466.04-.6.096a.52.52 0 0 0-.278.276l-.002.005-.036.102-.002.007c-.035.128-.055.3-.055.52v.99c0 .646-.158 1.128-.512 1.402-.344.266-.853.388-1.504.388h-.45v-1.098h.42c.251 0 .414-.052.514-.134l.006-.006.029-.027.004-.005c.098-.11.164-.327.164-.687V9.51c0-.397.062-.729.198-.984l.063-.103c.094-.137.21-.25.349-.338l.13-.084-.13-.084a1.206 1.206 0 0 1-.275-.241l-.073-.097-.063-.104c-.135-.255-.198-.586-.198-.983v-.934c0-.36-.067-.578-.165-.687l-.04-.038c-.1-.082-.263-.133-.513-.133h-.42V3.6h.45Zm-4.124 0v1.1h-.42c-.25 0-.413.05-.514.133l-.039.037c-.098.109-.165.326-.165.687v.934c0 .347-.048.645-.151.884l-.048.099-.062.105c-.09.133-.209.248-.348.337L4.284 8l.132.084a1.2 1.2 0 0 1 .345.332v.001l.065.108v.001c.136.255.2.586.2.983v.934c0 .36.066.578.164.687l.004.005.029.027.006.005c.1.083.263.135.514.135h.42V12.4h-.45c-.65 0-1.16-.122-1.504-.388-.355-.273-.512-.755-.512-1.402v-.99c0-.22-.02-.391-.055-.52l-.002-.006-.036-.103-.002-.004-.047-.089a.501.501 0 0 0-.23-.187V8.71l-.113-.037a2.1 2.1 0 0 0-.488-.059L2.6 8.61V7.388l.123-.002c.276-.006.476-.043.608-.1a.493.493 0 0 0 .272-.276h.001c.06-.138.093-.346.093-.63v-.99c0-.646.157-1.128.511-1.402.345-.266.854-.388 1.505-.388h.45Zm-.726 7.561Zm-.145-.071Zm5.488-.097Zm-5.577-.034Zm5.62-.078Zm-5.686-.202Zm-.024-1.463v-.001Zm-2.055-.474Zm9.656.06Zm-1.68-.216c-.026.058-.046.12-.065.184.007-.024.013-.048.021-.07l.043-.114Zm1.795.18c.022-.006.046-.01.07-.015l-.07.015Zm-8.151-.93A1.317 1.317 0 0 1 4.47 8c.074.048.144.102.207.163h-.001A1.327 1.327 0 0 0 4.47 8a1.33 1.33 0 0 0 .208-.164Zm6.744.24Zm-6.456-.662-.051.107c.023-.044.042-.09.062-.136l-.011.03Zm5.959-.358v-.001Zm1.562-.085Zm-.039-.121Zm-.04-.277ZM5.266 4.937Zm.079-.06Zm.217-.066Zm5.196-1.288Z" }));
67
+ }
68
+ var IconJSONFormat = react_1.default.forwardRef(IconJSONFormatComponent);
69
+ exports.default = IconJSONFormat;
70
+ });
package/umd/index.d.ts CHANGED
@@ -848,4 +848,8 @@ export { default as IconAnnotation } from './IconAnnotation';
848
848
  export { default as IconLastRun } from './IconLastRun';
849
849
  export { default as IconOperatingHistory } from './IconOperatingHistory';
850
850
  export { default as IconSchema } from './IconSchema';
851
+ export { default as IconExtractText } from './IconExtractText';
852
+ export { default as IconJSONFormat } from './IconJSONFormat';
853
+ export { default as IconAddFolder2 } from './IconAddFolder2';
854
+ export { default as IconCreateFile2 } from './IconCreateFile2';
851
855
  export * from './type';