@arco-iconbox/react-hiagent 0.1.24 → 0.1.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/cjs/IconAWS/index.d.ts +4 -0
  2. package/cjs/IconAWS/index.js +60 -0
  3. package/cjs/IconAgentInputKeyboard/index.d.ts +4 -0
  4. package/cjs/IconAgentInputKeyboard/index.js +59 -0
  5. package/cjs/IconAgentMicrophone/index.d.ts +4 -0
  6. package/cjs/IconAgentMicrophone/index.js +59 -0
  7. package/cjs/IconAgentSubtitlesOff/index.d.ts +4 -0
  8. package/cjs/IconAgentSubtitlesOff/index.js +60 -0
  9. package/cjs/IconAgentSubtitlesOn/index.d.ts +4 -0
  10. package/cjs/IconAgentSubtitlesOn/index.js +59 -0
  11. package/cjs/IconAgentVoiceAnswer/index.d.ts +4 -0
  12. package/cjs/IconAgentVoiceAnswer/index.js +59 -0
  13. package/cjs/IconAgentVoiceDialogue/index.d.ts +4 -0
  14. package/cjs/IconAgentVoiceDialogue/index.js +59 -0
  15. package/cjs/IconAgentVoiceExit/index.d.ts +4 -0
  16. package/cjs/IconAgentVoiceExit/index.js +59 -0
  17. package/cjs/IconAgentVoiceHangup/index.d.ts +4 -0
  18. package/cjs/IconAgentVoiceHangup/index.js +59 -0
  19. package/cjs/IconAgentVoiceInput/index.d.ts +4 -0
  20. package/cjs/IconAgentVoiceInput/index.js +59 -0
  21. package/cjs/IconAgentVoiceInteraction/index.d.ts +4 -0
  22. package/cjs/IconAgentVoiceInteraction/index.js +60 -0
  23. package/cjs/IconAgentVoiceInterruptionTurnoff/index.d.ts +4 -0
  24. package/cjs/IconAgentVoiceInterruptionTurnoff/index.js +64 -0
  25. package/cjs/IconAgentVoiceInterruptionTurnon/index.d.ts +4 -0
  26. package/cjs/IconAgentVoiceInterruptionTurnon/index.js +59 -0
  27. package/cjs/IconAgentVoicePause/index.d.ts +4 -0
  28. package/cjs/IconAgentVoicePause/index.js +62 -0
  29. package/cjs/IconAgentVoicePlay/index.d.ts +4 -0
  30. package/cjs/IconAgentVoicePlay/index.js +60 -0
  31. package/cjs/IconAgentVoiceSwitch/index.d.ts +4 -0
  32. package/cjs/IconAgentVoiceSwitch/index.js +59 -0
  33. package/cjs/index.d.ts +16 -0
  34. package/cjs/index.js +33 -1
  35. package/dist/icon.min.js +1 -1
  36. package/esm/IconAWS/index.d.ts +4 -0
  37. package/esm/IconAWS/index.js +35 -0
  38. package/esm/IconAgentInputKeyboard/index.d.ts +4 -0
  39. package/esm/IconAgentInputKeyboard/index.js +34 -0
  40. package/esm/IconAgentMicrophone/index.d.ts +4 -0
  41. package/esm/IconAgentMicrophone/index.js +34 -0
  42. package/esm/IconAgentSubtitlesOff/index.d.ts +4 -0
  43. package/esm/IconAgentSubtitlesOff/index.js +35 -0
  44. package/esm/IconAgentSubtitlesOn/index.d.ts +4 -0
  45. package/esm/IconAgentSubtitlesOn/index.js +34 -0
  46. package/esm/IconAgentVoiceAnswer/index.d.ts +4 -0
  47. package/esm/IconAgentVoiceAnswer/index.js +34 -0
  48. package/esm/IconAgentVoiceDialogue/index.d.ts +4 -0
  49. package/esm/IconAgentVoiceDialogue/index.js +34 -0
  50. package/esm/IconAgentVoiceExit/index.d.ts +4 -0
  51. package/esm/IconAgentVoiceExit/index.js +34 -0
  52. package/esm/IconAgentVoiceHangup/index.d.ts +4 -0
  53. package/esm/IconAgentVoiceHangup/index.js +34 -0
  54. package/esm/IconAgentVoiceInput/index.d.ts +4 -0
  55. package/esm/IconAgentVoiceInput/index.js +34 -0
  56. package/esm/IconAgentVoiceInteraction/index.d.ts +4 -0
  57. package/esm/IconAgentVoiceInteraction/index.js +35 -0
  58. package/esm/IconAgentVoiceInterruptionTurnoff/index.d.ts +4 -0
  59. package/esm/IconAgentVoiceInterruptionTurnoff/index.js +39 -0
  60. package/esm/IconAgentVoiceInterruptionTurnon/index.d.ts +4 -0
  61. package/esm/IconAgentVoiceInterruptionTurnon/index.js +34 -0
  62. package/esm/IconAgentVoicePause/index.d.ts +4 -0
  63. package/esm/IconAgentVoicePause/index.js +37 -0
  64. package/esm/IconAgentVoicePlay/index.d.ts +4 -0
  65. package/esm/IconAgentVoicePlay/index.js +35 -0
  66. package/esm/IconAgentVoiceSwitch/index.d.ts +4 -0
  67. package/esm/IconAgentVoiceSwitch/index.js +34 -0
  68. package/esm/index.d.ts +16 -0
  69. package/esm/index.js +16 -0
  70. package/package.json +1 -1
  71. package/src/IconAWS/index.tsx +15 -0
  72. package/src/IconAgentInputKeyboard/index.tsx +15 -0
  73. package/src/IconAgentMicrophone/index.tsx +15 -0
  74. package/src/IconAgentSubtitlesOff/index.tsx +15 -0
  75. package/src/IconAgentSubtitlesOn/index.tsx +15 -0
  76. package/src/IconAgentVoiceAnswer/index.tsx +15 -0
  77. package/src/IconAgentVoiceDialogue/index.tsx +15 -0
  78. package/src/IconAgentVoiceExit/index.tsx +15 -0
  79. package/src/IconAgentVoiceHangup/index.tsx +15 -0
  80. package/src/IconAgentVoiceInput/index.tsx +15 -0
  81. package/src/IconAgentVoiceInteraction/index.tsx +15 -0
  82. package/src/IconAgentVoiceInterruptionTurnoff/index.tsx +15 -0
  83. package/src/IconAgentVoiceInterruptionTurnon/index.tsx +15 -0
  84. package/src/IconAgentVoicePause/index.tsx +15 -0
  85. package/src/IconAgentVoicePlay/index.tsx +15 -0
  86. package/src/IconAgentVoiceSwitch/index.tsx +15 -0
  87. package/src/index.ts +16 -0
  88. package/umd/IconAWS/index.d.ts +4 -0
  89. package/umd/IconAWS/index.js +70 -0
  90. package/umd/IconAgentInputKeyboard/index.d.ts +4 -0
  91. package/umd/IconAgentInputKeyboard/index.js +69 -0
  92. package/umd/IconAgentMicrophone/index.d.ts +4 -0
  93. package/umd/IconAgentMicrophone/index.js +69 -0
  94. package/umd/IconAgentSubtitlesOff/index.d.ts +4 -0
  95. package/umd/IconAgentSubtitlesOff/index.js +70 -0
  96. package/umd/IconAgentSubtitlesOn/index.d.ts +4 -0
  97. package/umd/IconAgentSubtitlesOn/index.js +69 -0
  98. package/umd/IconAgentVoiceAnswer/index.d.ts +4 -0
  99. package/umd/IconAgentVoiceAnswer/index.js +69 -0
  100. package/umd/IconAgentVoiceDialogue/index.d.ts +4 -0
  101. package/umd/IconAgentVoiceDialogue/index.js +69 -0
  102. package/umd/IconAgentVoiceExit/index.d.ts +4 -0
  103. package/umd/IconAgentVoiceExit/index.js +69 -0
  104. package/umd/IconAgentVoiceHangup/index.d.ts +4 -0
  105. package/umd/IconAgentVoiceHangup/index.js +69 -0
  106. package/umd/IconAgentVoiceInput/index.d.ts +4 -0
  107. package/umd/IconAgentVoiceInput/index.js +69 -0
  108. package/umd/IconAgentVoiceInteraction/index.d.ts +4 -0
  109. package/umd/IconAgentVoiceInteraction/index.js +70 -0
  110. package/umd/IconAgentVoiceInterruptionTurnoff/index.d.ts +4 -0
  111. package/umd/IconAgentVoiceInterruptionTurnoff/index.js +74 -0
  112. package/umd/IconAgentVoiceInterruptionTurnon/index.d.ts +4 -0
  113. package/umd/IconAgentVoiceInterruptionTurnon/index.js +69 -0
  114. package/umd/IconAgentVoicePause/index.d.ts +4 -0
  115. package/umd/IconAgentVoicePause/index.js +72 -0
  116. package/umd/IconAgentVoicePlay/index.d.ts +4 -0
  117. package/umd/IconAgentVoicePlay/index.js +70 -0
  118. package/umd/IconAgentVoiceSwitch/index.d.ts +4 -0
  119. package/umd/IconAgentVoiceSwitch/index.js +69 -0
  120. package/umd/index.d.ts +16 -0
  121. package/umd/index.js +34 -2
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAgentVoiceInterruptionTurnon: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAgentVoiceInterruptionTurnon;
@@ -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 IconAgentVoiceInterruptionTurnonComponent(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-agent_voice_interruption_turnon").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
56
+ react_1.default.createElement("path", { d: "M7.91699 4.33301C7.91682 3.45871 7.20735 2.75 6.33301 2.75 5.45881 2.75018 4.75018 3.45882 4.75 4.33301 4.75 5.20735 5.4587 5.91682 6.33301 5.91699 7.20746 5.91699 7.91699 5.20746 7.91699 4.33301zM9.41699 4.33301C9.41699 6.03589 8.03589 7.41699 6.33301 7.41699 4.63028 7.41682 3.25 6.03578 3.25 4.33301 3.25018 2.63039 4.63039 1.25018 6.33301 1.25 8.03578 1.25 9.41682 2.63028 9.41699 4.33301zM11.6943 6.28392C11.5375 6.66729 11.0992 6.85091 10.7158 6.69407 10.3328 6.53722 10.1492 6.09972 10.3057 5.71653L11.6943 6.28392zM10.665 1.99583C11.0355 1.81089 11.4857 1.96141 11.6709 2.33177L11.6719 2.33274V2.33372C11.6723 2.33459 11.6733 2.33562 11.6738 2.33665 11.675 2.33897 11.6763 2.34237 11.6777 2.34544 11.6807 2.3515 11.6843 2.35897 11.6885 2.3679 11.6969 2.38613 11.708 2.41041 11.7207 2.44016 11.7461 2.49961 11.779 2.58177 11.8145 2.68431 11.8853 2.88895 11.9677 3.1778 12.0225 3.53099 12.1322 4.2384 12.1318 5.21456 11.6943 6.28392L11 5.99974 10.3057 5.71653C10.6182 4.95267 10.6178 4.26135 10.54 3.76048 10.5011 3.50989 10.4428 3.30934 10.3965 3.17552 10.3734 3.10879 10.3535 3.05877 10.3408 3.02903 10.3346 3.01435 10.3303 3.00434 10.3281 2.99974L10.3272 2.99876 10.3291 2.99974C10.1454 2.62962 10.2952 2.18074 10.665 1.99583zM12.9691.678064C13.3311.476935 13.7874.607118 13.9886.969079L13.4496 1.26888 13.9896.970056 13.9925.975915C13.9941.978817 13.9961.982472 13.9984.986658 14.003.995249 14.0088 1.00699 14.016 1.02084 14.0302 1.04849 14.0499 1.08623 14.0726 1.13412 14.1181 1.23003 14.1785 1.36594 14.2445 1.53744 14.3762 1.87987 14.5316 2.36819 14.6351 2.9681 14.8425 4.17119 14.8407 5.82954 14.016 7.64388 13.8445 8.02081 13.3998 8.18732 13.0228 8.01595 12.6459 7.84448 12.4794 7.3998 12.6507 7.02279 13.3259 5.53722 13.3241 4.19485 13.1566 3.22299 13.0725 2.73566 12.9467 2.34237 12.8441 2.07552 12.793 1.94277 12.7478 1.84224 12.7171 1.77767 12.7018 1.74539 12.6899 1.72182 12.6829 1.70834 12.6795 1.70171 12.6771 1.69745 12.6761 1.69564H12.6771V1.69662C12.4768 1.33474 12.6075.879087 12.9691.678064zM7.06673 8.58325C7.80106 8.58325 8.39695 8.58291 8.87923 8.62231 9.37025 8.66243 9.80955 8.74717 10.2181 8.95532 10.8609 9.28288 11.3837 9.80569 11.7113 10.4485 11.9194 10.857 12.0041 11.2963 12.0443 11.7874 12.0837 12.2696 12.0833 12.8655 12.0833 13.5999V14.0002C12.0832 14.4143 11.7474 14.7502 11.3333 14.7502H1.33333C.919223 14.7502.583504 14.4143.583328 14.0002V13.5999C.583328 12.8655.582987 12.2696.622391 11.7874.662514 11.2963.747232 10.857.955399 10.4485 1.28294 9.80569 1.80576 9.28288 2.44856 8.95532 2.85711 8.74717 3.2964 8.66243 3.78743 8.62231 4.26971 8.58291 4.8656 8.58325 5.59993 8.58325H7.06673zM5.59993 10.0833C4.84086 10.0833 4.31654 10.0842 3.9095 10.1174 3.51151 10.15 3.29203 10.2098 3.1302 10.2922 2.76956 10.476 2.47607 10.7695 2.29231 11.1301 2.20991 11.292 2.15004 11.5114 2.11751 11.9094 2.08962 12.2508 2.08614 12.6747 2.08528 13.2502H10.5814C10.5805 12.6747 10.577 12.2508 10.5491 11.9094 10.5166 11.5114 10.4567 11.292 10.3743 11.1301 10.1906 10.7695 9.8971 10.476 9.53645 10.2922 9.37463 10.2098 9.15515 10.15 8.75716 10.1174 8.35012 10.0842 7.8258 10.0833 7.06673 10.0833H5.59993z" }));
57
+ }
58
+ var IconAgentVoiceInterruptionTurnon = react_1.default.forwardRef(IconAgentVoiceInterruptionTurnonComponent);
59
+ exports.default = IconAgentVoiceInterruptionTurnon;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAgentVoicePause: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAgentVoicePause;
@@ -0,0 +1,62 @@
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 IconAgentVoicePauseComponent(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-agent_voice_pause").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : 'currentColor', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
56
+ react_1.default.createElement("rect", { width: "20", height: "20", rx: "8", fill: useCurrentColor ? 'currentColor' : '#1664FF' }),
57
+ react_1.default.createElement("g", { fill: useCurrentColor ? 'currentColor' : '#fff' },
58
+ react_1.default.createElement("rect", { x: "6", y: "5", width: "3", height: "10", rx: "1.5" }),
59
+ react_1.default.createElement("rect", { x: "11", y: "5", width: "3", height: "10", rx: "1.5" })));
60
+ }
61
+ var IconAgentVoicePause = react_1.default.forwardRef(IconAgentVoicePauseComponent);
62
+ exports.default = IconAgentVoicePause;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAgentVoicePlay: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAgentVoicePlay;
@@ -0,0 +1,60 @@
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 IconAgentVoicePlayComponent(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-agent_voice_play").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : 'currentColor', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
56
+ react_1.default.createElement("rect", { width: "20", height: "20", rx: "8", fill: useCurrentColor ? 'currentColor' : '#1664FF' }),
57
+ react_1.default.createElement("path", { d: "M14.0395 9.36243C14.1498 9.42925 14.241 9.52339 14.3044 9.63577C14.3677 9.74814 14.4009 9.87494 14.4009 10.0039C14.4009 10.1329 14.3677 10.2597 14.3044 10.3721C14.241 10.4845 14.1498 10.5786 14.0395 10.6454L6.7375 15.0654C6.62371 15.1343 6.49365 15.1717 6.36065 15.1738C6.22764 15.1759 6.09648 15.1425 5.98061 15.0772C5.86474 15.0118 5.76833 14.9169 5.70127 14.802C5.63421 14.6871 5.59892 14.5564 5.599 14.4234V5.58443C5.59909 5.45149 5.63452 5.32097 5.70165 5.20622C5.76878 5.09148 5.86521 4.99664 5.98104 4.93143C6.09688 4.86621 6.22798 4.83295 6.3609 4.83506C6.49382 4.83716 6.62379 4.87456 6.7375 4.94343L14.0395 9.36243Z", fill: useCurrentColor ? 'currentColor' : '#fff' }));
58
+ }
59
+ var IconAgentVoicePlay = react_1.default.forwardRef(IconAgentVoicePlayComponent);
60
+ exports.default = IconAgentVoicePlay;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconAgentVoiceSwitch: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconAgentVoiceSwitch;
@@ -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 IconAgentVoiceSwitchComponent(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-agent_voice_switch").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
56
+ react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7884 4.74361L15.1455 6.97973L3.20669 6.97973C2.74645 6.97973 2.37335 7.35282 2.37335 7.81306C2.37335 8.2733 2.74645 8.64639 3.20668 8.64639L16.1901 8.6464C17.3196 8.6464 17.8699 7.26697 17.0504 6.48955L13.9355 3.53448C13.6016 3.21772 13.0741 3.23161 12.7574 3.56551C12.4406 3.8994 12.4545 4.42685 12.7884 4.74361ZM7.1696 15.2594L4.83728 13.0198L16.6253 13.0198C17.0856 13.0198 17.4587 12.6467 17.4587 12.1864C17.4587 11.7262 17.0856 11.3531 16.6253 11.3531L3.80179 11.3531C2.6759 11.3531 2.12391 12.7249 2.93601 13.5047L6.01523 16.4615C6.3472 16.7803 6.87472 16.7696 7.1935 16.4376C7.51227 16.1057 7.50157 15.5781 7.1696 15.2594Z" }));
57
+ }
58
+ var IconAgentVoiceSwitch = react_1.default.forwardRef(IconAgentVoiceSwitchComponent);
59
+ exports.default = IconAgentVoiceSwitch;
package/cjs/index.d.ts CHANGED
@@ -1516,4 +1516,20 @@ export { default as IconPermission } from './IconPermission';
1516
1516
  export { default as IconAnonymousAccess } from './IconAnonymousAccess';
