@arco-iconbox/react-hiagent 0.2.56 → 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.
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAgentproFollow: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAgentproFollow;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconAgentproFollowComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ 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 }),
56
+ 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" }));
57
+ }
58
+ var IconAgentproFollow = react_1.default.forwardRef(IconAgentproFollowComponent);
59
+ exports.default = IconAgentproFollow;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconSankeyDiagram: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconSankeyDiagram;
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconSankeyDiagramComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }),
57
+ react_1.default.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" }),
58
+ react_1.default.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" }),
59
+ react_1.default.createElement("rect", { width: "8.919", height: "110", x: "15", y: "14.999", fill: useCurrentColor ? 'currentColor' : '#DDE2E9', rx: "2" }),
60
+ react_1.default.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" }),
61
+ react_1.default.createElement("rect", { width: "8.919", height: "110", x: "116.081", y: "14.999", fill: useCurrentColor ? 'currentColor' : '#DDE2E9', rx: "2" }),
62
+ react_1.default.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" }));
63
+ }
64
+ var IconSankeyDiagram = react_1.default.forwardRef(IconSankeyDiagramComponent);
65
+ exports.default = IconSankeyDiagram;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconTerminology: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconTerminology;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconTerminologyComponent(props, ref) {
51
+ var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
52
+ 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"]);
53
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
54
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
55
+ return react_1.default.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 }),
56
+ react_1.default.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" }));
57
+ }
58
+ var IconTerminology = react_1.default.forwardRef(IconTerminologyComponent);
59
+ exports.default = IconTerminology;
package/cjs/index.d.ts CHANGED
@@ -798,4 +798,7 @@ export { default as IconIndicatorMonitoring } from './IconIndicatorMonitoring';
798
798
  export { default as IconKnowledgeBoard } from './IconKnowledgeBoard';
799
799
  export { default as IconUploadRadio } from './IconUploadRadio';
800
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';
801
804
  export * from './type';
package/cjs/index.js CHANGED
@@ -33,6 +33,7 @@ exports.IconAgentThinkingLanguage = exports.IconJapanese = exports.IconLock1 = e
33
33
  exports.IconModelService = exports.IconMenuPluginCenter = exports.IconMenuKnowledge = exports.IconTabelNodata = exports.IconImportMusic = exports.IconFastForward30 = exports.IconReturnNow15 = exports.IconVideoNext = exports.IconVideoPlay = exports.IconPrevious = exports.IconPause = exports.IconLowVolume = exports.IconSilence = exports.IconLoudVolume = exports.IconFull = exports.IconShrink = exports.IconPiplconExit = exports.IconPiplcon = exports.IconPieChartNodata = exports.IconLineGraphNodata = exports.IconHorizontalBarChartNodata = exports.IconVerticalBarChartNodata = exports.IconProcessEvaluation = exports.IconModelVoice = exports.IconSpeech2text = exports.IconMultiTimbre = exports.IconMultiLanguage = exports.IconText2speech = exports.IconFirstTokensCost = exports.IconNodeSuccessfullyInvoked = exports.IconFirstCharacterReplyTakesTime = exports.IconNodeInvocation = exports.IconSingleDialogueTimeConsuming = exports.IconNodeTimeConsumption = exports.IconTokenConsumption = exports.IconUploadingLarkbitable = exports.IconVideoRewind10s = exports.IconVideoFastForward10s = exports.IconAudioPlay = exports.IconAudioCycle = exports.IconAudioPause = exports.IconRemoveColor = exports.IconWorkflowVidMatching = exports.IconKnowledgePic = exports.IconRegionFolding = exports.IconSimilarityQuestion = exports.IconDataTransform = exports.IconPluginLocal = exports.IconPluginRemote = exports.IconPluginCloudDeployment = void 0;
