@arco-iconbox/react-hiagent 0.2.55 → 0.2.57
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/IconAgentproFollow/index.d.ts +4 -0
- package/cjs/IconAgentproFollow/index.js +59 -0
- package/cjs/IconKnowledgeBoard/index.d.ts +4 -0
- package/cjs/IconKnowledgeBoard/index.js +59 -0
- package/cjs/IconSankeyDiagram/index.d.ts +4 -0
- package/cjs/IconSankeyDiagram/index.js +65 -0
- package/cjs/IconTerminology/index.d.ts +4 -0
- package/cjs/IconTerminology/index.js +59 -0
- package/cjs/IconUploadFile/index.d.ts +4 -0
- package/cjs/IconUploadFile/index.js +59 -0
- package/cjs/IconUploadRadio/index.d.ts +4 -0
- package/cjs/IconUploadRadio/index.js +59 -0
- package/cjs/index.d.ts +6 -0
- package/cjs/index.js +14 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconAgentproFollow/index.d.ts +4 -0
- package/esm/IconAgentproFollow/index.js +34 -0
- package/esm/IconKnowledgeBoard/index.d.ts +4 -0
- package/esm/IconKnowledgeBoard/index.js +34 -0
- package/esm/IconSankeyDiagram/index.d.ts +4 -0
- package/esm/IconSankeyDiagram/index.js +40 -0
- package/esm/IconTerminology/index.d.ts +4 -0
- package/esm/IconTerminology/index.js +34 -0
- package/esm/IconUploadFile/index.d.ts +4 -0
- package/esm/IconUploadFile/index.js +34 -0
- package/esm/IconUploadRadio/index.d.ts +4 -0
- package/esm/IconUploadRadio/index.js +34 -0
- package/esm/index.d.ts +6 -0
- package/esm/index.js +6 -0
- package/package.json +1 -1
- package/src/IconAgentproFollow/index.tsx +15 -0
- package/src/IconKnowledgeBoard/index.tsx +15 -0
- package/src/IconSankeyDiagram/index.tsx +15 -0
- package/src/IconTerminology/index.tsx +15 -0
- package/src/IconUploadFile/index.tsx +15 -0
- package/src/IconUploadRadio/index.tsx +15 -0
- package/src/index.ts +6 -0
- package/umd/IconAgentproFollow/index.d.ts +4 -0
- package/umd/IconAgentproFollow/index.js +69 -0
- package/umd/IconKnowledgeBoard/index.d.ts +4 -0
- package/umd/IconKnowledgeBoard/index.js +69 -0
- package/umd/IconSankeyDiagram/index.d.ts +4 -0
- package/umd/IconSankeyDiagram/index.js +75 -0
- package/umd/IconTerminology/index.d.ts +4 -0
- package/umd/IconTerminology/index.js +69 -0
- package/umd/IconUploadFile/index.d.ts +4 -0
- package/umd/IconUploadFile/index.js +69 -0
- package/umd/IconUploadRadio/index.d.ts +4 -0
- package/umd/IconUploadRadio/index.js +69 -0
- package/umd/index.d.ts +6 -0
- package/umd/index.js +14 -2
|
@@ -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 IconAgentproFollowComponent(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-agentpro-follow").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { fillRule: "evenodd", d: "M7.409 13.435a.604.604 0 0 1-.009-.102V12a.6.6 0 1 1 1.2 0v1.333a.604.604 0 0 1-.009.102 5.469 5.469 0 0 0 4.844-4.844.604.604 0 0 1-.102.009H12a.6.6 0 1 1 0-1.2h1.333a.57.57 0 0 1 .102.009 5.469 5.469 0 0 0-4.844-4.844.604.604 0 0 1 .009.102V4a.6.6 0 0 1-1.2 0V2.667c0-.035.003-.07.009-.102a5.469 5.469 0 0 0-4.844 4.844.604.604 0 0 1 .102-.01H4a.6.6 0 0 1 0 1.2H2.667a.605.605 0 0 1-.102-.008 5.469 5.469 0 0 0 4.844 4.844ZM14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0ZM8 6.667a1.333 1.333 0 1 1 0 2.666 1.333 1.333 0 0 1 0-2.666Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconAgentproFollow = React.forwardRef(IconAgentproFollowComponent);
|
|
34
|
+
export default IconAgentproFollow;
|
|
@@ -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 IconKnowledgeBoardComponent(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_board").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.084 3.33a2.75 2.75 0 0 1 2.75 2.75v7.833a2.75 2.75 0 0 1-2.75 2.75H4.75A2.75 2.75 0 0 1 2 13.913V6.08a2.75 2.75 0 0 1 2.75-2.75h10.334Zm-10 3.898a.75.75 0 0 0-.75.75v5.167a.75.75 0 0 0 1.5 0V7.978a.75.75 0 0 0-.75-.75Zm3.5 2.5a.75.75 0 0 0-.75.75v2.667a.75.75 0 0 0 1.5 0v-2.667a.75.75 0 0 0-.75-.75Zm5.5-4.083a.303.303 0 0 0-.257.141l-.497.787-.65.08a.298.298 0 0 0-.19.49l.54.62-.175.86a.3.3 0 0 0 .119.3.306.306 0 0 0 .323.017l.787-.431.787.43a.306.306 0 0 0 .322-.017.302.302 0 0 0 .104-.133.302.302 0 0 0 .014-.168l-.173-.858.54-.62a.298.298 0 0 0-.192-.49l-.648-.08-.498-.787a.302.302 0 0 0-.256-.141Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconKnowledgeBoard = React.forwardRef(IconKnowledgeBoardComponent);
|
|
34
|
+
export default IconKnowledgeBoard;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 IconSankeyDiagramComponent(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-sankey-diagram").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 140 140" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#EAEDF1', d: "M26.892 16.486c28.897 0 45.16 14.21 57.203 25.633 12.47 11.827 18.195 17.475 29.013 17.475v29.73c-24.793 0-39.216-15.906-49.472-25.633-10.682-10.13-19.722-17.475-36.744-17.475v-29.73Z", opacity: ".7" }),
|
|
32
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#EAEDF1', d: "M113.108 16.486c-14.367 0-25.154 7.345-33.464 16.978-8.155 9.455-14.53 21.8-20.176 33.248-5.847 11.856-10.872 22.637-16.59 30.651-5.73 8.031-10.763 11.285-15.986 11.285v14.865c12.581 0 21.488-8.266 28.088-17.515 6.61-9.267 12.305-21.527 17.82-32.71 5.717-11.593 11.35-22.29 18.1-30.115 6.597-7.647 13.616-11.822 22.208-11.822V16.486Z", opacity: ".7" }),
|
|
33
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#EAEDF1', d: "M26.892 65.54c25.928 0 40.384 12.494 52.088 23.594 11.916 11.302 19.816 19.514 34.128 19.514v14.865c-21.299 0-33.547-13.341-44.357-23.594-11.022-10.453-21.868-19.514-41.86-19.514V65.54Z", opacity: ".5" }),
|
|
34
|
+
React.createElement("rect", { width: "8.919", height: "110", x: "15", y: "14.999", fill: useCurrentColor ? 'currentColor' : '#DDE2E9', rx: "2" }),
|
|
35
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#DDE2E9', d: "M17 33a2 2 0 0 1-2-2V17a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V45a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V73a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Z" }),
|
|
36
|
+
React.createElement("rect", { width: "8.919", height: "110", x: "116.081", y: "14.999", fill: useCurrentColor ? 'currentColor' : '#DDE2E9', rx: "2" }),
|
|
37
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#DDE2E9', d: "M118.081 33a2 2 0 0 1-2-2V17a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V45a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V73a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Z" }));
|
|
38
|
+
}
|
|
39
|
+
var IconSankeyDiagram = React.forwardRef(IconSankeyDiagramComponent);
|
|
40
|
+
export default IconSankeyDiagram;
|
|
@@ -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 IconTerminologyComponent(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-terminology").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 14 14" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M7.001.51c1.79 0 3.413.727 4.585 1.9a6.466 6.466 0 0 1 1.898 4.583c0 1.79-.726 3.413-1.898 4.585A6.467 6.467 0 0 1 7 13.477c-.01 0-.02-.003-.028-.003H1.5a.65.65 0 0 1 0-1.3H7l.031.002a5.165 5.165 0 0 0 3.634-1.518 5.166 5.166 0 0 0 1.519-3.665c0-1.43-.58-2.726-1.519-3.665A5.166 5.166 0 0 0 7 1.811a5.165 5.165 0 0 0-3.665 1.517 5.165 5.165 0 0 0-1.518 3.665 5.16 5.16 0 0 0 1.036 3.11.65.65 0 0 1-1.04.781 6.46 6.46 0 0 1-1.297-3.89 6.47 6.47 0 0 1 1.9-4.585A6.466 6.466 0 0 1 7.001.51ZM8 8.35a.65.65 0 0 1 0 1.3H5a.65.65 0 0 1 0-1.3h3Zm1-3a.65.65 0 0 1 0 1.3H5a.65.65 0 0 1 0-1.3h4Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconTerminology = React.forwardRef(IconTerminologyComponent);
|
|
34
|
+
export default IconTerminology;
|
|
@@ -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 IconUploadFileComponent(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-upload_file").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 18 18", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M13.1621 9.92383C13.2989 9.7872 13.5194 9.78722 13.6572 9.92383L16.1377 12.4043C16.2745 12.5411 16.2745 12.7636 16.1377 12.9004L15.6426 13.3965C15.61 13.4292 15.5709 13.4559 15.5283 13.4736C15.4859 13.4912 15.4404 13.4999 15.3945 13.5C15.3485 13.5 15.3023 13.4913 15.2598 13.4736C15.2171 13.4559 15.1781 13.4292 15.1455 13.3965L14.1152 12.3652V15.9902C14.1152 16.0831 14.0784 16.1726 14.0127 16.2383C13.947 16.3038 13.8575 16.3408 13.7646 16.3408H13.0625C12.9699 16.3407 12.881 16.3037 12.8154 16.2383C12.7498 16.1726 12.713 16.0831 12.7129 15.9902V12.3564L11.6729 13.3965C11.6073 13.4618 11.5183 13.4989 11.4258 13.499C11.3331 13.499 11.2434 13.4619 11.1777 13.3965L10.6816 12.9004C10.6491 12.8678 10.6231 12.8287 10.6055 12.7861C10.5879 12.7437 10.5791 12.6983 10.5791 12.6523C10.5791 12.6064 10.5879 12.561 10.6055 12.5186C10.6231 12.476 10.6491 12.4368 10.6816 12.4043L13.1621 9.92383ZM16.5938 1.66504C16.9044 1.66504 17.1562 1.91688 17.1562 2.22754V8.61133C17.156 8.84363 16.9677 9.03219 16.7354 9.03223H15.999C15.7667 9.03223 15.5774 8.84365 15.5771 8.61133V3.24316H2.42285V13.7676H8.8418C9.0742 13.7676 9.26254 13.9561 9.2627 14.1885V14.9258C9.26252 15.1581 9.07419 15.3467 8.8418 15.3467H1.40625C1.09567 15.3467 0.843886 15.0947 0.84375 14.7842V2.22754C0.84375 1.91688 1.09559 1.66504 1.40625 1.66504H16.5938ZM8.375 9.375C8.58211 9.375 8.75 9.54289 8.75 9.75V10.5C8.75 10.7071 8.58211 10.875 8.375 10.875H5.375C5.16789 10.875 5 10.7071 5 10.5V9.75C5 9.54289 5.16789 9.375 5.375 9.375H8.375ZM10.625 6C10.8321 6 11 6.16789 11 6.375V7.125C11 7.33211 10.8321 7.5 10.625 7.5H5.375C5.16789 7.5 5 7.33211 5 7.125V6.375C5 6.16789 5.16789 6 5.375 6H10.625Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconUploadFile = React.forwardRef(IconUploadFileComponent);
|
|
34
|
+
export default IconUploadFile;
|
|
@@ -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 IconUploadRadioComponent(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-upload_radio").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 18 18", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M13.1621 9.92383C13.2989 9.7872 13.5194 9.78722 13.6572 9.92383L16.1377 12.4043C16.2745 12.5411 16.2745 12.7636 16.1377 12.9004L15.6426 13.3965C15.61 13.4292 15.5709 13.4559 15.5283 13.4736C15.4859 13.4912 15.4404 13.4999 15.3945 13.5C15.3485 13.5 15.3023 13.4913 15.2598 13.4736C15.2171 13.4559 15.1781 13.4292 15.1455 13.3965L14.1152 12.3652V15.9902C14.1152 16.0831 14.0784 16.1726 14.0127 16.2383C13.947 16.3038 13.8575 16.3408 13.7646 16.3408H13.0625C12.9699 16.3407 12.881 16.3037 12.8154 16.2383C12.7498 16.1726 12.713 16.0831 12.7129 15.9902V12.3564L11.6729 13.3965C11.6073 13.4618 11.5183 13.4989 11.4258 13.499C11.3331 13.499 11.2434 13.4619 11.1777 13.3965L10.6816 12.9004C10.6491 12.8678 10.6231 12.8287 10.6055 12.7861C10.5879 12.7437 10.5791 12.6983 10.5791 12.6523C10.5791 12.6064 10.5879 12.561 10.6055 12.5186C10.6231 12.476 10.6491 12.4368 10.6816 12.4043L13.1621 9.92383ZM16.5938 1.66504C16.9044 1.66504 17.1562 1.91688 17.1562 2.22754V8.61133C17.156 8.84363 16.9677 9.03219 16.7354 9.03223H15.999C15.7667 9.03223 15.5774 8.84365 15.5771 8.61133V3.24316H2.42285V13.7676H8.8418C9.0742 13.7676 9.26254 13.9561 9.2627 14.1885V14.9258C9.26252 15.1581 9.07419 15.3467 8.8418 15.3467H1.40625C1.09567 15.3467 0.843886 15.0947 0.84375 14.7842V2.22754C0.84375 1.91688 1.09559 1.66504 1.40625 1.66504H16.5938ZM8.97461 4.82715C9.04868 4.82715 9.121 4.84952 9.18262 4.89062L12.0059 6.77734L11.1758 8.02539L10.0947 7.30273L10.0957 9.99512C10.0983 10.0391 10.0996 10.0833 10.0996 10.1279C10.0996 11.3706 9.09225 12.3779 7.84961 12.3779C6.60714 12.3777 5.59961 11.3704 5.59961 10.1279C5.59974 8.88552 6.60722 7.87813 7.84961 7.87793C8.11242 7.87793 8.36515 7.92304 8.59961 8.00586V5.20215C8.59961 4.99516 8.76767 4.82735 8.97461 4.82715ZM7.84961 9.37793C7.43565 9.37813 7.09974 9.71395 7.09961 10.1279C7.09961 10.542 7.43556 10.8777 7.84961 10.8779C8.26382 10.8779 8.59961 10.5421 8.59961 10.1279C8.59948 9.71383 8.26374 9.37793 7.84961 9.37793Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconUploadRadio = React.forwardRef(IconUploadRadioComponent);
|
|
34
|
+
export default IconUploadRadio;
|
package/esm/index.d.ts
CHANGED
|
@@ -795,4 +795,10 @@ export { default as IconMore } from './IconMore';
|
|
|
795
795
|
export { default as IconQAExtract } from './IconQAExtract';
|
|
796
796
|
export { default as IconLoading2 } from './IconLoading2';
|
|
797
797
|
export { default as IconIndicatorMonitoring } from './IconIndicatorMonitoring';
|
|
798
|
+
export { default as IconKnowledgeBoard } from './IconKnowledgeBoard';
|
|
799
|
+
export { default as IconUploadRadio } from './IconUploadRadio';
|
|
800
|
+
export { default as IconUploadFile } from './IconUploadFile';
|
|
801
|
+
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
|
+
export { default as IconTerminology } from './IconTerminology';
|
|
803
|
+
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
798
804
|
export * from './type';
|
package/esm/index.js
CHANGED
|
@@ -795,4 +795,10 @@ export { default as IconMore } from './IconMore';
|
|
|
795
795
|
export { default as IconQAExtract } from './IconQAExtract';
|
|
796
796
|
export { default as IconLoading2 } from './IconLoading2';
|
|
797
797
|
export { default as IconIndicatorMonitoring } from './IconIndicatorMonitoring';
|
|
798
|
+
export { default as IconKnowledgeBoard } from './IconKnowledgeBoard';
|
|
799
|
+
export { default as IconUploadRadio } from './IconUploadRadio';
|
|
800
|
+
export { default as IconUploadFile } from './IconUploadFile';
|
|
801
|
+
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
|
+
export { default as IconTerminology } from './IconTerminology';
|
|
803
|
+
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
798
804
|
export * from './type';
|
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconAgentproFollowComponent(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-agentpro-follow${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 16 16" {...rest} ref={ref}><path fillRule="evenodd" d="M7.409 13.435a.604.604 0 0 1-.009-.102V12a.6.6 0 1 1 1.2 0v1.333a.604.604 0 0 1-.009.102 5.469 5.469 0 0 0 4.844-4.844.604.604 0 0 1-.102.009H12a.6.6 0 1 1 0-1.2h1.333a.57.57 0 0 1 .102.009 5.469 5.469 0 0 0-4.844-4.844.604.604 0 0 1 .009.102V4a.6.6 0 0 1-1.2 0V2.667c0-.035.003-.07.009-.102a5.469 5.469 0 0 0-4.844 4.844.604.604 0 0 1 .102-.01H4a.6.6 0 0 1 0 1.2H2.667a.605.605 0 0 1-.102-.008 5.469 5.469 0 0 0 4.844 4.844ZM14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0ZM8 6.667a1.333 1.333 0 1 1 0 2.666 1.333 1.333 0 0 1 0-2.666Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconAgentproFollow = React.forwardRef(IconAgentproFollowComponent);
|
|
15
|
+
export default IconAgentproFollow;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconKnowledgeBoardComponent(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_board${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.084 3.33a2.75 2.75 0 0 1 2.75 2.75v7.833a2.75 2.75 0 0 1-2.75 2.75H4.75A2.75 2.75 0 0 1 2 13.913V6.08a2.75 2.75 0 0 1 2.75-2.75h10.334Zm-10 3.898a.75.75 0 0 0-.75.75v5.167a.75.75 0 0 0 1.5 0V7.978a.75.75 0 0 0-.75-.75Zm3.5 2.5a.75.75 0 0 0-.75.75v2.667a.75.75 0 0 0 1.5 0v-2.667a.75.75 0 0 0-.75-.75Zm5.5-4.083a.303.303 0 0 0-.257.141l-.497.787-.65.08a.298.298 0 0 0-.19.49l.54.62-.175.86a.3.3 0 0 0 .119.3.306.306 0 0 0 .323.017l.787-.431.787.43a.306.306 0 0 0 .322-.017.302.302 0 0 0 .104-.133.302.302 0 0 0 .014-.168l-.173-.858.54-.62a.298.298 0 0 0-.192-.49l-.648-.08-.498-.787a.302.302 0 0 0-.256-.141Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconKnowledgeBoard = React.forwardRef(IconKnowledgeBoardComponent);
|
|
15
|
+
export default IconKnowledgeBoard;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconSankeyDiagramComponent(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-sankey-diagram${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 140 140" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#EAEDF1'} d="M26.892 16.486c28.897 0 45.16 14.21 57.203 25.633 12.47 11.827 18.195 17.475 29.013 17.475v29.73c-24.793 0-39.216-15.906-49.472-25.633-10.682-10.13-19.722-17.475-36.744-17.475v-29.73Z" opacity=".7"/><path fill={useCurrentColor ? 'currentColor' : '#EAEDF1'} d="M113.108 16.486c-14.367 0-25.154 7.345-33.464 16.978-8.155 9.455-14.53 21.8-20.176 33.248-5.847 11.856-10.872 22.637-16.59 30.651-5.73 8.031-10.763 11.285-15.986 11.285v14.865c12.581 0 21.488-8.266 28.088-17.515 6.61-9.267 12.305-21.527 17.82-32.71 5.717-11.593 11.35-22.29 18.1-30.115 6.597-7.647 13.616-11.822 22.208-11.822V16.486Z" opacity=".7"/><path fill={useCurrentColor ? 'currentColor' : '#EAEDF1'} d="M26.892 65.54c25.928 0 40.384 12.494 52.088 23.594 11.916 11.302 19.816 19.514 34.128 19.514v14.865c-21.299 0-33.547-13.341-44.357-23.594-11.022-10.453-21.868-19.514-41.86-19.514V65.54Z" opacity=".5"/><rect width="8.919" height="110" x="15" y="14.999" fill={useCurrentColor ? 'currentColor' : '#DDE2E9'} rx="2"/><path fill={useCurrentColor ? 'currentColor' : '#DDE2E9'} d="M17 33a2 2 0 0 1-2-2V17a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V45a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V73a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Z"/><rect width="8.919" height="110" x="116.081" y="14.999" fill={useCurrentColor ? 'currentColor' : '#DDE2E9'} rx="2"/><path fill={useCurrentColor ? 'currentColor' : '#DDE2E9'} d="M118.081 33a2 2 0 0 1-2-2V17a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V45a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Zm0 28a2 2 0 0 1-2-2V73a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconSankeyDiagram = React.forwardRef(IconSankeyDiagramComponent);
|
|
15
|
+
export default IconSankeyDiagram;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconTerminologyComponent(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-terminology${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 14 14" {...rest} ref={ref}><path d="M7.001.51c1.79 0 3.413.727 4.585 1.9a6.466 6.466 0 0 1 1.898 4.583c0 1.79-.726 3.413-1.898 4.585A6.467 6.467 0 0 1 7 13.477c-.01 0-.02-.003-.028-.003H1.5a.65.65 0 0 1 0-1.3H7l.031.002a5.165 5.165 0 0 0 3.634-1.518 5.166 5.166 0 0 0 1.519-3.665c0-1.43-.58-2.726-1.519-3.665A5.166 5.166 0 0 0 7 1.811a5.165 5.165 0 0 0-3.665 1.517 5.165 5.165 0 0 0-1.518 3.665 5.16 5.16 0 0 0 1.036 3.11.65.65 0 0 1-1.04.781 6.46 6.46 0 0 1-1.297-3.89 6.47 6.47 0 0 1 1.9-4.585A6.466 6.466 0 0 1 7.001.51ZM8 8.35a.65.65 0 0 1 0 1.3H5a.65.65 0 0 1 0-1.3h3Zm1-3a.65.65 0 0 1 0 1.3H5a.65.65 0 0 1 0-1.3h4Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconTerminology = React.forwardRef(IconTerminologyComponent);
|
|
15
|
+
export default IconTerminology;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconUploadFileComponent(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-upload_file${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 18 18" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M13.1621 9.92383C13.2989 9.7872 13.5194 9.78722 13.6572 9.92383L16.1377 12.4043C16.2745 12.5411 16.2745 12.7636 16.1377 12.9004L15.6426 13.3965C15.61 13.4292 15.5709 13.4559 15.5283 13.4736C15.4859 13.4912 15.4404 13.4999 15.3945 13.5C15.3485 13.5 15.3023 13.4913 15.2598 13.4736C15.2171 13.4559 15.1781 13.4292 15.1455 13.3965L14.1152 12.3652V15.9902C14.1152 16.0831 14.0784 16.1726 14.0127 16.2383C13.947 16.3038 13.8575 16.3408 13.7646 16.3408H13.0625C12.9699 16.3407 12.881 16.3037 12.8154 16.2383C12.7498 16.1726 12.713 16.0831 12.7129 15.9902V12.3564L11.6729 13.3965C11.6073 13.4618 11.5183 13.4989 11.4258 13.499C11.3331 13.499 11.2434 13.4619 11.1777 13.3965L10.6816 12.9004C10.6491 12.8678 10.6231 12.8287 10.6055 12.7861C10.5879 12.7437 10.5791 12.6983 10.5791 12.6523C10.5791 12.6064 10.5879 12.561 10.6055 12.5186C10.6231 12.476 10.6491 12.4368 10.6816 12.4043L13.1621 9.92383ZM16.5938 1.66504C16.9044 1.66504 17.1562 1.91688 17.1562 2.22754V8.61133C17.156 8.84363 16.9677 9.03219 16.7354 9.03223H15.999C15.7667 9.03223 15.5774 8.84365 15.5771 8.61133V3.24316H2.42285V13.7676H8.8418C9.0742 13.7676 9.26254 13.9561 9.2627 14.1885V14.9258C9.26252 15.1581 9.07419 15.3467 8.8418 15.3467H1.40625C1.09567 15.3467 0.843886 15.0947 0.84375 14.7842V2.22754C0.84375 1.91688 1.09559 1.66504 1.40625 1.66504H16.5938ZM8.375 9.375C8.58211 9.375 8.75 9.54289 8.75 9.75V10.5C8.75 10.7071 8.58211 10.875 8.375 10.875H5.375C5.16789 10.875 5 10.7071 5 10.5V9.75C5 9.54289 5.16789 9.375 5.375 9.375H8.375ZM10.625 6C10.8321 6 11 6.16789 11 6.375V7.125C11 7.33211 10.8321 7.5 10.625 7.5H5.375C5.16789 7.5 5 7.33211 5 7.125V6.375C5 6.16789 5.16789 6 5.375 6H10.625Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconUploadFile = React.forwardRef(IconUploadFileComponent);
|
|
15
|
+
export default IconUploadFile;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconUploadRadioComponent(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-upload_radio${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 18 18" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M13.1621 9.92383C13.2989 9.7872 13.5194 9.78722 13.6572 9.92383L16.1377 12.4043C16.2745 12.5411 16.2745 12.7636 16.1377 12.9004L15.6426 13.3965C15.61 13.4292 15.5709 13.4559 15.5283 13.4736C15.4859 13.4912 15.4404 13.4999 15.3945 13.5C15.3485 13.5 15.3023 13.4913 15.2598 13.4736C15.2171 13.4559 15.1781 13.4292 15.1455 13.3965L14.1152 12.3652V15.9902C14.1152 16.0831 14.0784 16.1726 14.0127 16.2383C13.947 16.3038 13.8575 16.3408 13.7646 16.3408H13.0625C12.9699 16.3407 12.881 16.3037 12.8154 16.2383C12.7498 16.1726 12.713 16.0831 12.7129 15.9902V12.3564L11.6729 13.3965C11.6073 13.4618 11.5183 13.4989 11.4258 13.499C11.3331 13.499 11.2434 13.4619 11.1777 13.3965L10.6816 12.9004C10.6491 12.8678 10.6231 12.8287 10.6055 12.7861C10.5879 12.7437 10.5791 12.6983 10.5791 12.6523C10.5791 12.6064 10.5879 12.561 10.6055 12.5186C10.6231 12.476 10.6491 12.4368 10.6816 12.4043L13.1621 9.92383ZM16.5938 1.66504C16.9044 1.66504 17.1562 1.91688 17.1562 2.22754V8.61133C17.156 8.84363 16.9677 9.03219 16.7354 9.03223H15.999C15.7667 9.03223 15.5774 8.84365 15.5771 8.61133V3.24316H2.42285V13.7676H8.8418C9.0742 13.7676 9.26254 13.9561 9.2627 14.1885V14.9258C9.26252 15.1581 9.07419 15.3467 8.8418 15.3467H1.40625C1.09567 15.3467 0.843886 15.0947 0.84375 14.7842V2.22754C0.84375 1.91688 1.09559 1.66504 1.40625 1.66504H16.5938ZM8.97461 4.82715C9.04868 4.82715 9.121 4.84952 9.18262 4.89062L12.0059 6.77734L11.1758 8.02539L10.0947 7.30273L10.0957 9.99512C10.0983 10.0391 10.0996 10.0833 10.0996 10.1279C10.0996 11.3706 9.09225 12.3779 7.84961 12.3779C6.60714 12.3777 5.59961 11.3704 5.59961 10.1279C5.59974 8.88552 6.60722 7.87813 7.84961 7.87793C8.11242 7.87793 8.36515 7.92304 8.59961 8.00586V5.20215C8.59961 4.99516 8.76767 4.82735 8.97461 4.82715ZM7.84961 9.37793C7.43565 9.37813 7.09974 9.71395 7.09961 10.1279C7.09961 10.542 7.43556 10.8777 7.84961 10.8779C8.26382 10.8779 8.59961 10.5421 8.59961 10.1279C8.59948 9.71383 8.26374 9.37793 7.84961 9.37793Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconUploadRadio = React.forwardRef(IconUploadRadioComponent);
|
|
15
|
+
export default IconUploadRadio;
|
package/src/index.ts
CHANGED
|
@@ -795,5 +795,11 @@ export { default as IconMore } from './IconMore';
|
|
|
795
795
|
export { default as IconQAExtract } from './IconQAExtract';
|
|
796
796
|
export { default as IconLoading2 } from './IconLoading2';
|
|
797
797
|
export { default as IconIndicatorMonitoring } from './IconIndicatorMonitoring';
|
|
798
|
+
export { default as IconKnowledgeBoard } from './IconKnowledgeBoard';
|
|
799
|
+
export { default as IconUploadRadio } from './IconUploadRadio';
|
|
800
|
+
export { default as IconUploadFile } from './IconUploadFile';
|
|
801
|
+
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
|
+
export { default as IconTerminology } from './IconTerminology';
|
|
803
|
+
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
798
804
|
|
|
799
805
|
export * from './type';
|
|
@@ -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 IconAgentproFollowComponent(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-agentpro-follow").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", d: "M7.409 13.435a.604.604 0 0 1-.009-.102V12a.6.6 0 1 1 1.2 0v1.333a.604.604 0 0 1-.009.102 5.469 5.469 0 0 0 4.844-4.844.604.604 0 0 1-.102.009H12a.6.6 0 1 1 0-1.2h1.333a.57.57 0 0 1 .102.009 5.469 5.469 0 0 0-4.844-4.844.604.604 0 0 1 .009.102V4a.6.6 0 0 1-1.2 0V2.667c0-.035.003-.07.009-.102a5.469 5.469 0 0 0-4.844 4.844.604.604 0 0 1 .102-.01H4a.6.6 0 0 1 0 1.2H2.667a.605.605 0 0 1-.102-.008 5.469 5.469 0 0 0 4.844 4.844ZM14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0ZM8 6.667a1.333 1.333 0 1 1 0 2.666 1.333 1.333 0 0 1 0-2.666Z", clipRule: "evenodd" }));
|
|
66
|
+
}
|
|
67
|
+
var IconAgentproFollow = react_1.default.forwardRef(IconAgentproFollowComponent);
|
|
68
|
+
exports.default = IconAgentproFollow;
|
|
69
|
+
});
|
|
@@ -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 IconKnowledgeBoardComponent(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-knowledge_board").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 }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M15.084 3.33a2.75 2.75 0 0 1 2.75 2.75v7.833a2.75 2.75 0 0 1-2.75 2.75H4.75A2.75 2.75 0 0 1 2 13.913V6.08a2.75 2.75 0 0 1 2.75-2.75h10.334Zm-10 3.898a.75.75 0 0 0-.75.75v5.167a.75.75 0 0 0 1.5 0V7.978a.75.75 0 0 0-.75-.75Zm3.5 2.5a.75.75 0 0 0-.75.75v2.667a.75.75 0 0 0 1.5 0v-2.667a.75.75 0 0 0-.75-.75Zm5.5-4.083a.303.303 0 0 0-.257.141l-.497.787-.65.08a.298.298 0 0 0-.19.49l.54.62-.175.86a.3.3 0 0 0 .119.3.306.306 0 0 0 .323.017l.787-.431.787.43a.306.306 0 0 0 .322-.017.302.302 0 0 0 .104-.133.302.302 0 0 0 .014-.168l-.173-.858.54-.62a.298.298 0 0 0-.192-.49l-.648-.08-.498-.787a.302.302 0 0 0-.256-.141Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconKnowledgeBoard = react_1.default.forwardRef(IconKnowledgeBoardComponent);
|
|
68
|
+
exports.default = IconKnowledgeBoard;
|
|
69
|
+
});
|