@arco-iconbox/react-hiagent 0.1.33 → 0.1.34

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 (138) hide show
  1. package/cjs/IconAudio/index.js +5 -30
  2. package/cjs/IconDataExternal/index.js +5 -22
  3. package/cjs/IconUnknownFile/index.js +4 -19
  4. package/cjs/IconUploadingCsv/index.js +7 -25
  5. package/cjs/IconUploadingDoc/index.js +5 -5
  6. package/cjs/IconUploadingHtml/index.js +5 -14
  7. package/cjs/IconUploadingJson/index.d.ts +4 -0
  8. package/cjs/IconUploadingJson/index.js +61 -0
  9. package/cjs/IconUploadingLarksheet/index.d.ts +4 -0
  10. package/cjs/IconUploadingLarksheet/index.js +63 -0
  11. package/cjs/IconUploadingMd/index.js +5 -44
  12. package/cjs/IconUploadingOfd/index.d.ts +4 -0
  13. package/cjs/IconUploadingOfd/index.js +62 -0
  14. package/cjs/IconUploadingPdf/index.js +6 -11
  15. package/cjs/IconUploadingPng/index.js +6 -27
  16. package/cjs/IconUploadingPpt/index.js +4 -35
  17. package/cjs/IconUploadingTxt/index.js +5 -13
  18. package/cjs/IconUploadingWps/index.d.ts +4 -0
  19. package/cjs/IconUploadingWps/index.js +62 -0
  20. package/cjs/IconUploadingXlsx/index.js +5 -33
  21. package/cjs/IconWorkflowClose/index.d.ts +4 -0
  22. package/cjs/IconWorkflowClose/index.js +59 -0
  23. package/cjs/IconWorkflowDownward/index.d.ts +4 -0
  24. package/cjs/IconWorkflowDownward/index.js +59 -0
  25. package/cjs/IconWorkflowEditor/index.d.ts +4 -0
  26. package/cjs/IconWorkflowEditor/index.js +59 -0
  27. package/cjs/IconWorkflowMore/index.d.ts +4 -0
  28. package/cjs/IconWorkflowMore/index.js +59 -0
  29. package/cjs/IconWorkflowNodeInput/index.d.ts +4 -0
  30. package/cjs/IconWorkflowNodeInput/index.js +59 -0
  31. package/cjs/IconWorkflowUpwards/index.d.ts +4 -0
  32. package/cjs/IconWorkflowUpwards/index.js +59 -0
  33. package/cjs/IconZip/index.js +6 -12
  34. package/cjs/index.d.ts +23 -14
  35. package/cjs/index.js +78 -59
  36. package/dist/icon.min.js +1 -1
  37. package/esm/IconAudio/index.js +5 -30
  38. package/esm/IconDataExternal/index.js +5 -22
  39. package/esm/IconUnknownFile/index.js +4 -19
  40. package/esm/IconUploadingCsv/index.js +7 -25
  41. package/esm/IconUploadingDoc/index.js +5 -5
  42. package/esm/IconUploadingHtml/index.js +5 -14
  43. package/esm/IconUploadingJson/index.d.ts +4 -0
  44. package/esm/IconUploadingJson/index.js +36 -0
  45. package/esm/IconUploadingLarksheet/index.d.ts +4 -0
  46. package/esm/IconUploadingLarksheet/index.js +38 -0
  47. package/esm/IconUploadingMd/index.js +5 -44
  48. package/esm/IconUploadingOfd/index.d.ts +4 -0
  49. package/esm/IconUploadingOfd/index.js +37 -0
  50. package/esm/IconUploadingPdf/index.js +6 -11
  51. package/esm/IconUploadingPng/index.js +6 -27
  52. package/esm/IconUploadingPpt/index.js +4 -35
  53. package/esm/IconUploadingTxt/index.js +5 -13
  54. package/esm/IconUploadingWps/index.d.ts +4 -0
  55. package/esm/IconUploadingWps/index.js +37 -0
  56. package/esm/IconUploadingXlsx/index.js +5 -33
  57. package/esm/IconWorkflowClose/index.d.ts +4 -0
  58. package/esm/IconWorkflowClose/index.js +34 -0
  59. package/esm/IconWorkflowDownward/index.d.ts +4 -0
  60. package/esm/IconWorkflowDownward/index.js +34 -0
  61. package/esm/IconWorkflowEditor/index.d.ts +4 -0
  62. package/esm/IconWorkflowEditor/index.js +34 -0
  63. package/esm/IconWorkflowMore/index.d.ts +4 -0
  64. package/esm/IconWorkflowMore/index.js +34 -0
  65. package/esm/IconWorkflowNodeInput/index.d.ts +4 -0
  66. package/esm/IconWorkflowNodeInput/index.js +34 -0
  67. package/esm/IconWorkflowUpwards/index.d.ts +4 -0
  68. package/esm/IconWorkflowUpwards/index.js +34 -0
  69. package/esm/IconZip/index.js +6 -12
  70. package/esm/index.d.ts +23 -14
  71. package/esm/index.js +23 -14
  72. package/package.json +1 -1
  73. package/src/IconAudio/index.tsx +1 -1
  74. package/src/IconDataExternal/index.tsx +1 -1
  75. package/src/IconUnknownFile/index.tsx +1 -1
  76. package/src/IconUploadingCsv/index.tsx +1 -1
  77. package/src/IconUploadingDoc/index.tsx +1 -1
  78. package/src/IconUploadingHtml/index.tsx +1 -1
  79. package/src/IconUploadingJson/index.tsx +15 -0
  80. package/src/IconUploadingLarksheet/index.tsx +15 -0
  81. package/src/IconUploadingMd/index.tsx +1 -1
  82. package/src/IconUploadingOfd/index.tsx +15 -0
  83. package/src/IconUploadingPdf/index.tsx +1 -1
  84. package/src/IconUploadingPng/index.tsx +1 -1
  85. package/src/IconUploadingPpt/index.tsx +1 -1
  86. package/src/IconUploadingTxt/index.tsx +1 -1
  87. package/src/IconUploadingWps/index.tsx +15 -0
  88. package/src/IconUploadingXlsx/index.tsx +1 -1
  89. package/src/IconWorkflowClose/index.tsx +15 -0
  90. package/src/IconWorkflowDownward/index.tsx +15 -0
  91. package/src/IconWorkflowEditor/index.tsx +15 -0
  92. package/src/IconWorkflowMore/index.tsx +15 -0
  93. package/src/IconWorkflowNodeInput/index.tsx +15 -0
  94. package/src/IconWorkflowUpwards/index.tsx +15 -0
  95. package/src/IconZip/index.tsx +1 -1
  96. package/src/index.ts +23 -14
  97. package/umd/IconAudio/index.js +5 -30
  98. package/umd/IconDataExternal/index.js +5 -22
  99. package/umd/IconUnknownFile/index.js +4 -19
  100. package/umd/IconUploadingCsv/index.js +7 -25
  101. package/umd/IconUploadingDoc/index.js +5 -5
  102. package/umd/IconUploadingHtml/index.js +5 -14
  103. package/umd/IconUploadingJson/index.d.ts +4 -0
  104. package/umd/IconUploadingJson/index.js +71 -0
  105. package/umd/IconUploadingLarksheet/index.d.ts +4 -0
  106. package/umd/IconUploadingLarksheet/index.js +73 -0
  107. package/umd/IconUploadingMd/index.js +5 -44
  108. package/umd/IconUploadingOfd/index.d.ts +4 -0
  109. package/umd/IconUploadingOfd/index.js +72 -0
  110. package/umd/IconUploadingPdf/index.js +6 -11
  111. package/umd/IconUploadingPng/index.js +6 -27
  112. package/umd/IconUploadingPpt/index.js +4 -35
  113. package/umd/IconUploadingTxt/index.js +5 -13
  114. package/umd/IconUploadingWps/index.d.ts +4 -0
  115. package/umd/IconUploadingWps/index.js +72 -0
  116. package/umd/IconUploadingXlsx/index.js +5 -33
  117. package/umd/IconWorkflowClose/index.d.ts +4 -0
  118. package/umd/IconWorkflowClose/index.js +69 -0
  119. package/umd/IconWorkflowDownward/index.d.ts +4 -0
  120. package/umd/IconWorkflowDownward/index.js +69 -0
  121. package/umd/IconWorkflowEditor/index.d.ts +4 -0
  122. package/umd/IconWorkflowEditor/index.js +69 -0
  123. package/umd/IconWorkflowMore/index.d.ts +4 -0
  124. package/umd/IconWorkflowMore/index.js +69 -0
  125. package/umd/IconWorkflowNodeInput/index.d.ts +4 -0
  126. package/umd/IconWorkflowNodeInput/index.js +69 -0
  127. package/umd/IconWorkflowUpwards/index.d.ts +4 -0
  128. package/umd/IconWorkflowUpwards/index.js +69 -0
  129. package/umd/IconZip/index.js +6 -12
  130. package/umd/index.d.ts +23 -14
  131. package/umd/index.js +48 -30
  132. package/cjs/IconOfd/index.d.ts +0 -4
  133. package/cjs/IconOfd/index.js +0 -73
  134. package/esm/IconOfd/index.d.ts +0 -4
  135. package/esm/IconOfd/index.js +0 -48
  136. package/src/IconOfd/index.tsx +0 -15
  137. package/umd/IconOfd/index.d.ts +0 -4
  138. package/umd/IconOfd/index.js +0 -83
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconUploadingLarksheetComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-larksheet${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#2CBF7D'} stroke="#2CBF7D" d="M8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6A3.5 3.5 0 0 1 8 2.5Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M10.5 16v8h11v-8h-11Zm-1-2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1V15a1 1 0 0 0-1-1h-13Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M21.5 21h-11v-2h11v2Z" clipRule="evenodd" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M15 24v-8h2v8h-2Z" clipRule="evenodd" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#95DFBE'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
+ }
13
+
14
+ const IconUploadingLarksheet = React.forwardRef(IconUploadingLarksheetComponent);
15
+ export default IconUploadingLarksheet;
@@ -8,7 +8,7 @@ function IconUploadingMdComponent(props: OriginIconProps, ref: ForwardedRef<SVGS
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-uploading-md${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 20 20" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#7A859B'} fillRule="evenodd" d="M5 1.25a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V7.5l-6.25-6.25H5Z" clipRule="evenodd"/><g opacity=".5"><mask id="svg_4674346161__a" width="7" height="7" x="11" y="1" maskUnits="userSpaceOnUse" style={{maskType: 'alpha'}}><path fill={useCurrentColor ? 'currentColor' : '#97BCFF'} d="M11.25 1.25 17.5 7.5h-3.75a2.5 2.5 0 0 1-2.5-2.5V1.25Z"/></mask><g mask="url(#svg_4674346161__a)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M15 1.25H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V3.75a2.5 2.5 0 0 0-2.5-2.5Z"/></g></g><g filter="url(#svg_4674346161__svg_c6dc97ca57__b)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M7.5 15.428V9.671c0-.177-.134-.321-.3-.321h-.9c-.166 0-.3.144-.3.321v5.758c0 .177.134.321.3.321h.9c.166 0 .3-.144.3-.322Z"/></g><g filter="url(#svg_4674346161__svg_c6dc97ca57__c)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M14 15.428V9.671c0-.177-.134-.321-.3-.321h-.9c-.166 0-.3.144-.3.321v5.758c0 .177.134.321.3.321h.9c.166 0 .3-.144.3-.322Z"/></g><g filter="url(#svg_4674346161__svg_c6dc97ca57__d)"><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_4674346161__svg_c6dc97ca57__e)'} fillRule="evenodd" d="M7.058 9.35a.2.2 0 0 0-.182.282l2.492 5.578a.2.2 0 0 0 .19.14h.884a.2.2 0 0 0 .19-.14l2.492-5.578a.2.2 0 0 0-.182-.282h-.882a.2.2 0 0 0-.183.118L10 13.671 8.123 9.468a.2.2 0 0 0-.183-.118h-.882Z" clipRule="evenodd" shapeRendering="crispEdges"/></g><defs><filter id="svg_4674346161__svg_c6dc97ca57__b" width="3.5" height="8.4" x="5" y="9.35" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0.44497 0 0 0 0 0.48295 0 0 0 0 0.558909 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1275_29060"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1275_29060" result="shape"/></filter><filter id="svg_4674346161__svg_c6dc97ca57__c" width="3.5" height="8.4" x="11.5" y="9.35" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0.44497 0 0 0 0 0.48295 0 0 0 0 0.558909 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1275_29060"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1275_29060" result="shape"/></filter><filter id="svg_4674346161__svg_c6dc97ca57__d" width="8.284" height="8" x="5.858" y="9.35" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0.44497 0 0 0 0 0.48295 0 0 0 0 0.558909 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1275_29060"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1275_29060" result="shape"/></filter><linearGradient id="svg_4674346161__svg_c6dc97ca57__e" x1="6" x2="12" y1="9.6" y2="9.6" gradientUnits="userSpaceOnUse"><stop stopColor="#fff" stopOpacity=".5"/><stop offset="1" stopColor="#fff"/></linearGradient></defs></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-md${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#6C7587'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M12 24.686v-9.212c0-.284-.215-.514-.48-.514h-1.44c-.265 0-.48.23-.48.514v9.212c0 .284.215.514.48.514h1.44c.265 0 .48-.23.48-.514Zm10.4 0v-9.212c0-.284-.215-.514-.48-.514h-1.44c-.265 0-.48.23-.48.514v9.212c0 .284.215.514.48.514h1.44c.265 0 .48-.23.48-.514Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M11.293 14.96a.32.32 0 0 0-.292.45l3.987 8.926a.32.32 0 0 0 .306.224h1.413a.32.32 0 0 0 .305-.224l3.987-8.925a.32.32 0 0 0-.292-.451h-1.411a.32.32 0 0 0-.293.19L16 21.872l-3.003-6.724a.32.32 0 0 0-.292-.189h-1.412Z" clipRule="evenodd" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#B5BAC3'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconUploadingMd = React.forwardRef(IconUploadingMdComponent);
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconUploadingOfdComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-ofd${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#FB0'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M22.044 18.831a1.059 1.059 0 0 1 .744.299 1.038 1.038 0 0 1 .312.738 1.032 1.032 0 0 1-.654.962 1.054 1.054 0 0 1-.402.074l-3.389.001a1.053 1.053 0 0 1-.73-.307 1.033 1.033 0 0 1 0-1.46c.193-.194.456-.304.73-.307h3.39Zm.326 1.814a.882.882 0 0 1-.083.028l.005-.001.078-.027Zm.464-.454a.831.831 0 0 1-.048.094c.004-.006.01-.013.013-.02l.035-.075Zm.066-.323-.001.026v-.026Zm-.066-.322c.01.025.021.05.03.077l-.03-.077Zm-.464-.454a.863.863 0 0 1 .091.044l-.013-.009-.078-.035Z" opacity=".7"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M19.506 12.3c.275.003.538.114.732.307a1.032 1.032 0 0 1 0 1.46 1.051 1.051 0 0 1-.732.307h-.002c-.62 0-1.216.245-1.655.679a2.299 2.299 0 0 0-.684 1.633v6.029c0 .937-.305 1.85-.867 2.603a4.433 4.433 0 0 1-2.256 1.586 4.478 4.478 0 0 1-2.767-.047 4.43 4.43 0 0 1-2.2-1.665 4.354 4.354 0 0 1 .183-5.203 4.438 4.438 0 0 1 2.31-1.509 4.479 4.479 0 0 1 2.764.143 1.044 1.044 0 0 1 .671.943 1.03 1.03 0 0 1-.29.743 1.048 1.048 0 0 1-1.135.249 2.366 2.366 0 0 0-1.444-.08 2.345 2.345 0 0 0-1.215.774 2.298 2.298 0 0 0-.156 2.71c.267.41.658.728 1.118.905.46.178.966.207 1.444.083a2.344 2.344 0 0 0 1.216-.771c.312-.376.495-.838.526-1.322l.005-.142v-6.197c0-.04.003-.08.009-.12l.018-.208a4.371 4.371 0 0 1 1.376-2.707 4.46 4.46 0 0 1 3.03-1.183h.001Zm-5.008 12.217c.069-.067.136-.136.198-.21l-.134.148c-.02.021-.043.041-.064.062Zm-5.966-1.29a4.142 4.142 0 0 1-.03-.659l.001.334c.005.11.015.218.029.326Zm2.006-1.778c-.016.026-.029.054-.043.08a1.96 1.96 0 0 1 .056-.1l-.013.02Zm6.073-7.82-.144.14a4.164 4.164 0 0 0 .144-.14Z"/><path fill={useCurrentColor ? 'currentColor' : '#FFDD80'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
+ }
13
+
14
+ const IconUploadingOfd = React.forwardRef(IconUploadingOfdComponent);
15
+ export default IconUploadingOfd;
@@ -8,7 +8,7 @@ function IconUploadingPdfComponent(props: OriginIconProps, ref: ForwardedRef<SVG
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-uploading-pdf${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 24 24" {...rest} ref={ref}><g><path fill={useCurrentColor ? 'currentColor' : '#FF6C6B'} fillRule="evenodd" d="M6 1.5a3 3 0 0 0-3 3v15a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V9l-7.5-7.5H6Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="m6.36 16.904 1.306 1.797c2.741-1.94 5.275-5.83 5.275-9.725h-2.22c0 3.373-2.323 6.492-4.36 7.928Z" clipRule="evenodd" opacity=".4"/><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_b3224be663__a)'} fillRule="evenodd" d="M6.393 16.949c2.588-1.692 6.346-2.79 9.408-2.787l.779 2.245c-2.645-.238-6.452.788-8.881 2.34l-1.306-1.798Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M17.444 14.413c-2.459-.548-4.014-2.993-4.503-5.437h-2.22c.508 3.667 3.006 7.138 6.723 7.694v-2.257Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M13.5 1.5 21 9h-4.5a3 3 0 0 1-3-3V1.5Z" opacity=".4"/></g><defs><linearGradient id="svg_b3224be663__a" x1="6.215" x2="19.374" y1="17.819" y2="17.819" gradientUnits="userSpaceOnUse"><stop stopColor="#FFE4E4"/><stop offset="1" stopColor="#F1BDBC"/></linearGradient></defs></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-pdf${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#FF617E'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="m8.48 22.539 1.74 2.396c3.656-2.588 7.034-7.773 7.034-12.967h-2.96c0 4.497-3.096 8.656-5.814 10.57Z" clipRule="evenodd" opacity=".5"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M22.5 22c-2.398 0-5.033.542-7.321 1.246-2.306.71-4.115 1.537-4.873 2.02l-1.612-2.532c1.075-.684 3.167-1.606 5.603-2.355C16.75 19.624 19.698 19 22.5 19v3Z" opacity=".84"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M23.258 19.217c-3.277-.73-5.351-3.99-6.003-7.249h-2.96c.678 4.889 4.008 9.518 8.963 10.258v-3.009Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#FFB0BF'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconUploadingPdf = React.forwardRef(IconUploadingPdfComponent);
@@ -8,7 +8,7 @@ function IconUploadingPngComponent(props: OriginIconProps, ref: ForwardedRef<SVG
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-uploading-png${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 20 20" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#FFC737'} fillRule="evenodd" d="M5 1.25a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V7.5l-6.25-6.25H5Z" clipRule="evenodd"/><g opacity=".5"><mask id="svg_82d8c3d948__a" width="7" height="7" x="11" y="1" maskUnits="userSpaceOnUse" style={{maskType: 'alpha'}}><path fill={useCurrentColor ? 'currentColor' : '#97BCFF'} d="M11.25 1.25 17.5 7.5h-3.75a2.5 2.5 0 0 1-2.5-2.5V1.25Z"/></mask><g mask="url(#svg_82d8c3d948__a)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M15 1.25H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V3.75a2.5 2.5 0 0 0-2.5-2.5Z"/></g></g><g filter="url(#svg_82d8c3d948__svg_bff139fa05__b)"><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_82d8c3d948__svg_bff139fa05__c)'} fillRule="evenodd" d="M8.432 12.761 7.8 11.495a.5.5 0 0 0-.895 0l-1.69 3.382a.5.5 0 0 0 .447.724h1.352l.168-.335 1.251-2.504Zm.839 1.678.206.411h-.412l.206-.412Z" clipRule="evenodd" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_82d8c3d948__svg_bff139fa05__d)'} d="m8.213 14.876 2.692-5.382a.5.5 0 0 1 .894 0l2.69 5.382a.5.5 0 0 1-.446.724H8.66a.5.5 0 0 1-.448-.724Z" opacity=".9"/><circle cx="7.252" cy="7.2" r="1.4" fill={useCurrentColor ? 'currentColor' : '#fff'} opacity=".4"/></g><defs><linearGradient id="svg_82d8c3d948__svg_bff139fa05__c" x1="9.78" x2="4.856" y1="15.6" y2="15.6" gradientUnits="userSpaceOnUse"><stop stopColor="#fff" stopOpacity=".3"/><stop offset="1" stopColor="#fff"/></linearGradient><linearGradient id="svg_82d8c3d948__svg_bff139fa05__d" x1="11.352" x2="11.352" y1="8.6" y2="15.6" gradientUnits="userSpaceOnUse"><stop stopColor="#fff" stopOpacity=".4"/><stop offset="1" stopColor="#fff"/></linearGradient><filter id="svg_82d8c3d948__svg_bff139fa05__b" width="11.383" height="11.8" x="4.16" y="5.8" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 1 0 0 0 0 0.780392 0 0 0 0 0.215686 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1840_22939"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1840_22939" result="shape"/></filter></defs></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-png${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#7883DB'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M11.315 17.855a.5.5 0 0 1 .895 0l1.533 3.065-2.02 4.04h-3.15a.5.5 0 0 1-.448-.723l3.19-6.382Z" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="m12.925 24.236 4.79-9.582a.5.5 0 0 1 .895 0l4.79 9.582a.5.5 0 0 1-.446.724h-9.582a.5.5 0 0 1-.447-.724Z"/><circle cx="11.603" cy="11.52" r="2.24" fill={useCurrentColor ? 'currentColor' : '#fff'} opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#BBC1ED'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconUploadingPng = React.forwardRef(IconUploadingPngComponent);
@@ -8,7 +8,7 @@ function IconUploadingPptComponent(props: OriginIconProps, ref: ForwardedRef<SVG
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-uploading-ppt${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#FFA337'} stroke="#FFA337" d="M4.5 6A3.5 3.5 0 0 1 8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6Z"/><g filter="url(#svg_8fc684f11f__a)"><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_8fc684f11f__svg_8a267223a8__b)'} d="M12 25.485V20.8c0-.8.8-.8.8-.8h-2.72c-.265 0-.48.23-.48.514v4.971c0 .285.215.515.48.515h1.44c.265 0 .48-.23.48-.515Z" shapeRendering="crispEdges"/></g><g filter="url(#svg_8fc684f11f__svg_8a267223a8__c)"><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_8fc684f11f__svg_8a267223a8__d)'} fillRule="evenodd" d="M19.296 16.608H9.9a.3.3 0 0 1-.3-.3V13.9a.3.3 0 0 1 .3-.3h10.82c.875 0 1.584.71 1.584 1.584v6.24c0 .875-.71 1.584-1.584 1.584H12V20h7.296v-3.392Z" clipRule="evenodd" shapeRendering="crispEdges"/></g><g opacity=".5"><mask id="svg_8fc684f11f__a" width="10" height="10" x="18" y="2" maskUnits="userSpaceOnUse" style={{maskType: 'alpha'}}><path fill={useCurrentColor ? 'currentColor' : '#97BCFF'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></mask><g mask="url(#svg_8fc684f11f__a)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M24 2H8a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V6a4 4 0 0 0-4-4Z"/></g></g><defs><linearGradient id="svg_8fc684f11f__svg_8a267223a8__b" x1="10.8" x2="10.8" y1="20" y2="26" gradientUnits="userSpaceOnUse"><stop stopColor="#fff"/><stop offset="1" stopColor="#fff" stopOpacity=".3"/></linearGradient><linearGradient id="svg_8fc684f11f__svg_8a267223a8__d" x1="15.952" x2="15.952" y1="13.6" y2="23.008" gradientUnits="userSpaceOnUse"><stop stopColor="#fff"/><stop offset="1" stopColor="#fff" stopOpacity=".4"/></linearGradient><filter id="svg_8fc684f11f__svg_8a267223a8__a" width="5.2" height="8" x="8.6" y="20" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 1 0 0 0 0 0.545098 0 0 0 0 0.215686 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1830_145040"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1830_145040" result="shape"/></filter><filter id="svg_8fc684f11f__svg_8a267223a8__c" width="14.704" height="11.408" x="8.6" y="13.6" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 1 0 0 0 0 0.545098 0 0 0 0 0.215686 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1830_145040"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1830_145040" result="shape"/></filter></defs></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-ppt${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#FF8D47'} stroke="#FF8D47" d="M8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6A3.5 3.5 0 0 1 8 2.5Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M12 25.485V20.8c0-.8.8-.8.8-.8h-2.72c-.265 0-.48.23-.48.514v4.971c0 .285.215.515.48.515h1.44c.265 0 .48-.23.48-.515Z" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M19.296 16.608H9.9a.3.3 0 0 1-.3-.3V13.9a.3.3 0 0 1 .3-.3h10.82c.875 0 1.584.71 1.584 1.584v6.24c0 .875-.71 1.584-1.584 1.584H12V20h7.296v-3.392Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#FFC6A3'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconUploadingPpt = React.forwardRef(IconUploadingPptComponent);
@@ -8,7 +8,7 @@ function IconUploadingTxtComponent(props: OriginIconProps, ref: ForwardedRef<SVG
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-uploading-txt${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 20 21" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#ABB8D0'} fillRule="evenodd" d="M5 1.558a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5v-8.75l-6.25-6.25H5Z" clipRule="evenodd"/><g opacity=".5"><mask id="svg_eb86c923de__a" width="7" height="7" x="11" y="1" maskUnits="userSpaceOnUse" style={{maskType: 'alpha'}}><path fill={useCurrentColor ? 'currentColor' : '#97BCFF'} d="m11.25 1.558 6.25 6.25h-3.75a2.5 2.5 0 0 1-2.5-2.5v-3.75Z"/></mask><g mask="url(#svg_eb86c923de__a)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M15 1.558H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5v-12.5a2.5 2.5 0 0 0-2.5-2.5Z"/></g></g><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_eb86c923de__svg_c7824f3d4d__b)'} d="M10.94 16.143v-5.527c0-.17-.168-.308-.375-.308H9.44c-.207 0-.375.138-.375.308v5.527c0 .171.168.31.375.31h1.125c.207 0 .375-.139.375-.31Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M13.613 9.308H6.387A.381.381 0 0 0 6 9.683v1.125c0 .207.173.375.387.375h7.226a.381.381 0 0 0 .387-.375V9.683a.381.381 0 0 0-.387-.375Z" opacity=".9"/><defs><linearGradient id="svg_eb86c923de__svg_c7824f3d4d__b" x1="10" x2="10" y1="16.328" y2="9.828" gradientUnits="userSpaceOnUse"><stop stopColor="#fff"/><stop offset="1" stopColor="#fff" stopOpacity=".3"/></linearGradient></defs></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-txt${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#ABB8D0'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M17.504 24.599v-8.422c0-.26-.269-.47-.6-.47h-1.8c-.331 0-.6.21-.6.47v8.422c0 .26.269.472.6.472h1.8c.331 0 .6-.212.6-.472Z" opacity=".7"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M21.78 14.184H10.22a.638.638 0 0 0-.435.163.581.581 0 0 0-.185.408v1.714c0 .316.277.572.62.572h11.56a.636.636 0 0 0 .435-.164.581.581 0 0 0 .185-.408v-1.714a.558.558 0 0 0-.185-.408.616.616 0 0 0-.434-.163Z"/><path fill={useCurrentColor ? 'currentColor' : '#C7D1E3'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconUploadingTxt = React.forwardRef(IconUploadingTxtComponent);
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconUploadingWpsComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
6
+ const { prefix: prefixFromContext } = useContext(Context);
7
+ const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
8
+
9
+ const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
+ const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-wps${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#FF617E'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M24.503 14.48a1.001 1.001 0 0 0-.852-.48h-5.013c-.374 0-.717.211-.89.547l-1.706 2.923v4.547l1.099-2.277 2.105-4.082h2.797l-3.38 7.05-1.237-2.678-1.1 2.277 1.477 3.144a1 1 0 0 0 .89.549h.014c.38-.005.724-.227.89-.574l4.767-10.052c.152-.317.323-.595.14-.894Z" opacity=".9"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="m16.042 17.47-1.1 2.27-1.522 2.969-3.38-7.05h2.798l1.82 3.791 1.099-2.27-1.421-2.633a1.003 1.003 0 0 0-.89-.547H8.431c-.346 0-.669.182-.852.48-.184.3-.013.577.139.894l4.767 10.052c.167.347.51.569.89.574h.014a1 1 0 0 0 .89-.55l1.762-3.433V17.47Z" opacity=".9"/><path fill={useCurrentColor ? 'currentColor' : '#FFB0BF'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
+ }
13
+
14
+ const IconUploadingWps = React.forwardRef(IconUploadingWpsComponent);
15
+ export default IconUploadingWps;
@@ -8,7 +8,7 @@ function IconUploadingXlsxComponent(props: OriginIconProps, ref: ForwardedRef<SV
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-uploading-xlsx${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 20 20" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#7FC934'} stroke="#7FC934" d="M3 3.75a2 2 0 0 1 2-2h6.043L17 7.707v8.543a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3.75Z"/><g opacity=".5"><mask id="svg_3a6916ea63__a" width="7" height="7" x="11" y="1" maskUnits="userSpaceOnUse" style={{maskType: 'alpha'}}><path fill={useCurrentColor ? 'currentColor' : '#97BCFF'} d="M11.25 1.25 17.5 7.5h-3.75a2.5 2.5 0 0 1-2.5-2.5V1.25Z"/></mask><g mask="url(#svg_3a6916ea63__a)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M15 1.25H5a2.5 2.5 0 0 0-2.5 2.5v12.5a2.5 2.5 0 0 0 2.5 2.5h10a2.5 2.5 0 0 0 2.5-2.5V3.75a2.5 2.5 0 0 0-2.5-2.5Z"/></g></g><g filter="url(#svg_3a6916ea63__svg_c818196b07__b)" opacity=".9"><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M8.268 8.95H6.882a.281.281 0 0 0-.222.454l4.85 6.237a.281.281 0 0 0 .223.109h1.386c.234 0 .366-.27.222-.454l-4.85-6.237a.281.281 0 0 0-.223-.109Z" clipRule="evenodd"/></g><g filter="url(#svg_3a6916ea63__svg_c818196b07__c)"><path fill={useCurrentColor ? 'currentColor' : 'url(#svg_3a6916ea63__svg_c818196b07__d)'} fillRule="evenodd" d="M11.733 8.95h1.386c.234 0 .366.27.222.454l-4.85 6.237a.281.281 0 0 1-.223.109H6.882a.281.281 0 0 1-.222-.454l4.85-6.237a.281.281 0 0 1 .223-.109Z" clipRule="evenodd" shapeRendering="crispEdges"/></g><defs><filter id="svg_3a6916ea63__svg_c818196b07__b" width="8.801" height="8.8" x="5.6" y="8.95" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0.332711 0 0 0 0 0.62458 0 0 0 0 0.036898 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1280_29706"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1280_29706" result="shape"/></filter><filter id="svg_3a6916ea63__svg_c818196b07__c" width="8.801" height="8.8" x="5.6" y="8.95" colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse"><feFlood floodOpacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation=".5"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0.332711 0 0 0 0 0.62458 0 0 0 0 0.036898 0 0 0 0.2 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_1280_29706"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1280_29706" result="shape"/></filter><linearGradient id="svg_3a6916ea63__svg_c818196b07__d" x1="13.606" x2="6.394" y1="8.692" y2="15.905" gradientUnits="userSpaceOnUse"><stop stopColor="#fff" stopOpacity=".4"/><stop offset="1" stopColor="#fff"/></linearGradient></defs></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-uploading-xlsx${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#2CBF7D'} stroke="#2CBF7D" d="M8 2.5h9.793l9.707 9.707V26a3.5 3.5 0 0 1-3.5 3.5H8A3.5 3.5 0 0 1 4.5 26V6A3.5 3.5 0 0 1 8 2.5Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M13.23 14.32h-2.22a.45.45 0 0 0-.354.726l7.761 9.98a.45.45 0 0 0 .355.174h2.219a.45.45 0 0 0 .355-.726l-7.761-9.98a.45.45 0 0 0-.356-.174Z" clipRule="evenodd" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M18.772 14.32h2.219a.45.45 0 0 1 .355.726l-7.761 9.98a.45.45 0 0 1-.356.174h-2.218a.45.45 0 0 1-.355-.726l7.761-9.98a.45.45 0 0 1 .355-.174Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#95DFBE'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconUploadingXlsx = React.forwardRef(IconUploadingXlsxComponent);
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowCloseComponent(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-workflow_close${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 18 18" {...rest} ref={ref}><path d="M14.506 4.37a.453.453 0 0 1 0 .638L10.49 9.046l4.016 4.038a.453.453 0 0 1 0 .638l-.7.704a.447.447 0 0 1-.635 0l-4.015-4.038-4.17 4.193a.447.447 0 0 1-.634 0l-.7-.704a.453.453 0 0 1 0-.638l4.17-4.193-4.17-4.193a.453.453 0 0 1 0-.638l.7-.704a.447.447 0 0 1 .634 0l4.17 4.193 4.016-4.038a.447.447 0 0 1 .634 0l.7.703Z"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowClose = React.forwardRef(IconWorkflowCloseComponent);
15
+ export default IconWorkflowClose;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowDownwardComponent(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-workflow_downward${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 14 14" {...rest} ref={ref}><path d="M9.97 4.72a.75.75 0 1 1 1.06 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 1 1 1.06-1.06L7 7.69l2.97-2.97Z"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowDownward = React.forwardRef(IconWorkflowDownwardComponent);
15
+ export default IconWorkflowDownward;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowEditorComponent(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-workflow_editor${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="M10.842 2.38a1.267 1.267 0 0 0-1.79 0L3.264 8.167a.933.933 0 0 0-.274.66v1.813c0 .53.43.96.96.96h1.813a.933.933 0 0 0 .66-.274L12.21 5.54a1.267 1.267 0 0 0 0-1.791L10.842 2.38Zm-.942.85a.067.067 0 0 1 .094 0l1.368 1.368a.067.067 0 0 1 0 .094L5.654 10.4H4.19V8.937L9.9 3.23ZM3 13.067a.6.6 0 1 0 0 1.2h10a.6.6 0 0 0 0-1.2H3Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowEditor = React.forwardRef(IconWorkflowEditorComponent);
15
+ export default IconWorkflowEditor;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowMoreComponent(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-workflow_more${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 18 18" {...rest} ref={ref}><path fillRule="evenodd" d="M3.554 7.875a.5.5 0 0 0-.5.5v1.25a.5.5 0 0 0 .5.5h1.25a.5.5 0 0 0 .5-.5v-1.25a.5.5 0 0 0-.5-.5h-1.25Zm4.821 0a.5.5 0 0 0-.5.5v1.25a.5.5 0 0 0 .5.5h1.25a.5.5 0 0 0 .5-.5v-1.25a.5.5 0 0 0-.5-.5h-1.25Zm4.821 0a.5.5 0 0 0-.5.5v1.25a.5.5 0 0 0 .5.5h1.25a.5.5 0 0 0 .5-.5v-1.25a.5.5 0 0 0-.5-.5h-1.25Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowMore = React.forwardRef(IconWorkflowMoreComponent);
15
+ export default IconWorkflowMore;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowNodeInputComponent(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-workflow_node_input${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 d="M11.47 9.234c.382 0 .693.31.694.694v1.62h1.62a.695.695 0 0 1 0 1.387h-1.62v1.62a.695.695 0 0 1-1.388 0v-1.62h-1.62a.694.694 0 1 1 0-1.387h1.62v-1.62c0-.383.31-.693.693-.694ZM12.24.75a2.237 2.237 0 0 1 .687 4.364v.816a2.546 2.546 0 0 1-2.546 2.545h-4.59c-.64 0-1.158.518-1.158 1.157v.55a2.239 2.239 0 0 1-.877 4.296 2.237 2.237 0 0 1-.693-4.363V5.112a2.237 2.237 0 1 1 1.388 0v2.359a2.53 2.53 0 0 1 1.34-.384h4.59c.64 0 1.158-.518 1.158-1.157v-.82A2.237 2.237 0 0 1 12.24.75ZM3.757 11.394a.848.848 0 1 0 .002 1.696.848.848 0 0 0-.002-1.696Zm0-9.255a.848.848 0 1 0 0 1.695.848.848 0 0 0 0-1.695Zm8.485 0a.848.848 0 1 0 0 1.696.848.848 0 0 0 0-1.696Z"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowNodeInput = React.forwardRef(IconWorkflowNodeInputComponent);
15
+ export default IconWorkflowNodeInput;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconWorkflowUpwardsComponent(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-workflow_upwards${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 14 14" {...rest} ref={ref}><path d="M4.03 9.28a.75.75 0 1 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 1 1-1.06 1.06L7 6.31 4.03 9.28Z"/></svg>;
12
+ }
13
+
14
+ const IconWorkflowUpwards = React.forwardRef(IconWorkflowUpwardsComponent);
15
+ export default IconWorkflowUpwards;
@@ -8,7 +8,7 @@ function IconZipComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElemen
8
8
 
9
9
  const prefix = prefixFromProps || prefixFromContext || 'hiagent';
10
10
  const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
11
- return <svg className={`${prefix}-icon ${prefix}-icon-zip${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'currentColor'} viewBox="0 0 20 20" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#38C3FF'} fillRule="evenodd" d="M5 1.25C3.61929 1.25 2.5 2.36929 2.5 3.75V16.25C2.5 17.6307 3.61929 18.75 5 18.75H15C16.3807 18.75 17.5 17.6307 17.5 16.25V7.5L11.25 1.25H5Z" clipRule="evenodd"/><g opacity=".5"><mask id="svg_adcdbd79a8__a" width="7" height="7" x="11" y="1" maskUnits="userSpaceOnUse" style={{maskType: 'alpha'}}><path fill={useCurrentColor ? 'currentColor' : '#97BCFF'} d="M11.25 1.25L17.5 7.5H13.75C12.3693 7.5 11.25 6.38071 11.25 5V1.25Z"/></mask><g mask="url(#svg_adcdbd79a8__a)"><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M15 1.25H5C3.61929 1.25 2.5 2.36929 2.5 3.75V16.25C2.5 17.6307 3.61929 18.75 5 18.75H15C16.3807 18.75 17.5 17.6307 17.5 16.25V3.75C17.5 2.36929 16.3807 1.25 15 1.25Z"/></g></g><rect width="2" height="2" x="5" y="3" fill={useCurrentColor ? 'currentColor' : '#fff'} opacity=".9" rx=".4"/><rect width="2" height="2" x="7" y="5" fill={useCurrentColor ? 'currentColor' : '#fff'} opacity=".9" rx=".4"/><rect width="2" height="2" x="5" y="7" fill={useCurrentColor ? 'currentColor' : '#fff'} opacity=".9" rx=".4"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M5 11.4C5 11.1791 5.17909 11 5.4 11H6.6C6.82091 11 7 11.1791 7 11.4V12.5H8.6C8.82091 12.5 9 12.6791 9 12.9V13V13.1V15.4V15.6V16.1C9 16.3209 8.82091 16.5 8.6 16.5H5.4C5.17909 16.5 5 16.3209 5 16.1V15.6V15.4V13.1V12.9V12.6V12V11.4ZM6 13.5V15H8V13.5H6Z" clipRule="evenodd" opacity=".9"/><rect width="2" height="2" x="7" y="9" fill={useCurrentColor ? 'currentColor' : '#fff'} opacity=".9" rx=".4"/></svg>;
11
+ return <svg className={`${prefix}-icon ${prefix}-icon-zip${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 32 32" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#00B7FF'} fillRule="evenodd" d="M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M10.56 4.8H8.64a.64.64 0 0 0-.64.64v1.92c0 .354.287.64.64.64h1.92a.64.64 0 0 0 .64-.64V5.44a.64.64 0 0 0-.64-.64Zm3.2 3.2h-1.92a.64.64 0 0 0-.64.64v1.92c0 .354.287.64.64.64h1.92a.64.64 0 0 0 .64-.64V8.64a.64.64 0 0 0-.64-.64Zm-3.2 3.2H8.64a.64.64 0 0 0-.64.64v1.92c0 .353.287.64.64.64h1.92a.64.64 0 0 0 .64-.64v-1.92a.64.64 0 0 0-.64-.64Z" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M8 18.24a.64.64 0 0 1 .64-.64h1.92a.64.64 0 0 1 .64.64V20h2.56a.64.64 0 0 1 .64.64v5.12a.64.64 0 0 1-.64.64H8.64a.64.64 0 0 1-.64-.64v-7.52Zm1.6 3.36V24h3.2v-2.4H9.6Z" clipRule="evenodd"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} d="M13.76 14.4h-1.92a.64.64 0 0 0-.64.64v1.92c0 .353.287.64.64.64h1.92a.64.64 0 0 0 .64-.64v-1.92a.64.64 0 0 0-.64-.64Z" opacity=".8"/><path fill={useCurrentColor ? 'currentColor' : '#80DBFF'} d="m18 2 10 10h-6a4 4 0 0 1-4-4V2Z"/></svg>;
12
12
  }
13
13
 
14
14
  const IconZip = React.forwardRef(IconZipComponent);
package/src/index.ts CHANGED
@@ -6,7 +6,6 @@ export { default as IconAddAssessment } from './IconAddAssessment';
6
6
  export { default as IconSearchWithoutData } from './IconSearchWithoutData';
7
7
  export { default as IconKnowledgeNodata } from './IconKnowledgeNodata';
8
8
  export { default as IconWorkflowCondition } from './IconWorkflowCondition';
9
- export { default as IconUploadingTxt } from './IconUploadingTxt';
10
9
  export { default as IconWorkflowCode } from './IconWorkflowCode';
11
10
  export { default as IconSelected } from './IconSelected';
12
11
  export { default as IconLLM } from './IconLLM';
@@ -21,18 +20,12 @@ export { default as IconAppTools } from './IconAppTools';
21
20
  export { default as IconAppKnowledge } from './IconAppKnowledge';
22
21
  export { default as IconModelHighlight } from './IconModelHighlight';
23
22
  export { default as IconAppSecurityDialogue } from './IconAppSecurityDialogue';
24
- export { default as IconUploadingXlsx } from './IconUploadingXlsx';
25
23
  export { default as IconCheckCircleFill } from './IconCheckCircleFill';
26
- export { default as IconUploadingCsv } from './IconUploadingCsv';
27
24
  export { default as IconRunningInProgress } from './IconRunningInProgress';
28
- export { default as IconUploadingMd } from './IconUploadingMd';
29
25
  export { default as IconWorkflowWorkflow } from './IconWorkflowWorkflow';
30
- export { default as IconUploadingPng } from './IconUploadingPng';
31
- export { default as IconUploadingHtml } from './IconUploadingHtml';
32
26
  export { default as IconNewsExtraction } from './IconNewsExtraction';
33
27
  export { default as IconHomebotC } from './IconHomebotC';
34
28
  export { default as IconNewAgent } from './IconNewAgent';
35
- export { default as IconUploadingPpt } from './IconUploadingPpt';
36
29
  export { default as IconGPT4 } from './IconGPT4';
37
30
  export { default as IconEcho } from './IconEcho';
38
31
  export { default as IconLoopNode } from './IconLoopNode';
@@ -41,10 +34,8 @@ export { default as IconQwen } from './IconQwen';
41
34
  export { default as IconClockCircleGreyFill } from './IconClockCircleGreyFill';
42
35
  export { default as IconFileCloudStorage } from './IconFileCloudStorage';
43
36
  export { default as IconInfoColor } from './IconInfoColor';
44
- export { default as IconUnknownFile } from './IconUnknownFile';
45
37
  export { default as IconGPT35 } from './IconGPT35';
46
38
  export { default as IconFeishu } from './IconFeishu';
47
- export { default as IconDataExternal } from './IconDataExternal';
48
39
  export { default as IconMoonshot } from './IconMoonshot';
49
40
  export { default as IconAdvancedReview } from './IconAdvancedReview';
50
41
  export { default as IconUserinput } from './IconUserinput';
@@ -146,7 +137,6 @@ export { default as IconExpire } from './IconExpire';
146
137
  export { default as IconLLMopsLogo } from './IconLLMopsLogo';
147
138
  export { default as IconLLMopsLogoHeader } from './IconLLMopsLogoHeader';
148
139
  export { default as IconKnowledgeGraph } from './IconKnowledgeGraph';
149
- export { default as IconAudio } from './IconAudio';
150
140
  export { default as IconTerminologyBank } from './IconTerminologyBank';
151
141
  export { default as IconFlipFlop } from './IconFlipFlop';
152
142
  export { default as IconCycleVertices } from './IconCycleVertices';
@@ -158,7 +148,6 @@ export { default as IconCyan } from './IconCyan';
158
148
  export { default as IconPurple } from './IconPurple';
159
149
  export { default as IconFrozen } from './IconFrozen';
160
150
  export { default as IconIIntentionRecognition } from './IconIIntentionRecognition';
161
- export { default as IconUploadingPdf } from './IconUploadingPdf';
162
151
  export { default as IconTimer } from './IconTimer';
163
152
  export { default as IconWfTerminologyBank } from './IconWfTerminologyBank';
164
153
  export { default as IconMessageNodes } from './IconMessageNodes';
@@ -280,7 +269,6 @@ export { default as IconMenuPrompt } from './IconMenuPrompt';
280
269
  export { default as IconMenuKnowledge } from './IconMenuKnowledge';
281
270
  export { default as IconMenuWorkflow } from './IconMenuWorkflow';
282
271
  export { default as IconMenuAgent } from './IconMenuAgent';
283
- export { default as IconZip } from './IconZip';
284
272
  export { default as IconVoiceai } from './IconVoiceai';
285
273
  export { default as IconShortcutInstructions } from './IconShortcutInstructions';
286
274
  export { default as IconDataTableBlock } from './IconDataTableBlock';
@@ -1315,7 +1303,6 @@ export { default as IconRouge2 } from './IconRouge2';
1315
1303
  export { default as IconRougeL } from './IconRougeL';
1316
1304
  export { default as IconRouge1 } from './IconRouge1';
1317
1305
  export { default as IconAddGroup } from './IconAddGroup';
1318
- export { default as IconUploadingDoc } from './IconUploadingDoc';
1319
1306
  export { default as IconUncollect2 } from './IconUncollect2';
1320
1307
  export { default as IconCollect2 } from './IconCollect2';
1321
1308
  export { default as IconCopyLine } from './IconCopyLine';
@@ -1489,7 +1476,6 @@ export { default as IconDataEnhance } from './IconDataEnhance';
1489
1476
  export { default as IconDataMapping } from './IconDataMapping';
1490
1477
  export { default as IconPositioningChart } from './IconPositioningChart';
1491
1478
  export { default as IconImageUnderstanding1 } from './IconImageUnderstanding1';
1492
- export { default as IconOfd } from './IconOfd';
1493
1479
  export { default as IconAgentSend } from './IconAgentSend';
1494
1480
  export { default as IconMCPAgentPublish } from './IconMCPAgentPublish';
1495
1481
  export { default as IconWebsdk } from './IconWebsdk';
@@ -1543,5 +1529,28 @@ export { default as IconTreeAbnormal } from './IconTreeAbnormal';
1543
1529
  export { default as IconPluginListedAdd } from './IconPluginListedAdd';
1544
1530
  export { default as IconPluginChoose } from './IconPluginChoose';
1545
1531
  export { default as IconPluginListed } from './IconPluginListed';
1532
+ export { default as IconWorkflowDownward } from './IconWorkflowDownward';
1533
+ export { default as IconWorkflowUpwards } from './IconWorkflowUpwards';
1534
+ export { default as IconWorkflowNodeInput } from './IconWorkflowNodeInput';
1535
+ export { default as IconWorkflowMore } from './IconWorkflowMore';
1536
+ export { default as IconWorkflowClose } from './IconWorkflowClose';
1537
+ export { default as IconWorkflowEditor } from './IconWorkflowEditor';
1538
+ export { default as IconUploadingHtml } from './IconUploadingHtml';
1539
+ export { default as IconUploadingCsv } from './IconUploadingCsv';
1540
+ export { default as IconUploadingLarksheet } from './IconUploadingLarksheet';
1541
+ export { default as IconUploadingJson } from './IconUploadingJson';
1542
+ export { default as IconUploadingOfd } from './IconUploadingOfd';
1543
+ export { default as IconUploadingXlsx } from './IconUploadingXlsx';
1544
+ export { default as IconUploadingMd } from './IconUploadingMd';
1545
+ export { default as IconUploadingDoc } from './IconUploadingDoc';
1546
+ export { default as IconUploadingPpt } from './IconUploadingPpt';
1547
+ export { default as IconUploadingPdf } from './IconUploadingPdf';
1548
+ export { default as IconUploadingPng } from './IconUploadingPng';
1549
+ export { default as IconAudio } from './IconAudio';
1550
+ export { default as IconUnknownFile } from './IconUnknownFile';
1551
+ export { default as IconUploadingTxt } from './IconUploadingTxt';
1552
+ export { default as IconZip } from './IconZip';
1553
+ export { default as IconDataExternal } from './IconDataExternal';
1554
+ export { default as IconUploadingWps } from './IconUploadingWps';
1546
1555
 
1547
1556
  export * from './type';
@@ -61,36 +61,11 @@ var __rest = (this && this.__rest) || function (s, e) {
61
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 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
62
62
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
63
63
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
64
- return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-audio").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 30 30" }, rest, { ref: ref }),
65
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#FF7A5D', fillRule: "evenodd", d: "M7.5 1.875C5.42893 1.875 3.75 3.55393 3.75 5.625V24.375C3.75 26.4461 5.42893 28.125 7.5 28.125H22.5C24.5711 28.125 26.25 26.4461 26.25 24.375V11.25L16.875 1.875H7.5Z", clipRule: "evenodd" }),
66
- react_1.default.createElement("g", { filter: "url(#svg_a5ca0b5894__svg_b475ba4576__filter0_d_14600_129581)", opacity: ".9" },
67
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M21.2707 13.4555L15.66 13.7158C14.9819 13.7338 14.296 14.274 14.1214 14.9255L12.6239 20.5144L12.6031 20.5918C12.6031 20.5918 12.2932 20.2256 11.4291 20.1276C10.155 19.9778 8.89982 20.6899 8.62528 21.7145C8.35086 22.7387 9.17564 23.6329 10.4496 23.7833C11.7235 23.9337 12.8782 23.2279 13.1529 22.2027L14.4504 17.3606C14.5711 16.9101 15.1427 16.8554 15.1427 16.8554L20.1149 16.5904C20.1149 16.5904 20.6749 16.5489 20.5439 17.0376L19.504 20.9188C19.504 20.9188 19.1104 20.5225 18.246 20.3989C16.9783 20.2256 15.7277 20.9144 15.4533 21.9385C15.1786 22.9637 15.9985 23.8822 17.2664 24.055C18.5335 24.2292 19.783 23.54 20.0577 22.5149L22.1771 14.6051C22.3518 13.953 21.9489 13.4376 21.2707 13.4555Z" })),
68
- react_1.default.createElement("g", { filter: "url(#svg_a5ca0b5894__svg_b475ba4576__filter1_d_14600_129581)", opacity: ".5" },
69
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M11.1202 13.2743C11.3048 13.597 11.4112 13.9779 11.4112 14.3866C11.4112 15.5569 10.5385 16.5 9.45559 16.5C8.37265 16.5 7.5 15.5569 7.5 14.3866C7.5 13.2162 8.37265 12.2731 9.45559 12.2731C9.46213 12.2731 9.46866 12.2732 9.47518 12.2732L7.85747 7.88716C7.71028 7.48947 7.88901 7.03496 8.257 6.87589C8.26622 6.87091 8.27544 6.86811 8.28377 6.86558C8.29445 6.86234 8.30367 6.85954 8.30957 6.85316L10.8014 6.03506C11.1273 5.92143 11.4848 6.09187 11.632 6.43275L11.9369 7.14859C12.0946 7.52355 11.9474 7.9667 11.6004 8.13713C11.5899 8.14282 11.5768 8.1485 11.5636 8.15418C11.5505 8.15986 11.5373 8.16554 11.5268 8.17122L9.82357 8.7848C9.66586 8.84161 9.59227 9.01205 9.63432 9.18249C9.63432 9.19385 9.63432 9.19385 9.64484 9.20522L11.1202 13.2743Z", clipRule: "evenodd" })),
70
- react_1.default.createElement("g", { opacity: ".5" },
71
- react_1.default.createElement("mask", { id: "svg_a5ca0b5894__a", width: "11", height: "11", x: "16", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
72
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "M16.875 1.875L26.25 11.25H20.625C18.5539 11.25 16.875 9.57107 16.875 7.5V1.875Z" })),
73
- react_1.default.createElement("g", { mask: "url(#svg_a5ca0b5894__a)" },
74
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M22.5 1.875H7.5C5.42893 1.875 3.75 3.55393 3.75 5.625V24.375C3.75 26.4461 5.42893 28.125 7.5 28.125H22.5C24.5711 28.125 26.25 26.4461 26.25 24.375V5.625C26.25 3.55393 24.5711 1.875 22.5 1.875Z" }))),
75
- react_1.default.createElement("defs", null,
76
- react_1.default.createElement("filter", { id: "svg_a5ca0b5894__svg_b475ba4576__filter0_d_14600_129581", width: "15.645", height: "12.627", x: "7.573", y: "13.455", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
77
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
78
- react_1.default.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
79
- react_1.default.createElement("feOffset", { dy: "1" }),
80
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
81
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
82
- react_1.default.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 0.309405 0 0 0 0 0.158825 0 0 0 0.2 0" }),
83
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_14600_129581" }),
84
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_14600_129581", result: "shape" })),
85
- react_1.default.createElement("filter", { id: "svg_a5ca0b5894__svg_b475ba4576__filter1_d_14600_129581", width: "6.5", height: "12.5", x: "6.5", y: "6", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
86
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
87
- react_1.default.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
88
- react_1.default.createElement("feOffset", { dy: "1" }),
89
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
90
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
91
- react_1.default.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 0.309804 0 0 0 0 0.160784 0 0 0 0.1 0" }),
92
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_14600_129581" }),
93
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_14600_129581", result: "shape" }))));
64
+ return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-audio").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#B36DF2', fillRule: "evenodd", d: "M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z", clipRule: "evenodd" }),
66
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "m22.689 14.352-5.985.278c-.723.02-1.455.596-1.641 1.29l-1.598 5.962-.022.083s-.33-.391-1.252-.496c-1.359-.16-2.698.6-2.99 1.693-.293 1.093.586 2.046 1.945 2.207 1.359.16 2.59-.593 2.884-1.686l1.384-5.165c.129-.48.738-.539.738-.539l5.304-.283s.597-.044.457.477l-1.109 4.14s-.42-.422-1.342-.554c-1.352-.185-2.686.55-2.979 1.642-.293 1.094.582 2.073 1.934 2.258 1.352.186 2.685-.55 2.978-1.643l2.26-8.437c.187-.696-.243-1.246-.966-1.227Z" }),
67
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M11.861 14.16c.197.343.31.75.31 1.186 0 1.248-.93 2.254-2.085 2.254C8.931 17.6 8 16.594 8 15.346c0-1.249.93-2.255 2.086-2.255h.02L8.382 8.413c-.157-.424.034-.91.426-1.079a.148.148 0 0 1 .029-.01c.011-.004.021-.007.028-.014l2.657-.873c.348-.12.73.06.886.425l.326.763c.168.4.01.873-.36 1.055a.512.512 0 0 1-.038.018.528.528 0 0 0-.04.018l-1.816.654c-.169.061-.247.243-.202.425 0 .012 0 .012.01.024l1.574 4.34Z", clipRule: "evenodd", opacity: ".8" }),
68
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#D9B6F9', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
94
69
  }
95
70
  var IconAudio = react_1.default.forwardRef(IconAudioComponent);
96
71
  exports.default = IconAudio;
@@ -61,28 +61,11 @@ var __rest = (this && this.__rest) || function (s, e) {
61
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 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
62
62
  var prefix = prefixFromProps || prefixFromContext || 'hiagent';
63
63
  var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
64
- return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data-external").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 20" }, rest, { ref: ref }),
65
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#38C3FF', fillRule: "evenodd", d: "M5 1.25C3.61929 1.25 2.5 2.36929 2.5 3.75V16.25C2.5 17.6307 3.61929 18.75 5 18.75H15C16.3807 18.75 17.5 17.6307 17.5 16.25V7.5L11.25 1.25H5Z", clipRule: "evenodd" }),
66
- react_1.default.createElement("g", { filter: "url(#svg_e409ea93e0__svg_036e6b21cf__filter0_d_20339_979871)" },
67
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : 'url(#svg_e409ea93e0__svg_036e6b21cf__paint0_linear_20339_979871)', fillRule: "evenodd", d: "M9.99459 12.1519C12.2987 12.1519 14.1692 11.5694 14.1692 10.8467V9.80513C14.1692 9.08245 12.2988 8.5 9.99459 8.5C7.69051 8.5 5.81995 9.08235 5.81995 9.80513V10.8466C5.81995 11.5652 7.68615 12.1519 9.99459 12.1519ZM9.99459 14.3259C12.2987 14.3259 14.1692 13.7436 14.1692 13.0208V11.4564C14.1692 12.1791 12.2988 12.7615 9.99459 12.7615C7.69051 12.7615 5.81995 12.1792 5.81995 11.4564V13.0208C5.81995 13.7393 7.68615 14.3259 9.99459 14.3259ZM5.8242 13.6305C5.8242 14.3532 7.6905 14.9356 9.99458 14.9356C12.2987 14.9356 14.1691 14.3532 14.1735 13.6306V15.1949C14.1735 15.9176 12.3029 16.5 9.99884 16.5C7.6904 16.5 5.8242 15.9133 5.8242 15.1949V13.6305Z", clipRule: "evenodd", shapeRendering: "crispEdges" })),
68
- react_1.default.createElement("g", { opacity: ".5" },
69
- react_1.default.createElement("mask", { id: "svg_e409ea93e0__a", width: "7", height: "7", x: "11", y: "1", maskUnits: "userSpaceOnUse", style: { maskType: 'alpha' } },
70
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#97BCFF', d: "M11.25 1.25L17.5 7.5H13.75C12.3693 7.5 11.25 6.38071 11.25 5V1.25Z" })),
71
- react_1.default.createElement("g", { mask: "url(#svg_e409ea93e0__a)" },
72
- react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M15 1.25H5C3.61929 1.25 2.5 2.36929 2.5 3.75V16.25C2.5 17.6307 3.61929 18.75 5 18.75H15C16.3807 18.75 17.5 17.6307 17.5 16.25V3.75C17.5 2.36929 16.3807 1.25 15 1.25Z" }))),
73
- react_1.default.createElement("defs", null,
74
- react_1.default.createElement("linearGradient", { id: "svg_e409ea93e0__svg_036e6b21cf__paint0_linear_20339_979871", x1: "9.997", x2: "9.997", y1: "8.5", y2: "16.5", gradientUnits: "userSpaceOnUse" },
75
- react_1.default.createElement("stop", { stopColor: "#fff" }),
76
- react_1.default.createElement("stop", { offset: "1", stopColor: "#fff", stopOpacity: ".5" })),
77
- react_1.default.createElement("filter", { id: "svg_e409ea93e0__svg_036e6b21cf__filter0_d_20339_979871", width: "10.354", height: "10", x: "4.82", y: "8.5", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
78
- react_1.default.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
79
- react_1.default.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
80
- react_1.default.createElement("feOffset", { dy: "1" }),
81
- react_1.default.createElement("feGaussianBlur", { stdDeviation: ".5" }),
82
- react_1.default.createElement("feComposite", { in2: "hardAlpha", operator: "out" }),
83
- react_1.default.createElement("feColorMatrix", { values: "0 0 0 0 0.102485 0 0 0 0 0.694811 0 0 0 0 0.950491 0 0 0 0.2 0" }),
84
- react_1.default.createElement("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_20339_979871" }),
85
- react_1.default.createElement("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_20339_979871", result: "shape" }))));
64
+ return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data-external").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 32 32" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#38C3FF', fillRule: "evenodd", d: "M8 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4V12L18 2H8Z", clipRule: "evenodd" }),
66
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M15.991 22.922c3.687 0 6.68-.932 6.68-2.089V18.33c0 1.157-2.993 2.089-6.68 2.089-3.686 0-6.68-.932-6.68-2.089v2.503c0 1.15 2.987 2.089 6.68 2.089ZM9.32 21.809c0 1.156 2.986 2.088 6.672 2.088 3.687 0 6.68-.932 6.687-2.088v2.503c0 1.156-2.993 2.088-6.68 2.088-3.693 0-6.68-.939-6.68-2.088v-2.503Z", clipRule: "evenodd", opacity: ".8" }),
67
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M15.991 19.443c3.687 0 6.68-.932 6.68-2.088v-1.667c0-1.156-2.993-2.088-6.68-2.088-3.686 0-6.68.932-6.68 2.088v1.667c0 1.15 2.987 2.088 6.68 2.088Z", clipRule: "evenodd" }),
68
+ react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#80DBFF', d: "m18 2 10 10h-6a4 4 0 0 1-4-4V2Z" }));
86
69
  }
87
70
  var IconDataExternal = react_1.default.forwardRef(IconDataExternalComponent);
88
71
  exports.default = IconDataExternal;