1517
1517
  export { default as IconWhiteList } from './IconWhiteList';
1518
1518
  export { default as IconDataProcessing1 } from './IconDataProcessing1';
1519
+ export { default as IconAgentVoiceInterruptionTurnoff } from './IconAgentVoiceInterruptionTurnoff';
1520
+ export { default as IconAgentSubtitlesOn } from './IconAgentSubtitlesOn';
1521
+ export { default as IconAgentVoiceInterruptionTurnon } from './IconAgentVoiceInterruptionTurnon';
1522
+ export { default as IconAgentSubtitlesOff } from './IconAgentSubtitlesOff';
1523
+ export { default as IconAgentVoiceExit } from './IconAgentVoiceExit';
1524
+ export { default as IconAgentVoiceInput } from './IconAgentVoiceInput';
1525
+ export { default as IconAgentInputKeyboard } from './IconAgentInputKeyboard';
1526
+ export { default as IconAgentVoiceHangup } from './IconAgentVoiceHangup';
1527
+ export { default as IconAgentVoiceAnswer } from './IconAgentVoiceAnswer';
1528
+ export { default as IconAgentVoiceSwitch } from './IconAgentVoiceSwitch';
1529
+ export { default as IconAgentVoiceDialogue } from './IconAgentVoiceDialogue';
1530
+ export { default as IconAgentMicrophone } from './IconAgentMicrophone';
1531
+ export { default as IconAgentVoicePlay } from './IconAgentVoicePlay';
1532
+ export { default as IconAgentVoicePause } from './IconAgentVoicePause';
1533
+ export { default as IconAgentVoiceInteraction } from './IconAgentVoiceInteraction';
1534
+ export { default as IconAWS } from './IconAWS';
1519
1535
  export * from './type';
