@arco-iconbox/react-hiagent 0.2.79 → 0.2.80
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/IconGraphConsolidatedEntity/index.d.ts +4 -0
- package/cjs/IconGraphConsolidatedEntity/index.js +59 -0
- package/cjs/IconGraphFoldingPanel/index.d.ts +4 -0
- package/cjs/IconGraphFoldingPanel/index.js +59 -0
- package/cjs/IconGraphLWindow/index.d.ts +4 -0
- package/cjs/IconGraphLWindow/index.js +59 -0
- package/cjs/IconGraphNode/index.d.ts +4 -0
- package/cjs/IconGraphNode/index.js +59 -0
- package/cjs/IconGraphSWindow/index.d.ts +4 -0
- package/cjs/IconGraphSWindow/index.js +59 -0
- package/cjs/IconGraphSchema/index.d.ts +4 -0
- package/cjs/IconGraphSchema/index.js +59 -0
- package/cjs/IconGraphThumbnail/index.d.ts +4 -0
- package/cjs/IconGraphThumbnail/index.js +59 -0
- package/cjs/IconGraphTriplet/index.d.ts +4 -0
- package/cjs/IconGraphTriplet/index.js +59 -0
- package/cjs/index.d.ts +8 -0
- package/cjs/index.js +17 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconGraphConsolidatedEntity/index.d.ts +4 -0
- package/esm/IconGraphConsolidatedEntity/index.js +34 -0
- package/esm/IconGraphFoldingPanel/index.d.ts +4 -0
- package/esm/IconGraphFoldingPanel/index.js +34 -0
- package/esm/IconGraphLWindow/index.d.ts +4 -0
- package/esm/IconGraphLWindow/index.js +34 -0
- package/esm/IconGraphNode/index.d.ts +4 -0
- package/esm/IconGraphNode/index.js +34 -0
- package/esm/IconGraphSWindow/index.d.ts +4 -0
- package/esm/IconGraphSWindow/index.js +34 -0
- package/esm/IconGraphSchema/index.d.ts +4 -0
- package/esm/IconGraphSchema/index.js +34 -0
- package/esm/IconGraphThumbnail/index.d.ts +4 -0
- package/esm/IconGraphThumbnail/index.js +34 -0
- package/esm/IconGraphTriplet/index.d.ts +4 -0
- package/esm/IconGraphTriplet/index.js +34 -0
- package/esm/index.d.ts +8 -0
- package/esm/index.js +8 -0
- package/package.json +1 -1
- package/src/IconGraphConsolidatedEntity/index.tsx +15 -0
- package/src/IconGraphFoldingPanel/index.tsx +15 -0
- package/src/IconGraphLWindow/index.tsx +15 -0
- package/src/IconGraphNode/index.tsx +15 -0
- package/src/IconGraphSWindow/index.tsx +15 -0
- package/src/IconGraphSchema/index.tsx +15 -0
- package/src/IconGraphThumbnail/index.tsx +15 -0
- package/src/IconGraphTriplet/index.tsx +15 -0
- package/src/index.ts +8 -0
- package/umd/IconGraphConsolidatedEntity/index.d.ts +4 -0
- package/umd/IconGraphConsolidatedEntity/index.js +69 -0
- package/umd/IconGraphFoldingPanel/index.d.ts +4 -0
- package/umd/IconGraphFoldingPanel/index.js +69 -0
- package/umd/IconGraphLWindow/index.d.ts +4 -0
- package/umd/IconGraphLWindow/index.js +69 -0
- package/umd/IconGraphNode/index.d.ts +4 -0
- package/umd/IconGraphNode/index.js +69 -0
- package/umd/IconGraphSWindow/index.d.ts +4 -0
- package/umd/IconGraphSWindow/index.js +69 -0
- package/umd/IconGraphSchema/index.d.ts +4 -0
- package/umd/IconGraphSchema/index.js +69 -0
- package/umd/IconGraphThumbnail/index.d.ts +4 -0
- package/umd/IconGraphThumbnail/index.js +69 -0
- package/umd/IconGraphTriplet/index.d.ts +4 -0
- package/umd/IconGraphTriplet/index.js +69 -0
- package/umd/index.d.ts +8 -0
- package/umd/index.js +18 -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 IconGraphConsolidatedEntityComponent(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-graph-consolidated-entity").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: "M2.248 2.656a.701.701 0 0 0-.195 1.386c.787.112 2.315.707 3.93 2.251a9.69 9.69 0 0 0 2.67 1.801 11.531 11.531 0 0 0-2.539 1.862C4.667 11.34 2.927 11.944 2.104 12a.7.7 0 0 0 .093 1.397c1.182-.08 3.223-.84 4.884-2.428 1.589-1.519 3.092-2.118 3.89-2.244h2.865a.7.7 0 0 0 0-1.4H10.95c-.828-.06-2.559-.664-4-2.042-1.785-1.706-3.572-2.467-4.703-2.626Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphConsolidatedEntity = React.forwardRef(IconGraphConsolidatedEntityComponent);
|
|
34
|
+
export default IconGraphConsolidatedEntity;
|
|
@@ -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 IconGraphFoldingPanelComponent(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-graph-folding-panel").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.032 3.22c.966 0 1.75.783 1.75 1.75v10.062a1.75 1.75 0 0 1-1.75 1.75H4.969a1.75 1.75 0 0 1-1.75-1.75V4.969c0-.966.784-1.75 1.75-1.75h10.063ZM8.469 15.47h6.563a.438.438 0 0 0 .437-.438V4.969a.438.438 0 0 0-.437-.437H8.469v10.937ZM4.97 4.531a.437.437 0 0 0-.437.437v10.063c0 .241.196.437.437.437h2.188V4.532H4.969Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphFoldingPanel = React.forwardRef(IconGraphFoldingPanelComponent);
|
|
34
|
+
export default IconGraphFoldingPanel;
|
|
@@ -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 IconGraphLWindowComponent(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-graph-l-window").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: "m8.966 8.495-.47.472a.333.333 0 0 0 0 .471l3.228 3.228H9.75c-.149 0-.203.016-.257.045a.303.303 0 0 0-.126.126c-.029.055-.045.108-.045.257v.479c0 .148.016.202.045.256a.303.303 0 0 0 .126.127c.054.029.108.044.257.044h3.572a.667.667 0 0 0 .667-.667V9.761c0-.149-.015-.203-.044-.257a.302.302 0 0 0-.126-.126c-.055-.03-.109-.045-.257-.045h-.479c-.149 0-.202.016-.257.045a.303.303 0 0 0-.126.126c-.029.054-.044.108-.044.257v1.953l-3.22-3.219a.333.333 0 0 0-.47 0ZM2.666 2A.667.667 0 0 0 2 2.667v3.666c0 .184.15.334.333.334H3c.184 0 .333-.15.333-.334v-2L6.52 7.519c.13.13.341.13.471 0l.472-.472a.333.333 0 0 0 0-.471L4.219 3.333h2.114A.334.334 0 0 0 6.667 3v-.667A.333.333 0 0 0 6.333 2H2.667Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphLWindow = React.forwardRef(IconGraphLWindowComponent);
|
|
34
|
+
export default IconGraphLWindow;
|
|
@@ -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 IconGraphNodeComponent(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-graph-node").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", { fillRule: "evenodd", d: "M6.994 9.71a1.52 1.52 0 1 1-.003 3.041 1.52 1.52 0 0 1 .003-3.041Zm0 .925a.595.595 0 1 0 0 1.191.595.595 0 0 0 0-1.19ZM2.57 7.798a1.52 1.52 0 1 1 1.52 2.635 1.52 1.52 0 0 1-1.52-2.635Zm6.767.557a1.521 1.521 0 1 1 2.635 1.522 1.521 1.521 0 0 1-2.635-1.522Zm-5.492.463a.595.595 0 1 0-1.03.595.595.595 0 0 0 1.03-.595Zm7.107-.218a.595.595 0 1 0-.595 1.032.595.595 0 0 0 .595-1.032Zm-3.96-3.12a1.52 1.52 0 1 1-.001 3.042 1.52 1.52 0 0 1 .002-3.042Zm0 .926a.595.595 0 1 0 .001 1.19.595.595 0 0 0 0-1.19Zm-4.98-2.281a1.522 1.522 0 1 1 .557 2.077 1.52 1.52 0 0 1-.556-2.077Zm7.882-.556a1.52 1.52 0 1 1 1.52 2.634 1.52 1.52 0 0 1-1.52-2.634Zm-6.266.801a.596.596 0 0 0-.595 1.03.594.594 0 0 0 .595-1.03Zm7.54.219a.595.595 0 1 0-1.03.594.595.595 0 0 0 1.03-.594ZM6.995 1.25a1.521 1.521 0 1 1-.003 3.042 1.521 1.521 0 0 1 .003-3.042Zm0 .926a.595.595 0 0 0 0 1.189.594.594 0 0 0 0-1.19Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphNode = React.forwardRef(IconGraphNodeComponent);
|
|
34
|
+
export default IconGraphNode;
|
|
@@ -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 IconGraphSWindowComponent(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-graph-S-window").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { fillRule: "evenodd", d: "m16.776 17.378.59-.59a.417.417 0 0 0 0-.589l-4.037-4.035h2.467c.185 0 .253-.02.32-.056a.38.38 0 0 0 .158-.158c.036-.067.056-.135.056-.32v-.599c0-.186-.02-.253-.056-.32a.378.378 0 0 0-.157-.158c-.068-.037-.136-.056-.321-.056H11.33a.833.833 0 0 0-.834.833v4.466c0 .186.02.253.056.321.036.068.09.121.158.158.067.036.135.055.32.055h.599c.186 0 .253-.019.32-.055a.378.378 0 0 0 .158-.158c.037-.068.056-.135.056-.32v-2.443l4.024 4.024a.417.417 0 0 0 .589 0ZM8.616 9.52c.46 0 .833-.373.833-.833V4.104a.417.417 0 0 0-.416-.417h-.834a.417.417 0 0 0-.416.417v2.5L3.8 2.622a.417.417 0 0 0-.59 0l-.589.59a.417.417 0 0 0 0 .589l4.053 4.053H4.033a.417.417 0 0 0-.417.417v.833c0 .23.186.417.417.417h4.583Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphSWindow = React.forwardRef(IconGraphSWindowComponent);
|
|
34
|
+
export default IconGraphSWindow;
|
|
@@ -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 IconGraphSchemaComponent(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-graph-schema").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: "M1.5 3.91A2.41 2.41 0 0 1 3.91 1.5h8.18a2.41 2.41 0 0 1 2.41 2.41v8.18a2.41 2.41 0 0 1-2.41 2.41H3.91a2.41 2.41 0 0 1-2.41-2.41V3.91Zm2.41-1.095c-.605 0-1.095.49-1.095 1.095v8.18c0 .605.49 1.095 1.095 1.095h8.18c.605 0 1.095-.49 1.095-1.095V3.91c0-.605-.49-1.095-1.095-1.095H3.91Zm7.742 8.106a.73.73 0 0 1-.73.73H8.73a.73.73 0 0 1 0-1.46h2.191a.73.73 0 0 1 .73.73ZM5.79 5.097A.73.73 0 0 0 4.758 6.13l1.505 1.505L4.758 9.14a.73.73 0 0 0 1.033 1.033L7.812 8.15a.73.73 0 0 0 0-1.032L5.791 5.097Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphSchema = React.forwardRef(IconGraphSchemaComponent);
|
|
34
|
+
export default IconGraphSchema;
|
|
@@ -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 IconGraphThumbnailComponent(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-graph-thumbnail").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: "M13.75.25a2 2 0 0 1 2 2v11.5a2 2 0 0 1-2 2H2.25a2 2 0 0 1-2.001-2V2.25c0-1.104.897-2 2.001-2h11.5Zm-11.5 1.5a.5.5 0 0 0-.5.5v6h4a2 2 0 0 1 2 2v4h6a.5.5 0 0 0 .5-.5V2.25a.5.5 0 0 0-.5-.5H2.25Zm-.5 12a.5.5 0 0 0 .5.5h4v-4a.5.5 0 0 0-.5-.5h-4v4Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphThumbnail = React.forwardRef(IconGraphThumbnailComponent);
|
|
34
|
+
export default IconGraphThumbnail;
|
|
@@ -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 IconGraphTripletComponent(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-graph-triplet").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", { fillRule: "evenodd", d: "M7.618 2.612a.68.68 0 1 0 0 1.36.68.68 0 0 0 0-1.36Zm-1.792.68a1.792 1.792 0 1 1 .612 1.349L5.076 6.003a.554.554 0 0 1-.213.133c.056.103.103.212.14.327a.557.557 0 0 1 .143-.02h3.708c.05 0 .098.007.144.02a1.793 1.793 0 1 1 0 1.074.557.557 0 0 1-.144.02H5.146a.557.557 0 0 1-.144-.02c-.052.165-.127.32-.22.46a.56.56 0 0 1 .294.155l1.282 1.282a1.792 1.792 0 1 1-.512 1.01.554.554 0 0 1-.166-.115l-1.39-1.39a.554.554 0 0 1-.162-.353 1.792 1.792 0 1 1 .028-3.156.554.554 0 0 1 .133-.213l1.39-1.39a.554.554 0 0 1 .194-.127 1.798 1.798 0 0 1-.047-.408ZM2.612 7a.68.68 0 1 1 1.36 0 .68.68 0 0 1-1.36 0Zm8.096-.68a.68.68 0 1 0 0 1.36.68.68 0 0 0 0-1.36Zm-3.77 4.388a.68.68 0 1 1 1.36 0 .68.68 0 0 1-1.36 0Z", clipRule: "evenodd" }));
|
|
32
|
+
}
|
|
33
|
+
var IconGraphTriplet = React.forwardRef(IconGraphTripletComponent);
|
|
34
|
+
export default IconGraphTriplet;
|
package/esm/index.d.ts
CHANGED
|
@@ -833,4 +833,12 @@ export { default as IconVolcengine } from './IconVolcengine';
|
|
|
833
833
|
export { default as IconBailian } from './IconBailian';
|
|
834
834
|
export { default as IconIntelligentSynthesis } from './IconIntelligentSynthesis';
|
|
835
835
|
export { default as IconReport2 } from './IconReport2';
|
|
836
|
+
export { default as IconGraphSWindow } from './IconGraphSWindow';
|
|
837
|
+
export { default as IconGraphConsolidatedEntity } from './IconGraphConsolidatedEntity';
|
|
838
|
+
export { default as IconGraphSchema } from './IconGraphSchema';
|
|
839
|
+
export { default as IconGraphThumbnail } from './IconGraphThumbnail';
|
|
840
|
+
export { default as IconGraphNode } from './IconGraphNode';
|
|
841
|
+
export { default as IconGraphLWindow } from './IconGraphLWindow';
|
|
842
|
+
export { default as IconGraphFoldingPanel } from './IconGraphFoldingPanel';
|
|
843
|
+
export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
836
844
|
export * from './type';
|
package/esm/index.js
CHANGED
|
@@ -833,4 +833,12 @@ export { default as IconVolcengine } from './IconVolcengine';
|
|
|
833
833
|
export { default as IconBailian } from './IconBailian';
|
|
834
834
|
export { default as IconIntelligentSynthesis } from './IconIntelligentSynthesis';
|
|
835
835
|
export { default as IconReport2 } from './IconReport2';
|
|
836
|
+
export { default as IconGraphSWindow } from './IconGraphSWindow';
|
|
837
|
+
export { default as IconGraphConsolidatedEntity } from './IconGraphConsolidatedEntity';
|
|
838
|
+
export { default as IconGraphSchema } from './IconGraphSchema';
|
|
839
|
+
export { default as IconGraphThumbnail } from './IconGraphThumbnail';
|
|
840
|
+
export { default as IconGraphNode } from './IconGraphNode';
|
|
841
|
+
export { default as IconGraphLWindow } from './IconGraphLWindow';
|
|
842
|
+
export { default as IconGraphFoldingPanel } from './IconGraphFoldingPanel';
|
|
843
|
+
export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
836
844
|
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 IconGraphConsolidatedEntityComponent(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-graph-consolidated-entity${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="M2.248 2.656a.701.701 0 0 0-.195 1.386c.787.112 2.315.707 3.93 2.251a9.69 9.69 0 0 0 2.67 1.801 11.531 11.531 0 0 0-2.539 1.862C4.667 11.34 2.927 11.944 2.104 12a.7.7 0 0 0 .093 1.397c1.182-.08 3.223-.84 4.884-2.428 1.589-1.519 3.092-2.118 3.89-2.244h2.865a.7.7 0 0 0 0-1.4H10.95c-.828-.06-2.559-.664-4-2.042-1.785-1.706-3.572-2.467-4.703-2.626Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphConsolidatedEntity = React.forwardRef(IconGraphConsolidatedEntityComponent);
|
|
15
|
+
export default IconGraphConsolidatedEntity;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphFoldingPanelComponent(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-graph-folding-panel${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.032 3.22c.966 0 1.75.783 1.75 1.75v10.062a1.75 1.75 0 0 1-1.75 1.75H4.969a1.75 1.75 0 0 1-1.75-1.75V4.969c0-.966.784-1.75 1.75-1.75h10.063ZM8.469 15.47h6.563a.438.438 0 0 0 .437-.438V4.969a.438.438 0 0 0-.437-.437H8.469v10.937ZM4.97 4.531a.437.437 0 0 0-.437.437v10.063c0 .241.196.437.437.437h2.188V4.532H4.969Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphFoldingPanel = React.forwardRef(IconGraphFoldingPanelComponent);
|
|
15
|
+
export default IconGraphFoldingPanel;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphLWindowComponent(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-graph-l-window${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="m8.966 8.495-.47.472a.333.333 0 0 0 0 .471l3.228 3.228H9.75c-.149 0-.203.016-.257.045a.303.303 0 0 0-.126.126c-.029.055-.045.108-.045.257v.479c0 .148.016.202.045.256a.303.303 0 0 0 .126.127c.054.029.108.044.257.044h3.572a.667.667 0 0 0 .667-.667V9.761c0-.149-.015-.203-.044-.257a.302.302 0 0 0-.126-.126c-.055-.03-.109-.045-.257-.045h-.479c-.149 0-.202.016-.257.045a.303.303 0 0 0-.126.126c-.029.054-.044.108-.044.257v1.953l-3.22-3.219a.333.333 0 0 0-.47 0ZM2.666 2A.667.667 0 0 0 2 2.667v3.666c0 .184.15.334.333.334H3c.184 0 .333-.15.333-.334v-2L6.52 7.519c.13.13.341.13.471 0l.472-.472a.333.333 0 0 0 0-.471L4.219 3.333h2.114A.334.334 0 0 0 6.667 3v-.667A.333.333 0 0 0 6.333 2H2.667Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphLWindow = React.forwardRef(IconGraphLWindowComponent);
|
|
15
|
+
export default IconGraphLWindow;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphNodeComponent(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-graph-node${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 fillRule="evenodd" d="M6.994 9.71a1.52 1.52 0 1 1-.003 3.041 1.52 1.52 0 0 1 .003-3.041Zm0 .925a.595.595 0 1 0 0 1.191.595.595 0 0 0 0-1.19ZM2.57 7.798a1.52 1.52 0 1 1 1.52 2.635 1.52 1.52 0 0 1-1.52-2.635Zm6.767.557a1.521 1.521 0 1 1 2.635 1.522 1.521 1.521 0 0 1-2.635-1.522Zm-5.492.463a.595.595 0 1 0-1.03.595.595.595 0 0 0 1.03-.595Zm7.107-.218a.595.595 0 1 0-.595 1.032.595.595 0 0 0 .595-1.032Zm-3.96-3.12a1.52 1.52 0 1 1-.001 3.042 1.52 1.52 0 0 1 .002-3.042Zm0 .926a.595.595 0 1 0 .001 1.19.595.595 0 0 0 0-1.19Zm-4.98-2.281a1.522 1.522 0 1 1 .557 2.077 1.52 1.52 0 0 1-.556-2.077Zm7.882-.556a1.52 1.52 0 1 1 1.52 2.634 1.52 1.52 0 0 1-1.52-2.634Zm-6.266.801a.596.596 0 0 0-.595 1.03.594.594 0 0 0 .595-1.03Zm7.54.219a.595.595 0 1 0-1.03.594.595.595 0 0 0 1.03-.594ZM6.995 1.25a1.521 1.521 0 1 1-.003 3.042 1.521 1.521 0 0 1 .003-3.042Zm0 .926a.595.595 0 0 0 0 1.189.594.594 0 0 0 0-1.19Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphNode = React.forwardRef(IconGraphNodeComponent);
|
|
15
|
+
export default IconGraphNode;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphSWindowComponent(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-graph-S-window${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path fillRule="evenodd" d="m16.776 17.378.59-.59a.417.417 0 0 0 0-.589l-4.037-4.035h2.467c.185 0 .253-.02.32-.056a.38.38 0 0 0 .158-.158c.036-.067.056-.135.056-.32v-.599c0-.186-.02-.253-.056-.32a.378.378 0 0 0-.157-.158c-.068-.037-.136-.056-.321-.056H11.33a.833.833 0 0 0-.834.833v4.466c0 .186.02.253.056.321.036.068.09.121.158.158.067.036.135.055.32.055h.599c.186 0 .253-.019.32-.055a.378.378 0 0 0 .158-.158c.037-.068.056-.135.056-.32v-2.443l4.024 4.024a.417.417 0 0 0 .589 0ZM8.616 9.52c.46 0 .833-.373.833-.833V4.104a.417.417 0 0 0-.416-.417h-.834a.417.417 0 0 0-.416.417v2.5L3.8 2.622a.417.417 0 0 0-.59 0l-.589.59a.417.417 0 0 0 0 .589l4.053 4.053H4.033a.417.417 0 0 0-.417.417v.833c0 .23.186.417.417.417h4.583Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphSWindow = React.forwardRef(IconGraphSWindowComponent);
|
|
15
|
+
export default IconGraphSWindow;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphSchemaComponent(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-graph-schema${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="M1.5 3.91A2.41 2.41 0 0 1 3.91 1.5h8.18a2.41 2.41 0 0 1 2.41 2.41v8.18a2.41 2.41 0 0 1-2.41 2.41H3.91a2.41 2.41 0 0 1-2.41-2.41V3.91Zm2.41-1.095c-.605 0-1.095.49-1.095 1.095v8.18c0 .605.49 1.095 1.095 1.095h8.18c.605 0 1.095-.49 1.095-1.095V3.91c0-.605-.49-1.095-1.095-1.095H3.91Zm7.742 8.106a.73.73 0 0 1-.73.73H8.73a.73.73 0 0 1 0-1.46h2.191a.73.73 0 0 1 .73.73ZM5.79 5.097A.73.73 0 0 0 4.758 6.13l1.505 1.505L4.758 9.14a.73.73 0 0 0 1.033 1.033L7.812 8.15a.73.73 0 0 0 0-1.032L5.791 5.097Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphSchema = React.forwardRef(IconGraphSchemaComponent);
|
|
15
|
+
export default IconGraphSchema;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphThumbnailComponent(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-graph-thumbnail${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="M13.75.25a2 2 0 0 1 2 2v11.5a2 2 0 0 1-2 2H2.25a2 2 0 0 1-2.001-2V2.25c0-1.104.897-2 2.001-2h11.5Zm-11.5 1.5a.5.5 0 0 0-.5.5v6h4a2 2 0 0 1 2 2v4h6a.5.5 0 0 0 .5-.5V2.25a.5.5 0 0 0-.5-.5H2.25Zm-.5 12a.5.5 0 0 0 .5.5h4v-4a.5.5 0 0 0-.5-.5h-4v4Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphThumbnail = React.forwardRef(IconGraphThumbnailComponent);
|
|
15
|
+
export default IconGraphThumbnail;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconGraphTripletComponent(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-graph-triplet${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 fillRule="evenodd" d="M7.618 2.612a.68.68 0 1 0 0 1.36.68.68 0 0 0 0-1.36Zm-1.792.68a1.792 1.792 0 1 1 .612 1.349L5.076 6.003a.554.554 0 0 1-.213.133c.056.103.103.212.14.327a.557.557 0 0 1 .143-.02h3.708c.05 0 .098.007.144.02a1.793 1.793 0 1 1 0 1.074.557.557 0 0 1-.144.02H5.146a.557.557 0 0 1-.144-.02c-.052.165-.127.32-.22.46a.56.56 0 0 1 .294.155l1.282 1.282a1.792 1.792 0 1 1-.512 1.01.554.554 0 0 1-.166-.115l-1.39-1.39a.554.554 0 0 1-.162-.353 1.792 1.792 0 1 1 .028-3.156.554.554 0 0 1 .133-.213l1.39-1.39a.554.554 0 0 1 .194-.127 1.798 1.798 0 0 1-.047-.408ZM2.612 7a.68.68 0 1 1 1.36 0 .68.68 0 0 1-1.36 0Zm8.096-.68a.68.68 0 1 0 0 1.36.68.68 0 0 0 0-1.36Zm-3.77 4.388a.68.68 0 1 1 1.36 0 .68.68 0 0 1-1.36 0Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconGraphTriplet = React.forwardRef(IconGraphTripletComponent);
|
|
15
|
+
export default IconGraphTriplet;
|
package/src/index.ts
CHANGED
|
@@ -833,5 +833,13 @@ export { default as IconVolcengine } from './IconVolcengine';
|
|
|
833
833
|
export { default as IconBailian } from './IconBailian';
|
|
834
834
|
export { default as IconIntelligentSynthesis } from './IconIntelligentSynthesis';
|
|
835
835
|
export { default as IconReport2 } from './IconReport2';
|
|
836
|
+
export { default as IconGraphSWindow } from './IconGraphSWindow';
|
|
837
|
+
export { default as IconGraphConsolidatedEntity } from './IconGraphConsolidatedEntity';
|
|
838
|
+
export { default as IconGraphSchema } from './IconGraphSchema';
|
|
839
|
+
export { default as IconGraphThumbnail } from './IconGraphThumbnail';
|
|
840
|
+
export { default as IconGraphNode } from './IconGraphNode';
|
|
841
|
+
export { default as IconGraphLWindow } from './IconGraphLWindow';
|
|
842
|
+
export { default as IconGraphFoldingPanel } from './IconGraphFoldingPanel';
|
|
843
|
+
export { default as IconGraphTriplet } from './IconGraphTriplet';
|
|
836
844
|
|
|
837
845
|
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 IconGraphConsolidatedEntityComponent(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-graph-consolidated-entity").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: "M2.248 2.656a.701.701 0 0 0-.195 1.386c.787.112 2.315.707 3.93 2.251a9.69 9.69 0 0 0 2.67 1.801 11.531 11.531 0 0 0-2.539 1.862C4.667 11.34 2.927 11.944 2.104 12a.7.7 0 0 0 .093 1.397c1.182-.08 3.223-.84 4.884-2.428 1.589-1.519 3.092-2.118 3.89-2.244h2.865a.7.7 0 0 0 0-1.4H10.95c-.828-.06-2.559-.664-4-2.042-1.785-1.706-3.572-2.467-4.703-2.626Z", clipRule: "evenodd" }));
|
|
66
|
+
}
|
|
67
|
+
var IconGraphConsolidatedEntity = react_1.default.forwardRef(IconGraphConsolidatedEntityComponent);
|
|
68
|
+
exports.default = IconGraphConsolidatedEntity;
|
|
69
|
+
});
|