34
34
  exports.IconDebugging = exports.IconResultEvaluation = exports.IconTraceText = exports.IconTraceRaw = exports.IconAgentpro = exports.IconAgentproStop = exports.IconTaskDone = exports.IconArtifactsBrowse = exports.IconAgentproReportDownload = exports.IconArtifactsCode = exports.IconAgentproFileList = exports.IconArtifactsKnowledge = exports.IconAgentproConfiguration = exports.IconArtifactsOther = exports.IconArtifactsShell = exports.IconArtifactsSearch = exports.IconArtifactsFile = exports.IconArtifactsPic = exports.IconVideoAgentKnowledge = exports.IconSpeaker = exports.IconExperienceCenter = exports.IconTouchpadMouseWorkflow = exports.IconTouchpadModeWorkflow = exports.IconLinkArrowSmall = exports.IconSavedConditions = exports.IconSaveButton = exports.IconText2video1 = exports.IconVolume = exports.IconFullscreen = exports.IconVideoTag = exports.IconMoonshot = exports.IconBGE = exports.IconQwen = exports.IconGPT35 = exports.IconGPT4 = exports.IconDoubao = exports.IconGoogleGemini = exports.IconDeepseek = exports.IconAWS = exports.IconClaude = exports.IconReleaseManagement = exports.IconDataProcessing1 = exports.IconModelExperienceCenter = exports.IconObservationIntegration = exports.IconModelOptimization = exports.IconComputingManagement = exports.IconMenuObservation = exports.IconMenuAgentCenter = exports.IconMenuEvaluation = exports.IconMenuTask = void 0;
35
35
  exports.IconUploadFile = exports.IconUploadRadio = exports.IconKnowledgeBoard = exports.IconIndicatorMonitoring = exports.IconLoading2 = exports.IconQAExtract = exports.IconMore = exports.IconKnowledgeDataSynchronization = exports.IconKnowledgeChartTable = exports.IconTreeTerminologySearch = exports.IconTreeQASearch = exports.IconWorkflowKnowledgeRetrieval = exports.IconCompletedComparison = exports.IconPDSeparation = exports.IconRise2 = exports.IconComparison = exports.IconDecline2 = exports.IconAutomaticOptimization = exports.IconPromptWordTemplate = exports.IconGeneratedDocument = exports.IconTreeObject = exports.IconTreeRules = exports.IconDiagramCracking2 = exports.IconTaskCompleted = exports.IconFullscreenExit = exports.IconEmpty = exports.IconTag = exports.IconRotateLeft = exports.IconWorkflowChecklist = exports.IconDataInsight = exports.IconMenuIndicators = exports.IconMenuEvaluationSet = exports.IconDataOnlineTagging = exports.IconMenuHiagent = exports.IconModelGallery = exports.IconThumbDown = exports.IconZoomOut = exports.IconZoomIn = exports.IconMinusCircle = exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = exports.IconAgentChatStop = void 0;
36
+ exports.IconSankeyDiagram = exports.IconTerminology = exports.IconAgentproFollow = void 0;
36
37
  var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
37
38
  Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
38
39
  var IconAgentNodata_1 = require("./IconAgentNodata");
@@ -1633,4 +1634,10 @@ var IconUploadRadio_1 = require("./IconUploadRadio");
1633
1634
  Object.defineProperty(exports, "IconUploadRadio", { enumerable: true, get: function () { return __importDefault(IconUploadRadio_1).default; } });
1634
1635
  var IconUploadFile_1 = require("./IconUploadFile");
1635
1636
  Object.defineProperty(exports, "IconUploadFile", { enumerable: true, get: function () { return __importDefault(IconUploadFile_1).default; } });
1637
+ var IconAgentproFollow_1 = require("./IconAgentproFollow");
1638
+ Object.defineProperty(exports, "IconAgentproFollow", { enumerable: true, get: function () { return __importDefault(IconAgentproFollow_1).default; } });
1639
+ var IconTerminology_1 = require("./IconTerminology");
1640
+ Object.defineProperty(exports, "IconTerminology", { enumerable: true, get: function () { return __importDefault(IconTerminology_1).default; } });
1641
+ var IconSankeyDiagram_1 = require("./IconSankeyDiagram");
1642
+ Object.defineProperty(exports, "IconSankeyDiagram", { enumerable: true, get: function () { return __importDefault(IconSankeyDiagram_1).default; } });
1636
1643
  __exportStar(require("./type"), exports);