package/cjs/index.js CHANGED
@@ -47,7 +47,7 @@ exports.IconDataDataset = exports.IconModelService = exports.IconDataOnlineTaggi
47
47
  exports.IconStopUpdate = exports.IconSheildKey = exports.IconRl = exports.IconPromptMaas = exports.IconDataSetMaas = exports.IconModelAccess = exports.IconContinuePretrain = exports.IconAddMaas = exports.IconMoreMaas = exports.IconOutputMaas = exports.IconMemoryWebapp = exports.IconBatchProcessing = exports.IconUnfold2 = exports.IconModelGallery = exports.IconOutput = exports.IconScale = exports.IconWebEmb = exports.IconThreatAttribution = exports.IconProtection = exports.IconShield = exports.IconCommentApply = exports.IconWflHttp = exports.IconVideo = exports.IconVariableAggregation = exports.IconAddNewVersion = exports.IconWfMemory = exports.IconFunctionCall = exports.IconImageAi = exports.IconSystemPresetting = exports.IconManagementBackEnd = exports.IconModelServiceC = exports.IconModelFile = exports.IconVectorModel = exports.IconLanguageModel = exports.IconSortingModel = exports.IconReportSet = exports.IconMenteor = exports.IconContextualRelevance = exports.IconNist = exports.IconBleu = exports.IconImageUnderstanding = exports.IconObservationIntegration = exports.IconArrangeMemory = exports.IconInvokeMemory = exports.IconCaretUp = exports.IconCaretDown = exports.IconAddVersion = exports.IconWflSetVariable = exports.IconAgtDebug = exports.IconSessionFlow = void 0;
