@arco-iconbox/react-hiagent 0.2.88 → 0.2.90
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.
- package/cjs/IconLLM/index.js +2 -2
- package/cjs/IconSkillCenter/index.d.ts +4 -0
- package/cjs/IconSkillCenter/index.js +59 -0
- package/cjs/IconSkills2/index.d.ts +4 -0
- package/cjs/IconSkills2/index.js +60 -0
- package/cjs/index.d.ts +3 -1
- package/cjs/index.js +8 -4
- package/dist/icon.min.js +1 -1
- package/esm/IconLLM/index.js +2 -2
- package/esm/IconSkillCenter/index.d.ts +4 -0
- package/esm/IconSkillCenter/index.js +34 -0
- package/esm/IconSkills2/index.d.ts +4 -0
- package/esm/IconSkills2/index.js +35 -0
- package/esm/index.d.ts +3 -1
- package/esm/index.js +3 -1
- package/package.json +1 -1
- package/src/IconLLM/index.tsx +1 -1
- package/src/IconSkillCenter/index.tsx +15 -0
- package/src/IconSkills2/index.tsx +15 -0
- package/src/index.ts +3 -1
- package/umd/IconLLM/index.js +2 -2
- package/umd/IconSkillCenter/index.d.ts +4 -0
- package/umd/IconSkillCenter/index.js +69 -0
- package/umd/IconSkills2/index.d.ts +4 -0
- package/umd/IconSkills2/index.js +70 -0
- package/umd/index.d.ts +3 -1
- package/umd/index.js +8 -4
package/esm/IconLLM/index.js
CHANGED
|
@@ -28,8 +28,8 @@ function IconLLMComponent(props, ref) {
|
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
30
|
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-LLM").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 24 24" }, rest, { ref: ref }),
|
|
31
|
-
React.createElement("
|
|
32
|
-
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M5.595 8.746A.397.397 0 0 0 5 9.084v5.99c0 .21.057.418.164.6.107.183.262.334.448.44l4.971 2.806a.616.616 0 0 0 .83-.22.592.592 0 0 0 .082-.299v-6.
|
|
31
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#57A9FB', d: "M17 0H7a7 7 0 0 0-7 7v10a7 7 0 0 0 7 7h10a7 7 0 0 0 7-7V7a7 7 0 0 0-7-7Z" }),
|
|
32
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M5.595 8.746A.397.397 0 0 0 5 9.084v5.99c0 .21.057.418.164.6.107.183.262.334.448.44l4.971 2.806a.616.616 0 0 0 .83-.22.592.592 0 0 0 .082-.299v-6.29c0-.01-.002-.02-.006-.028a.052.052 0 0 0-.021-.021L5.595 8.746ZM12 4a.616.616 0 0 0-.303.08L5.894 7.357a.242.242 0 0 0-.123.208.237.237 0 0 0 .123.208l5.8 3.275a.616.616 0 0 0 .605 0l5.804-3.278a.241.241 0 0 0 .09-.328.24.24 0 0 0-.09-.088l-5.8-3.274A.616.616 0 0 0 12 4Zm7 11.075v-5.99a.389.389 0 0 0-.2-.34.403.403 0 0 0-.397-.001l-5.867 3.314a.06.06 0 0 0-.03.053v6.29a.594.594 0 0 0 .303.518.615.615 0 0 0 .608.002l4.971-2.808A1.19 1.19 0 0 0 19 15.075Z", clipRule: "evenodd" }));
|
|
33
33
|
}
|
|
34
34
|
var IconLLM = React.forwardRef(IconLLMComponent);
|
|
35
35
|
export default IconLLM;
|
|
@@ -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 IconSkillCenterComponent(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-SkillCenter").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M14.5869 1.7002C16.6375 1.70033 18.2997 3.36246 18.2998 5.41309V14.5869C18.2997 16.6375 16.6375 18.2997 14.5869 18.2998H5.41309C3.36246 18.2997 1.70033 16.6375 1.7002 14.5869V5.41309C1.70033 3.36246 3.36246 1.70033 5.41309 1.7002H14.5869ZM5 14.167C4.53981 14.167 4.16704 14.5398 4.16699 15C4.16699 15.4602 4.53979 15.833 5 15.833C5.46025 15.833 5.83301 15.4602 5.83301 15C5.83296 14.5398 5.46022 14.167 5 14.167ZM15 14.167C14.5398 14.167 14.167 14.5398 14.167 15C14.167 15.4602 14.5398 15.833 15 15.833C15.4602 15.833 15.833 15.4602 15.833 15C15.833 14.5398 15.4602 14.167 15 14.167ZM10.7246 5.05371C10.4373 4.43815 9.56267 4.43815 9.27539 5.05371L8.05469 7.66797C7.97522 7.83824 7.83824 7.97522 7.66797 8.05469L5.05371 9.27539C4.43815 9.56267 4.43815 10.4373 5.05371 10.7246L7.66797 11.9453C7.83824 12.0248 7.97522 12.1618 8.05469 12.332L9.27539 14.9463C9.56267 15.5619 10.4373 15.5619 10.7246 14.9463L11.9453 12.332C12.0248 12.1618 12.1618 12.0248 12.332 11.9453L14.9463 10.7246C15.5619 10.4373 15.5619 9.56267 14.9463 9.27539L12.332 8.05469C12.1618 7.97522 12.0248 7.83824 11.9453 7.66797L10.7246 5.05371ZM5 4.16699C4.53981 4.16704 4.16704 4.53981 4.16699 5C4.16699 5.46022 4.53979 5.83296 5 5.83301C5.46025 5.83301 5.83301 5.46025 5.83301 5C5.83296 4.53979 5.46022 4.16699 5 4.16699ZM15 4.16699C14.5398 4.16704 14.167 4.53981 14.167 5C14.167 5.46022 14.5398 5.83296 15 5.83301C15.4602 5.83301 15.833 5.46025 15.833 5C15.833 4.53979 15.4602 4.16699 15 4.16699Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconSkillCenter = React.forwardRef(IconSkillCenterComponent);
|
|
34
|
+
export default IconSkillCenter;
|
|
@@ -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 IconSkills2Component(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-Skills2").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M12.2353 9.1599C12.3106 9.15076 12.3873 9.15077 12.4626 9.1599C12.7262 9.19183 12.9759 9.33541 13.115 9.59058L15.1839 13.3922L17.6048 17.8402C17.8939 18.3714 17.4788 18.9999 16.8388 19H7.85977C7.21961 19 6.80454 18.3715 7.0937 17.8402L10.1903 12.149L11.5829 9.59058C11.7219 9.33539 11.9717 9.19185 12.2353 9.1599ZM9.36994 2.98683C9.57457 2.27687 10.3597 1.85547 11.123 2.04565L17.9394 3.74454C18.7026 3.93488 19.1553 4.66492 18.9509 5.37493L16.9143 12.4469C16.8174 12.7832 16.5888 13.0529 16.2955 13.2254L14.0723 9.14024L14.0019 9.02051C13.2575 7.86608 11.4403 7.86599 10.696 9.02051L10.6256 9.14024L9.13159 11.8852L8.34486 11.6892C7.58164 11.4988 7.12884 10.7688 7.33334 10.0588L9.36994 2.98683Z" }),
|
|
32
|
+
React.createElement("path", { opacity: ".5", d: "M6.42261 5.84875C6.75951 5.84875 7.08908 5.88207 7.40894 5.94153L6.45068 9.55237C6.11275 10.8255 6.86149 12.1342 8.12366 12.4753L8.66077 12.6206L6.58435 16.7576C6.53062 16.7592 6.47672 16.7612 6.42261 16.7612C3.43562 16.7611 1.01389 14.3182 1.01367 11.3053C1.01367 8.29218 3.43549 5.84884 6.42261 5.84875Z" }));
|
|
33
|
+
}
|
|
34
|
+
var IconSkills2 = React.forwardRef(IconSkills2Component);
|
|
35
|
+
export default IconSkills2;
|
package/esm/index.d.ts
CHANGED
|
@@ -836,7 +836,6 @@ export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
|
836
836
|
export { default as IconBasicDatabase } from './IconBasicDatabase';
|
|
837
837
|
export { default as IconModelTraining } from './IconModelTraining';
|
|
838
838
|
export { default as IconWorkflowCode } from './IconWorkflowCode';
|
|
839
|
-
export { default as IconLLM } from './IconLLM';
|
|
840
839
|
export { default as IconWorkflowCondition } from './IconWorkflowCondition';
|
|
841
840
|
export { default as IconBuildCommunity } from './IconBuildCommunity';
|
|
842
841
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
@@ -852,4 +851,7 @@ export { default as IconExtractText } from './IconExtractText';
|
|
|
852
851
|
export { default as IconJSONFormat } from './IconJSONFormat';
|
|
853
852
|
export { default as IconAddFolder2 } from './IconAddFolder2';
|
|
854
853
|
export { default as IconCreateFile2 } from './IconCreateFile2';
|
|
854
|
+
export { default as IconSkills2 } from './IconSkills2';
|
|
855
|
+
export { default as IconSkillCenter } from './IconSkillCenter';
|
|
856
|
+
export { default as IconLLM } from './IconLLM';
|
|
855
857
|
export * from './type';
|
package/esm/index.js
CHANGED
|
@@ -836,7 +836,6 @@ export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
|
836
836
|
export { default as IconBasicDatabase } from './IconBasicDatabase';
|
|
837
837
|
export { default as IconModelTraining } from './IconModelTraining';
|
|
838
838
|
export { default as IconWorkflowCode } from './IconWorkflowCode';
|
|
839
|
-
export { default as IconLLM } from './IconLLM';
|
|
840
839
|
export { default as IconWorkflowCondition } from './IconWorkflowCondition';
|
|
841
840
|
export { default as IconBuildCommunity } from './IconBuildCommunity';
|
|
842
841
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
@@ -852,4 +851,7 @@ export { default as IconExtractText } from './IconExtractText';
|
|
|
852
851
|
export { default as IconJSONFormat } from './IconJSONFormat';
|
|
853
852
|
export { default as IconAddFolder2 } from './IconAddFolder2';
|
|
854
853
|
export { default as IconCreateFile2 } from './IconCreateFile2';
|
|
854
|
+
export { default as IconSkills2 } from './IconSkills2';
|
|
855
|
+
export { default as IconSkillCenter } from './IconSkillCenter';
|
|
856
|
+
export { default as IconLLM } from './IconLLM';
|
|
855
857
|
export * from './type';
|
package/package.json
CHANGED
package/src/IconLLM/index.tsx
CHANGED
|
@@ -8,7 +8,7 @@ function IconLLMComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElemen
|
|
|
8
8
|
|
|
9
9
|
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
10
|
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
-
return <svg className={`${prefix}-icon ${prefix}-icon-LLM${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 24 24" {...rest} ref={ref}><
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-LLM${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 24 24" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#57A9FB'} d="M17 0H7a7 7 0 0 0-7 7v10a7 7 0 0 0 7 7h10a7 7 0 0 0 7-7V7a7 7 0 0 0-7-7Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M5.595 8.746A.397.397 0 0 0 5 9.084v5.99c0 .21.057.418.164.6.107.183.262.334.448.44l4.971 2.806a.616.616 0 0 0 .83-.22.592.592 0 0 0 .082-.299v-6.29c0-.01-.002-.02-.006-.028a.052.052 0 0 0-.021-.021L5.595 8.746ZM12 4a.616.616 0 0 0-.303.08L5.894 7.357a.242.242 0 0 0-.123.208.237.237 0 0 0 .123.208l5.8 3.275a.616.616 0 0 0 .605 0l5.804-3.278a.241.241 0 0 0 .09-.328.24.24 0 0 0-.09-.088l-5.8-3.274A.616.616 0 0 0 12 4Zm7 11.075v-5.99a.389.389 0 0 0-.2-.34.403.403 0 0 0-.397-.001l-5.867 3.314a.06.06 0 0 0-.03.053v6.29a.594.594 0 0 0 .303.518.615.615 0 0 0 .608.002l4.971-2.808A1.19 1.19 0 0 0 19 15.075Z" clipRule="evenodd"/></svg>;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const IconLLM = React.forwardRef(IconLLMComponent);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconSkillCenterComponent(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-SkillCenter${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 20 20" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M14.5869 1.7002C16.6375 1.70033 18.2997 3.36246 18.2998 5.41309V14.5869C18.2997 16.6375 16.6375 18.2997 14.5869 18.2998H5.41309C3.36246 18.2997 1.70033 16.6375 1.7002 14.5869V5.41309C1.70033 3.36246 3.36246 1.70033 5.41309 1.7002H14.5869ZM5 14.167C4.53981 14.167 4.16704 14.5398 4.16699 15C4.16699 15.4602 4.53979 15.833 5 15.833C5.46025 15.833 5.83301 15.4602 5.83301 15C5.83296 14.5398 5.46022 14.167 5 14.167ZM15 14.167C14.5398 14.167 14.167 14.5398 14.167 15C14.167 15.4602 14.5398 15.833 15 15.833C15.4602 15.833 15.833 15.4602 15.833 15C15.833 14.5398 15.4602 14.167 15 14.167ZM10.7246 5.05371C10.4373 4.43815 9.56267 4.43815 9.27539 5.05371L8.05469 7.66797C7.97522 7.83824 7.83824 7.97522 7.66797 8.05469L5.05371 9.27539C4.43815 9.56267 4.43815 10.4373 5.05371 10.7246L7.66797 11.9453C7.83824 12.0248 7.97522 12.1618 8.05469 12.332L9.27539 14.9463C9.56267 15.5619 10.4373 15.5619 10.7246 14.9463L11.9453 12.332C12.0248 12.1618 12.1618 12.0248 12.332 11.9453L14.9463 10.7246C15.5619 10.4373 15.5619 9.56267 14.9463 9.27539L12.332 8.05469C12.1618 7.97522 12.0248 7.83824 11.9453 7.66797L10.7246 5.05371ZM5 4.16699C4.53981 4.16704 4.16704 4.53981 4.16699 5C4.16699 5.46022 4.53979 5.83296 5 5.83301C5.46025 5.83301 5.83301 5.46025 5.83301 5C5.83296 4.53979 5.46022 4.16699 5 4.16699ZM15 4.16699C14.5398 4.16704 14.167 4.53981 14.167 5C14.167 5.46022 14.5398 5.83296 15 5.83301C15.4602 5.83301 15.833 5.46025 15.833 5C15.833 4.53979 15.4602 4.16699 15 4.16699Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconSkillCenter = React.forwardRef(IconSkillCenterComponent);
|
|
15
|
+
export default IconSkillCenter;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconSkills2Component(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-Skills2${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 20 20" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M12.2353 9.1599C12.3106 9.15076 12.3873 9.15077 12.4626 9.1599C12.7262 9.19183 12.9759 9.33541 13.115 9.59058L15.1839 13.3922L17.6048 17.8402C17.8939 18.3714 17.4788 18.9999 16.8388 19H7.85977C7.21961 19 6.80454 18.3715 7.0937 17.8402L10.1903 12.149L11.5829 9.59058C11.7219 9.33539 11.9717 9.19185 12.2353 9.1599ZM9.36994 2.98683C9.57457 2.27687 10.3597 1.85547 11.123 2.04565L17.9394 3.74454C18.7026 3.93488 19.1553 4.66492 18.9509 5.37493L16.9143 12.4469C16.8174 12.7832 16.5888 13.0529 16.2955 13.2254L14.0723 9.14024L14.0019 9.02051C13.2575 7.86608 11.4403 7.86599 10.696 9.02051L10.6256 9.14024L9.13159 11.8852L8.34486 11.6892C7.58164 11.4988 7.12884 10.7688 7.33334 10.0588L9.36994 2.98683Z"/><path opacity=".5" d="M6.42261 5.84875C6.75951 5.84875 7.08908 5.88207 7.40894 5.94153L6.45068 9.55237C6.11275 10.8255 6.86149 12.1342 8.12366 12.4753L8.66077 12.6206L6.58435 16.7576C6.53062 16.7592 6.47672 16.7612 6.42261 16.7612C3.43562 16.7611 1.01389 14.3182 1.01367 11.3053C1.01367 8.29218 3.43549 5.84884 6.42261 5.84875Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconSkills2 = React.forwardRef(IconSkills2Component);
|
|
15
|
+
export default IconSkills2;
|
package/src/index.ts
CHANGED
|
@@ -836,7 +836,6 @@ export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
|
836
836
|
export { default as IconBasicDatabase } from './IconBasicDatabase';
|
|
837
837
|
export { default as IconModelTraining } from './IconModelTraining';
|
|
838
838
|
export { default as IconWorkflowCode } from './IconWorkflowCode';
|
|
839
|
-
export { default as IconLLM } from './IconLLM';
|
|
840
839
|
export { default as IconWorkflowCondition } from './IconWorkflowCondition';
|
|
841
840
|
export { default as IconBuildCommunity } from './IconBuildCommunity';
|
|
842
841
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
@@ -852,5 +851,8 @@ export { default as IconExtractText } from './IconExtractText';
|
|
|
852
851
|
export { default as IconJSONFormat } from './IconJSONFormat';
|
|
853
852
|
export { default as IconAddFolder2 } from './IconAddFolder2';
|
|
854
853
|
export { default as IconCreateFile2 } from './IconCreateFile2';
|
|
854
|
+
export { default as IconSkills2 } from './IconSkills2';
|
|
855
|
+
export { default as IconSkillCenter } from './IconSkillCenter';
|
|
856
|
+
export { default as IconLLM } from './IconLLM';
|
|
855
857
|
|
|
856
858
|
export * from './type';
|
package/umd/IconLLM/index.js
CHANGED
|
@@ -62,8 +62,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
62
62
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
63
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
64
|
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-LLM").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 24 24" }, rest, { ref: ref }),
|
|
65
|
-
react_1.default.createElement("
|
|
66
|
-
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M5.595 8.746A.397.397 0 0 0 5 9.084v5.99c0 .21.057.418.164.6.107.183.262.334.448.44l4.971 2.806a.616.616 0 0 0 .83-.22.592.592 0 0 0 .082-.299v-6.
|
|
65
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#57A9FB', d: "M17 0H7a7 7 0 0 0-7 7v10a7 7 0 0 0 7 7h10a7 7 0 0 0 7-7V7a7 7 0 0 0-7-7Z" }),
|
|
66
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M5.595 8.746A.397.397 0 0 0 5 9.084v5.99c0 .21.057.418.164.6.107.183.262.334.448.44l4.971 2.806a.616.616 0 0 0 .83-.22.592.592 0 0 0 .082-.299v-6.29c0-.01-.002-.02-.006-.028a.052.052 0 0 0-.021-.021L5.595 8.746ZM12 4a.616.616 0 0 0-.303.08L5.894 7.357a.242.242 0 0 0-.123.208.237.237 0 0 0 .123.208l5.8 3.275a.616.616 0 0 0 .605 0l5.804-3.278a.241.241 0 0 0 .09-.328.24.24 0 0 0-.09-.088l-5.8-3.274A.616.616 0 0 0 12 4Zm7 11.075v-5.99a.389.389 0 0 0-.2-.34.403.403 0 0 0-.397-.001l-5.867 3.314a.06.06 0 0 0-.03.053v6.29a.594.594 0 0 0 .303.518.615.615 0 0 0 .608.002l4.971-2.808A1.19 1.19 0 0 0 19 15.075Z", clipRule: "evenodd" }));
|
|
67
67
|
}
|
|
68
68
|
var IconLLM = react_1.default.forwardRef(IconLLMComponent);
|
|
69
69
|
exports.default = IconLLM;
|
|
@@ -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 IconSkillCenterComponent(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-SkillCenter").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M14.5869 1.7002C16.6375 1.70033 18.2997 3.36246 18.2998 5.41309V14.5869C18.2997 16.6375 16.6375 18.2997 14.5869 18.2998H5.41309C3.36246 18.2997 1.70033 16.6375 1.7002 14.5869V5.41309C1.70033 3.36246 3.36246 1.70033 5.41309 1.7002H14.5869ZM5 14.167C4.53981 14.167 4.16704 14.5398 4.16699 15C4.16699 15.4602 4.53979 15.833 5 15.833C5.46025 15.833 5.83301 15.4602 5.83301 15C5.83296 14.5398 5.46022 14.167 5 14.167ZM15 14.167C14.5398 14.167 14.167 14.5398 14.167 15C14.167 15.4602 14.5398 15.833 15 15.833C15.4602 15.833 15.833 15.4602 15.833 15C15.833 14.5398 15.4602 14.167 15 14.167ZM10.7246 5.05371C10.4373 4.43815 9.56267 4.43815 9.27539 5.05371L8.05469 7.66797C7.97522 7.83824 7.83824 7.97522 7.66797 8.05469L5.05371 9.27539C4.43815 9.56267 4.43815 10.4373 5.05371 10.7246L7.66797 11.9453C7.83824 12.0248 7.97522 12.1618 8.05469 12.332L9.27539 14.9463C9.56267 15.5619 10.4373 15.5619 10.7246 14.9463L11.9453 12.332C12.0248 12.1618 12.1618 12.0248 12.332 11.9453L14.9463 10.7246C15.5619 10.4373 15.5619 9.56267 14.9463 9.27539L12.332 8.05469C12.1618 7.97522 12.0248 7.83824 11.9453 7.66797L10.7246 5.05371ZM5 4.16699C4.53981 4.16704 4.16704 4.53981 4.16699 5C4.16699 5.46022 4.53979 5.83296 5 5.83301C5.46025 5.83301 5.83301 5.46025 5.83301 5C5.83296 4.53979 5.46022 4.16699 5 4.16699ZM15 4.16699C14.5398 4.16704 14.167 4.53981 14.167 5C14.167 5.46022 14.5398 5.83296 15 5.83301C15.4602 5.83301 15.833 5.46025 15.833 5C15.833 4.53979 15.4602 4.16699 15 4.16699Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconSkillCenter = react_1.default.forwardRef(IconSkillCenterComponent);
|
|
68
|
+
exports.default = IconSkillCenter;
|
|
69
|
+
});
|
|
@@ -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 IconSkills2Component(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-Skills2").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M12.2353 9.1599C12.3106 9.15076 12.3873 9.15077 12.4626 9.1599C12.7262 9.19183 12.9759 9.33541 13.115 9.59058L15.1839 13.3922L17.6048 17.8402C17.8939 18.3714 17.4788 18.9999 16.8388 19H7.85977C7.21961 19 6.80454 18.3715 7.0937 17.8402L10.1903 12.149L11.5829 9.59058C11.7219 9.33539 11.9717 9.19185 12.2353 9.1599ZM9.36994 2.98683C9.57457 2.27687 10.3597 1.85547 11.123 2.04565L17.9394 3.74454C18.7026 3.93488 19.1553 4.66492 18.9509 5.37493L16.9143 12.4469C16.8174 12.7832 16.5888 13.0529 16.2955 13.2254L14.0723 9.14024L14.0019 9.02051C13.2575 7.86608 11.4403 7.86599 10.696 9.02051L10.6256 9.14024L9.13159 11.8852L8.34486 11.6892C7.58164 11.4988 7.12884 10.7688 7.33334 10.0588L9.36994 2.98683Z" }),
|
|
66
|
+
react_1.default.createElement("path", { opacity: ".5", d: "M6.42261 5.84875C6.75951 5.84875 7.08908 5.88207 7.40894 5.94153L6.45068 9.55237C6.11275 10.8255 6.86149 12.1342 8.12366 12.4753L8.66077 12.6206L6.58435 16.7576C6.53062 16.7592 6.47672 16.7612 6.42261 16.7612C3.43562 16.7611 1.01389 14.3182 1.01367 11.3053C1.01367 8.29218 3.43549 5.84884 6.42261 5.84875Z" }));
|
|
67
|
+
}
|
|
68
|
+
var IconSkills2 = react_1.default.forwardRef(IconSkills2Component);
|
|
69
|
+
exports.default = IconSkills2;
|
|
70
|
+
});
|
package/umd/index.d.ts
CHANGED
|
@@ -836,7 +836,6 @@ export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
|
836
836
|
export { default as IconBasicDatabase } from './IconBasicDatabase';
|
|
837
837
|
export { default as IconModelTraining } from './IconModelTraining';
|
|
838
838
|
export { default as IconWorkflowCode } from './IconWorkflowCode';
|
|
839
|
-
export { default as IconLLM } from './IconLLM';
|
|
840
839
|
export { default as IconWorkflowCondition } from './IconWorkflowCondition';
|
|
841
840
|
export { default as IconBuildCommunity } from './IconBuildCommunity';
|
|
842
841
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
@@ -852,4 +851,7 @@ export { default as IconExtractText } from './IconExtractText';
|
|
|
852
851
|
export { default as IconJSONFormat } from './IconJSONFormat';
|
|
853
852
|
export { default as IconAddFolder2 } from './IconAddFolder2';
|
|
854
853
|
export { default as IconCreateFile2 } from './IconCreateFile2';
|
|
854
|
+
export { default as IconSkills2 } from './IconSkills2';
|
|
855
|
+
export { default as IconSkillCenter } from './IconSkillCenter';
|
|
856
|
+
export { default as IconLLM } from './IconLLM';
|
|
855
857
|
export * from './type';
|