48
48
  exports.IconUserVariable = exports.IconParallel = exports.IconMoreVertical1 = exports.IconExportRecord = exports.IconPublishVersion = exports.IconRuntimeConfiguration = exports.IconRunConfiguration = exports.IconArrowDownward = exports.IconArrowUpwards = exports.IconCustomApplication = exports.IconWkfOptimization = exports.IconWkfTemplate = exports.IconStarColor = exports.IconModelWarehouseDetail = exports.IconDistribution = exports.IconCheckboxList = exports.IconDatasetsReflux = exports.IconDataProcessing = exports.IconCardSurface = exports.IconCardLine = exports.IconKnowledgeRetrieval = exports.IconKnowledgeWriting = exports.IconInformationCollection = exports.IconUnpin = exports.IconRename = exports.IconPin = exports.IconBatchMovement = exports.IconAsynchronousOperation = exports.IconParameterSetting = exports.IconFolderClose = exports.IconFolderOpen = exports.IconFolderMaas = exports.IconBatchInference = exports.IconObs = exports.IconDataSetBos = exports.IconManagement = exports.IconDeepseek = exports.IconDataSetDetail = exports.IconDataSetBlue = exports.IconImageModel = exports.IconWorkspaceMaas = exports.IconYaml = exports.IconUserMaas = exports.IconCustomMark = exports.IconService = exports.IconRm = exports.IconSmoothUpdate = exports.IconModelEvalue = exports.IconSingleMachine = exports.IconTos = void 0;
49
49
  exports.IconTreePluginInvocation = exports.IconTreeEmbeddingModel = exports.IconTreeKnowledgePermission = exports.IconExperienceCenter = exports.IconKnowledgeSpreadsheet = exports.IconWebsdk = exports.IconMCPAgentPublish = exports.IconAgentSend = exports.IconOfd = exports.IconImageUnderstanding1 = exports.IconPositioningChart = exports.IconDataMapping = exports.IconDataEnhance = exports.IconDataAnnotation = exports.IconDataClean = exports.IconUploadVideo1 = exports.IconUploadImage1 = exports.IconDiagramCracking = exports.IconNoVideoImage = exports.IconCalendar1 = exports.IconMagic = exports.IconUnconstraint = exports.IconConstraint = exports.IconImageUpload = exports.IconAiImageActive = exports.IconAiVideoDefault = exports.IconAiVideoActive = exports.IconAiImageDefault = exports.IconAiVideo = exports.IconUpgradeEngine = exports.IconAscent = exports.IconNvidia = exports.IconVisualModel = exports.IconText2video = exports.IconText2image = exports.IconImage2video = exports.IconMinimumQueue = exports.IconAgentWebService = exports.IconAgentDeploymentPackage = exports.IconAgentPublishApi = exports.IconAgentPublishEnterpriseWechat = exports.IconAgentPublishWeChat = exports.IconAgentPublishOthers = exports.IconAgentChannel = exports.IconAgentHistory = exports.IconAgentImport = exports.IconVariableAssignment = exports.IconAPIDatasource = exports.IconAPI = exports.IconInvokeMemoryDel = void 0;
50
- exports.IconDataProcessing1 = exports.IconWhiteList = exports.IconAnonymousAccess = exports.IconPermission = exports.IconWorkflowNode = exports.IconExtendedContext = exports.IconBGE = exports.IconBarChart = exports.IconCircularGraph = exports.IconAgentFile = exports.IconTreeKnowledgeRetrieval = exports.IconTreeAgentInvocation = exports.IconTreeMetadataFiltering = exports.IconTreeDatabasePermission = exports.IconTreeContentAudit = exports.IconTreeRankModel = exports.IconTreeSafetyAudit = exports.IconTreeSQL = void 0;
50
+ exports.IconAWS = exports.IconAgentVoiceInteraction = exports.IconAgentVoicePause = exports.IconAgentVoicePlay = exports.IconAgentMicrophone = exports.IconAgentVoiceDialogue = exports.IconAgentVoiceSwitch = exports.IconAgentVoiceAnswer = exports.IconAgentVoiceHangup = exports.IconAgentInputKeyboard = exports.IconAgentVoiceInput = exports.IconAgentVoiceExit = exports.IconAgentSubtitlesOff = exports.IconAgentVoiceInterruptionTurnon = exports.IconAgentSubtitlesOn = exports.IconAgentVoiceInterruptionTurnoff = exports.IconDataProcessing1 = exports.IconWhiteList = exports.IconAnonymousAccess = exports.IconPermission = exports.IconWorkflowNode = exports.IconExtendedContext = exports.IconBGE = exports.IconBarChart = exports.IconCircularGraph = exports.IconAgentFile = exports.IconTreeKnowledgeRetrieval = exports.IconTreeAgentInvocation = exports.IconTreeMetadataFiltering = exports.IconTreeDatabasePermission = exports.IconTreeContentAudit = exports.IconTreeRankModel = exports.IconTreeSafetyAudit = exports.IconTreeSQL = void 0;
51
51
  var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
52
52
  Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
53
53
  var IconAgentNodata_1 = require("./IconAgentNodata");
@@ -3084,4 +3084,36 @@ var IconWhiteList_1 = require("./IconWhiteList");
3084
3084
  Object.defineProperty(exports, "IconWhiteList", { enumerable: true, get: function () { return __importDefault(IconWhiteList_1).default; } });
3085
3085
  var IconDataProcessing1_1 = require("./IconDataProcessing1");
3086
3086
  Object.defineProperty(exports, "IconDataProcessing1", { enumerable: true, get: function () { return __importDefault(IconDataProcessing1_1).default; } });
3087
+ var IconAgentVoiceInterruptionTurnoff_1 = require("./IconAgentVoiceInterruptionTurnoff");
3088
+ Object.defineProperty(exports, "IconAgentVoiceInterruptionTurnoff", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceInterruptionTurnoff_1).default; } });
3089
+ var IconAgentSubtitlesOn_1 = require("./IconAgentSubtitlesOn");
3090
+ Object.defineProperty(exports, "IconAgentSubtitlesOn", { enumerable: true, get: function () { return __importDefault(IconAgentSubtitlesOn_1).default; } });
3091
+ var IconAgentVoiceInterruptionTurnon_1 = require("./IconAgentVoiceInterruptionTurnon");
3092
+ Object.defineProperty(exports, "IconAgentVoiceInterruptionTurnon", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceInterruptionTurnon_1).default; } });
3093
+ var IconAgentSubtitlesOff_1 = require("./IconAgentSubtitlesOff");
3094
+ Object.defineProperty(exports, "IconAgentSubtitlesOff", { enumerable: true, get: function () { return __importDefault(IconAgentSubtitlesOff_1).default; } });
3095
+ var IconAgentVoiceExit_1 = require("./IconAgentVoiceExit");
3096
+ Object.defineProperty(exports, "IconAgentVoiceExit", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceExit_1).default; } });
3097
+ var IconAgentVoiceInput_1 = require("./IconAgentVoiceInput");
3098
+ Object.defineProperty(exports, "IconAgentVoiceInput", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceInput_1).default; } });
3099
+ var IconAgentInputKeyboard_1 = require("./IconAgentInputKeyboard");
3100
+ Object.defineProperty(exports, "IconAgentInputKeyboard", { enumerable: true, get: function () { return __importDefault(IconAgentInputKeyboard_1).default; } });
3101
+ var IconAgentVoiceHangup_1 = require("./IconAgentVoiceHangup");
3102
+ Object.defineProperty(exports, "IconAgentVoiceHangup", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceHangup_1).default; } });
3103
+ var IconAgentVoiceAnswer_1 = require("./IconAgentVoiceAnswer");
3104
+ Object.defineProperty(exports, "IconAgentVoiceAnswer", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceAnswer_1).default; } });
3105
+ var IconAgentVoiceSwitch_1 = require("./IconAgentVoiceSwitch");
3106
+ Object.defineProperty(exports, "IconAgentVoiceSwitch", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceSwitch_1).default; } });
3107
+ var IconAgentVoiceDialogue_1 = require("./IconAgentVoiceDialogue");
3108
+ Object.defineProperty(exports, "IconAgentVoiceDialogue", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceDialogue_1).default; } });
3109
+ var IconAgentMicrophone_1 = require("./IconAgentMicrophone");
3110
+ Object.defineProperty(exports, "IconAgentMicrophone", { enumerable: true, get: function () { return __importDefault(IconAgentMicrophone_1).default; } });
3111
+ var IconAgentVoicePlay_1 = require("./IconAgentVoicePlay");
3112
+ Object.defineProperty(exports, "IconAgentVoicePlay", { enumerable: true, get: function () { return __importDefault(IconAgentVoicePlay_1).default; } });
3113
+ var IconAgentVoicePause_1 = require("./IconAgentVoicePause");
3114
+ Object.defineProperty(exports, "IconAgentVoicePause", { enumerable: true, get: function () { return __importDefault(IconAgentVoicePause_1).default; } });
3115
+ var IconAgentVoiceInteraction_1 = require("./IconAgentVoiceInteraction");
3116
+ Object.defineProperty(exports, "IconAgentVoiceInteraction", { enumerable: true, get: function () { return __importDefault(IconAgentVoiceInteraction_1).default; } });
3117
+ var IconAWS_1 = require("./IconAWS");
3118
+ Object.defineProperty(exports, "IconAWS", { enumerable: true, get: function () { return __importDefault(IconAWS_1).default; } });
3087
3119
  __exportStar(require("./type"), exports);