@carbon/ibm-products 2.89.0 → 2.90.0

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 (919) hide show
  1. package/css/carbon.css +374 -417
  2. package/css/carbon.css.map +1 -1
  3. package/css/index-full-carbon.css +496 -430
  4. package/css/index-full-carbon.css.map +1 -1
  5. package/css/index-full-carbon.min.css +1 -1
  6. package/css/index-full-carbon.min.css.map +1 -1
  7. package/css/index-without-carbon-released-only.css +117 -13
  8. package/css/index-without-carbon-released-only.css.map +1 -1
  9. package/css/index-without-carbon-released-only.min.css +1 -1
  10. package/css/index-without-carbon-released-only.min.css.map +1 -1
  11. package/css/index-without-carbon.css +143 -13
  12. package/css/index-without-carbon.css.map +1 -1
  13. package/css/index-without-carbon.min.css +1 -1
  14. package/css/index-without-carbon.min.css.map +1 -1
  15. package/css/index.css +359 -283
  16. package/css/index.css.map +1 -1
  17. package/css/index.min.css +1 -1
  18. package/css/index.min.css.map +1 -1
  19. package/es/_virtual/_rolldown/runtime.js +13 -22
  20. package/es/components/APIKeyModal/APIKeyDownloader.js +19 -3
  21. package/es/components/APIKeyModal/APIKeyModal.js +161 -3
  22. package/es/components/AboutModal/AboutModal.js +44 -3
  23. package/es/components/ActionBar/ActionBar.js +41 -3
  24. package/es/components/ActionBar/ActionBarItem.js +30 -3
  25. package/es/components/ActionBar/ActionBarOverflowItems.js +20 -3
  26. package/es/components/ActionSet/ActionSet.js +35 -3
  27. package/es/components/AddSelect/AddSelect.js +7 -3
  28. package/es/components/AddSelect/AddSelectBody.js +3 -3
  29. package/es/components/AddSelect/AddSelectBreadcrumbs.js +1 -3
  30. package/es/components/AddSelect/AddSelectColumn.js +2 -4
  31. package/es/components/AddSelect/AddSelectFilter.js +1 -3
  32. package/es/components/AddSelect/AddSelectFormControl.js +1 -3
  33. package/es/components/AddSelect/AddSelectList.js +1 -3
  34. package/es/components/AddSelect/AddSelectMetaPanel.js +1 -3
  35. package/es/components/AddSelect/AddSelectRow.js +1 -3
  36. package/es/components/AddSelect/AddSelectSidebar.js +1 -3
  37. package/es/components/AddSelect/AddSelectSort.js +1 -3
  38. package/es/components/AddSelect/add-select-utils.js +1 -2
  39. package/es/components/AddSelect/hooks/useFocus.js +1 -3
  40. package/es/components/AddSelect/hooks/useItemSort.js +1 -3
  41. package/es/components/AddSelect/hooks/useParentSelect.js +1 -3
  42. package/es/components/AddSelect/hooks/usePath.js +1 -3
  43. package/es/components/BigNumber/BigNumber.js +52 -6
  44. package/es/components/BigNumber/BigNumberSkeleton.js +12 -9
  45. package/es/components/BigNumber/constants.js +1 -19
  46. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +37 -3
  47. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +28 -4
  48. package/es/components/Card/Card.js +20 -3
  49. package/es/components/Card/CardFooter.js +1 -3
  50. package/es/components/Card/CardHeader.js +12 -3
  51. package/es/components/Carousel/Carousel.js +33 -3
  52. package/es/components/Carousel/CarouselItem.js +7 -3
  53. package/es/components/Cascade/Cascade.js +12 -3
  54. package/es/components/Checklist/Checklist.js +65 -11
  55. package/es/components/Checklist/ChecklistChart.js +13 -7
  56. package/es/components/Checklist/ChecklistIcon.js +17 -11
  57. package/es/components/Coachmark/Coachmark.js +60 -6
  58. package/es/components/Coachmark/CoachmarkDragbar.js +17 -3
  59. package/es/components/Coachmark/CoachmarkHeader.js +13 -3
  60. package/es/components/Coachmark/CoachmarkOverlay.js +24 -6
  61. package/es/components/Coachmark/CoachmarkTagline.js +13 -3
  62. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  63. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  64. package/es/components/Coachmark/next/Coachmark/Coachmark.js +56 -9
  65. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  66. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.js +8 -3
  67. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +18 -3
  68. package/es/components/Coachmark/next/Coachmark/ContentBody.js +8 -3
  69. package/es/components/Coachmark/next/Coachmark/ContentHeader.js +13 -3
  70. package/es/components/Coachmark/next/Coachmark/context.js +1 -3
  71. package/es/components/Coachmark/utils/constants.js +15 -23
  72. package/es/components/Coachmark/utils/context.js +1 -3
  73. package/es/components/Coachmark/utils/enums.js +1 -2
  74. package/es/components/Coachmark/utils/hooks.js +3 -5
  75. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  76. package/es/components/CoachmarkButton/CoachmarkButton.js +7 -3
  77. package/es/components/CoachmarkFixed/CoachmarkFixed.js +31 -5
  78. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +14 -3
  79. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +33 -3
  80. package/es/components/CoachmarkStack/CoachmarkStack.js +43 -5
  81. package/es/components/CoachmarkStack/CoachmarkStackHome.js +41 -3
  82. package/es/components/ComboButton/ComboButton.js +5 -3
  83. package/es/components/ComboButton/ComboButtonItem/index.js +5 -3
  84. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +48 -5
  85. package/es/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  86. package/es/components/ConditionBuilder/ConditionBuilder.js +65 -4
  87. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  88. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  89. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  90. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +15 -5
  91. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +29 -3
  92. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +39 -3
  93. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +12 -5
  94. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +1 -3
  95. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  96. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +37 -15
  97. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  98. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +35 -3
  99. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -2
  100. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +37 -3
  101. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +10 -3
  102. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +10 -3
  103. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +10 -3
  104. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +10 -3
  105. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +13 -3
  106. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +10 -3
  107. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  108. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +29 -7
  109. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +10 -3
  110. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  111. package/es/components/ConditionBuilder/utils/useDataConfigs.js +1 -3
  112. package/es/components/ConditionBuilder/utils/useEvent.js +1 -3
  113. package/es/components/ConditionBuilder/utils/useTranslations.js +1 -3
  114. package/es/components/ConditionBuilder/utils/util.js +1 -3
  115. package/es/components/CreateFullPage/CreateFullPage.js +79 -3
  116. package/es/components/CreateFullPage/CreateFullPageStep.js +51 -3
  117. package/es/components/CreateInfluencer/CreateInfluencer.js +16 -3
  118. package/es/components/CreateModal/CreateModal.js +43 -3
  119. package/es/components/CreateSidePanel/CreateSidePanel.js +59 -3
  120. package/es/components/CreateTearsheet/CreateTearsheet.js +82 -4
  121. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +6 -4
  122. package/es/components/CreateTearsheet/CreateTearsheetStep.js +72 -3
  123. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +56 -3
  124. package/es/components/DataSpreadsheet/DataSpreadsheet.js +61 -3
  125. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +115 -3
  126. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +76 -3
  127. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +1 -3
  128. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +1 -3
  129. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +1 -3
  130. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +1 -3
  131. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +1 -3
  132. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +1 -3
  133. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +1 -3
  134. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +1 -3
  135. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -2
  136. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +1 -3
  137. package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
  138. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +1 -3
  139. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +1 -3
  140. package/es/components/DataSpreadsheet/utils/getCellSize.js +1 -3
  141. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -2
  142. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +1 -3
  143. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +1 -3
  144. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +1 -3
  145. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +1 -3
  146. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
  147. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
  148. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -3
  149. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +1 -3
  150. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +1 -3
  151. package/es/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
  152. package/es/components/Datagrid/Datagrid/Datagrid.js +9 -3
  153. package/es/components/Datagrid/Datagrid/DatagridBody.js +1 -3
  154. package/es/components/Datagrid/Datagrid/DatagridContent.js +3 -5
  155. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +1 -3
  156. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +1 -3
  157. package/es/components/Datagrid/Datagrid/DatagridHead.js +1 -3
  158. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +3 -5
  159. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +1 -3
  160. package/es/components/Datagrid/Datagrid/DatagridRow.js +3 -5
  161. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +1 -3
  162. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +1 -3
  163. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -3
  164. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +1 -3
  165. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -3
  166. package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -3
  167. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
  168. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +1 -3
  169. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +1 -3
  170. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +1 -3
  171. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -3
  172. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +1 -3
  173. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +1 -3
  174. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -2
  175. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +43 -3
  176. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +19 -14
  177. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +8 -10
  178. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +1 -3
  179. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -2
  180. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -2
  181. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -3
  182. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +9 -11
  183. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +1 -3
  184. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -3
  185. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  186. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +1 -3
  187. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +1 -3
  188. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +1 -3
  189. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -2
  190. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +1 -3
  191. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -2
  192. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +1 -3
  193. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +1 -3
  194. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +1 -3
  195. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -3
  196. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +1 -3
  197. package/es/components/Datagrid/common-column-ids.js +1 -2
  198. package/es/components/Datagrid/useActionsColumn.js +1 -3
  199. package/es/components/Datagrid/useColumnCenterAlign.js +1 -3
  200. package/es/components/Datagrid/useColumnOrder.js +1 -3
  201. package/es/components/Datagrid/useColumnRightAlign.js +1 -3
  202. package/es/components/Datagrid/useCustomizeColumns.js +1 -3
  203. package/es/components/Datagrid/useDatagrid.js +1 -3
  204. package/es/components/Datagrid/useDefaultStringRenderer.js +1 -3
  205. package/es/components/Datagrid/useDisableSelectRows.js +1 -2
  206. package/es/components/Datagrid/useEditableCell.js +1 -3
  207. package/es/components/Datagrid/useExpandedRow.js +1 -3
  208. package/es/components/Datagrid/useFiltering.js +1 -3
  209. package/es/components/Datagrid/useFlexResize.js +1 -3
  210. package/es/components/Datagrid/useFloatingScroll.js +1 -3
  211. package/es/components/Datagrid/useFocusRowExpander.js +1 -3
  212. package/es/components/Datagrid/useInfiniteScroll.js +1 -3
  213. package/es/components/Datagrid/useInitialColumnSort.js +1 -3
  214. package/es/components/Datagrid/useInlineEdit.js +1 -3
  215. package/es/components/Datagrid/useNestedRowExpander.js +1 -3
  216. package/es/components/Datagrid/useNestedRows.js +1 -3
  217. package/es/components/Datagrid/useOnRowClick.js +1 -3
  218. package/es/components/Datagrid/useParentDimensions.js +1 -3
  219. package/es/components/Datagrid/useResizeTable.js +1 -3
  220. package/es/components/Datagrid/useRowExpander.js +1 -3
  221. package/es/components/Datagrid/useRowIsMouseOver.js +1 -3
  222. package/es/components/Datagrid/useRowRenderer.js +1 -3
  223. package/es/components/Datagrid/useRowSize.js +1 -3
  224. package/es/components/Datagrid/useSelectAllToggle.js +4 -6
  225. package/es/components/Datagrid/useSelectRows.js +1 -3
  226. package/es/components/Datagrid/useSkeletonRows.js +1 -2
  227. package/es/components/Datagrid/useSortableColumns.js +1 -3
  228. package/es/components/Datagrid/useStickyColumn.js +1 -3
  229. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -2
  230. package/es/components/Decorator/Decorator.js +55 -3
  231. package/es/components/DecoratorBase/DecoratorBase.js +4 -3
  232. package/es/components/DecoratorBase/DecoratorIcon.js +10 -3
  233. package/es/components/DecoratorBase/utils.js +1 -2
  234. package/es/components/DecoratorDualButton/DecoratorDualButton.js +74 -3
  235. package/es/components/DecoratorLink/DecoratorLink.js +66 -3
  236. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +66 -3
  237. package/es/components/DelimitedList/DelimitedList.js +13 -3
  238. package/es/components/DescriptionList/DescriptionList.js +5 -3
  239. package/es/components/DescriptionList/DescriptionListBody.js +3 -3
  240. package/es/components/DescriptionList/DescriptionListCell.js +3 -3
  241. package/es/components/DescriptionList/DescriptionListRow.js +3 -3
  242. package/es/components/DescriptionList/constants.js +1 -2
  243. package/es/components/EditFullPage/EditFullPage.js +7 -3
  244. package/es/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  245. package/es/components/EditInPlace/EditInPlace.js +136 -28
  246. package/es/components/EditSidePanel/EditSidePanel.js +66 -3
  247. package/es/components/EditTearsheet/EditTearsheet.js +53 -3
  248. package/es/components/EditTearsheet/EditTearsheetForm.js +33 -3
  249. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +7 -3
  250. package/es/components/EditUpdateCards/EditUpdateCards.js +70 -3
  251. package/es/components/EmptyStates/EmptyState.js +41 -9
  252. package/es/components/EmptyStates/EmptyStateContent.js +21 -3
  253. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.js +1 -3
  254. package/es/components/EmptyStates/EmptyStateV2.deprecated.js +39 -3
  255. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +37 -3
  256. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +37 -3
  257. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +37 -3
  258. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +37 -3
  259. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +37 -3
  260. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +37 -3
  261. package/es/components/EmptyStates/assets/ErrorIllustration.js +1 -3
  262. package/es/components/EmptyStates/assets/NoDataIllustration.js +1 -3
  263. package/es/components/EmptyStates/assets/NoTagsIllustration.js +1 -3
  264. package/es/components/EmptyStates/assets/NotFoundIllustration.js +1 -3
  265. package/es/components/EmptyStates/assets/NotificationsIllustration.js +1 -3
  266. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +1 -3
  267. package/es/components/ExportModal/ExportModal.js +80 -3
  268. package/es/components/ExpressiveCard/ExpressiveCard.js +76 -3
  269. package/es/components/FeatureFlags/index.js +4 -3
  270. package/es/components/FilterPanel/FilterPanel.js +10 -3
  271. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +19 -3
  272. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +22 -3
  273. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +16 -3
  274. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +34 -3
  275. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +16 -3
  276. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +13 -3
  277. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +13 -4
  278. package/es/components/FilterSummary/FilterSummary.js +2 -3
  279. package/es/components/FullPageError/FullPageError.js +20 -3
  280. package/es/components/FullPageError/assets/Error403SVG.js +1 -3
  281. package/es/components/FullPageError/assets/Error404SVG.js +1 -3
  282. package/es/components/FullPageError/assets/ErrorGenericSVG.js +1 -3
  283. package/es/components/GetStartedCard/GetStartedCard.js +37 -3
  284. package/es/components/Guidebanner/Guidebanner.js +49 -5
  285. package/es/components/Guidebanner/GuidebannerElement.js +14 -3
  286. package/es/components/Guidebanner/GuidebannerElementButton.js +11 -3
  287. package/es/components/Guidebanner/GuidebannerElementLink.js +7 -3
  288. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +23 -3
  289. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +23 -3
  290. package/es/components/HTTPErrors/HTTPErrorContent.js +19 -3
  291. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +23 -3
  292. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1 -3
  293. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1 -3
  294. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1 -3
  295. package/es/components/ImportModal/ImportModal.js +88 -3
  296. package/es/components/InlineTip/InlineTip.js +56 -3
  297. package/es/components/InlineTip/InlineTipButton.js +7 -3
  298. package/es/components/InlineTip/InlineTipLink.js +7 -3
  299. package/es/components/InlineTip/utils.js +1 -2
  300. package/es/components/InterstitialScreen/InterstitialScreen.js +23 -3
  301. package/es/components/InterstitialScreen/InterstitialScreenBody.js +13 -3
  302. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +24 -3
  303. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +20 -3
  304. package/es/components/InterstitialScreen/InterstitialScreenView.js +13 -3
  305. package/es/components/InterstitialScreen/context.js +1 -3
  306. package/es/components/MultiAddSelect/MultiAddSelect.js +81 -3
  307. package/es/components/Nav/Nav.js +16 -3
  308. package/es/components/Nav/NavItem.js +37 -3
  309. package/es/components/Nav/NavItemLink.js +4 -4
  310. package/es/components/Nav/NavList.js +12 -3
  311. package/es/components/NonLinearReading/NonLinearReading.js +13 -3
  312. package/es/components/NotificationsPanel/NotificationsPanel.js +118 -3
  313. package/es/components/NotificationsPanel/utils.js +1 -2
  314. package/es/components/OptionsTile/OptionsTile.js +52 -3
  315. package/es/components/PageHeader/PageHeader.js +219 -3
  316. package/es/components/PageHeader/PageHeaderTitle.js +24 -3
  317. package/es/components/PageHeader/PageHeaderUtils.js +1 -3
  318. package/es/components/PageHeader/next/PageHeader.d.ts +2 -1
  319. package/es/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  320. package/es/components/PageHeader/next/PageHeader.js +1 -3
  321. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  322. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.js +2 -6
  323. package/es/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +1 -3
  324. package/es/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +16 -3
  325. package/es/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  326. package/es/components/PageHeader/next/PageHeaderContent.js +32 -9
  327. package/es/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  328. package/es/components/PageHeader/next/PageHeaderContentPageActions.js +21 -7
  329. package/es/components/PageHeader/next/PageHeaderContentText.js +10 -3
  330. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  331. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  332. package/es/components/PageHeader/next/PageHeaderHeroImage.js +22 -6
  333. package/es/components/PageHeader/next/PageHeaderScrollButton.js +1 -3
  334. package/es/components/PageHeader/next/PageHeaderTabBar.js +3 -5
  335. package/es/components/PageHeader/next/PageHeaderTagOverflow.js +1 -3
  336. package/es/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +1 -3
  337. package/es/components/PageHeader/next/context.d.ts +2 -2
  338. package/es/components/PageHeader/next/context.d.ts.map +1 -1
  339. package/es/components/PageHeader/next/context.js +1 -3
  340. package/es/components/PageHeader/next/index.js +1 -3
  341. package/es/components/PageHeader/next/overflowHandler.js +1 -2
  342. package/es/components/PageHeader/next/utils.js +1 -2
  343. package/es/components/ProductiveCard/ProductiveCard.js +93 -3
  344. package/es/components/RemoveModal/RemoveModal.js +58 -3
  345. package/es/components/Saving/Saving.js +43 -3
  346. package/es/components/ScrollGradient/ScrollGradient.js +12 -3
  347. package/es/components/ScrollGradient/constants.js +1 -3
  348. package/es/components/SearchBar/SearchBar.js +31 -4
  349. package/es/components/SidePanel/SidePanel.js +116 -3
  350. package/es/components/SidePanel/constants.js +1 -2
  351. package/es/components/SimpleHeader/SimpleHeader.js +15 -3
  352. package/es/components/SingleAddSelect/SingleAddSelect.js +52 -3
  353. package/es/components/StatusIcon/StatusIcon.js +16 -3
  354. package/es/components/StatusIndicator/StatusIndicator.js +21 -3
  355. package/es/components/StatusIndicator/StatusIndicatorStep.js +13 -3
  356. package/es/components/StringFormatter/StringFormatter.js +9 -3
  357. package/es/components/StringFormatter/utils/enums.js +1 -2
  358. package/es/components/TagOverflow/TagOverflow.js +65 -3
  359. package/es/components/TagOverflow/TagOverflowModal.js +1 -3
  360. package/es/components/TagOverflow/TagOverflowPopover.js +31 -3
  361. package/es/components/TagOverflow/constants.js +1 -2
  362. package/es/components/TagSet/TagSet.js +66 -3
  363. package/es/components/TagSet/TagSetModal.js +1 -3
  364. package/es/components/TagSet/TagSetOverflow.js +38 -3
  365. package/es/components/Tearsheet/Tearsheet.js +103 -4
  366. package/es/components/Tearsheet/TearsheetNarrow.js +76 -4
  367. package/es/components/Tearsheet/TearsheetPresence.js +1 -3
  368. package/es/components/Tearsheet/TearsheetShell.js +119 -3
  369. package/es/components/Tearsheet/next/StackContext.js +1 -3
  370. package/es/components/Tearsheet/next/Tearsheet.js +1 -3
  371. package/es/components/Tearsheet/next/TearsheetBody.js +1 -3
  372. package/es/components/Tearsheet/next/TearsheetFooter.js +1 -3
  373. package/es/components/Tearsheet/next/TearsheetHeader.js +1 -3
  374. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +1 -3
  375. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +1 -3
  376. package/es/components/Tearsheet/next/context.js +1 -3
  377. package/es/components/Tearsheet/usePresence.js +7 -3
  378. package/es/components/Tearsheet/usePresenceContext.js +1 -3
  379. package/es/components/Toolbar/Toolbar.js +4 -3
  380. package/es/components/Toolbar/ToolbarButton.js +12 -4
  381. package/es/components/Toolbar/ToolbarGroup.js +3 -3
  382. package/es/components/TooltipTrigger/TooltipTrigger.js +7 -3
  383. package/es/components/TruncatedList/TruncatedList.js +32 -3
  384. package/es/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  385. package/es/components/TruncatedText/TruncatedText.js +7 -6
  386. package/es/components/TruncatedText/useTruncatedText.js +1 -3
  387. package/es/components/UserAvatar/UserAvatar.js +32 -3
  388. package/es/components/UserProfileImage/UserProfileImage.js +37 -3
  389. package/es/components/WebTerminal/WebTerminal.js +27 -3
  390. package/es/components/WebTerminal/WebTerminalContentWrapper.js +6 -4
  391. package/es/components/WebTerminal/hooks/index.js +6 -4
  392. package/es/components/_Canary/Canary.js +3 -3
  393. package/es/global/js/hooks/useActiveElement.js +1 -3
  394. package/es/global/js/hooks/useClickOutside.js +1 -3
  395. package/es/global/js/hooks/useCollapsible.js +1 -3
  396. package/es/global/js/hooks/useControllableState.js +1 -3
  397. package/es/global/js/hooks/useCreateComponentFocus.js +1 -3
  398. package/es/global/js/hooks/useCreateComponentStepChange.js +1 -3
  399. package/es/global/js/hooks/useFocus.js +1 -3
  400. package/es/global/js/hooks/useIsomorphicEffect.js +1 -3
  401. package/es/global/js/hooks/useMatchMedia.js +1 -3
  402. package/es/global/js/hooks/useMergedRefs.js +1 -3
  403. package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +1 -3
  404. package/es/global/js/hooks/useOverflowString.js +1 -3
  405. package/es/global/js/hooks/usePortalTarget.js +1 -3
  406. package/es/global/js/hooks/usePrefersReducedMotion.js +1 -3
  407. package/es/global/js/hooks/usePrefix.js +1 -3
  408. package/es/global/js/hooks/usePresence.js +1 -3
  409. package/es/global/js/hooks/usePreviousValue.js +1 -3
  410. package/es/global/js/hooks/useResetCreateComponent.js +1 -3
  411. package/es/global/js/hooks/useResizeObserver.js +1 -3
  412. package/es/global/js/hooks/useRetrieveFormTitles.js +1 -3
  413. package/es/global/js/hooks/useRetrieveStepData.js +1 -3
  414. package/es/global/js/hooks/useValidCreateStepCount.js +1 -3
  415. package/es/global/js/hooks/useWindowResize.js +1 -3
  416. package/es/global/js/hooks/useWindowScroll.js +1 -3
  417. package/es/global/js/package-settings.js +1 -2
  418. package/es/global/js/utils/Wrap.js +25 -3
  419. package/es/global/js/utils/checkForOverflow.js +1 -2
  420. package/es/global/js/utils/clamp.js +1 -2
  421. package/es/global/js/utils/debounce.js +1 -2
  422. package/es/global/js/utils/deepCloneObject.js +1 -2
  423. package/es/global/js/utils/deepCompareObject.js +1 -2
  424. package/es/global/js/utils/devtools.js +1 -3
  425. package/es/global/js/utils/getFocusableElements.js +1 -2
  426. package/es/global/js/utils/getNodeTextContent.js +1 -2
  427. package/es/global/js/utils/getNumberOfHiddenSteps.js +1 -2
  428. package/es/global/js/utils/getScrollbarWidth.js +1 -2
  429. package/es/global/js/utils/getSupportedLocale.js +1 -2
  430. package/es/global/js/utils/lastIndexInArray.js +1 -2
  431. package/es/global/js/utils/makeDraggable/makeDraggable.js +1 -2
  432. package/es/global/js/utils/pconsole.js +5 -11
  433. package/es/global/js/utils/props-helper.js +1 -3
  434. package/es/global/js/utils/rangeWithCallback.js +1 -2
  435. package/es/global/js/utils/scrollableAncestor.js +1 -2
  436. package/es/global/js/utils/throttle.js +1 -2
  437. package/es/global/js/utils/useId.js +1 -3
  438. package/es/global/js/utils/uuidv4.js +1 -2
  439. package/es/global/js/utils/wait.js +1 -2
  440. package/es/index.js +2 -5
  441. package/es/node_modules/@carbon/colors/es/index.js +1 -2
  442. package/es/node_modules/@carbon/icon-helpers/es/index.js +1 -2
  443. package/es/node_modules/@carbon/icons-react/es/Icon.js +1 -3
  444. package/es/node_modules/@carbon/icons-react/es/generated/bucket-11.js +351 -328
  445. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +185 -192
  446. package/es/node_modules/@carbon/icons-react/es/{iconPropTypes-B1cP964Y.js → iconPropTypes-BElKp6Sn.js} +2 -4
  447. package/es/node_modules/classnames/index.js +1 -4
  448. package/es/settings.js +1 -3
  449. package/lib/_virtual/_rolldown/runtime.js +13 -23
  450. package/lib/components/APIKeyModal/APIKeyDownloader.js +21 -5
  451. package/lib/components/APIKeyModal/APIKeyModal.js +170 -12
  452. package/lib/components/AboutModal/AboutModal.js +51 -10
  453. package/lib/components/ActionBar/ActionBar.js +49 -11
  454. package/lib/components/ActionBar/ActionBarItem.js +33 -6
  455. package/lib/components/ActionBar/ActionBarOverflowItems.js +24 -7
  456. package/lib/components/ActionSet/ActionSet.js +40 -8
  457. package/lib/components/AddSelect/AddSelect.js +10 -6
  458. package/lib/components/AddSelect/AddSelectBody.js +19 -19
  459. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +4 -6
  460. package/lib/components/AddSelect/AddSelectColumn.js +9 -11
  461. package/lib/components/AddSelect/AddSelectFilter.js +4 -6
  462. package/lib/components/AddSelect/AddSelectFormControl.js +4 -6
  463. package/lib/components/AddSelect/AddSelectList.js +6 -8
  464. package/lib/components/AddSelect/AddSelectMetaPanel.js +3 -5
  465. package/lib/components/AddSelect/AddSelectRow.js +5 -7
  466. package/lib/components/AddSelect/AddSelectSidebar.js +5 -7
  467. package/lib/components/AddSelect/AddSelectSort.js +3 -5
  468. package/lib/components/AddSelect/add-select-utils.js +1 -3
  469. package/lib/components/AddSelect/hooks/useFocus.js +2 -4
  470. package/lib/components/AddSelect/hooks/useItemSort.js +2 -4
  471. package/lib/components/AddSelect/hooks/useParentSelect.js +2 -4
  472. package/lib/components/AddSelect/hooks/usePath.js +2 -4
  473. package/lib/components/BigNumber/BigNumber.js +59 -13
  474. package/lib/components/BigNumber/BigNumberSkeleton.js +16 -13
  475. package/lib/components/BigNumber/constants.js +1 -22
  476. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +49 -15
  477. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +33 -9
  478. package/lib/components/Card/Card.js +25 -8
  479. package/lib/components/Card/CardFooter.js +4 -6
  480. package/lib/components/Card/CardHeader.js +15 -6
  481. package/lib/components/Carousel/Carousel.js +39 -9
  482. package/lib/components/Carousel/CarouselItem.js +11 -7
  483. package/lib/components/Cascade/Cascade.js +16 -7
  484. package/lib/components/Checklist/Checklist.js +72 -18
  485. package/lib/components/Checklist/ChecklistChart.js +19 -13
  486. package/lib/components/Checklist/ChecklistIcon.js +21 -15
  487. package/lib/components/Coachmark/Coachmark.js +69 -15
  488. package/lib/components/Coachmark/CoachmarkDragbar.js +22 -8
  489. package/lib/components/Coachmark/CoachmarkHeader.js +18 -8
  490. package/lib/components/Coachmark/CoachmarkOverlay.js +35 -17
  491. package/lib/components/Coachmark/CoachmarkTagline.js +18 -8
  492. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  493. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  494. package/lib/components/Coachmark/next/Coachmark/Coachmark.js +64 -17
  495. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  496. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.js +12 -7
  497. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +22 -7
  498. package/lib/components/Coachmark/next/Coachmark/ContentBody.js +11 -6
  499. package/lib/components/Coachmark/next/Coachmark/ContentHeader.js +18 -8
  500. package/lib/components/Coachmark/next/Coachmark/context.js +4 -7
  501. package/lib/components/Coachmark/utils/constants.js +15 -23
  502. package/lib/components/Coachmark/utils/context.js +2 -4
  503. package/lib/components/Coachmark/utils/enums.js +1 -3
  504. package/lib/components/Coachmark/utils/hooks.js +5 -7
  505. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  506. package/lib/components/CoachmarkButton/CoachmarkButton.js +12 -8
  507. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +40 -14
  508. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +18 -7
  509. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +41 -11
  510. package/lib/components/CoachmarkStack/CoachmarkStack.js +52 -14
  511. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +48 -10
  512. package/lib/components/ComboButton/ComboButton.js +9 -7
  513. package/lib/components/ComboButton/ComboButtonItem/index.js +6 -4
  514. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +64 -21
  515. package/lib/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  516. package/lib/components/ConditionBuilder/ConditionBuilder.js +72 -11
  517. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  518. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  519. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  520. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +25 -15
  521. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +35 -9
  522. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +43 -7
  523. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +19 -12
  524. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +8 -10
  525. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  526. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +46 -24
  527. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  528. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +37 -5
  529. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -3
  530. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +45 -11
  531. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +14 -7
  532. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +13 -6
  533. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +14 -7
  534. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +14 -7
  535. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +15 -5
  536. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +12 -5
  537. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  538. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +40 -18
  539. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +16 -9
  540. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  541. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +4 -6
  542. package/lib/components/ConditionBuilder/utils/useEvent.js +2 -4
  543. package/lib/components/ConditionBuilder/utils/useTranslations.js +4 -6
  544. package/lib/components/ConditionBuilder/utils/util.js +2 -5
  545. package/lib/components/CreateFullPage/CreateFullPage.js +92 -16
  546. package/lib/components/CreateFullPage/CreateFullPageStep.js +58 -10
  547. package/lib/components/CreateInfluencer/CreateInfluencer.js +20 -7
  548. package/lib/components/CreateModal/CreateModal.js +48 -8
  549. package/lib/components/CreateSidePanel/CreateSidePanel.js +65 -9
  550. package/lib/components/CreateTearsheet/CreateTearsheet.js +96 -18
  551. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +9 -7
  552. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +79 -10
  553. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +62 -9
  554. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +85 -27
  555. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +128 -16
  556. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +88 -15
  557. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +2 -4
  558. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +4 -6
  559. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +3 -5
  560. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +4 -6
  561. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +4 -6
  562. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +4 -6
  563. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +4 -6
  564. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +2 -4
  565. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -3
  566. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +2 -4
  567. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +11 -13
  568. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +3 -5
  569. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +4 -6
  570. package/lib/components/DataSpreadsheet/utils/getCellSize.js +2 -4
  571. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -3
  572. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +2 -4
  573. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +2 -4
  574. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +2 -4
  575. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +3 -5
  576. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +3 -5
  577. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +5 -7
  578. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +4 -6
  579. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +3 -5
  580. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +2 -4
  581. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +3 -5
  582. package/lib/components/Datagrid/Datagrid/Datagrid.js +17 -11
  583. package/lib/components/Datagrid/Datagrid/DatagridBody.js +6 -8
  584. package/lib/components/Datagrid/Datagrid/DatagridContent.js +19 -21
  585. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +7 -9
  586. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +4 -6
  587. package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -4
  588. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -12
  589. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +4 -6
  590. package/lib/components/Datagrid/Datagrid/DatagridRow.js +7 -9
  591. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -8
  592. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +5 -7
  593. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +4 -6
  594. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +6 -8
  595. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +6 -8
  596. package/lib/components/Datagrid/Datagrid/DraggableElement.js +4 -6
  597. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +7 -5
  598. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +3 -5
  599. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +3 -5
  600. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +6 -8
  601. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +6 -8
  602. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -9
  603. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +4 -6
  604. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
  605. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +54 -14
  606. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +31 -26
  607. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +9 -11
  608. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +4 -6
  609. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -3
  610. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -3
  611. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +3 -5
  612. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -18
  613. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +3 -5
  614. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +3 -5
  615. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  616. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +4 -6
  617. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +9 -11
  618. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +4 -6
  619. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -3
  620. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +2 -5
  621. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -3
  622. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +4 -6
  623. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +4 -6
  624. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +5 -7
  625. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +3 -5
  626. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +2 -4
  627. package/lib/components/Datagrid/common-column-ids.js +1 -3
  628. package/lib/components/Datagrid/useActionsColumn.js +5 -7
  629. package/lib/components/Datagrid/useColumnCenterAlign.js +4 -6
  630. package/lib/components/Datagrid/useColumnOrder.js +3 -6
  631. package/lib/components/Datagrid/useColumnRightAlign.js +4 -6
  632. package/lib/components/Datagrid/useCustomizeColumns.js +4 -6
  633. package/lib/components/Datagrid/useDatagrid.js +11 -13
  634. package/lib/components/Datagrid/useDefaultStringRenderer.js +4 -6
  635. package/lib/components/Datagrid/useDisableSelectRows.js +1 -3
  636. package/lib/components/Datagrid/useEditableCell.js +2 -4
  637. package/lib/components/Datagrid/useExpandedRow.js +4 -6
  638. package/lib/components/Datagrid/useFiltering.js +4 -6
  639. package/lib/components/Datagrid/useFlexResize.js +2 -4
  640. package/lib/components/Datagrid/useFloatingScroll.js +4 -6
  641. package/lib/components/Datagrid/useFocusRowExpander.js +2 -4
  642. package/lib/components/Datagrid/useInfiniteScroll.js +5 -7
  643. package/lib/components/Datagrid/useInitialColumnSort.js +3 -5
  644. package/lib/components/Datagrid/useInlineEdit.js +5 -7
  645. package/lib/components/Datagrid/useNestedRowExpander.js +6 -8
  646. package/lib/components/Datagrid/useNestedRows.js +5 -7
  647. package/lib/components/Datagrid/useOnRowClick.js +3 -5
  648. package/lib/components/Datagrid/useParentDimensions.js +2 -4
  649. package/lib/components/Datagrid/useResizeTable.js +2 -4
  650. package/lib/components/Datagrid/useRowExpander.js +5 -7
  651. package/lib/components/Datagrid/useRowIsMouseOver.js +3 -5
  652. package/lib/components/Datagrid/useRowRenderer.js +2 -4
  653. package/lib/components/Datagrid/useRowSize.js +3 -5
  654. package/lib/components/Datagrid/useSelectAllToggle.js +9 -11
  655. package/lib/components/Datagrid/useSelectRows.js +8 -10
  656. package/lib/components/Datagrid/useSkeletonRows.js +1 -3
  657. package/lib/components/Datagrid/useSortableColumns.js +6 -8
  658. package/lib/components/Datagrid/useStickyColumn.js +6 -8
  659. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -3
  660. package/lib/components/Decorator/Decorator.js +65 -13
  661. package/lib/components/DecoratorBase/DecoratorBase.js +9 -8
  662. package/lib/components/DecoratorBase/DecoratorIcon.js +19 -12
  663. package/lib/components/DecoratorBase/utils.js +1 -3
  664. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +84 -13
  665. package/lib/components/DecoratorLink/DecoratorLink.js +76 -13
  666. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +76 -13
  667. package/lib/components/DelimitedList/DelimitedList.js +17 -7
  668. package/lib/components/DescriptionList/DescriptionList.js +15 -13
  669. package/lib/components/DescriptionList/DescriptionListBody.js +12 -12
  670. package/lib/components/DescriptionList/DescriptionListCell.js +12 -12
  671. package/lib/components/DescriptionList/DescriptionListRow.js +12 -12
  672. package/lib/components/DescriptionList/constants.js +1 -3
  673. package/lib/components/EditFullPage/EditFullPage.js +11 -7
  674. package/lib/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  675. package/lib/components/EditInPlace/EditInPlace.js +139 -31
  676. package/lib/components/EditSidePanel/EditSidePanel.js +73 -10
  677. package/lib/components/EditTearsheet/EditTearsheet.js +59 -9
  678. package/lib/components/EditTearsheet/EditTearsheetForm.js +39 -9
  679. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +11 -7
  680. package/lib/components/EditUpdateCards/EditUpdateCards.js +75 -8
  681. package/lib/components/EmptyStates/EmptyState.js +48 -16
  682. package/lib/components/EmptyStates/EmptyStateContent.js +24 -6
  683. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.js +2 -4
  684. package/lib/components/EmptyStates/EmptyStateV2.deprecated.js +45 -9
  685. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +44 -10
  686. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +44 -10
  687. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +44 -10
  688. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +44 -10
  689. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +44 -10
  690. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +44 -10
  691. package/lib/components/EmptyStates/assets/ErrorIllustration.js +5 -7
  692. package/lib/components/EmptyStates/assets/NoDataIllustration.js +5 -7
  693. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +5 -7
  694. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +5 -7
  695. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +5 -7
  696. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +5 -7
  697. package/lib/components/ExportModal/ExportModal.js +86 -9
  698. package/lib/components/ExpressiveCard/ExpressiveCard.js +80 -7
  699. package/lib/components/FeatureFlags/index.js +6 -5
  700. package/lib/components/FilterPanel/FilterPanel.js +19 -12
  701. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +29 -13
  702. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +33 -14
  703. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +26 -13
  704. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +44 -13
  705. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +26 -13
  706. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +22 -12
  707. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +22 -13
  708. package/lib/components/FilterSummary/FilterSummary.js +12 -13
  709. package/lib/components/FullPageError/FullPageError.js +27 -10
  710. package/lib/components/FullPageError/assets/Error403SVG.js +2 -4
  711. package/lib/components/FullPageError/assets/Error404SVG.js +2 -4
  712. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +2 -4
  713. package/lib/components/GetStartedCard/GetStartedCard.js +40 -6
  714. package/lib/components/Guidebanner/Guidebanner.js +57 -13
  715. package/lib/components/Guidebanner/GuidebannerElement.js +18 -7
  716. package/lib/components/Guidebanner/GuidebannerElementButton.js +15 -7
  717. package/lib/components/Guidebanner/GuidebannerElementLink.js +11 -7
  718. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +29 -9
  719. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +29 -9
  720. package/lib/components/HTTPErrors/HTTPErrorContent.js +21 -5
  721. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +29 -9
  722. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +3 -5
  723. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +3 -5
  724. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +3 -5
  725. package/lib/components/ImportModal/ImportModal.js +94 -9
  726. package/lib/components/InlineTip/InlineTip.js +62 -9
  727. package/lib/components/InlineTip/InlineTipButton.js +11 -7
  728. package/lib/components/InlineTip/InlineTipLink.js +11 -7
  729. package/lib/components/InlineTip/utils.js +1 -3
  730. package/lib/components/InterstitialScreen/InterstitialScreen.js +30 -10
  731. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +17 -7
  732. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +28 -7
  733. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +24 -7
  734. package/lib/components/InterstitialScreen/InterstitialScreenView.js +15 -5
  735. package/lib/components/InterstitialScreen/context.js +3 -5
  736. package/lib/components/MultiAddSelect/MultiAddSelect.js +84 -6
  737. package/lib/components/Nav/Nav.js +27 -14
  738. package/lib/components/Nav/NavItem.js +48 -14
  739. package/lib/components/Nav/NavItemLink.js +5 -5
  740. package/lib/components/Nav/NavList.js +22 -13
  741. package/lib/components/NonLinearReading/NonLinearReading.js +18 -8
  742. package/lib/components/NotificationsPanel/NotificationsPanel.js +130 -15
  743. package/lib/components/NotificationsPanel/utils.js +1 -3
  744. package/lib/components/OptionsTile/OptionsTile.js +59 -10
  745. package/lib/components/PageHeader/PageHeader.js +234 -18
  746. package/lib/components/PageHeader/PageHeaderTitle.js +28 -7
  747. package/lib/components/PageHeader/PageHeaderUtils.js +5 -7
  748. package/lib/components/PageHeader/next/PageHeader.d.ts +2 -1
  749. package/lib/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  750. package/lib/components/PageHeader/next/PageHeader.js +19 -21
  751. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  752. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.js +6 -10
  753. package/lib/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +6 -8
  754. package/lib/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +19 -6
  755. package/lib/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  756. package/lib/components/PageHeader/next/PageHeaderContent.js +36 -13
  757. package/lib/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  758. package/lib/components/PageHeader/next/PageHeaderContentPageActions.js +26 -12
  759. package/lib/components/PageHeader/next/PageHeaderContentText.js +13 -6
  760. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  761. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  762. package/lib/components/PageHeader/next/PageHeaderHeroImage.js +25 -9
  763. package/lib/components/PageHeader/next/PageHeaderScrollButton.js +6 -8
  764. package/lib/components/PageHeader/next/PageHeaderTabBar.js +7 -9
  765. package/lib/components/PageHeader/next/PageHeaderTagOverflow.js +6 -8
  766. package/lib/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +5 -7
  767. package/lib/components/PageHeader/next/context.d.ts +2 -2
  768. package/lib/components/PageHeader/next/context.d.ts.map +1 -1
  769. package/lib/components/PageHeader/next/context.js +2 -4
  770. package/lib/components/PageHeader/next/index.js +19 -21
  771. package/lib/components/PageHeader/next/overflowHandler.js +1 -3
  772. package/lib/components/PageHeader/next/utils.js +1 -3
  773. package/lib/components/ProductiveCard/ProductiveCard.js +97 -7
  774. package/lib/components/RemoveModal/RemoveModal.js +65 -10
  775. package/lib/components/Saving/Saving.js +47 -7
  776. package/lib/components/ScrollGradient/ScrollGradient.js +23 -14
  777. package/lib/components/ScrollGradient/constants.js +3 -5
  778. package/lib/components/SearchBar/SearchBar.js +35 -8
  779. package/lib/components/SidePanel/SidePanel.js +129 -16
  780. package/lib/components/SidePanel/constants.js +1 -3
  781. package/lib/components/SimpleHeader/SimpleHeader.js +20 -8
  782. package/lib/components/SingleAddSelect/SingleAddSelect.js +56 -7
  783. package/lib/components/StatusIcon/StatusIcon.js +20 -7
  784. package/lib/components/StatusIndicator/StatusIndicator.js +30 -12
  785. package/lib/components/StatusIndicator/StatusIndicatorStep.js +22 -12
  786. package/lib/components/StringFormatter/StringFormatter.js +21 -15
  787. package/lib/components/StringFormatter/utils/enums.js +1 -3
  788. package/lib/components/TagOverflow/TagOverflow.js +73 -11
  789. package/lib/components/TagOverflow/TagOverflowModal.js +6 -8
  790. package/lib/components/TagOverflow/TagOverflowPopover.js +35 -7
  791. package/lib/components/TagOverflow/constants.js +1 -3
  792. package/lib/components/TagSet/TagSet.js +73 -10
  793. package/lib/components/TagSet/TagSetModal.js +6 -8
  794. package/lib/components/TagSet/TagSetOverflow.js +42 -7
  795. package/lib/components/Tearsheet/Tearsheet.js +107 -8
  796. package/lib/components/Tearsheet/TearsheetNarrow.js +80 -8
  797. package/lib/components/Tearsheet/TearsheetPresence.js +3 -5
  798. package/lib/components/Tearsheet/TearsheetShell.js +135 -19
  799. package/lib/components/Tearsheet/next/StackContext.js +3 -5
  800. package/lib/components/Tearsheet/next/Tearsheet.js +15 -17
  801. package/lib/components/Tearsheet/next/TearsheetBody.js +6 -8
  802. package/lib/components/Tearsheet/next/TearsheetFooter.js +5 -7
  803. package/lib/components/Tearsheet/next/TearsheetHeader.js +4 -6
  804. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +5 -7
  805. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +5 -7
  806. package/lib/components/Tearsheet/next/context.js +4 -7
  807. package/lib/components/Tearsheet/usePresence.js +9 -5
  808. package/lib/components/Tearsheet/usePresenceContext.js +3 -5
  809. package/lib/components/Toolbar/Toolbar.js +9 -8
  810. package/lib/components/Toolbar/ToolbarButton.js +15 -7
  811. package/lib/components/Toolbar/ToolbarGroup.js +6 -6
  812. package/lib/components/TooltipTrigger/TooltipTrigger.js +10 -6
  813. package/lib/components/TruncatedList/TruncatedList.js +37 -8
  814. package/lib/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  815. package/lib/components/TruncatedText/TruncatedText.js +12 -11
  816. package/lib/components/TruncatedText/useTruncatedText.js +3 -5
  817. package/lib/components/UserAvatar/UserAvatar.js +38 -9
  818. package/lib/components/UserProfileImage/UserProfileImage.js +43 -9
  819. package/lib/components/WebTerminal/WebTerminal.js +33 -9
  820. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +10 -8
  821. package/lib/components/WebTerminal/hooks/index.js +7 -5
  822. package/lib/components/_Canary/Canary.js +6 -6
  823. package/lib/global/js/hooks/useActiveElement.js +2 -4
  824. package/lib/global/js/hooks/useClickOutside.js +2 -4
  825. package/lib/global/js/hooks/useCollapsible.js +2 -4
  826. package/lib/global/js/hooks/useControllableState.js +2 -4
  827. package/lib/global/js/hooks/useCreateComponentFocus.js +3 -5
  828. package/lib/global/js/hooks/useCreateComponentStepChange.js +2 -4
  829. package/lib/global/js/hooks/useFocus.js +3 -5
  830. package/lib/global/js/hooks/useIsomorphicEffect.js +2 -4
  831. package/lib/global/js/hooks/useMatchMedia.js +2 -4
  832. package/lib/global/js/hooks/useMergedRefs.js +2 -4
  833. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +3 -5
  834. package/lib/global/js/hooks/useOverflowString.js +2 -4
  835. package/lib/global/js/hooks/usePortalTarget.js +4 -6
  836. package/lib/global/js/hooks/usePrefersReducedMotion.js +3 -5
  837. package/lib/global/js/hooks/usePrefix.js +2 -4
  838. package/lib/global/js/hooks/usePresence.js +2 -4
  839. package/lib/global/js/hooks/usePreviousValue.js +2 -4
  840. package/lib/global/js/hooks/useResetCreateComponent.js +3 -5
  841. package/lib/global/js/hooks/useResizeObserver.js +3 -5
  842. package/lib/global/js/hooks/useRetrieveFormTitles.js +2 -4
  843. package/lib/global/js/hooks/useRetrieveStepData.js +2 -4
  844. package/lib/global/js/hooks/useValidCreateStepCount.js +2 -4
  845. package/lib/global/js/hooks/useWindowResize.js +3 -5
  846. package/lib/global/js/hooks/useWindowScroll.js +4 -6
  847. package/lib/global/js/package-settings.js +1 -3
  848. package/lib/global/js/utils/Wrap.js +26 -4
  849. package/lib/global/js/utils/checkForOverflow.js +1 -3
  850. package/lib/global/js/utils/clamp.js +1 -3
  851. package/lib/global/js/utils/debounce.js +1 -3
  852. package/lib/global/js/utils/deepCloneObject.js +1 -3
  853. package/lib/global/js/utils/deepCompareObject.js +1 -3
  854. package/lib/global/js/utils/devtools.js +2 -4
  855. package/lib/global/js/utils/getFocusableElements.js +1 -3
  856. package/lib/global/js/utils/getNodeTextContent.js +1 -3
  857. package/lib/global/js/utils/getNumberOfHiddenSteps.js +1 -3
  858. package/lib/global/js/utils/getScrollbarWidth.js +1 -3
  859. package/lib/global/js/utils/getSupportedLocale.js +1 -3
  860. package/lib/global/js/utils/lastIndexInArray.js +1 -3
  861. package/lib/global/js/utils/makeDraggable/makeDraggable.js +1 -3
  862. package/lib/global/js/utils/pconsole.js +4 -9
  863. package/lib/global/js/utils/props-helper.js +2 -4
  864. package/lib/global/js/utils/rangeWithCallback.js +1 -3
  865. package/lib/global/js/utils/scrollableAncestor.js +1 -3
  866. package/lib/global/js/utils/throttle.js +1 -3
  867. package/lib/global/js/utils/useId.js +3 -5
  868. package/lib/global/js/utils/uuidv4.js +1 -3
  869. package/lib/global/js/utils/wait.js +1 -3
  870. package/lib/index.js +264 -267
  871. package/lib/node_modules/@carbon/colors/lib/index.js +15 -21
  872. package/lib/node_modules/@carbon/icon-helpers/lib/index.js +7 -10
  873. package/lib/node_modules/@carbon/icons-react/lib/{Icon.js → Icon-2zUDcllO.js} +44 -17
  874. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-0.js +274 -278
  875. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-1.js +303 -316
  876. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-10.js +478 -472
  877. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-11.js +491 -468
  878. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-12.js +482 -474
  879. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-13.js +509 -547
  880. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-14.js +546 -596
  881. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-15.js +596 -538
  882. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-16.js +571 -616
  883. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-17.js +669 -654
  884. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-18.js +683 -661
  885. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-19.js +701 -718
  886. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-2.js +332 -330
  887. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-20.js +743 -783
  888. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-21.js +548 -40
  889. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-3.js +340 -349
  890. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-4.js +360 -380
  891. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-5.js +397 -405
  892. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-6.js +405 -392
  893. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-7.js +418 -437
  894. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-8.js +456 -496
  895. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-9.js +489 -480
  896. package/lib/node_modules/@carbon/icons-react/lib/{iconPropTypes-U9gLABJo.js → iconPropTypes-DaTOKOBs.js} +12 -14
  897. package/lib/node_modules/@carbon/icons-react/lib/index.js +425 -395
  898. package/lib/node_modules/classnames/index.js +7 -10
  899. package/lib/settings.js +5 -7
  900. package/package.json +17 -17
  901. package/scss/components/EditInPlace/_edit-in-place.scss +30 -6
  902. package/scss/components/PageHeader/_page-header.scss +66 -6
  903. package/scss/components/TruncatedText/_truncated-text.scss +21 -0
  904. package/telemetry.yml +12 -3
  905. package/es/components/Checklist/Checklist.types.js +0 -30
  906. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  907. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  908. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  909. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  910. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  911. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  912. package/lib/components/Checklist/Checklist.types.js +0 -32
  913. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  914. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  915. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  916. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  917. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  918. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  919. package/lib/node_modules/@carbon/icons-react/lib/chunk-CsKB0u1v.js +0 -54
@@ -5,11 +5,9 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- const require_runtime = require('../../../../../_virtual/_rolldown/runtime.js');
9
- const require_chunk_CsKB0u1v$1 = require('../chunk-CsKB0u1v.js');
10
- const require_Icon$1 = require('../Icon.js');
11
- const require_iconPropTypes_U9gLABJo$1 = require('../iconPropTypes-U9gLABJo.js');
12
-
8
+ const require_runtime = require("../../../../../_virtual/_rolldown/runtime.js");
9
+ const require_Icon_2zUDcllO$1 = require("../Icon-2zUDcllO.js");
10
+ const require_iconPropTypes_DaTOKOBs$1 = require("../iconPropTypes-DaTOKOBs.js");
13
11
  //#region ../../node_modules/@carbon/icons-react/lib/generated/bucket-10.js
14
12
  var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,15 +19,242 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
21
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
22
20
  */
23
21
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
24
- const require_chunk = require_chunk_CsKB0u1v$1.default;
25
- const require_Icon_js = require_Icon$1.default;
26
- const require_iconPropTypes = require_iconPropTypes_U9gLABJo$1.default;
22
+ const require_Icon = require_Icon_2zUDcllO$1.default;
23
+ const require_iconPropTypes = require_iconPropTypes_DaTOKOBs$1.default;
27
24
  let react = require("react");
28
- react = require_chunk.__toESM(react);
25
+ react = require_Icon.__toESM(react);
29
26
  let react_jsx_runtime = require("react/jsx-runtime");
30
27
  const didWarnAboutDeprecation = {};
31
- const IbmWatsonStudio = react.default.forwardRef(function IbmWatsonStudio({ children, size = 16, ...rest }, ref) {
32
- return react.default.createElement(require_Icon_js, {
28
+ const IbmSoftwareWatsonxDataUnstructuredEnrichment = /* @__PURE__ */ react.default.forwardRef(function IbmSoftwareWatsonxDataUnstructuredEnrichment({ children, size = 16, ...rest }, ref) {
29
+ return react.default.createElement(require_Icon.Icon, {
30
+ width: size,
31
+ height: size,
32
+ ref,
33
+ xmlns: "http://www.w3.org/2000/svg",
34
+ viewBox: "0 0 32 32",
35
+ fill: "currentColor",
36
+ ...rest
37
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,26h-2c0-1.1885.5767-2.0088,1.0854-2.7324.4907-.6978.9146-1.3003.9146-2.2676,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,.9673.4238,1.5698.9146,2.2676.5088.7236,1.0854,1.5439,1.0854,2.7324h-2c0-.5298-.2607-.9268-.7217-1.582-.5693-.8101-1.2783-1.8179-1.2783-3.418,0-2.7568,2.2432-5,5-5s5,2.2432,5,5c0,1.6001-.709,2.6079-1.2783,3.418-.4609.6553-.7217,1.0522-.7217,1.582ZM27,28h-6v2h6v-2ZM27.7236,13h-11.4468l5.7231-10.0156,5.7236,10.0156h0ZM19.7236,11h4.5527l-2.2764-3.9844-2.2764,3.9844h0ZM9,14c-2.7571,0-5-2.2429-5-5s2.2429-5,5-5,5,2.2429,5,5-2.2429,5-5,5ZM9,6c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3ZM16,27.0007H6v-10.0007h10v10.0007ZM8,25.0007h6v-6.0007h-6v6.0007Z" }), children);
38
+ });
39
+ if (process.env.NODE_ENV !== "production") IbmSoftwareWatsonxDataUnstructuredEnrichment.propTypes = require_iconPropTypes.iconPropTypes;
40
+ const IbmSoftwareWatsonxDataUnstructuredImport = /* @__PURE__ */ react.default.forwardRef(function IbmSoftwareWatsonxDataUnstructuredImport({ children, size = 16, ...rest }, ref) {
41
+ return react.default.createElement(require_Icon.Icon, {
42
+ width: size,
43
+ height: size,
44
+ ref,
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ viewBox: "0 0 32 32",
47
+ fill: "currentColor",
48
+ ...rest
49
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,26l-8.17-.0007,2.58,2.59-1.41,1.4107-5-5,5-5,1.41,1.4093-2.58,2.59,8.17.0007v2ZM28.7236,16h-11.4473l5.7236-10.0156,5.7236,10.0156h0ZM20.7236,14h4.5527l-2.2764-3.9844-2.2764,3.9844h0ZM17,8c0,2.7568-2.2432,5-5,5s-5-2.2432-5-5,2.2432-5,5-5,5,2.2432,5,5ZM15,8c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3,1.3457,3,3,3,3-1.3457,3-3ZM5,16h10v10H5v-10ZM7,24h6v-6h-6v6Z" }), children);
50
+ });
51
+ if (process.env.NODE_ENV !== "production") IbmSoftwareWatsonxDataUnstructuredImport.propTypes = require_iconPropTypes.iconPropTypes;
52
+ const IbmSoftwareWatsonxDocumentLibrary = /* @__PURE__ */ react.default.forwardRef(function IbmSoftwareWatsonxDocumentLibrary({ children, size = 16, ...rest }, ref) {
53
+ return react.default.createElement(require_Icon.Icon, {
54
+ width: size,
55
+ height: size,
56
+ ref,
57
+ xmlns: "http://www.w3.org/2000/svg",
58
+ viewBox: "0 0 32 32",
59
+ fill: "currentColor",
60
+ ...rest
61
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H4c-1.1046,0-2-.8954-2-2V6c0-1.1046.8954-2,2-2l7.17-.0057c.533-.0004,1.0442.212,1.42.59l3.41,3.4157,12-.0057c1.1046,0,2,.8954,2,2v4.0057h-2v-4l-12.83-.0057-.58-.59-3.42-3.41-7.17.0057v20h8v2ZM16,17l-2.0072-.0057.0072,11.0057h2v-11ZM29.9954,18.9926l-.0039,9.7657c0,.6838-.5676,1.2417-1.2654,1.2417h-9.4679c-.6978,0-1.2654-.5579-1.2654-1.2426v-12.5195c0-.6857.5676-1.2436,1.2654-1.2436l6.7418.0057,4,4-.0046-.0074ZM27.9899,28.0004l.0101-8.0004h-3v-3h-5v11h8l-.0101.0004Z" }), children);
62
+ });
63
+ if (process.env.NODE_ENV !== "production") IbmSoftwareWatsonxDocumentLibrary.propTypes = require_iconPropTypes.iconPropTypes;
64
+ const IbmWatsonAssistant = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonAssistant({ children, size = 16, ...rest }, ref) {
65
+ if (process.env.NODE_ENV !== "production") {
66
+ if (!didWarnAboutDeprecation["IbmWatsonAssistant"]) {
67
+ didWarnAboutDeprecation["IbmWatsonAssistant"] = true;
68
+ console.warn("Icon renamed and replaced by ibm-watsonx--assistant to correspond with the new watsonx platform and product suite. As a result, the IbmWatsonAssistant component will be removed in the next major version of @carbon/icons-react.");
69
+ }
70
+ }
71
+ return react.default.createElement(require_Icon.Icon, {
72
+ width: size,
73
+ height: size,
74
+ ref,
75
+ xmlns: "http://www.w3.org/2000/svg",
76
+ viewBox: "0 0 32 32",
77
+ fill: "currentColor",
78
+ ...rest
79
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H18c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h2.4l1.7,3l1.7-1l-2.3-4H18V4h10v6h-3v2h3c1.1,0,2-0.9,2-2V4 C30,2.9,29.1,2,28,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.7,31L13,30l3.5-6H22c1.1,0,2-0.9,2-2v-5h2v5c0,2.2-1.8,4-4,4h-4.4L14.7,31z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
80
+ cx: "10",
81
+ cy: "17",
82
+ r: "1"
83
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
84
+ cx: "14",
85
+ cy: "17",
86
+ r: "1"
87
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
88
+ cx: "18",
89
+ cy: "17",
90
+ r: "1"
91
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,26H6c-2.2,0-4-1.8-4-4V12c0-2.2,1.8-4,4-4h8v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h6V26z" }), children);
92
+ });
93
+ if (process.env.NODE_ENV !== "production") IbmWatsonAssistant.propTypes = require_iconPropTypes.iconPropTypes;
94
+ const IbmWatsonDiscovery = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonDiscovery({ children, size = 16, ...rest }, ref) {
95
+ return react.default.createElement(require_Icon.Icon, {
96
+ width: size,
97
+ height: size,
98
+ ref,
99
+ xmlns: "http://www.w3.org/2000/svg",
100
+ viewBox: "0 0 32 32",
101
+ fill: "currentColor",
102
+ ...rest
103
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 17H14V19H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
104
+ cx: "3",
105
+ cy: "18",
106
+ r: "1"
107
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
108
+ cx: "13",
109
+ cy: "14",
110
+ r: "1"
111
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 13H10V15H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 9H14V11H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
112
+ cx: "3",
113
+ cy: "10",
114
+ r: "1"
115
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28.6l-7.4-7.4c1.5-2,2.4-4.5,2.4-7.2c0-6.6-5.4-12-12-12C9.7,2,6.6,3.3,4.3,5.8l1.5,1.4C7.6,5.1,10.2,4,13,4 c5.5,0,10,4.5,10,10s-4.5,10-10,10c-3,0-5.8-1.3-7.7-3.6l-1.5,1.3C6,24.4,9.4,26,13,26c3.2,0,6.1-1.3,8.3-3.3l7.3,7.3L30,28.6z" }), children);
116
+ });
117
+ if (process.env.NODE_ENV !== "production") IbmWatsonDiscovery.propTypes = require_iconPropTypes.iconPropTypes;
118
+ const IbmWatsonKnowledgeCatalog = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonKnowledgeCatalog({ children, size = 16, ...rest }, ref) {
119
+ if (process.env.NODE_ENV !== "production") {
120
+ if (!didWarnAboutDeprecation["IbmWatsonKnowledgeCatalog"]) {
121
+ didWarnAboutDeprecation["IbmWatsonKnowledgeCatalog"] = true;
122
+ console.warn("Icon renamed, slightly redesigned and replaced by ibm--knowledge-catalog. As a result, the IbmWatsonKnowledgeCatalog component will be removed in the next major version of @carbon/icons-react.");
123
+ }
124
+ }
125
+ return react.default.createElement(require_Icon.Icon, {
126
+ width: size,
127
+ height: size,
128
+ ref,
129
+ xmlns: "http://www.w3.org/2000/svg",
130
+ viewBox: "0 0 32 32",
131
+ fill: "currentColor",
132
+ ...rest
133
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 27.2 20.4 24.6 19 26 23 30 30 23 28.6 21.6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 18H20V20H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 13H20V15H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 8H20V10H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H6v-4h2v-2H6v-5h2v-2H6v-5h2V8H6V4h18v16h2V4c0-1.1-0.9-2-2-2H6C4.9,2,4,2.9,4,4v4H2v2h2v5H2v2h2v5H2v2h2v4 c0,1.1,0.9,2,2,2h10V28z" }), children);
134
+ });
135
+ if (process.env.NODE_ENV !== "production") IbmWatsonKnowledgeCatalog.propTypes = require_iconPropTypes.iconPropTypes;
136
+ const IbmWatsonKnowledgeStudio = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonKnowledgeStudio({ children, size = 16, ...rest }, ref) {
137
+ return react.default.createElement(require_Icon.Icon, {
138
+ width: size,
139
+ height: size,
140
+ ref,
141
+ xmlns: "http://www.w3.org/2000/svg",
142
+ viewBox: "0 0 32 32",
143
+ fill: "currentColor",
144
+ ...rest
145
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 25H27V27H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 29H25V31H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,23h-2c0-1.1,0.4-2,1.2-2.8l0.5-0.5c0.8-0.8,1.3-2,1.3-3.2c0-2.5-2-4.5-4.5-4.5S19,14,19,16.5c0,1.2,0.5,2.3,1.3,3.2 l0.5,0.5C21.6,21,22,21.9,22,23h-2c0-0.5-0.2-1-0.6-1.4l-0.5-0.5c-1.2-1.2-1.9-2.9-1.9-4.6c0-3.6,2.9-6.5,6.5-6.5s6.5,2.9,6.5,6.5 c0,1.7-0.7,3.4-1.9,4.6l-0.5,0.5C27.2,22,27,22.5,27,23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 22H14V24H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
146
+ cx: "12",
147
+ cy: "19",
148
+ r: "1"
149
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H9V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 14H13V16H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 10H17V12H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
150
+ cx: "7",
151
+ cy: "11",
152
+ r: "1"
153
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 6H20V8H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
154
+ cx: "13",
155
+ cy: "7",
156
+ r: "1"
157
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H10V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,28H4V4l18,0v4h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h14V28z" }), children);
158
+ });
159
+ if (process.env.NODE_ENV !== "production") IbmWatsonKnowledgeStudio.propTypes = require_iconPropTypes.iconPropTypes;
160
+ const IbmWatsonLanguageTranslator = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonLanguageTranslator({ children, size = 16, ...rest }, ref) {
161
+ return react.default.createElement(require_Icon.Icon, {
162
+ width: size,
163
+ height: size,
164
+ ref,
165
+ xmlns: "http://www.w3.org/2000/svg",
166
+ viewBox: "0 0 32 32",
167
+ fill: "currentColor",
168
+ ...rest
169
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28h-3c-3.9,0-7-3.1-7-7v-4h2v4c0,2.8,2.2,5,5,5h3V28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30h2.2l-4.6-11h-2.2l-4.6,11H21l0.8-2h5.3L28,30z M22.7,26l1.8-4.4l1.8,4.4H22.7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,15h-2v-4c0-2.8-2.2-5-5-5h-4V4h4c3.9,0,7,3.1,7,7V15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,5V3H9V1H7v2H2v2h8.2C10,5.9,9.4,7.5,8,9C7.4,8.3,6.9,7.6,6.6,7H4.3c0.4,1,1.1,2.2,2.1,3.3C5.6,11,4.4,11.6,3,12.1 L3.7,14c1.8-0.7,3.2-1.5,4.3-2.3c1.1,0.9,2.5,1.7,4.3,2.3l0.7-1.9c-1.4-0.5-2.6-1.2-3.5-1.8c1.9-2,2.5-4.1,2.7-5.3H14z" }), children);
170
+ });
171
+ if (process.env.NODE_ENV !== "production") IbmWatsonLanguageTranslator.propTypes = require_iconPropTypes.iconPropTypes;
172
+ const IbmWatsonMachineLearning = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonMachineLearning({ children, size = 16, ...rest }, ref) {
173
+ return react.default.createElement(require_Icon.Icon, {
174
+ width: size,
175
+ height: size,
176
+ ref,
177
+ xmlns: "http://www.w3.org/2000/svg",
178
+ viewBox: "0 0 32 32",
179
+ fill: "currentColor",
180
+ ...rest
181
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3.6,22.5c-1-2-1.6-4.2-1.6-6.5C2,8.3,8.3,2,16,2v2C9.4,4,4,9.4,4,16c0,2,0.5,3.8,1.4,5.5L3.6,22.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16c0,6.6-5.4,12-12,12c-2.9,0-5.6-1-7.7-2.8l5.7-5.7L12.6,18l-6.5,6.5c-0.4,0.4-0.4,1,0,1.4C8.7,28.5,12.3,30,16,30 c7.7,0,14-6.3,14-14H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,25c-0.1,0-0.3,0-0.4-0.1c-0.3-0.1-0.6-0.4-0.6-0.8l-0.7-5l2-0.3l0.4,3.3l2.2-1.7V15c0-0.3,0.1-0.5,0.3-0.7l3.2-3.2 c0.9-0.9,1.5-2.2,1.5-3.5V6l-1.5,0c-1.3,0-2.6,0.5-3.5,1.5l-3.2,3.2C17.5,10.9,17.3,11,17,11h-5.5l-1.7,2.2l3.3,0.4l-0.3,2l-5-0.7 c-0.4,0-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l3-4C10.4,9.1,10.7,9,11,9h5.6l3-3c1.3-1.3,3.1-2,4.9-2H26c1.1,0,2,0.9,2,2v1.5 c0,1.9-0.7,3.6-2,4.9l-3,3V21c0,0.3-0.1,0.6-0.4,0.8l-4,3C18.4,24.9,18.2,25,18,25z" }), children);
182
+ });
183
+ if (process.env.NODE_ENV !== "production") IbmWatsonMachineLearning.propTypes = require_iconPropTypes.iconPropTypes;
184
+ const IbmWatsonNaturalLanguageClassifier = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonNaturalLanguageClassifier({ children, size = 16, ...rest }, ref) {
185
+ return react.default.createElement(require_Icon.Icon, {
186
+ width: size,
187
+ height: size,
188
+ ref,
189
+ xmlns: "http://www.w3.org/2000/svg",
190
+ viewBox: "0 0 32 32",
191
+ fill: "currentColor",
192
+ ...rest
193
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h1v4h-3v2h8v-2h-3v-4H28z M24,4h4v6h-4V4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 22.4 19.6 21 16 24.6 12.4 21 11 22.4 14.6 26 11 29.6 12.4 31 16 27.4 19.6 31 21 29.6 17.4 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 18 15 18 15 21 17 21 17 18 20 18 20 16 12 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,12V4c0-1.1-0.9-2-2-2H3v2h5v2H4C2.9,6,2,6.9,2,8v2c0,1.1,0.9,2,2,2h1v4H2v2h8v-2H7v-4H10z M4,8h4v2H4V8z" }), children);
194
+ });
195
+ if (process.env.NODE_ENV !== "production") IbmWatsonNaturalLanguageClassifier.propTypes = require_iconPropTypes.iconPropTypes;
196
+ const IbmWatsonNaturalLanguageUnderstanding = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonNaturalLanguageUnderstanding({ children, size = 16, ...rest }, ref) {
197
+ return react.default.createElement(require_Icon.Icon, {
198
+ width: size,
199
+ height: size,
200
+ ref,
201
+ xmlns: "http://www.w3.org/2000/svg",
202
+ viewBox: "0 0 32 32",
203
+ fill: "currentColor",
204
+ ...rest
205
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 23H11V25H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 19H11V21H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30H4c-1.1,0-2-0.9-2-2V17c0-1.1,0.9-2,2-2h9c1.1,0,2,0.9,2,2v11C15,29.1,14.1,30,13,30z M4,17v11h9V17H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 2H27V4H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 6H30V8H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 10H30V12H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 14H27V16H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 18H30V20H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,1l-1.4,1.4L13.2,5H4C2.9,5,2,5.9,2,7v5h2V7h9.2l-2.6,2.6L12,11l5-5L12,1z" }), children);
206
+ });
207
+ if (process.env.NODE_ENV !== "production") IbmWatsonNaturalLanguageUnderstanding.propTypes = require_iconPropTypes.iconPropTypes;
208
+ const IbmWatsonOpenscale = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonOpenscale({ children, size = 16, ...rest }, ref) {
209
+ return react.default.createElement(require_Icon.Icon, {
210
+ width: size,
211
+ height: size,
212
+ ref,
213
+ xmlns: "http://www.w3.org/2000/svg",
214
+ viewBox: "0 0 32 32",
215
+ fill: "currentColor",
216
+ ...rest
217
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,28c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S5.7,28,4,28z M4,24c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,24,4,24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,28c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S29.7,28,28,28z M28,24c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S28.6,24,28,24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.4,4.4l-0.9,1.8C26.1,8.4,29,13,29,18c0,0.7-0.1,1.4-0.2,2.1l2,0.3c0.1-0.8,0.2-1.6,0.2-2.5C31,12.2,27.6,6.9,22.4,4.4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S17.7,7,16,7z M16,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,3,16,3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.5,13.6l-1-1.7L17,16.3V9h-2v7.2L6.2,11c-0.5-0.3-1.1-0.1-1.4,0.3s-0.1,1.1,0.3,1.4L14,18l-6.2,3.6l1,1.7l6.2-3.6V30 c0,0.6,0.4,1,1,1s1-0.4,1-1V19.8l6.2,3.7l1-1.7L18,18L25.5,13.6z" }), children);
218
+ });
219
+ if (process.env.NODE_ENV !== "production") IbmWatsonOpenscale.propTypes = require_iconPropTypes.iconPropTypes;
220
+ const IbmWatsonOrders = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonOrders({ children, size = 16, ...rest }, ref) {
221
+ return react.default.createElement(require_Icon.Icon, {
222
+ width: size,
223
+ height: size,
224
+ ref,
225
+ xmlns: "http://www.w3.org/2000/svg",
226
+ viewBox: "0 0 32 32",
227
+ fill: "currentColor",
228
+ ...rest
229
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,13h-2v-2c0-2.8-2.2-5-5-5h-3V4h3c3.9,0,7,3.1,7,7V13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 20H25V22H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 24H25V26H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,30h-5v-2h5V18h-7v9c0,1.7-1.3,3-3,3s-3-1.3-3-3v-3h2v3c0,0.6,0.4,1,1,1s1-0.4,1-1V16h11v12C29,29.1,28.1,30,27,30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28h-1c-3.9,0-7-3.1-7-7v-4h2v4c0,2.8,2.2,5,5,5h1V28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,10v2h3c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v6c0,1.1,0.9,2,2,2h2.4l1.7,3l1.7-1l-2.3-4H4V4h10v6H11z" }), children);
230
+ });
231
+ if (process.env.NODE_ENV !== "production") IbmWatsonOrders.propTypes = require_iconPropTypes.iconPropTypes;
232
+ const IbmWatsonQuery = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonQuery({ children, size = 16, ...rest }, ref) {
233
+ return react.default.createElement(require_Icon.Icon, {
234
+ width: size,
235
+ height: size,
236
+ ref,
237
+ xmlns: "http://www.w3.org/2000/svg",
238
+ viewBox: "0 0 32 32",
239
+ fill: "currentColor",
240
+ ...rest
241
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24c-0.2,0-0.3,0-0.5,0L18.2,18c0.5-0.5,0.8-1.2,0.8-2c0-1.7-1.3-3-3-3s-3,1.3-3,3c0,0.8,0.3,1.5,0.8,2L10.5,24 c-0.2,0-0.3,0-0.5,0c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3c0-0.8-0.3-1.5-0.8-2l3.3-6.1c0.2,0,0.3,0,0.5,0s0.3,0,0.5,0l3.3,6.1 c-0.5,0.5-0.8,1.2-0.8,2c0,1.7,1.3,3,3,3s3-1.3,3-3S23.7,24,22,24z M16,15c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S15.4,15,16,15z M10,28c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S10.6,28,10,28z M22,28c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S22.6,28,22,28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8,9.1C23.9,5,20.3,2,16,2S8.1,5,7.2,9.1C4.2,9.7,2,12.4,2,15.5C2,19.1,4.9,22,8.5,22H9v-2H8.5C6,20,4,18,4,15.5 c0-2.3,1.8-4.3,4.1-4.5L9,11l0.1-0.8C9.5,6.6,12.5,4,16,4c3.5,0,6.5,2.6,6.9,6.1L23,11l0.8,0.1c2.3,0.2,4.1,2.2,4.1,4.5 c0,2.5-2,4.5-4.5,4.5H23v2h0.5c3.6,0,6.5-2.9,6.5-6.5C30,12.4,27.8,9.7,24.8,9.1z" }), children);
242
+ });
243
+ if (process.env.NODE_ENV !== "production") IbmWatsonQuery.propTypes = require_iconPropTypes.iconPropTypes;
244
+ const IbmWatsonSpeechToText = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonSpeechToText({ children, size = 16, ...rest }, ref) {
245
+ return react.default.createElement(require_Icon.Icon, {
246
+ width: size,
247
+ height: size,
248
+ ref,
249
+ xmlns: "http://www.w3.org/2000/svg",
250
+ viewBox: "0 0 32 32",
251
+ fill: "currentColor",
252
+ ...rest
253
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,18H4c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h2.4l1.7,3l1.7-1l-2.3-4H4v-6h10v6h-3v2h3c1.1,0,2-0.9,2-2v-6 C16,18.9,15.1,18,14,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,26h2c3.9,0,7-3.1,7-7v-2h-2v2c0,2.8-2.2,5-5,5h-2V26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 11H24V13H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 7H30V9H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 3H30V5H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,14h2v-2c0-2.8,2.2-5,5-5h4V5h-4c-3.9,0-7,3.1-7,7V14z" }), children);
254
+ });
255
+ if (process.env.NODE_ENV !== "production") IbmWatsonSpeechToText.propTypes = require_iconPropTypes.iconPropTypes;
256
+ const IbmWatsonStudio = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonStudio({ children, size = 16, ...rest }, ref) {
257
+ return react.default.createElement(require_Icon.Icon, {
33
258
  width: size,
34
259
  height: size,
35
260
  ref,
@@ -40,8 +265,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
40
265
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,21c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S27.8,21,25,21z M25,13c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S26.7,13,25,13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,11V6c0-1.1-0.9-2-2-2h-2v2h2v5c0,2.1,1.1,3.9,2.7,5c-1.6,1.1-2.7,2.9-2.7,5v5h-2v2h2c1.1,0,2-0.9,2-2v-5 c0-2.2,1.8-4,4-4v-2C15.8,15,14,13.2,14,11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,30v-6h6v6H2z M4,26v2h2v-2H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,19v-6h6v6H2z M4,15v2h2v-2H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,8V2h6v6H2z M4,4v2h2V4H4z" }), children);
41
266
  });
42
267
  if (process.env.NODE_ENV !== "production") IbmWatsonStudio.propTypes = require_iconPropTypes.iconPropTypes;
43
- const IbmWatsonTextToSpeech = react.default.forwardRef(function IbmWatsonTextToSpeech({ children, size = 16, ...rest }, ref) {
44
- return react.default.createElement(require_Icon_js, {
268
+ const IbmWatsonTextToSpeech = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonTextToSpeech({ children, size = 16, ...rest }, ref) {
269
+ return react.default.createElement(require_Icon.Icon, {
45
270
  width: size,
46
271
  height: size,
47
272
  ref,
@@ -52,8 +277,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
52
277
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,26h-2c-3.9,0-7-3.1-7-7v-2h2v2c0,2.8,2.2,5,5,5h2V26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,18h10c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2h-2.4l-1.7,3l-1.7-1l2.3-4H28v-6H18v6h3v2h-3c-1.1,0-2-0.9-2-2v-6 C16,18.9,16.9,18,18,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,14h-2v-2c0-2.8-2.2-5-5-5h-4V5h4c3.9,0,7,3.1,7,7V14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11H8V13H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 7H14V9H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 3H14V5H2z" }), children);
53
278
  });
54
279
  if (process.env.NODE_ENV !== "production") IbmWatsonTextToSpeech.propTypes = require_iconPropTypes.iconPropTypes;
55
- const IbmWatsonToneAnalyzer = react.default.forwardRef(function IbmWatsonToneAnalyzer({ children, size = 16, ...rest }, ref) {
56
- return react.default.createElement(require_Icon_js, {
280
+ const IbmWatsonToneAnalyzer = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonToneAnalyzer({ children, size = 16, ...rest }, ref) {
281
+ return react.default.createElement(require_Icon.Icon, {
57
282
  width: size,
58
283
  height: size,
59
284
  ref,
@@ -80,8 +305,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
80
305
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.1,26H5c-0.6,0-1-0.4-1-1V14c0-0.6,0.4-1,1-1h5v-2H5c-1.7,0-3,1.3-3,3v11c0,1.7,1.3,3,3,3h4l2.3,4l1.7-1L10.1,26z" }), children);
81
306
  });
82
307
  if (process.env.NODE_ENV !== "production") IbmWatsonToneAnalyzer.propTypes = require_iconPropTypes.iconPropTypes;
83
- const IbmWatsonxAssistant = react.default.forwardRef(function IbmWatsonxAssistant({ children, size = 16, ...rest }, ref) {
84
- return react.default.createElement(require_Icon_js, {
308
+ const IbmWatsonxAssistant = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxAssistant({ children, size = 16, ...rest }, ref) {
309
+ return react.default.createElement(require_Icon.Icon, {
85
310
  width: size,
86
311
  height: size,
87
312
  ref,
@@ -104,8 +329,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
104
329
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,26h-6c-2.2091,0-4-1.7909-4-4v-10c0-2.2091,1.7909-4,4-4h8v2H6c-1.1046,0-2,.8954-2,2v10c0,1.1046.8954,2,2,2h6v2Z" }), children);
105
330
  });
106
331
  if (process.env.NODE_ENV !== "production") IbmWatsonxAssistant.propTypes = require_iconPropTypes.iconPropTypes;
107
- const IbmWatsonxCodeAssistant = react.default.forwardRef(function IbmWatsonxCodeAssistant({ children, size = 16, ...rest }, ref) {
108
- return react.default.createElement(require_Icon_js, {
332
+ const IbmWatsonxCodeAssistant = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxCodeAssistant({ children, size = 16, ...rest }, ref) {
333
+ return react.default.createElement(require_Icon.Icon, {
109
334
  width: size,
110
335
  height: size,
111
336
  ref,
@@ -132,8 +357,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
132
357
  }), children);
133
358
  });
134
359
  if (process.env.NODE_ENV !== "production") IbmWatsonxCodeAssistant.propTypes = require_iconPropTypes.iconPropTypes;
135
- const IbmWatsonxCodeAssistantForEnterpriseJavaApplications = react.default.forwardRef(function IbmWatsonxCodeAssistantForEnterpriseJavaApplications({ children, size = 16, ...rest }, ref) {
136
- return react.default.createElement(require_Icon_js, {
360
+ const IbmWatsonxCodeAssistantForEnterpriseJavaApplications = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxCodeAssistantForEnterpriseJavaApplications({ children, size = 16, ...rest }, ref) {
361
+ return react.default.createElement(require_Icon.Icon, {
137
362
  width: size,
138
363
  height: size,
139
364
  ref,
@@ -144,8 +369,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
144
369
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9916,19h-2v-7c0-2.7614-2.2386-5-5-5h-8.9948v-2h8.9948c3.866,0,7,3.134,7,7v7ZM11.9916,28h-3c-3.86,0-7-3.14-7-7v-5h2v5c0,2.757,2.243,5,5,5h3v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.9916,14h-4c-1.103,0-2-.897-2-2v-2h2v2h4V2h2v10c0,1.103-.897,2-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.15,26l-2.58,2.58,1.41,1.42,4-4-4-4-1.42,1.41,2.59,2.59ZM16.81,26l2.58-2.58-1.41-1.42-4,4,4,4,1.42-1.41-2.59-2.59ZM21.98,31l-1.915-.577,2.915-9.423,1.915.577-2.915,9.423Z" }), children);
145
370
  });
146
371
  if (process.env.NODE_ENV !== "production") IbmWatsonxCodeAssistantForEnterpriseJavaApplications.propTypes = require_iconPropTypes.iconPropTypes;
147
- const IbmWatsonxCodeAssistantForZ = react.default.forwardRef(function IbmWatsonxCodeAssistantForZ({ children, size = 16, ...rest }, ref) {
148
- return react.default.createElement(require_Icon_js, {
372
+ const IbmWatsonxCodeAssistantForZ = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxCodeAssistantForZ({ children, size = 16, ...rest }, ref) {
373
+ return react.default.createElement(require_Icon.Icon, {
149
374
  width: size,
150
375
  height: size,
151
376
  ref,
@@ -156,14 +381,14 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
156
381
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.17 25 26.59 27.58 28 29 32 25 28 21 26.58 22.41 29.17 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 30 21.0851 29.4229 24 20 25.9149 20.5771 23 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.83 25 20.41 22.42 19 21 15 25 19 29 20.42 27.59 17.83 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18,19h-2V5c0-1.1028.8972-2,2-2h9c1.1028,0,2,.8972,2,2v11h-2V5h-9v14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,3H3c-1.1028,0-2,.8975-2,2v22c0,1.1025.8972,2,2,2h9c1.1028,0,2-.8975,2-2V5c0-1.1025-.8972-2-2-2Zm.0002,7.0366l-6.925-5.0366h6.9248l.0002,5.0366Zm-.7004,1.9634l-8.2998,6.0361V5.9639l8.2998,6.0361Zm.7007,1.9634l.0007,11.8169-8.2795-5.7959,8.2788-6.021Zm-9.0005,7.9575l7.2563,5.0791H3v-5.0791Zm9,5.0791l.0012-.002v.002h-.0012Z" }), children);
157
382
  });
158
383
  if (process.env.NODE_ENV !== "production") IbmWatsonxCodeAssistantForZ.propTypes = require_iconPropTypes.iconPropTypes;
159
- const IbmWatsonxCodeAssistantForZRefactor = react.default.forwardRef(function IbmWatsonxCodeAssistantForZRefactor({ children, size = 16, ...rest }, ref) {
384
+ const IbmWatsonxCodeAssistantForZRefactor = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxCodeAssistantForZRefactor({ children, size = 16, ...rest }, ref) {
160
385
  if (process.env.NODE_ENV !== "production") {
161
386
  if (!didWarnAboutDeprecation["IbmWatsonxCodeAssistantForZRefactor"]) {
162
387
  didWarnAboutDeprecation["IbmWatsonxCodeAssistantForZRefactor"] = true;
163
388
  console.warn("Icon no longer relevant. watsonx Code Assistant for Z Refactoring Assistant has been merged into an existing product.. As a result, the IbmWatsonxCodeAssistantForZRefactor component will be removed in the next major version of @carbon/icons-react.");
164
389
  }
165
390
  }
166
- return react.default.createElement(require_Icon_js, {
391
+ return react.default.createElement(require_Icon.Icon, {
167
392
  width: size,
168
393
  height: size,
169
394
  ref,
@@ -182,8 +407,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
182
407
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,29h-6c-3.8594,0-7-3.1406-7-7v-12c0-3.8599,3.1406-7,7-7v2c-2.7568,0-5,2.2432-5,5v12c0,2.7568,2.2432,5,5,5h6v2Z" }), children);
183
408
  });
184
409
  if (process.env.NODE_ENV !== "production") IbmWatsonxCodeAssistantForZRefactor.propTypes = require_iconPropTypes.iconPropTypes;
185
- const IbmWatsonxCodeAssistantForZUnderstand = react.default.forwardRef(function IbmWatsonxCodeAssistantForZUnderstand({ children, size = 16, ...rest }, ref) {
186
- return react.default.createElement(require_Icon_js, {
410
+ const IbmWatsonxCodeAssistantForZUnderstand = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxCodeAssistantForZUnderstand({ children, size = 16, ...rest }, ref) {
411
+ return react.default.createElement(require_Icon.Icon, {
187
412
  width: size,
188
413
  height: size,
189
414
  ref,
@@ -194,8 +419,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
194
419
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.6,21.2c1.5-2,2.4-4.5,2.4-7.2,0-6.6-5.4-12-12-12-3.3,0-6.4,1.3-8.7,3.8l1.5,1.4c1.8-2.1,4.4-3.2,7.2-3.2,5.5,0,10,4.5,10,10s-4.5,10-10,10c-3,0-5.8-1.3-7.7-3.6l-1.5,1.3c2.2,2.7,5.6,4.3,9.2,4.3,3.2,0,6.1-1.3,8.3-3.3l7.3,7.3,1.4-1.4s-7.4-7.4-7.4-7.4ZM16,18l4-4-4-4-1.42,1.41,2.59,2.59-2.58,2.58,1.41,1.42ZM6,10l-4,4,4,4,1.42-1.41-2.59-2.59,2.58-2.58-1.41-1.42ZM11.3044,9l-2.5405,9.4824,1.9316.5176,2.5405-9.4824s-1.9316-.5176-1.9316-.5176Z" }), children);
195
420
  });
196
421
  if (process.env.NODE_ENV !== "production") IbmWatsonxCodeAssistantForZUnderstand.propTypes = require_iconPropTypes.iconPropTypes;
197
- const IbmWatsonxCodeAssistantForZValidationAssistant = react.default.forwardRef(function IbmWatsonxCodeAssistantForZValidationAssistant({ children, size = 16, ...rest }, ref) {
198
- return react.default.createElement(require_Icon_js, {
422
+ const IbmWatsonxCodeAssistantForZValidationAssistant = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxCodeAssistantForZValidationAssistant({ children, size = 16, ...rest }, ref) {
423
+ return react.default.createElement(require_Icon.Icon, {
199
424
  width: size,
200
425
  height: size,
201
426
  ref,
@@ -206,8 +431,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
206
431
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2c-7.73,0-14,6.2821-14,14.0269,0,5.0697,2.69,9.5082,6.71,11.9731l1.1-1.6632c-3.48-2.104-5.81-5.9314-5.81-10.3098,0-6.6428,5.37-12.0231,12-12.0231s12,5.396,12,12.0388h2c0-7.7449-6.27-14.0426-14-14.0426ZM14,21.414l-5-5.001,1.413-1.413,3.587,3.586,7.585-7.586,1.415,1.415-9,8.999ZM26.58,24.41l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM22.5,32l-1.9149-.5771,2.9149-9.4229,1.9149.5771-2.9149,9.4229ZM19.42,29.59l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59Z" }), children);
207
432
  });
208
433
  if (process.env.NODE_ENV !== "production") IbmWatsonxCodeAssistantForZValidationAssistant.propTypes = require_iconPropTypes.iconPropTypes;
209
- const IbmWatsonxOrchestrate = react.default.forwardRef(function IbmWatsonxOrchestrate({ children, size = 16, ...rest }, ref) {
210
- return react.default.createElement(require_Icon_js, {
434
+ const IbmWatsonxOrchestrate = /* @__PURE__ */ react.default.forwardRef(function IbmWatsonxOrchestrate({ children, size = 16, ...rest }, ref) {
435
+ return react.default.createElement(require_Icon.Icon, {
211
436
  width: size,
212
437
  height: size,
213
438
  ref,
@@ -230,8 +455,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
230
455
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1C9.4114,1,3.4988,5.4062,1.6213,11.7148l2.4539.8569c1.123-1.6104,2.9641-2.5718,4.9248-2.5718s3.8018.9614,4.9248,2.5718l1.6406-1.144c-1.4971-2.1465-3.9514-3.4277-6.5654-3.4277-1.4231,0-2.7925.3911-3.9922,1.0835,2.3442-3.6953,6.4814-6.0835,10.9922-6.0835,5.7104,0,10.8347,3.8184,12.4617,9.2852l1.917-.5703c-1.8774-6.3086-7.79-10.7148-14.3787-10.7148Z" }), children);
231
456
  });
232
457
  if (process.env.NODE_ENV !== "production") IbmWatsonxOrchestrate.propTypes = require_iconPropTypes.iconPropTypes;
233
- const IbmZCloudModStack = react.default.forwardRef(function IbmZCloudModStack({ children, size = 16, ...rest }, ref) {
234
- return react.default.createElement(require_Icon_js, {
458
+ const IbmZCloudModStack = /* @__PURE__ */ react.default.forwardRef(function IbmZCloudModStack({ children, size = 16, ...rest }, ref) {
459
+ return react.default.createElement(require_Icon.Icon, {
235
460
  width: size,
236
461
  height: size,
237
462
  ref,
@@ -242,8 +467,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
242
467
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.496,27.386L16,28.842L5,22.426v-5.852l10.016-5.843C15.308,10.897,15.641,11,16,11c1.104,0,2-0.896,2-2s-0.896-2-2-2 s-2,0.896-2,2c0,0.003,0.001,0.005,0.001,0.008L3.496,15.136C3.189,15.315,3,15.645,3,16v7c0,0.355,0.189,0.685,0.496,0.864l12,7 C15.652,30.955,15.826,31,16,31s0.348-0.045,0.504-0.136l3-1.75L18.496,27.386z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.504,8.136l-3-1.75l-1.008,1.728L27,9.574v12.852l-4.593,2.679l-10.409-6.093C11.999,19.007,12,19.004,12,19 c0-1.104-0.896-2-2-2s-2,0.896-2,2s0.896,2,2,2c0.358,0,0.69-0.102,0.981-0.267l10.92,6.393c0.156,0.091,0.331,0.137,0.505,0.137 c0.174,0,0.348-0.045,0.504-0.136l5.594-3.263C28.811,23.685,29,23.355,29,23V9C29,8.645,28.811,8.315,28.504,8.136z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17.277V5.5c0-0.355-0.189-0.685-0.496-0.864l-6-3.5C16.348,1.045,16.174,1,16,1s-0.348,0.045-0.504,0.136l-12,7 C3.189,8.315,3,8.645,3,9v2.999h2V9.574l11-6.417l5,2.917v11.203c-0.595,0.347-1,0.984-1,1.723c0,1.104,0.896,2,2,2s2-0.896,2-2 C24,18.262,23.595,17.624,23,17.277z" }), children);
243
468
  });
244
469
  if (process.env.NODE_ENV !== "production") IbmZCloudModStack.propTypes = require_iconPropTypes.iconPropTypes;
245
- const IbmZEnvironmentsDevSecOps = react.default.forwardRef(function IbmZEnvironmentsDevSecOps({ children, size = 16, ...rest }, ref) {
246
- return react.default.createElement(require_Icon_js, {
470
+ const IbmZEnvironmentsDevSecOps = /* @__PURE__ */ react.default.forwardRef(function IbmZEnvironmentsDevSecOps({ children, size = 16, ...rest }, ref) {
471
+ return react.default.createElement(require_Icon.Icon, {
247
472
  width: size,
248
473
  height: size,
249
474
  ref,
@@ -254,8 +479,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
254
479
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23.5,16v2c3.0327,0,5.5,2.4673,5.5,5.5s-2.4673,5.5-5.5,5.5-5.5-2.4673-5.5-5.5h-2c0,4.1422,3.3578,7.5,7.5,7.5s7.5-3.3578,7.5-7.5-3.3578-7.5-7.5-7.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23.5,26c1.3807,0,2.5-1.1193,2.5-2.5s-1.1193-2.5-2.5-2.5c-.3217,0-.6268.066-.9093.1766l-4.8837-4.8837-1.4141,1.4141,4.8837,4.8837c-.1107.2825-.1766.5876-.1766.9093,0,1.3807,1.1193,2.5,2.5,2.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29,13h-2v-3.4257l-11-6.4166-3,1.7499v8.0924h-2V4.3333c0-.3557.189-.6846.4961-.8638l4-2.3333c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12,7c.3071.1792.4961.5081.4961.8638v4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 6H9V16H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m13.9998,29.991l-10.5037-6.1272c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l10.0076,5.8378-1.0078,1.7275Z" }), children);
255
480
  });
256
481
  if (process.env.NODE_ENV !== "production") IbmZEnvironmentsDevSecOps.propTypes = require_iconPropTypes.iconPropTypes;
257
- const IbmZOpenEditor = react.default.forwardRef(function IbmZOpenEditor({ children, size = 16, ...rest }, ref) {
258
- return react.default.createElement(require_Icon_js, {
482
+ const IbmZOpenEditor = /* @__PURE__ */ react.default.forwardRef(function IbmZOpenEditor({ children, size = 16, ...rest }, ref) {
483
+ return react.default.createElement(require_Icon.Icon, {
259
484
  width: size,
260
485
  height: size,
261
486
  ref,
@@ -266,8 +491,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
266
491
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,13h-2v-3.4257l-11-6.4166-3,1.7499v8.0924h-2V4.3333c0-.3557.189-.6846.4961-.8638l4-2.3333c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12,7c.3071.1792.4961.5081.4961.8638v4ZM7,16h2V6h-2v10ZM15,28.2718l-10.0013-5.8403v-13.4315h-1.9987v14.006c0,.3559.1889.6849.4958.8642l10.4971,6.1298,1.0072-1.7282h-.0001ZM26,17l-1.4141,1.4141,3.5854,3.5859-3.5854,3.5859,1.4141,1.4141,5-5-5-5ZM15,22l5,5,1.4141-1.4141-3.5854-3.5859,3.5854-3.5859-1.4141-1.4141-5,5Z" }), children);
267
492
  });
268
493
  if (process.env.NODE_ENV !== "production") IbmZOpenEditor.propTypes = require_iconPropTypes.iconPropTypes;
269
- const IbmZProcessorCapacityReference = react.default.forwardRef(function IbmZProcessorCapacityReference({ children, size = 16, ...rest }, ref) {
270
- return react.default.createElement(require_Icon_js, {
494
+ const IbmZProcessorCapacityReference = /* @__PURE__ */ react.default.forwardRef(function IbmZProcessorCapacityReference({ children, size = 16, ...rest }, ref) {
495
+ return react.default.createElement(require_Icon.Icon, {
271
496
  width: size,
272
497
  height: size,
273
498
  ref,
@@ -278,8 +503,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
278
503
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 25H27V29H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 23H23V29H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 20H31V29H29z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,17V5c0-1.1046-.8954-2-2-2h-9c-1.1046,0-2,.8954-2,2v24h2V5h9v12h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m13,3H4c-1.1046,0-2,.8954-2,2v22c0,1.1046.8954,2,2,2h9c1.1046,0,2-.8954,2-2V5c0-1.1046-.8954-2-2-2Zm-9,2.9635l8.2998,6.0365-8.2998,6.0365V5.9635Zm0,21.0365v-5.0366l6.9253,5.0366h-6.9253Zm9-.9635l-8.2998-6.0365,8.2998-6.0365v12.073Zm0-15.9999l-6.9253-5.0366h6.9253v5.0366Z" }), children);
279
504
  });
280
505
  if (process.env.NODE_ENV !== "production") IbmZProcessorCapacityReference.propTypes = require_iconPropTypes.iconPropTypes;
281
- const IbmZCloudProvisioning = react.default.forwardRef(function IbmZCloudProvisioning({ children, size = 16, ...rest }, ref) {
282
- return react.default.createElement(require_Icon_js, {
506
+ const IbmZCloudProvisioning = /* @__PURE__ */ react.default.forwardRef(function IbmZCloudProvisioning({ children, size = 16, ...rest }, ref) {
507
+ return react.default.createElement(require_Icon.Icon, {
283
508
  width: size,
284
509
  height: size,
285
510
  ref,
@@ -290,8 +515,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
290
515
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 17H14V21H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 10H21V14H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 17H21V21H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.758,26.65L16,28.842L5,22.426V18H3v5c0,0.355,0.189,0.685,0.496,0.864l12,7C15.652,30.955,15.826,31,16,31 s0.348-0.045,0.504-0.136l4.282-2.498L19.758,26.65z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.504,8.136l-4.269-2.49l-1.029,1.715L27,9.574v12.852l-3.787,2.209l1.029,1.715l4.262-2.486 C28.811,23.685,29,23.355,29,23V9C29,8.645,28.811,8.315,28.504,8.136z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,9.574l11-6.417l3.751,2.188L20.78,3.63l-4.276-2.494C16.348,1.045,16.174,1,16,1s-0.348,0.045-0.504,0.136l-12,7 C3.189,8.315,3,8.645,3,9v5h2V9.574z" }), children);
291
516
  });
292
517
  if (process.env.NODE_ENV !== "production") IbmZCloudProvisioning.propTypes = require_iconPropTypes.iconPropTypes;
293
- const IbmZOs = react.default.forwardRef(function IbmZOs({ children, size = 16, ...rest }, ref) {
294
- return react.default.createElement(require_Icon_js, {
518
+ const IbmZOs = /* @__PURE__ */ react.default.forwardRef(function IbmZOs({ children, size = 16, ...rest }, ref) {
519
+ return react.default.createElement(require_Icon.Icon, {
295
520
  width: size,
296
521
  height: size,
297
522
  ref,
@@ -302,8 +527,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
302
527
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,32c-5.0793,0-9.7449-2.3319-12.7998-6.3979l1.5991-1.2014c2.6736,3.5585,6.7561,5.5994,11.2007,5.5994s8.5281-2.0413,11.2014-5.6005l1.5991,1.2012c-3.0547,4.0668-7.7202,6.3993-12.8005,6.3993Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,22h-5v-2h5v-3h-3c-1.1028,0-2-.8972-2-2v-3c0-1.1028.8972-2,2-2h5v2h-5v3h3c1.1028,0,2,.8972,2,2v3c0,1.1028-.8972,2-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21,22h-4c-1.1028,0-2-.8972-2-2v-8c0-1.1028.8972-2,2-2h4c1.1028,0,2,.8972,2,2v8c0,1.1028-.8972,2-2,2Zm-4-10v8h4v-8h-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.4458 10 7.4458 22 9.5542 22 13.5542 10 11.4458 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 22 0 22 0 19.6973 3.7981 14 0 14 0 12 6 12 6 14.3027 2.2019 20 6 20 6 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16.0001,0C10.9207,0,6.2552,2.3319,3.2003,6.3979l1.5991,1.2014c2.6736-3.5585,6.7561-5.5994,11.2007-5.5994s8.5281,2.0413,11.2014,5.6005l1.5991-1.2012C25.7459,2.3325,21.0804,0,16.0001,0Z" }), children);
303
528
  });
304
529
  if (process.env.NODE_ENV !== "production") IbmZOs.propTypes = require_iconPropTypes.iconPropTypes;
305
- const IbmZOsAiControlInterface = react.default.forwardRef(function IbmZOsAiControlInterface({ children, size = 16, ...rest }, ref) {
306
- return react.default.createElement(require_Icon_js, {
530
+ const IbmZOsAiControlInterface = /* @__PURE__ */ react.default.forwardRef(function IbmZOsAiControlInterface({ children, size = 16, ...rest }, ref) {
531
+ return react.default.createElement(require_Icon.Icon, {
307
532
  width: size,
308
533
  height: size,
309
534
  ref,
@@ -328,8 +553,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
328
553
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M0 10H5V12H0z" }), children);
329
554
  });
330
555
  if (process.env.NODE_ENV !== "production") IbmZOsAiControlInterface.propTypes = require_iconPropTypes.iconPropTypes;
331
- const IbmZOsContainers = react.default.forwardRef(function IbmZOsContainers({ children, size = 16, ...rest }, ref) {
332
- return react.default.createElement(require_Icon_js, {
556
+ const IbmZOsContainers = /* @__PURE__ */ react.default.forwardRef(function IbmZOsContainers({ children, size = 16, ...rest }, ref) {
557
+ return react.default.createElement(require_Icon.Icon, {
333
558
  width: size,
334
559
  height: size,
335
560
  ref,
@@ -340,8 +565,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
340
565
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29,12h-9V3h9v9Zm-7-2h5v-5h-5v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20,15v2h7v10h-10V3H5c-1.1028,0-2,.8975-2,2v22c0,1.1025.8972,2,2,2h22c1.1028,0,2-.8975,2-2v-12h-9Zm-13.5859,2h8.5859v8.5859l-8.5859-8.5859Zm8.5859-2H6.4141L15,6.4141v8.5859Zm-1.4141-10L5,13.5859V5h8.5859Zm-8.5859,13.4141l8.5859,8.5859H5v-8.5859Z" }), children);
341
566
  });
342
567
  if (process.env.NODE_ENV !== "production") IbmZOsContainers.propTypes = require_iconPropTypes.iconPropTypes;
343
- const IbmZOsPackageManager = react.default.forwardRef(function IbmZOsPackageManager({ children, size = 16, ...rest }, ref) {
344
- return react.default.createElement(require_Icon_js, {
568
+ const IbmZOsPackageManager = /* @__PURE__ */ react.default.forwardRef(function IbmZOsPackageManager({ children, size = 16, ...rest }, ref) {
569
+ return react.default.createElement(require_Icon.Icon, {
345
570
  width: size,
346
571
  height: size,
347
572
  ref,
@@ -352,8 +577,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
352
577
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,9v10.172l-2.586-2.586L11,18l5,5l5-5l-1.414-1.414L17,19.172V9H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.758,26.65L16,28.842L5,22.426V18H3v5c0,0.355,0.189,0.685,0.496,0.864l12,7C15.652,30.955,15.826,31,16,31 s0.348-0.045,0.504-0.136l4.282-2.498L19.758,26.65z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.504,8.136l-4.269-2.49l-1.029,1.715L27,9.574v12.852l-3.787,2.209l1.029,1.715l4.262-2.486 C28.811,23.685,29,23.355,29,23V9C29,8.645,28.811,8.315,28.504,8.136z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,9.574l11-6.417l3.751,2.188L20.78,3.63l-4.276-2.494C16.348,1.045,16.174,1,16,1s-0.348,0.045-0.504,0.136l-12,7 C3.189,8.315,3,8.645,3,9v5h2V9.574z" }), children);
353
578
  });
354
579
  if (process.env.NODE_ENV !== "production") IbmZOsPackageManager.propTypes = require_iconPropTypes.iconPropTypes;
355
- const WatsonHealthICa_2D = react.default.forwardRef(function WatsonHealthICa_2D({ children, size = 16, ...rest }, ref) {
356
- return react.default.createElement(require_Icon_js, {
580
+ const WatsonHealthICa_2D = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthICa_2D({ children, size = 16, ...rest }, ref) {
581
+ return react.default.createElement(require_Icon.Icon, {
357
582
  width: size,
358
583
  height: size,
359
584
  ref,
@@ -364,8 +589,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
364
589
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24H10a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2H22a2.0023,2.0023,0,0,1,2,2V22A2.0023,2.0023,0,0,1,22,24ZM10,10V22H22V10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2 2 2 2 11 4 11 4 4 11 4 11 2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 21 2 30 11 30 11 28 4 28 4 21 2 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11 30 2 21 2 21 4 28 4 28 11 30 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 30 30 30 30 21 28 21 28 28 21 28 21 30z" }), children);
365
590
  });
366
591
  if (process.env.NODE_ENV !== "production") WatsonHealthICa_2D.propTypes = require_iconPropTypes.iconPropTypes;
367
- const IceAccretion = react.default.forwardRef(function IceAccretion({ children, size = 16, ...rest }, ref) {
368
- return react.default.createElement(require_Icon_js, {
592
+ const IceAccretion = /* @__PURE__ */ react.default.forwardRef(function IceAccretion({ children, size = 16, ...rest }, ref) {
593
+ return react.default.createElement(require_Icon.Icon, {
369
594
  width: size,
370
595
  height: size,
371
596
  ref,
@@ -376,8 +601,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
376
601
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,2A2,2,0,0,0,2,4V20l1,2,1-2V4H8V14l1,2,1-2V2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H14v8l1,2,1-2V4h2V17l1,2,1-2V4h4V14l1,2,1-2V4h2V24l1,2,1-2V4A2,2,0,0,0,28,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 28 13 30 12 28 12 16 14 16 14 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 26 23 28 22 26 22 20 24 20 24 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 24 7 26 6 24 6 18 8 18 8 24z" }), children);
377
602
  });
378
603
  if (process.env.NODE_ENV !== "production") IceAccretion.propTypes = require_iconPropTypes.iconPropTypes;
379
- const IceVision = react.default.forwardRef(function IceVision({ children, size = 16, ...rest }, ref) {
380
- return react.default.createElement(require_Icon_js, {
604
+ const IceVision = /* @__PURE__ */ react.default.forwardRef(function IceVision({ children, size = 16, ...rest }, ref) {
605
+ return react.default.createElement(require_Icon.Icon, {
381
606
  width: size,
382
607
  height: size,
383
608
  ref,
@@ -388,8 +613,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
388
613
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 14 19 21 20 23 21 21 21 14 19 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,14H13a2,2,0,0,0-2,2v4l1,2,1-2V16h2v7l1,2,1-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" }), children);
389
614
  });
390
615
  if (process.env.NODE_ENV !== "production") IceVision.propTypes = require_iconPropTypes.iconPropTypes;
391
- const QID = react.default.forwardRef(function QID({ children, size = 16, ...rest }, ref) {
392
- return react.default.createElement(require_Icon_js, {
616
+ const QID = /* @__PURE__ */ react.default.forwardRef(function QID({ children, size = 16, ...rest }, ref) {
617
+ return react.default.createElement(require_Icon.Icon, {
393
618
  width: size,
394
619
  height: size,
395
620
  ref,
@@ -400,8 +625,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
400
625
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9H12V11H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23H14V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,18,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13H12V23H10z" }), children);
401
626
  });
402
627
  if (process.env.NODE_ENV !== "production") QID.propTypes = require_iconPropTypes.iconPropTypes;
403
- const IdManagement = react.default.forwardRef(function IdManagement({ children, size = 16, ...rest }, ref) {
404
- return react.default.createElement(require_Icon_js, {
628
+ const IdManagement = /* @__PURE__ */ react.default.forwardRef(function IdManagement({ children, size = 16, ...rest }, ref) {
629
+ return react.default.createElement(require_Icon.Icon, {
405
630
  width: size,
406
631
  height: size,
407
632
  ref,
@@ -412,8 +637,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
412
637
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,20H9a3,3,0,0,0-3,3v2H8V23a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V23A3,3,0,0,0,15,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,19a4,4,0,1,0-4-4A4,4,0,0,0,12,19Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,12,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,19v9H4V8H16V6H4A2,2,0,0,0,2,8V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 19H26V21H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 23H26V25H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32,10V8H29.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,26,4.1011V2H24V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,20.1011,8H18v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,24,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,29.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,12Z" }), children);
413
638
  });
414
639
  if (process.env.NODE_ENV !== "production") IdManagement.propTypes = require_iconPropTypes.iconPropTypes;
415
- const Idea = react.default.forwardRef(function Idea({ children, size = 16, ...rest }, ref) {
416
- return react.default.createElement(require_Icon_js, {
640
+ const Idea = /* @__PURE__ */ react.default.forwardRef(function Idea({ children, size = 16, ...rest }, ref) {
641
+ return react.default.createElement(require_Icon.Icon, {
417
642
  width: size,
418
643
  height: size,
419
644
  ref,
@@ -424,8 +649,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
424
649
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 24H21V26H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 28H19V30H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A10,10,0,0,0,6,12a9.19,9.19,0,0,0,3.46,7.62c1,.93,1.54,1.46,1.54,2.38h2c0-1.84-1.11-2.87-2.19-3.86A7.2,7.2,0,0,1,8,12a8,8,0,0,1,16,0,7.2,7.2,0,0,1-2.82,6.14c-1.07,1-2.18,2-2.18,3.86h2c0-.92.53-1.45,1.54-2.39A9.18,9.18,0,0,0,26,12,10,10,0,0,0,16,2Z" }), children);
425
650
  });
426
651
  if (process.env.NODE_ENV !== "production") Idea.propTypes = require_iconPropTypes.iconPropTypes;
427
- const Identification = react.default.forwardRef(function Identification({ children, size = 16, ...rest }, ref) {
428
- return react.default.createElement(require_Icon_js, {
652
+ const Identification = /* @__PURE__ */ react.default.forwardRef(function Identification({ children, size = 16, ...rest }, ref) {
653
+ return react.default.createElement(require_Icon.Icon, {
429
654
  width: size,
430
655
  height: size,
431
656
  ref,
@@ -436,8 +661,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
436
661
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6V26H4V6H28m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 10H13V12H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 14H10V16H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,18H17a3,3,0,0,0-3,3v2h2V21a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V21A3,3,0,0,0,23,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,17a4,4,0,1,0-4-4A4,4,0,0,0,20,17Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,20,11Z" }), children);
437
662
  });
438
663
  if (process.env.NODE_ENV !== "production") Identification.propTypes = require_iconPropTypes.iconPropTypes;
439
- const IfAction = react.default.forwardRef(function IfAction({ children, size = 16, ...rest }, ref) {
440
- return react.default.createElement(require_Icon_js, {
664
+ const IfAction = /* @__PURE__ */ react.default.forwardRef(function IfAction({ children, size = 16, ...rest }, ref) {
665
+ return react.default.createElement(require_Icon.Icon, {
441
666
  width: size,
442
667
  height: size,
443
668
  ref,
@@ -448,8 +673,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
448
673
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,2h-10C6,2,2,6,2,11v10c0,5,4,9,9,9h10c5,0,9-4,9-9v-10c0-5-4-9-9-9ZM28,21c0,3.9-3.1,7-7,7h-10c-3.9,0-7-3.1-7-7v-10c0-3.9,3.1-7,7-7h10c3.9,0,7,3.1,7,7v10ZM9.8755,22v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM17.959,14.7363h-1.3242v-1.7363h1.3242v-1.2666c0-1.582.8599-2.459,2.4761-2.459h1.5649v1.7539h-1.8398v1.9717h1.8398v1.7363h-1.8398v7.2637h-2.2012v-7.2637Z" }), children);
449
674
  });
450
675
  if (process.env.NODE_ENV !== "production") IfAction.propTypes = require_iconPropTypes.iconPropTypes;
451
- const IfElse = react.default.forwardRef(function IfElse({ children, size = 16, ...rest }, ref) {
452
- return react.default.createElement(require_Icon_js, {
676
+ const IfElse = /* @__PURE__ */ react.default.forwardRef(function IfElse({ children, size = 16, ...rest }, ref) {
677
+ return react.default.createElement(require_Icon.Icon, {
453
678
  width: size,
454
679
  height: size,
455
680
  ref,
@@ -460,8 +685,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
460
685
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,26l-5-5,1.4-1.4,2.6,2.6v-12.2h-14.8l-2.2,2.2v13.9l2.6-2.6,1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6v-13.9l-3.2-3.2,3.2-3.2v-3.8h2v3.8l2.2,2.2h16.8v14.2l2.6-2.6,1.4,1.4-5,5Z" }), children);
461
686
  });
462
687
  if (process.env.NODE_ENV !== "production") IfElse.propTypes = require_iconPropTypes.iconPropTypes;
463
- const Image = react.default.forwardRef(function Image({ children, size = 16, ...rest }, ref) {
464
- return react.default.createElement(require_Icon_js, {
688
+ const Image = /* @__PURE__ */ react.default.forwardRef(function Image({ children, size = 16, ...rest }, ref) {
689
+ return react.default.createElement(require_Icon.Icon, {
465
690
  width: size,
466
691
  height: size,
467
692
  ref,
@@ -472,8 +697,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
472
697
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,14a3,3,0,1,0-3-3A3,3,0,0,0,19,14Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,19,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,22H6V20l5-5,5.59,5.59a2,2,0,0,0,2.82,0L21,19l5,5Zm0-4.83-3.59-3.59a2,2,0,0,0-2.82,0L18,19.17l-5.59-5.59a2,2,0,0,0-2.82,0L6,17.17V6H26Z" }), children);
473
698
  });
474
699
  if (process.env.NODE_ENV !== "production") Image.propTypes = require_iconPropTypes.iconPropTypes;
475
- const ImageCopy = react.default.forwardRef(function ImageCopy({ children, size = 16, ...rest }, ref) {
476
- return react.default.createElement(require_Icon_js, {
700
+ const ImageCopy = /* @__PURE__ */ react.default.forwardRef(function ImageCopy({ children, size = 16, ...rest }, ref) {
701
+ return react.default.createElement(require_Icon.Icon, {
477
702
  width: size,
478
703
  height: size,
479
704
  ref,
@@ -484,8 +709,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
484
709
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,22H2V4A2.0023,2.0023,0,0,1,4,2H22V4H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,17a3,3,0,1,0-3-3A3.0033,3.0033,0,0,0,21,17Zm0-4a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,7H9A2.0025,2.0025,0,0,0,7,9V28a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V9A2.0025,2.0025,0,0,0,28,7Zm0,21H9v-6l4-3.9971,5.5859,5.586a2,2,0,0,0,2.8282,0L23,22.0034,28,27Zm0-3.8281-3.5859-3.586a2,2,0,0,0-2.8282,0L20,22.1719l-5.5859-5.586a2,2,0,0,0-2.8282,0L9,19.1719V9H28Z" }), children);
485
710
  });
486
711
  if (process.env.NODE_ENV !== "production") ImageCopy.propTypes = require_iconPropTypes.iconPropTypes;
487
- const ImageMedical = react.default.forwardRef(function ImageMedical({ children, size = 16, ...rest }, ref) {
488
- return react.default.createElement(require_Icon_js, {
712
+ const ImageMedical = /* @__PURE__ */ react.default.forwardRef(function ImageMedical({ children, size = 16, ...rest }, ref) {
713
+ return react.default.createElement(require_Icon.Icon, {
489
714
  width: size,
490
715
  height: size,
491
716
  ref,
@@ -496,8 +721,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
496
721
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6V26H6V6H26m0-2H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 16 22 14 17 14 17 12 20 12 20 10 17 10 17 8 15 8 15 10 12 10 12 12 15 12 15 14 10 14 10 16 15 16 15 18 10 18 10 20 15 20 15 22 12 22 12 24 20 24 20 22 17 22 17 20 22 20 22 18 17 18 17 16 22 16z" }), children);
497
722
  });
498
723
  if (process.env.NODE_ENV !== "production") ImageMedical.propTypes = require_iconPropTypes.iconPropTypes;
499
- const ImageReference = react.default.forwardRef(function ImageReference({ children, size = 16, ...rest }, ref) {
500
- return react.default.createElement(require_Icon_js, {
724
+ const ImageReference = /* @__PURE__ */ react.default.forwardRef(function ImageReference({ children, size = 16, ...rest }, ref) {
725
+ return react.default.createElement(require_Icon.Icon, {
501
726
  width: size,
502
727
  height: size,
503
728
  ref,
@@ -508,8 +733,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
508
733
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,14a3,3,0,1,0-3-3A3,3,0,0,0,19,14Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,19,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6V16H6V6H26V21.17l-3.59-3.59a2,2,0,0,0-2.82,0L18,19.17,11.8308,13l-1.4151,1.4155L14,18l2.59,2.59a2,2,0,0,0,2.82,0L21,19l5,5v2H16v2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Z" }), children);
509
734
  });
510
735
  if (process.env.NODE_ENV !== "production") ImageReference.propTypes = require_iconPropTypes.iconPropTypes;
511
- const ImageSearch = react.default.forwardRef(function ImageSearch({ children, size = 16, ...rest }, ref) {
512
- return react.default.createElement(require_Icon_js, {
736
+ const ImageSearch = /* @__PURE__ */ react.default.forwardRef(function ImageSearch({ children, size = 16, ...rest }, ref) {
737
+ return react.default.createElement(require_Icon.Icon, {
513
738
  width: size,
514
739
  height: size,
515
740
  ref,
@@ -520,8 +745,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
520
745
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14a5.99,5.99,0,0,0-4.885,9.4712L14,28.5859,15.4141,30l5.1147-5.1147A5.9971,5.9971,0,1,0,24,14Zm0,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,12a3,3,0,1,0-3-3A3.0033,3.0033,0,0,0,17,12Zm0-4a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,17,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,24H4V17.9966L9,13l5.5859,5.5859L16,17.168l-5.5859-5.5855a2,2,0,0,0-2.8282,0L4,15.168V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.002,2.002,0,0,0,2,4V24a2.0023,2.0023,0,0,0,2,2h8Z" }), children);
521
746
  });
522
747
  if (process.env.NODE_ENV !== "production") ImageSearch.propTypes = require_iconPropTypes.iconPropTypes;
523
- const ImageSearchAlt = react.default.forwardRef(function ImageSearchAlt({ children, size = 16, ...rest }, ref) {
524
- return react.default.createElement(require_Icon_js, {
748
+ const ImageSearchAlt = /* @__PURE__ */ react.default.forwardRef(function ImageSearchAlt({ children, size = 16, ...rest }, ref) {
749
+ return react.default.createElement(require_Icon.Icon, {
525
750
  width: size,
526
751
  height: size,
527
752
  ref,
@@ -532,8 +757,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
532
757
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16a5.9908,5.9908,0,0,0,9.4712,4.8853L24.5859,26,26,24.5859l-5.115-5.1147A5.997,5.997,0,1,0,10,16Zm2,0a4,4,0,1,1,4,4A4.0045,4.0045,0,0,1,12,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,7H22.54L20.83,4.45A.9946.9946,0,0,0,20,4H12a.9946.9946,0,0,0-.83.45L9.46,7H3A1.0031,1.0031,0,0,0,2,8V25a1.0031,1.0031,0,0,0,1,1h9V24H4V9h6a.9946.9946,0,0,0,.83-.45L12.54,6h6.92l1.71,2.55A.9946.9946,0,0,0,22,9h6V21h2V8A1.0031,1.0031,0,0,0,29,7Z" }), children);
533
758
  });
534
759
  if (process.env.NODE_ENV !== "production") ImageSearchAlt.propTypes = require_iconPropTypes.iconPropTypes;
535
- const WatsonHealthImageAvailabilityLocal = react.default.forwardRef(function WatsonHealthImageAvailabilityLocal({ children, size = 16, ...rest }, ref) {
536
- return react.default.createElement(require_Icon_js, {
760
+ const WatsonHealthImageAvailabilityLocal = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthImageAvailabilityLocal({ children, size = 16, ...rest }, ref) {
761
+ return react.default.createElement(require_Icon.Icon, {
537
762
  width: size,
538
763
  height: size,
539
764
  ref,
@@ -544,8 +769,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
544
769
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,18c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S18.8,18,16,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30l-8.4-9.9c0-0.1-0.3-0.5-0.3-0.5C5.8,17.7,5,15.4,5,13C5,6.9,9.9,2,16,2s11,4.9,11,11c0,2.4-0.8,4.7-2.2,6.6l0,0 c0,0-0.3,0.4-0.3,0.4L16,30z M8.8,18.4c0,0,0.2,0.3,0.3,0.4l6.9,8.1l6.9-8.1c0-0.1,0.3-0.4,0.3-0.4C24.4,16.8,25,15,25,13 c0-5-4-9-9-9s-9,4-9,9C7,15,7.6,16.8,8.8,18.4L8.8,18.4z" }), children);
545
770
  });
546
771
  if (process.env.NODE_ENV !== "production") WatsonHealthImageAvailabilityLocal.propTypes = require_iconPropTypes.iconPropTypes;
547
- const WatsonHealthImageAvailabilityRetrieving = react.default.forwardRef(function WatsonHealthImageAvailabilityRetrieving({ children, size = 16, ...rest }, ref) {
548
- return react.default.createElement(require_Icon_js, {
772
+ const WatsonHealthImageAvailabilityRetrieving = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthImageAvailabilityRetrieving({ children, size = 16, ...rest }, ref) {
773
+ return react.default.createElement(require_Icon.Icon, {
549
774
  width: size,
550
775
  height: size,
551
776
  ref,
@@ -556,8 +781,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
556
781
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13 11.4 11.6 15 15.2 15 2 17 2 17 15.2 20.6 11.6 22 13 16 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,2.8V5c3,1.5,5,4.5,5,8c0,2-0.6,3.8-1.8,5.4c0,0-0.2,0.3-0.3,0.4L16,26.9l-6.9-8.1c-0.1-0.1-0.3-0.4-0.3-0.4 C7.6,16.8,7,15,7,13c0-3.5,2-6.6,5-8V2.8C7.9,4.4,5,8.3,5,13c0,2.4,0.8,4.7,2.2,6.6c0,0,0.3,0.4,0.3,0.5L16,30l8.4-10 c0-0.1,0.3-0.4,0.3-0.4l0,0c1.4-1.9,2.2-4.2,2.2-6.6C27,8.3,24.1,4.4,20,2.8z" }), children);
557
782
  });
558
783
  if (process.env.NODE_ENV !== "production") WatsonHealthImageAvailabilityRetrieving.propTypes = require_iconPropTypes.iconPropTypes;
559
- const WatsonHealthImageAvailabilityUnavailable = react.default.forwardRef(function WatsonHealthImageAvailabilityUnavailable({ children, size = 16, ...rest }, ref) {
560
- return react.default.createElement(require_Icon_js, {
784
+ const WatsonHealthImageAvailabilityUnavailable = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthImageAvailabilityUnavailable({ children, size = 16, ...rest }, ref) {
785
+ return react.default.createElement(require_Icon.Icon, {
561
786
  width: size,
562
787
  height: size,
563
788
  ref,
@@ -572,8 +797,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
572
797
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,17h-2v-4h2c1.1,0,2-0.9,2-2s-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2v0.5h-2V11c0-2.2,1.8-4,4-4h2c2.2,0,4,1.8,4,4s-1.8,4-4,4V17 z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30l-8.4-9.9c0-0.1-0.3-0.5-0.3-0.5C5.8,17.7,5,15.4,5,13C5,6.9,9.9,2,16,2s11,4.9,11,11c0,2.4-0.8,4.7-2.2,6.6l0,0 c0,0-0.3,0.4-0.3,0.4L16,30z M8.8,18.4c0,0,0.2,0.3,0.3,0.4l6.9,8.1l6.9-8.1c0-0.1,0.3-0.4,0.3-0.4C24.4,16.8,25,15,25,13 c0-5-4-9-9-9s-9,4-9,9C7,15,7.6,16.8,8.8,18.4L8.8,18.4z" }), children);
573
798
  });
574
799
  if (process.env.NODE_ENV !== "production") WatsonHealthImageAvailabilityUnavailable.propTypes = require_iconPropTypes.iconPropTypes;
575
- const ImageService = react.default.forwardRef(function ImageService({ children, size = 16, ...rest }, ref) {
576
- return react.default.createElement(require_Icon_js, {
800
+ const ImageService = /* @__PURE__ */ react.default.forwardRef(function ImageService({ children, size = 16, ...rest }, ref) {
801
+ return react.default.createElement(require_Icon.Icon, {
577
802
  width: size,
578
803
  height: size,
579
804
  ref,
@@ -588,8 +813,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
588
813
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 4H15V12H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 4H11V12H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,12H19a2.0021,2.0021,0,0,1-2-2V6a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,21,12ZM19,6v4h2V6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 14H23V22H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 14H11V22H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,22H15a2.0021,2.0021,0,0,1-2-2V16a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,17,22Zm-2-6v4h2V16Z" }), children);
589
814
  });
590
815
  if (process.env.NODE_ENV !== "production") ImageService.propTypes = require_iconPropTypes.iconPropTypes;
591
- const ImageStoreLocal = react.default.forwardRef(function ImageStoreLocal({ children, size = 16, ...rest }, ref) {
592
- return react.default.createElement(require_Icon_js, {
816
+ const ImageStoreLocal = /* @__PURE__ */ react.default.forwardRef(function ImageStoreLocal({ children, size = 16, ...rest }, ref) {
817
+ return react.default.createElement(require_Icon.Icon, {
593
818
  width: size,
594
819
  height: size,
595
820
  ref,
@@ -612,8 +837,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
612
837
  }), children);
613
838
  });
614
839
  if (process.env.NODE_ENV !== "production") ImageStoreLocal.propTypes = require_iconPropTypes.iconPropTypes;
615
- const ImportExport = react.default.forwardRef(function ImportExport({ children, size = 16, ...rest }, ref) {
616
- return react.default.createElement(require_Icon_js, {
840
+ const ImportExport = /* @__PURE__ */ react.default.forwardRef(function ImportExport({ children, size = 16, ...rest }, ref) {
841
+ return react.default.createElement(require_Icon.Icon, {
617
842
  width: size,
618
843
  height: size,
619
844
  ref,
@@ -624,8 +849,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
624
849
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,24v4H4V24H2v4l.0076-.0049A1.9977,1.9977,0,0,0,4,30H28a2,2,0,0,0,2-2h0V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.6 14.6 24 18.2 24 4 22 4 22 18.2 18.4 14.6 17 16 23 22 29 16 27.6 14.6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 4 3 10 4.4 11.4 8 7.8 8 22 10 22 10 7.8 13.6 11.4 15 10 9 4z" }), children);
625
850
  });
626
851
  if (process.env.NODE_ENV !== "production") ImportExport.propTypes = require_iconPropTypes.iconPropTypes;
627
- const Important = react.default.forwardRef(function Important({ children, size = 16, ...rest }, ref) {
628
- return react.default.createElement(require_Icon_js, {
852
+ const Important = /* @__PURE__ */ react.default.forwardRef(function Important({ children, size = 16, ...rest }, ref) {
853
+ return react.default.createElement(require_Icon.Icon, {
629
854
  width: size,
630
855
  height: size,
631
856
  ref,
@@ -636,8 +861,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
636
861
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,19h-2v-11h2v11ZM16,21c-.83,0-1.5.67-1.5,1.5s.67,1.5,1.5,1.5,1.5-.67,1.5-1.5-.67-1.5-1.5-1.5h0Z" }), children);
637
862
  });
638
863
  if (process.env.NODE_ENV !== "production") Important.propTypes = require_iconPropTypes.iconPropTypes;
639
- const ImproveRelevance = react.default.forwardRef(function ImproveRelevance({ children, size = 16, ...rest }, ref) {
640
- return react.default.createElement(require_Icon_js, {
864
+ const ImproveRelevance = /* @__PURE__ */ react.default.forwardRef(function ImproveRelevance({ children, size = 16, ...rest }, ref) {
865
+ return react.default.createElement(require_Icon.Icon, {
641
866
  width: size,
642
867
  height: size,
643
868
  ref,
@@ -652,8 +877,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
652
877
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16A12,12,0,1,0,16,28V26A10,10,0,1,1,26,16Z" }), children);
653
878
  });
654
879
  if (process.env.NODE_ENV !== "production") ImproveRelevance.propTypes = require_iconPropTypes.iconPropTypes;
655
- const InProgress = react.default.forwardRef(function InProgress({ children, size = 16, ...rest }, ref) {
656
- return react.default.createElement(require_Icon_js, {
880
+ const InProgress = /* @__PURE__ */ react.default.forwardRef(function InProgress({ children, size = 16, ...rest }, ref) {
881
+ return react.default.createElement(require_Icon.Icon, {
657
882
  width: size,
658
883
  height: size,
659
884
  ref,
@@ -664,8 +889,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
664
889
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm0,26A12,12,0,0,1,16,4V16l8.4812,8.4814A11.9625,11.9625,0,0,1,16,28Z" }), children);
665
890
  });
666
891
  if (process.env.NODE_ENV !== "production") InProgress.propTypes = require_iconPropTypes.iconPropTypes;
667
- const InProgressError = react.default.forwardRef(function InProgressError({ children, size = 16, ...rest }, ref) {
668
- return react.default.createElement(require_Icon_js, {
892
+ const InProgressError = /* @__PURE__ */ react.default.forwardRef(function InProgressError({ children, size = 16, ...rest }, ref) {
893
+ return react.default.createElement(require_Icon.Icon, {
669
894
  width: size,
670
895
  height: size,
671
896
  ref,
@@ -676,8 +901,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
676
901
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,2a12,12,0,1,0,2,23.8193v-2.021A10,10,0,1,1,14,4V14l4.343,4.3433A7.9751,7.9751,0,0,1,24,16h1.8193A11.93,11.93,0,0,0,14,2Z" }), children);
677
902
  });
678
903
  if (process.env.NODE_ENV !== "production") InProgressError.propTypes = require_iconPropTypes.iconPropTypes;
679
- const InProgressWarning = react.default.forwardRef(function InProgressWarning({ children, size = 16, ...rest }, ref) {
680
- return react.default.createElement(require_Icon_js, {
904
+ const InProgressWarning = /* @__PURE__ */ react.default.forwardRef(function InProgressWarning({ children, size = 16, ...rest }, ref) {
905
+ return react.default.createElement(require_Icon.Icon, {
681
906
  width: size,
682
907
  height: size,
683
908
  ref,
@@ -688,8 +913,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
688
913
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.38,28H20.6178L24,21.2358ZM24,18a1,1,0,0,0-.8947.5527l-5,10A1.0005,1.0005,0,0,0,19,30H29a1,1,0,0,0,.9214-1.3892L24.8946,18.5527A1,1,0,0,0,24,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.746,22.7993A9.999,9.999,0,1,1,14,4V14l6.0971,6.0972,1.22-2.44A2.9849,2.9849,0,0,1,24,16h1.8193A11.993,11.993,0,1,0,14,26a11.9337,11.9337,0,0,0,3.3939-.4966Z" }), children);
689
914
  });
690
915
  if (process.env.NODE_ENV !== "production") InProgressWarning.propTypes = require_iconPropTypes.iconPropTypes;
691
- const IncidentReporter = react.default.forwardRef(function IncidentReporter({ children, size = 16, ...rest }, ref) {
692
- return react.default.createElement(require_Icon_js, {
916
+ const IncidentReporter = /* @__PURE__ */ react.default.forwardRef(function IncidentReporter({ children, size = 16, ...rest }, ref) {
917
+ return react.default.createElement(require_Icon.Icon, {
693
918
  width: size,
694
919
  height: size,
695
920
  ref,
@@ -700,8 +925,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
700
925
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,13h12v2h-12v-2ZM10,20h8v-2h-8v2ZM10,25h5v-2h-5v2ZM7,7h3v3h12v-3h3v6h2v-6c0-1.1045-.8955-2-2-2h-3v-1c0-1.1045-.8955-2-2-2h-8c-1.1045,0-2,.8955-2,2v1h-3c-1.1045,0-2,.8955-2,2v21c0,1.1045.8955,2,2,2h5v-2h-5V7ZM12,4h8v4h-8v-4ZM29.9108,28.9355l-6.2831-11.5649c-.2739-.4941-.9829-.4941-1.2568,0l-6.2831,11.5649c-.2607.48.0862,1.0645.6316,1.0645h12.5599c.5453,0,.8923-.5845.6315-1.0645ZM22.2493,21h1.5v4h-1.5v-4ZM22.9993,28c-.5522,0-.9993-.4478-.9993-1s.4478-1,1-1,1,.4478,1,1-.4485,1-1.0007,1Z" }), children);
701
926
  });
702
927
  if (process.env.NODE_ENV !== "production") IncidentReporter.propTypes = require_iconPropTypes.iconPropTypes;
703
- const Incomplete = react.default.forwardRef(function Incomplete({ children, size = 16, ...rest }, ref) {
704
- if (size === "glyph" || size === "glyph" || size === "glyphpx") return react.default.createElement(require_Icon_js, {
928
+ const Incomplete = /* @__PURE__ */ react.default.forwardRef(function Incomplete({ children, size = 16, ...rest }, ref) {
929
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") return react.default.createElement(require_Icon.Icon, {
705
930
  width: size,
706
931
  height: size,
707
932
  ref,
@@ -710,7 +935,7 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
710
935
  fill: "currentColor",
711
936
  ...rest
712
937
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2ZM8,4a4.0045,4.0045,0,0,1,4,4H4A4.0045,4.0045,0,0,1,8,4Z" }), children);
713
- return react.default.createElement(require_Icon_js, {
938
+ return react.default.createElement(require_Icon.Icon, {
714
939
  width: size,
715
940
  height: size,
716
941
  ref,
@@ -721,8 +946,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
721
946
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.7642,6.8593l1.2851-1.5315A13.976,13.976,0,0,0,20.8672,2.887l-.6836,1.8776A11.9729,11.9729,0,0,1,23.7642,6.8593Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.81,14l1.9677-.4128A13.8888,13.8888,0,0,0,28.14,9.0457L26.4087,10A12.52,12.52,0,0,1,27.81,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.1836,27.2354l.6836,1.8776a13.976,13.976,0,0,0,4.1821-2.4408l-1.2851-1.5315A11.9729,11.9729,0,0,1,20.1836,27.2354Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.4087,22,28.14,23a14.14,14.14,0,0,0,1.6382-4.5872L27.81,18.0659A12.1519,12.1519,0,0,1,26.4087,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30V2a14,14,0,0,0,0,28Z" }), children);
722
947
  });
723
948
  if (process.env.NODE_ENV !== "production") Incomplete.propTypes = require_iconPropTypes.iconPropTypes;
724
- const IncompleteCancel = react.default.forwardRef(function IncompleteCancel({ children, size = 16, ...rest }, ref) {
725
- return react.default.createElement(require_Icon_js, {
949
+ const IncompleteCancel = /* @__PURE__ */ react.default.forwardRef(function IncompleteCancel({ children, size = 16, ...rest }, ref) {
950
+ return react.default.createElement(require_Icon.Icon, {
726
951
  width: size,
727
952
  height: size,
728
953
  ref,
@@ -733,8 +958,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
733
958
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25 30 21.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,26A12,12,0,0,1,14,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.8257,4.7642a10.0288,10.0288,0,0,1,3.2422,2.1679l1.4133-1.4135a12.0359,12.0359,0,0,0-3.89-2.6016Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14a11.93,11.93,0,0,0-.9167-4.5908l-1.8472.7651A9.9428,9.9428,0,0,1,24,14Z" }), children);
734
959
  });
735
960
  if (process.env.NODE_ENV !== "production") IncompleteCancel.propTypes = require_iconPropTypes.iconPropTypes;
736
- const IncompleteError = react.default.forwardRef(function IncompleteError({ children, size = 16, ...rest }, ref) {
737
- return react.default.createElement(require_Icon_js, {
961
+ const IncompleteError = /* @__PURE__ */ react.default.forwardRef(function IncompleteError({ children, size = 16, ...rest }, ref) {
962
+ return react.default.createElement(require_Icon.Icon, {
738
963
  width: size,
739
964
  height: size,
740
965
  ref,
@@ -745,8 +970,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
745
970
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,26A12,12,0,0,1,14,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.8257,4.7642a10.0288,10.0288,0,0,1,3.2422,2.1679l1.4133-1.4135a12.0359,12.0359,0,0,0-3.89-2.6016Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14a11.93,11.93,0,0,0-.9167-4.5908l-1.8472.7651A9.9428,9.9428,0,0,1,24,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z" }), children);
746
971
  });
747
972
  if (process.env.NODE_ENV !== "production") IncompleteError.propTypes = require_iconPropTypes.iconPropTypes;
748
- const IncompleteWarning = react.default.forwardRef(function IncompleteWarning({ children, size = 16, ...rest }, ref) {
749
- return react.default.createElement(require_Icon_js, {
973
+ const IncompleteWarning = /* @__PURE__ */ react.default.forwardRef(function IncompleteWarning({ children, size = 16, ...rest }, ref) {
974
+ return react.default.createElement(require_Icon.Icon, {
750
975
  width: size,
751
976
  height: size,
752
977
  ref,
@@ -757,8 +982,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
757
982
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,26A12,12,0,0,1,14,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.8257,4.7642a10.0288,10.0288,0,0,1,3.2422,2.1679l1.4133-1.4135a12.0359,12.0359,0,0,0-3.89-2.6016Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14a11.93,11.93,0,0,0-.9167-4.5908l-1.8472.7651A9.9428,9.9428,0,0,1,24,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.38,28H20.6178L24,21.2358ZM24,18a1,1,0,0,0-.8947.5527l-5,10A1.0005,1.0005,0,0,0,19,30H29a1,1,0,0,0,.9214-1.3892L24.8946,18.5527A1,1,0,0,0,24,18Z" }), children);
758
983
  });
759
984
  if (process.env.NODE_ENV !== "production") IncompleteWarning.propTypes = require_iconPropTypes.iconPropTypes;
760
- const IncreaseLevel = react.default.forwardRef(function IncreaseLevel({ children, size = 16, ...rest }, ref) {
761
- return react.default.createElement(require_Icon_js, {
985
+ const IncreaseLevel = /* @__PURE__ */ react.default.forwardRef(function IncreaseLevel({ children, size = 16, ...rest }, ref) {
986
+ return react.default.createElement(require_Icon.Icon, {
762
987
  width: size,
763
988
  height: size,
764
989
  ref,
@@ -769,8 +994,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
769
994
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 4 18 7.75 18 14.25 15 12 10 15.75 10 22.25 7 20 2 23.75 2 30 4 30 4 24.75 7 22.5 10 24.75 10 30 12 30 12 16.75 15 14.5 18 16.75 18 30 20 30 20 8.75 23 6.5 26 8.75 26 30 28 30 28 7.75 23 4z" }), children);
770
995
  });
771
996
  if (process.env.NODE_ENV !== "production") IncreaseLevel.propTypes = require_iconPropTypes.iconPropTypes;
772
- const Industry = react.default.forwardRef(function Industry({ children, size = 16, ...rest }, ref) {
773
- return react.default.createElement(require_Icon_js, {
997
+ const Industry = /* @__PURE__ */ react.default.forwardRef(function Industry({ children, size = 16, ...rest }, ref) {
998
+ return react.default.createElement(require_Icon.Icon, {
774
999
  width: size,
775
1000
  height: size,
776
1001
  ref,
@@ -781,8 +1006,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
781
1006
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.53,6.15a1,1,0,0,0-1,0L20,10.38V7a1,1,0,0,0-1.45-.89L10,10.38V3A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V28H30V7A1,1,0,0,0,29.53,6.15ZM22,26H18V19h4Zm6,0H24V18a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v8H4V4H8v9.62l10-5v5l10-5Z" }), children);
782
1007
  });
783
1008
  if (process.env.NODE_ENV !== "production") Industry.propTypes = require_iconPropTypes.iconPropTypes;
784
- const InfinitySymbol = react.default.forwardRef(function InfinitySymbol({ children, size = 16, ...rest }, ref) {
785
- return react.default.createElement(require_Icon_js, {
1009
+ const InfinitySymbol = /* @__PURE__ */ react.default.forwardRef(function InfinitySymbol({ children, size = 16, ...rest }, ref) {
1010
+ return react.default.createElement(require_Icon.Icon, {
786
1011
  width: size,
787
1012
  height: size,
788
1013
  ref,
@@ -793,8 +1018,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
793
1018
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23,23c-5.6558,0-7.8577-6.4109-7.9487-6.6837-.0173-.0514-1.8435-5.3163-6.0513-5.3163-2.7571,0-5,2.243-5,5s2.2429,5,5,5c1.5876,0,3.0134-.7322,4.2373-2.1764l1.5259,1.2932c-1.5989,1.8862-3.5916,2.8832-5.7632,2.8832-3.8599,0-7-3.1401-7-7s3.1401-7,7-7c5.6558,0,7.8577,6.4109,7.9487,6.6837.0173.0514,1.8435,5.3163,6.0513,5.3163,2.7571,0,5-2.243,5-5s-2.2429-5-5-5c-1.5876,0-3.0134.7322-4.2373,2.1764l-1.5259-1.2932c1.5989-1.8862,3.5916-2.8832,5.7632-2.8832,3.8599,0,7,3.1401,7,7s-3.1401,7-7,7Z" }), children);
794
1019
  });
795
1020
  if (process.env.NODE_ENV !== "production") InfinitySymbol.propTypes = require_iconPropTypes.iconPropTypes;
796
- const Information = react.default.forwardRef(function Information({ children, size = 16, ...rest }, ref) {
797
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1021
+ const Information = /* @__PURE__ */ react.default.forwardRef(function Information({ children, size = 16, ...rest }, ref) {
1022
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
798
1023
  width: size,
799
1024
  height: size,
800
1025
  ref,
@@ -803,7 +1028,7 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
803
1028
  fill: "currentColor",
804
1029
  ...rest
805
1030
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.5 11 8.5 6.5 6.5 6.5 6.5 7.5 7.5 7.5 7.5 11 6 11 6 12 10 12 10 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,3.5c-0.4,0-0.8,0.3-0.8,0.8S7.6,5,8,5c0.4,0,0.8-0.3,0.8-0.8S8.4,3.5,8,3.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,15c-3.9,0-7-3.1-7-7s3.1-7,7-7s7,3.1,7,7S11.9,15,8,15z M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z" }), children);
806
- return react.default.createElement(require_Icon_js, {
1031
+ return react.default.createElement(require_Icon.Icon, {
807
1032
  width: size,
808
1033
  height: size,
809
1034
  ref,
@@ -814,8 +1039,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
814
1039
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 22 17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z" }), children);
815
1040
  });
816
1041
  if (process.env.NODE_ENV !== "production") Information.propTypes = require_iconPropTypes.iconPropTypes;
817
- const InformationDisabled = react.default.forwardRef(function InformationDisabled({ children, size = 16, ...rest }, ref) {
818
- return react.default.createElement(require_Icon_js, {
1042
+ const InformationDisabled = /* @__PURE__ */ react.default.forwardRef(function InformationDisabled({ children, size = 16, ...rest }, ref) {
1043
+ return react.default.createElement(require_Icon.Icon, {
819
1044
  width: size,
820
1045
  height: size,
821
1046
  ref,
@@ -826,8 +1051,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
826
1051
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4141,28.5859,2,2,28.5859,3.4141,30l3.4433-3.4434A13.9614,13.9614,0,0,0,26.5565,6.8574ZM28,16A11.9734,11.9734,0,0,1,8.2678,25.146L15,18.4141V22H13v2h7V22H17V16.4141l8.146-8.146A11.8967,11.8967,0,0,1,28,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.67,22.0854A11.9829,11.9829,0,0,1,22.0856,5.67L23.54,4.2163A13.985,13.985,0,0,0,4.2162,23.54Z" }), children);
827
1052
  });
828
1053
  if (process.env.NODE_ENV !== "production") InformationDisabled.propTypes = require_iconPropTypes.iconPropTypes;
829
- const InformationFilled = react.default.forwardRef(function InformationFilled({ children, size = 16, ...rest }, ref) {
830
- return react.default.createElement(require_Icon_js, {
1054
+ const InformationFilled = /* @__PURE__ */ react.default.forwardRef(function InformationFilled({ children, size = 16, ...rest }, ref) {
1055
+ return react.default.createElement(require_Icon.Icon, {
831
1056
  width: size,
832
1057
  height: size,
833
1058
  ref,
@@ -842,8 +1067,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
842
1067
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,6a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z" }), children);
843
1068
  });
844
1069
  if (process.env.NODE_ENV !== "production") InformationFilled.propTypes = require_iconPropTypes.iconPropTypes;
845
- const InformationSquare = react.default.forwardRef(function InformationSquare({ children, size = 16, ...rest }, ref) {
846
- return react.default.createElement(require_Icon_js, {
1070
+ const InformationSquare = /* @__PURE__ */ react.default.forwardRef(function InformationSquare({ children, size = 16, ...rest }, ref) {
1071
+ return react.default.createElement(require_Icon.Icon, {
847
1072
  width: size,
848
1073
  height: size,
849
1074
  ref,
@@ -854,8 +1079,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
854
1079
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 22 17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26V6Z" }), children);
855
1080
  });
856
1081
  if (process.env.NODE_ENV !== "production") InformationSquare.propTypes = require_iconPropTypes.iconPropTypes;
857
- const InformationSquareFilled = react.default.forwardRef(function InformationSquareFilled({ children, size = 16, ...rest }, ref) {
858
- return react.default.createElement(require_Icon_js, {
1082
+ const InformationSquareFilled = /* @__PURE__ */ react.default.forwardRef(function InformationSquareFilled({ children, size = 16, ...rest }, ref) {
1083
+ return react.default.createElement(require_Icon.Icon, {
859
1084
  width: size,
860
1085
  height: size,
861
1086
  ref,
@@ -870,8 +1095,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
870
1095
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z" }), children);
871
1096
  });
872
1097
  if (process.env.NODE_ENV !== "production") InformationSquareFilled.propTypes = require_iconPropTypes.iconPropTypes;
873
- const InfrastructureClassic = react.default.forwardRef(function InfrastructureClassic({ children, size = 16, ...rest }, ref) {
874
- return react.default.createElement(require_Icon_js, {
1098
+ const InfrastructureClassic = /* @__PURE__ */ react.default.forwardRef(function InfrastructureClassic({ children, size = 16, ...rest }, ref) {
1099
+ return react.default.createElement(require_Icon.Icon, {
875
1100
  width: size,
876
1101
  height: size,
877
1102
  ref,
@@ -882,8 +1107,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
882
1107
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 26H30V28H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 21H30V23H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 16H30V18H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,25H9.5A7.4964,7.4964,0,0,1,8.1782,10.124,10,10,0,0,1,28,12H26a7.999,7.999,0,0,0-15.9507-.87l-.09.8335L9.123,12.02A5.4962,5.4962,0,0,0,9.5,23H14Z" }), children);
883
1108
  });
884
1109
  if (process.env.NODE_ENV !== "production") InfrastructureClassic.propTypes = require_iconPropTypes.iconPropTypes;
885
- const Insert = react.default.forwardRef(function Insert({ children, size = 16, ...rest }, ref) {
886
- return react.default.createElement(require_Icon_js, {
1110
+ const Insert = /* @__PURE__ */ react.default.forwardRef(function Insert({ children, size = 16, ...rest }, ref) {
1111
+ return react.default.createElement(require_Icon.Icon, {
887
1112
  width: size,
888
1113
  height: size,
889
1114
  ref,
@@ -894,8 +1119,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
894
1119
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,9h9V2H2ZM4,4H9V7H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,19h9V12H2Zm2-5H9v3H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,29h9V22H2Zm2-5H9v3H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,9H18l3.41-3.59L20,4l-6,6,6,6,1.41-1.41L18,11h9a1,1,0,0,1,1,1V24a1,1,0,0,1-1,1H15v2H27a3,3,0,0,0,3-3V12A3,3,0,0,0,27,9Z" }), children);
895
1120
  });
896
1121
  if (process.env.NODE_ENV !== "production") Insert.propTypes = require_iconPropTypes.iconPropTypes;
897
- const InsertPage = react.default.forwardRef(function InsertPage({ children, size = 16, ...rest }, ref) {
898
- return react.default.createElement(require_Icon_js, {
1122
+ const InsertPage = /* @__PURE__ */ react.default.forwardRef(function InsertPage({ children, size = 16, ...rest }, ref) {
1123
+ return react.default.createElement(require_Icon.Icon, {
899
1124
  width: size,
900
1125
  height: size,
901
1126
  ref,
@@ -906,8 +1131,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
906
1131
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V20H12V30H10V20a2.0021,2.0021,0,0,1,2-2H24a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.17 16 2 19.17 3.411 20.589 8 16 3.42 11.42 2 12.83 5.17 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14H12a2.0021,2.0021,0,0,1-2-2V2h2V12H24V2h2V12A2.0021,2.0021,0,0,1,24,14Z" }), children);
907
1132
  });
908
1133
  if (process.env.NODE_ENV !== "production") InsertPage.propTypes = require_iconPropTypes.iconPropTypes;
909
- const InsertSyntax = react.default.forwardRef(function InsertSyntax({ children, size = 16, ...rest }, ref) {
910
- return react.default.createElement(require_Icon_js, {
1134
+ const InsertSyntax = /* @__PURE__ */ react.default.forwardRef(function InsertSyntax({ children, size = 16, ...rest }, ref) {
1135
+ return react.default.createElement(require_Icon.Icon, {
911
1136
  width: size,
912
1137
  height: size,
913
1138
  ref,
@@ -918,8 +1143,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
918
1143
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.17 16 17.59 18.58 19 20 23 16 19 12 17.58 13.41 20.17 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.83 16 14.41 13.42 13 12 9 16 13 20 14.42 18.59 11.83 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,22.142V9.858A3.9916,3.9916,0,1,0,22.142,5H9.858A3.9916,3.9916,0,1,0,5,9.858V22.142A3.9916,3.9916,0,1,0,9.858,27H22.142A3.9916,3.9916,0,1,0,27,22.142ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm16.142-3H9.858A3.9937,3.9937,0,0,0,7,22.142V9.858A3.9947,3.9947,0,0,0,9.858,7H22.142A3.9937,3.9937,0,0,0,25,9.858V22.142A3.9931,3.9931,0,0,0,22.142,25ZM26,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z" }), children);
919
1144
  });
920
1145
  if (process.env.NODE_ENV !== "production") InsertSyntax.propTypes = require_iconPropTypes.iconPropTypes;
921
- const Inspection = react.default.forwardRef(function Inspection({ children, size = 16, ...rest }, ref) {
922
- return react.default.createElement(require_Icon_js, {
1146
+ const Inspection = /* @__PURE__ */ react.default.forwardRef(function Inspection({ children, size = 16, ...rest }, ref) {
1147
+ return react.default.createElement(require_Icon.Icon, {
923
1148
  width: size,
924
1149
  height: size,
925
1150
  ref,
@@ -930,8 +1155,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
930
1155
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 17.18 12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15H27.9492A12.0071,12.0071,0,0,0,17,4.0508V2H15V4.0508A12.0071,12.0071,0,0,0,4.0508,15H2v2H4.0508A12.0071,12.0071,0,0,0,15,27.9492V30h2V27.9492A12.0071,12.0071,0,0,0,27.9492,17H30ZM17,25.9492V23H15v2.9492A10.0166,10.0166,0,0,1,6.0508,17H9V15H6.0508A10.0166,10.0166,0,0,1,15,6.0508V9h2V6.0508A10.0166,10.0166,0,0,1,25.9492,15H23v2h2.949A10.0165,10.0165,0,0,1,17,25.9492Z" }), children);
931
1156
  });
932
1157
  if (process.env.NODE_ENV !== "production") Inspection.propTypes = require_iconPropTypes.iconPropTypes;
933
- const InstanceBx = react.default.forwardRef(function InstanceBx({ children, size = 16, ...rest }, ref) {
934
- return react.default.createElement(require_Icon_js, {
1158
+ const InstanceBx = /* @__PURE__ */ react.default.forwardRef(function InstanceBx({ children, size = 16, ...rest }, ref) {
1159
+ return react.default.createElement(require_Icon.Icon, {
935
1160
  width: size,
936
1161
  height: size,
937
1162
  ref,
@@ -946,8 +1171,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
946
1171
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H6V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H12V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H24V20H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 18H30V20H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,31H6a2.0021,2.0021,0,0,1-2-2V25a2.0021,2.0021,0,0,1,2-2H26a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,26,31ZM6,25v4H26V25Z" }), children);
947
1172
  });
948
1173
  if (process.env.NODE_ENV !== "production") InstanceBx.propTypes = require_iconPropTypes.iconPropTypes;
949
- const InstanceClassic = react.default.forwardRef(function InstanceClassic({ children, size = 16, ...rest }, ref) {
950
- return react.default.createElement(require_Icon_js, {
1174
+ const InstanceClassic = /* @__PURE__ */ react.default.forwardRef(function InstanceClassic({ children, size = 16, ...rest }, ref) {
1175
+ return react.default.createElement(require_Icon.Icon, {
951
1176
  width: size,
952
1177
  height: size,
953
1178
  ref,
@@ -962,8 +1187,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
962
1187
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,23H17V15.83l2.59,2.58L21,17l-5-5-5,5,1.41,1.41L15,15.83V23H6a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V25A2.0023,2.0023,0,0,0,26,23Zm0,6H6V25H26Z" }), children);
963
1188
  });
964
1189
  if (process.env.NODE_ENV !== "production") InstanceClassic.propTypes = require_iconPropTypes.iconPropTypes;
965
- const InstanceCx = react.default.forwardRef(function InstanceCx({ children, size = 16, ...rest }, ref) {
966
- return react.default.createElement(require_Icon_js, {
1190
+ const InstanceCx = /* @__PURE__ */ react.default.forwardRef(function InstanceCx({ children, size = 16, ...rest }, ref) {
1191
+ return react.default.createElement(require_Icon.Icon, {
967
1192
  width: size,
968
1193
  height: size,
969
1194
  ref,
@@ -978,8 +1203,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
978
1203
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 5 20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,15H6a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,6,2h6V4H6v9h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H6V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H12V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H24V20H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 18H30V20H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,31H6a2.0021,2.0021,0,0,1-2-2V25a2.0021,2.0021,0,0,1,2-2H26a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,26,31ZM6,25v4H26V25Z" }), children);
979
1204
  });
980
1205
  if (process.env.NODE_ENV !== "production") InstanceCx.propTypes = require_iconPropTypes.iconPropTypes;
981
- const InstanceMx = react.default.forwardRef(function InstanceMx({ children, size = 16, ...rest }, ref) {
982
- return react.default.createElement(require_Icon_js, {
1206
+ const InstanceMx = /* @__PURE__ */ react.default.forwardRef(function InstanceMx({ children, size = 16, ...rest }, ref) {
1207
+ return react.default.createElement(require_Icon.Icon, {
983
1208
  width: size,
984
1209
  height: size,
985
1210
  ref,
@@ -994,8 +1219,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
994
1219
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H6V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H12V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H24V20H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 18H30V20H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,31H6a2.0021,2.0021,0,0,1-2-2V25a2.0021,2.0021,0,0,1,2-2H26a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,26,31ZM6,25v4H26V25Z" }), children);
995
1220
  });
996
1221
  if (process.env.NODE_ENV !== "production") InstanceMx.propTypes = require_iconPropTypes.iconPropTypes;
997
- const InstanceVirtual = react.default.forwardRef(function InstanceVirtual({ children, size = 16, ...rest }, ref) {
998
- return react.default.createElement(require_Icon_js, {
1222
+ const InstanceVirtual = /* @__PURE__ */ react.default.forwardRef(function InstanceVirtual({ children, size = 16, ...rest }, ref) {
1223
+ return react.default.createElement(require_Icon.Icon, {
999
1224
  width: size,
1000
1225
  height: size,
1001
1226
  ref,
@@ -1010,8 +1235,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1010
1235
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H6V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H12V8H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 6H18V8H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 6H24V8H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 6H30V8H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,28ZM4,20v6H28V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H30V14H2z" }), children);
1011
1236
  });
1012
1237
  if (process.env.NODE_ENV !== "production") InstanceVirtual.propTypes = require_iconPropTypes.iconPropTypes;
1013
- const Integration = react.default.forwardRef(function Integration({ children, size = 16, ...rest }, ref) {
1014
- return react.default.createElement(require_Icon_js, {
1238
+ const Integration = /* @__PURE__ */ react.default.forwardRef(function Integration({ children, size = 16, ...rest }, ref) {
1239
+ return react.default.createElement(require_Icon.Icon, {
1015
1240
  width: size,
1016
1241
  height: size,
1017
1242
  ref,
@@ -1022,8 +1247,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1022
1247
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.88,15.52l-6-11A1,1,0,0,0,23,4H9a1,1,0,0,0-.88.52l-6,11a1,1,0,0,0,0,1l6,11A1,1,0,0,0,9,28H23a1,1,0,0,0,.88-.52l6-11A1,1,0,0,0,29.88,15.52ZM22.93,7l4.39,8h-9.5ZM16,14.14,10.82,6H21.18ZM9.07,7l5.11,8H4.68ZM4.68,17h9.5L9.07,25ZM16,17.86,21.18,26H10.82ZM22.93,25l-5.11-8h9.5Z" }), children);
1023
1248
  });
1024
1249
  if (process.env.NODE_ENV !== "production") Integration.propTypes = require_iconPropTypes.iconPropTypes;
1025
- const IntentRequestActive = react.default.forwardRef(function IntentRequestActive({ children, size = 16, ...rest }, ref) {
1026
- return react.default.createElement(require_Icon_js, {
1250
+ const IntentRequestActive = /* @__PURE__ */ react.default.forwardRef(function IntentRequestActive({ children, size = 16, ...rest }, ref) {
1251
+ return react.default.createElement(require_Icon.Icon, {
1027
1252
  width: size,
1028
1253
  height: size,
1029
1254
  ref,
@@ -1034,8 +1259,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1034
1259
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 27.2 20.4 24.6 19 26 23 30 31 22 29.6 20.6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z" }), children);
1035
1260
  });
1036
1261
  if (process.env.NODE_ENV !== "production") IntentRequestActive.propTypes = require_iconPropTypes.iconPropTypes;
1037
- const IntentRequestCreate = react.default.forwardRef(function IntentRequestCreate({ children, size = 16, ...rest }, ref) {
1038
- return react.default.createElement(require_Icon_js, {
1262
+ const IntentRequestCreate = /* @__PURE__ */ react.default.forwardRef(function IntentRequestCreate({ children, size = 16, ...rest }, ref) {
1263
+ return react.default.createElement(require_Icon.Icon, {
1039
1264
  width: size,
1040
1265
  height: size,
1041
1266
  ref,
@@ -1046,8 +1271,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1046
1271
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 24 26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z" }), children);
1047
1272
  });
1048
1273
  if (process.env.NODE_ENV !== "production") IntentRequestCreate.propTypes = require_iconPropTypes.iconPropTypes;
1049
- const IntentRequestHeal = react.default.forwardRef(function IntentRequestHeal({ children, size = 16, ...rest }, ref) {
1050
- return react.default.createElement(require_Icon_js, {
1274
+ const IntentRequestHeal = /* @__PURE__ */ react.default.forwardRef(function IntentRequestHeal({ children, size = 16, ...rest }, ref) {
1275
+ return react.default.createElement(require_Icon.Icon, {
1051
1276
  width: size,
1052
1277
  height: size,
1053
1278
  ref,
@@ -1058,8 +1283,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1058
1283
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,20c-0.8,0-1.5,0.3-2.1,0.9l-0.4,0.5l-0.4-0.5C23.5,20.3,22.7,20,22,20s-1.5,0.3-2.1,0.9c-1.2,1.2-1.2,3.1,0,4.3l4.6,4.8 l4.6-4.8c1.2-1.2,1.2-3.1,0-4.3C28.6,20.3,27.8,20,27,20L27,20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.6,28.6L4,16L16,4l12.6,12.6l1.4-1.4L17.5,2.6c-0.8-0.8-2.1-0.8-2.9,0L2.6,14.5c-0.8,0.8-0.8,2.1,0,2.9L15.1,30 L16.6,28.6z" }), children);
1059
1284
  });
1060
1285
  if (process.env.NODE_ENV !== "production") IntentRequestHeal.propTypes = require_iconPropTypes.iconPropTypes;
1061
- const IntentRequestInactive = react.default.forwardRef(function IntentRequestInactive({ children, size = 16, ...rest }, ref) {
1062
- return react.default.createElement(require_Icon_js, {
1286
+ const IntentRequestInactive = /* @__PURE__ */ react.default.forwardRef(function IntentRequestInactive({ children, size = 16, ...rest }, ref) {
1287
+ return react.default.createElement(require_Icon.Icon, {
1063
1288
  width: size,
1064
1289
  height: size,
1065
1290
  ref,
@@ -1082,8 +1307,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1082
1307
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z" }), children);
1083
1308
  });
1084
1309
  if (process.env.NODE_ENV !== "production") IntentRequestInactive.propTypes = require_iconPropTypes.iconPropTypes;
1085
- const IntentRequestScaleIn = react.default.forwardRef(function IntentRequestScaleIn({ children, size = 16, ...rest }, ref) {
1086
- return react.default.createElement(require_Icon_js, {
1310
+ const IntentRequestScaleIn = /* @__PURE__ */ react.default.forwardRef(function IntentRequestScaleIn({ children, size = 16, ...rest }, ref) {
1311
+ return react.default.createElement(require_Icon.Icon, {
1087
1312
  width: size,
1088
1313
  height: size,
1089
1314
  ref,
@@ -1094,8 +1319,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1094
1319
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.6 30 30 28.6 22.4 21 29 21 29 19 19 19 19 29 21 29 21 22.4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28.6 3.4 30 11 22.4 11 29 13 29 13 19 3 19 3 21 9.6 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 2 15 2 15 12.2 10.4 7.6 9 9 16 16 23 9 21.6 7.6 17 12.2z" }), children);
1095
1320
  });
1096
1321
  if (process.env.NODE_ENV !== "production") IntentRequestScaleIn.propTypes = require_iconPropTypes.iconPropTypes;
1097
- const IntentRequestScaleOut = react.default.forwardRef(function IntentRequestScaleOut({ children, size = 16, ...rest }, ref) {
1098
- return react.default.createElement(require_Icon_js, {
1322
+ const IntentRequestScaleOut = /* @__PURE__ */ react.default.forwardRef(function IntentRequestScaleOut({ children, size = 16, ...rest }, ref) {
1323
+ return react.default.createElement(require_Icon.Icon, {
1099
1324
  width: size,
1100
1325
  height: size,
1101
1326
  ref,
@@ -1106,8 +1331,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1106
1331
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 20.4 20.4 19 28 26.6 28 20 30 20 30 30 20 30 20 28 26.6 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 20.4 11.6 19 4 26.6 4 20 2 20 2 30 12 30 12 28 5.4 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 16 15 16 15 5.8 10.4 10.4 9 9 16 2 23 9 21.6 10.4 17 5.8z" }), children);
1107
1332
  });
1108
1333
  if (process.env.NODE_ENV !== "production") IntentRequestScaleOut.propTypes = require_iconPropTypes.iconPropTypes;
1109
- const IntentRequestUninstall = react.default.forwardRef(function IntentRequestUninstall({ children, size = 16, ...rest }, ref) {
1110
- return react.default.createElement(require_Icon_js, {
1334
+ const IntentRequestUninstall = /* @__PURE__ */ react.default.forwardRef(function IntentRequestUninstall({ children, size = 16, ...rest }, ref) {
1335
+ return react.default.createElement(require_Icon.Icon, {
1111
1336
  width: size,
1112
1337
  height: size,
1113
1338
  ref,
@@ -1118,8 +1343,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1118
1343
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 21.4 28.6 20 25 23.6 21.4 20 20 21.4 23.6 25 20 28.6 21.4 30 25 26.4 28.6 30 30 28.6 26.4 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z" }), children);
1119
1344
  });
1120
1345
  if (process.env.NODE_ENV !== "production") IntentRequestUninstall.propTypes = require_iconPropTypes.iconPropTypes;
1121
- const IntentRequestUpgrade = react.default.forwardRef(function IntentRequestUpgrade({ children, size = 16, ...rest }, ref) {
1122
- return react.default.createElement(require_Icon_js, {
1346
+ const IntentRequestUpgrade = /* @__PURE__ */ react.default.forwardRef(function IntentRequestUpgrade({ children, size = 16, ...rest }, ref) {
1347
+ return react.default.createElement(require_Icon.Icon, {
1123
1348
  width: size,
1124
1349
  height: size,
1125
1350
  ref,
@@ -1130,8 +1355,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1130
1355
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 23 26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z" }), children);
1131
1356
  });
1132
1357
  if (process.env.NODE_ENV !== "production") IntentRequestUpgrade.propTypes = require_iconPropTypes.iconPropTypes;
1133
- const Interactions = react.default.forwardRef(function Interactions({ children, size = 16, ...rest }, ref) {
1134
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1358
+ const Interactions = /* @__PURE__ */ react.default.forwardRef(function Interactions({ children, size = 16, ...rest }, ref) {
1359
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1135
1360
  width: size,
1136
1361
  height: size,
1137
1362
  ref,
@@ -1143,7 +1368,7 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1143
1368
  fillRule: "evenodd",
1144
1369
  d: "M11,7 L11,9 L13,9 C13.5522847,9 14,9.44771525 14,10 L14,10 L14,13 C14,13.5522847 13.5522847,14 13,14 L13,14 L10,14 L10,7 L11,7 Z M5,9 C5.55228475,9 6,9.44771525 6,10 L6,10 L6,14 L3,14 C2.44771525,14 2,13.5522847 2,13 L2,13 L2,12 C2,11.4477153 2.44771525,11 3,11 L3,11 L5,11 L5,10 L2.5,10 L2.5,9 Z M13,10 L11,10 L11,13 L13,13 L13,10 Z M5,12 L3,12 L3,13 L5,13 L5,12 Z M7.912,2 L7.834,3.911 L9.628,3.248 L9.914,4.119 L8.068,4.626 L9.251,6.134 L8.523,6.667 L7.457,5.068 L6.391,6.667 L5.663,6.134 L6.846,4.626 L5,4.119 L5.286,3.248 L7.08,3.911 L7.002,2 L7.912,2 Z"
1145
1370
  }), children);
1146
- return react.default.createElement(require_Icon_js, {
1371
+ return react.default.createElement(require_Icon.Icon, {
1147
1372
  width: size,
1148
1373
  height: size,
1149
1374
  ref,
@@ -1154,8 +1379,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1154
1379
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18H22V14H20V28h6a2.0027,2.0027,0,0,0,2-2V20A2.0023,2.0023,0,0,0,26,18Zm-4,8V20h4v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 6.076 19.256 4.219 16 5.522 16 2 14 2 14 5.523 10.744 4.22 10 6.077 13.417 7.444 10.9 10.8 12.5 12 15 8.667 17.5 12 19.1 10.8 16.583 7.443 20 6.076z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,18H5v2h5v2H6a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V20A2.0023,2.0023,0,0,0,10,18Zm0,8H6V24h4Z" }), children);
1155
1380
  });
1156
1381
  if (process.env.NODE_ENV !== "production") Interactions.propTypes = require_iconPropTypes.iconPropTypes;
1157
- const WatsonHealthInteractiveSegmentationCursor = react.default.forwardRef(function WatsonHealthInteractiveSegmentationCursor({ children, size = 16, ...rest }, ref) {
1158
- return react.default.createElement(require_Icon_js, {
1382
+ const WatsonHealthInteractiveSegmentationCursor = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthInteractiveSegmentationCursor({ children, size = 16, ...rest }, ref) {
1383
+ return react.default.createElement(require_Icon.Icon, {
1159
1384
  width: size,
1160
1385
  height: size,
1161
1386
  ref,
@@ -1175,8 +1400,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1175
1400
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2 2 2 2 11 4 11 4 4 11 4 11 2z" }), children);
1176
1401
  });
1177
1402
  if (process.env.NODE_ENV !== "production") WatsonHealthInteractiveSegmentationCursor.propTypes = require_iconPropTypes.iconPropTypes;
1178
- const InterfaceDefinition = react.default.forwardRef(function InterfaceDefinition({ children, size = 16, ...rest }, ref) {
1179
- return react.default.createElement(require_Icon_js, {
1403
+ const InterfaceDefinition = /* @__PURE__ */ react.default.forwardRef(function InterfaceDefinition({ children, size = 16, ...rest }, ref) {
1404
+ return react.default.createElement(require_Icon.Icon, {
1180
1405
  width: size,
1181
1406
  height: size,
1182
1407
  ref,
@@ -1187,8 +1412,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1187
1412
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,19h-7c-1.1028,0-2,.8975-2,2v2h-2v-14c0-1.1025-.8972-2-2-2h-2v-3c0-1.1025-.8972-2-2-2h-7c-1.1028,0-2,.8975-2,2v7c0,1.1025.8972,2,2,2h7c1.1028,0,2-.8975,2-2v-2h2v14c0,1.1025.8972,2,2,2h2v3c0,1.1025.8972,2,2,2h7c1.1028,0,2-.8975,2-2v-7c0-1.1025-.8972-2-2-2ZM11,11h-7v-7h7v7ZM28,28h-7v-7h7v7Z" }), children);
1188
1413
  });
1189
1414
  if (process.env.NODE_ENV !== "production") InterfaceDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1190
- const InterfaceDefinitionAlt = react.default.forwardRef(function InterfaceDefinitionAlt({ children, size = 16, ...rest }, ref) {
1191
- return react.default.createElement(require_Icon_js, {
1415
+ const InterfaceDefinitionAlt = /* @__PURE__ */ react.default.forwardRef(function InterfaceDefinitionAlt({ children, size = 16, ...rest }, ref) {
1416
+ return react.default.createElement(require_Icon.Icon, {
1192
1417
  width: size,
1193
1418
  height: size,
1194
1419
  ref,
@@ -1199,8 +1424,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1199
1424
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4c-1.1,0-2-.9-2-2V4c0-1.1.9-2,2-2h24c1.1,0,2,.9,2,2v24c0,1.1-.9,2-2,2ZM4,28h24V4H4v24ZM9,22v-1.8232h1.582v-8.3545h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3545h1.5991v1.8232h-5.4512ZM16.3301,22v-9h2.2012v1.5195h.0859c.3613-.9629,1.1182-1.7021,2.5107-1.7021,1.8403,0,2.8721,1.2725,2.8721,3.5078v5.6748h-2.2012v-5.4512c0-1.2725-.4302-1.9258-1.479-1.9258-.9116,0-1.7886.4814-1.7886,1.4443v5.9326h-2.2012Z" }), children);
1200
1425
  });
1201
1426
  if (process.env.NODE_ENV !== "production") InterfaceDefinitionAlt.propTypes = require_iconPropTypes.iconPropTypes;
1202
- const InterfaceUsage = react.default.forwardRef(function InterfaceUsage({ children, size = 16, ...rest }, ref) {
1203
- return react.default.createElement(require_Icon_js, {
1427
+ const InterfaceUsage = /* @__PURE__ */ react.default.forwardRef(function InterfaceUsage({ children, size = 16, ...rest }, ref) {
1428
+ return react.default.createElement(require_Icon.Icon, {
1204
1429
  width: size,
1205
1430
  height: size,
1206
1431
  ref,
@@ -1220,8 +1445,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1220
1445
  }), children);
1221
1446
  });
1222
1447
  if (process.env.NODE_ENV !== "production") InterfaceUsage.propTypes = require_iconPropTypes.iconPropTypes;
1223
- const InterfaceUsage_1 = react.default.forwardRef(function InterfaceUsage_1({ children, size = 16, ...rest }, ref) {
1224
- return react.default.createElement(require_Icon_js, {
1448
+ const InterfaceUsage_1 = /* @__PURE__ */ react.default.forwardRef(function InterfaceUsage_1({ children, size = 16, ...rest }, ref) {
1449
+ return react.default.createElement(require_Icon.Icon, {
1225
1450
  width: size,
1226
1451
  height: size,
1227
1452
  ref,
@@ -1232,8 +1457,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1232
1457
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.0259,30h-10c-5,0-9-4-9-9v-10C2.0259,6,6.0259,2,11.0259,2h10c5,0,9,4,9,9v10c0,5-4,9-9,9ZM11.0259,4c-3.9,0-7,3.1-7,7v10c0,3.9,3.1,7,7,7h10c3.9,0,7-3.1,7-7v-10c0-3.9-3.1-7-7-7h-10ZM9,22.0029v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM16.3301,22.0029v-9.0029h2.2012v1.5225h.0859c.3613-.9629,1.1182-1.7021,2.5107-1.7021,1.8403,0,2.8721,1.2725,2.8721,3.5078v5.6748h-2.2012v-5.4512c0-1.2725-.4302-1.9258-1.479-1.9258-.9116,0-1.7886.4814-1.7886,1.4443v5.9326h-2.2012Z" }), children);
1233
1458
  });
1234
1459
  if (process.env.NODE_ENV !== "production") InterfaceUsage_1.propTypes = require_iconPropTypes.iconPropTypes;
1235
- const InterfaceUsageAlt = react.default.forwardRef(function InterfaceUsageAlt({ children, size = 16, ...rest }, ref) {
1236
- return react.default.createElement(require_Icon_js, {
1460
+ const InterfaceUsageAlt = /* @__PURE__ */ react.default.forwardRef(function InterfaceUsageAlt({ children, size = 16, ...rest }, ref) {
1461
+ return react.default.createElement(require_Icon.Icon, {
1237
1462
  width: size,
1238
1463
  height: size,
1239
1464
  ref,
@@ -1244,8 +1469,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1244
1469
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,19h-3c-2.2056,0-4,1.7944-4,4h-2v-14c0-1.1025-.8972-2-2-2h-2v-1c0-2.2056-1.7944-4-4-4h-3c-2.2056,0-4,1.7944-4,4v3c0,2.2056,1.7944,4,4,4h3c2.2056,0,4-1.7944,4-4h2v14c0,1.1025.8972,2,2,2h2v1c0,2.2056,1.7944,4,4,4h3c2.2056,0,4-1.7944,4-4v-3c0-2.2056-1.7944-4-4-4ZM11,9c0,1.1025-.8972,2-2,2h-3c-1.1028,0-2-.8975-2-2v-3c0-1.1025.8972-2,2-2h3c1.1028,0,2,.8975,2,2v3ZM28,26c0,1.1025-.8972,2-2,2h-3c-1.1028,0-2-.8975-2-2v-3c0-1.1025.8972-2,2-2h3c1.1028,0,2,.8975,2,2v3Z" }), children);
1245
1470
  });
1246
1471
  if (process.env.NODE_ENV !== "production") InterfaceUsageAlt.propTypes = require_iconPropTypes.iconPropTypes;
1247
- const Intersect = react.default.forwardRef(function Intersect({ children, size = 16, ...rest }, ref) {
1248
- return react.default.createElement(require_Icon_js, {
1472
+ const Intersect = /* @__PURE__ */ react.default.forwardRef(function Intersect({ children, size = 16, ...rest }, ref) {
1473
+ return react.default.createElement(require_Icon.Icon, {
1249
1474
  width: size,
1250
1475
  height: size,
1251
1476
  ref,
@@ -1256,8 +1481,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1256
1481
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24H18V22h4V18h2v4A2.0021,2.0021,0,0,1,22,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14H8V10a2.0022,2.0022,0,0,1,2-2h4v2H10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H24V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V22a2.0023,2.0023,0,0,0,2,2H8v4a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V10A2.0023,2.0023,0,0,0,28,8Zm0,20H10V24h4V22H10V18H8v4H4V4H22V8H18v2h4v4h2V10h4Z" }), children);
1257
1482
  });
1258
1483
  if (process.env.NODE_ENV !== "production") Intersect.propTypes = require_iconPropTypes.iconPropTypes;
1259
- const IntrusionPrevention = react.default.forwardRef(function IntrusionPrevention({ children, size = 16, ...rest }, ref) {
1260
- return react.default.createElement(require_Icon_js, {
1484
+ const IntrusionPrevention = /* @__PURE__ */ react.default.forwardRef(function IntrusionPrevention({ children, size = 16, ...rest }, ref) {
1485
+ return react.default.createElement(require_Icon.Icon, {
1261
1486
  width: size,
1262
1487
  height: size,
1263
1488
  ref,
@@ -1272,8 +1497,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1272
1497
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H25a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,25,10ZM4,4V8H25V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H4V24h8V22H4a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h5V18H7V14H28l.0007,2H30V14A2.0023,2.0023,0,0,0,28,12Z" }), children);
1273
1498
  });
1274
1499
  if (process.env.NODE_ENV !== "production") IntrusionPrevention.propTypes = require_iconPropTypes.iconPropTypes;
1275
- const InventoryManagement = react.default.forwardRef(function InventoryManagement({ children, size = 16, ...rest }, ref) {
1276
- return react.default.createElement(require_Icon_js, {
1500
+ const InventoryManagement = /* @__PURE__ */ react.default.forwardRef(function InventoryManagement({ children, size = 16, ...rest }, ref) {
1501
+ return react.default.createElement(require_Icon.Icon, {
1277
1502
  width: size,
1278
1503
  height: size,
1279
1504
  ref,
@@ -1284,8 +1509,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1284
1509
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 24H23V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 24H30V28H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 17H23V21H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 17H30V21H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,24H4V10H28v5h2V10a2.0023,2.0023,0,0,0-2-2H22V4a2.0023,2.0023,0,0,0-2-2H12a2.002,2.002,0,0,0-2,2V8H4a2.002,2.002,0,0,0-2,2V24a2.0023,2.0023,0,0,0,2,2H17ZM12,4h8V8H12Z" }), children);
1285
1510
  });
1286
1511
  if (process.env.NODE_ENV !== "production") InventoryManagement.propTypes = require_iconPropTypes.iconPropTypes;
1287
- const IotConnect = react.default.forwardRef(function IotConnect({ children, size = 16, ...rest }, ref) {
1288
- return react.default.createElement(require_Icon_js, {
1512
+ const IotConnect = /* @__PURE__ */ react.default.forwardRef(function IotConnect({ children, size = 16, ...rest }, ref) {
1513
+ return react.default.createElement(require_Icon.Icon, {
1289
1514
  width: size,
1290
1515
  height: size,
1291
1516
  ref,
@@ -1296,8 +1521,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1296
1521
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2a4.0042,4.0042,0,0,0-4,4,3.9556,3.9556,0,0,0,.5668,2.0192L19.5859,11H11V21H21V12.4141l2.9808-2.9808A3.9553,3.9553,0,0,0,26,10a4,4,0,0,0,0-8ZM19,19H13V13h6ZM26,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,8Z" }), children);
1297
1522
  });
1298
1523
  if (process.env.NODE_ENV !== "production") IotConnect.propTypes = require_iconPropTypes.iconPropTypes;
1299
- const IotPlatform = react.default.forwardRef(function IotPlatform({ children, size = 16, ...rest }, ref) {
1300
- return react.default.createElement(require_Icon_js, {
1524
+ const IotPlatform = /* @__PURE__ */ react.default.forwardRef(function IotPlatform({ children, size = 16, ...rest }, ref) {
1525
+ return react.default.createElement(require_Icon.Icon, {
1301
1526
  width: size,
1302
1527
  height: size,
1303
1528
  ref,
@@ -1308,8 +1533,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1308
1533
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,21H11V11H21Zm-8-2h6V13H13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,13H29A10.0117,10.0117,0,0,0,19,3V1A12.0131,12.0131,0,0,1,31,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z" }), children);
1309
1534
  });
1310
1535
  if (process.env.NODE_ENV !== "production") IotPlatform.propTypes = require_iconPropTypes.iconPropTypes;
1311
- const Ip = react.default.forwardRef(function Ip({ children, size = 16, ...rest }, ref) {
1312
- return react.default.createElement(require_Icon_js, {
1536
+ const Ip = /* @__PURE__ */ react.default.forwardRef(function Ip({ children, size = 16, ...rest }, ref) {
1537
+ return react.default.createElement(require_Icon.Icon, {
1313
1538
  width: size,
1314
1539
  height: size,
1315
1540
  ref,
@@ -1326,8 +1551,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1326
1551
  }), children);
1327
1552
  });
1328
1553
  if (process.env.NODE_ENV !== "production") Ip.propTypes = require_iconPropTypes.iconPropTypes;
1329
- const Iso = react.default.forwardRef(function Iso({ children, size = 16, ...rest }, ref) {
1330
- return react.default.createElement(require_Icon_js, {
1554
+ const Iso = /* @__PURE__ */ react.default.forwardRef(function Iso({ children, size = 16, ...rest }, ref) {
1555
+ return react.default.createElement(require_Icon.Icon, {
1331
1556
  width: size,
1332
1557
  height: size,
1333
1558
  ref,
@@ -1338,8 +1563,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1338
1563
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V21A2,2,0,0,1,28,23ZM24,11V21h4V11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23H12V21h6V17H14a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H14v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11 5 11 5 21 2 21 2 23 10 23 10 21 7 21 7 11 10 11 10 9 2 9 2 11z" }), children);
1339
1564
  });
1340
1565
  if (process.env.NODE_ENV !== "production") Iso.propTypes = require_iconPropTypes.iconPropTypes;
1341
- const IsoFilled = react.default.forwardRef(function IsoFilled({ children, size = 16, ...rest }, ref) {
1342
- return react.default.createElement(require_Icon_js, {
1566
+ const IsoFilled = /* @__PURE__ */ react.default.forwardRef(function IsoFilled({ children, size = 16, ...rest }, ref) {
1567
+ return react.default.createElement(require_Icon.Icon, {
1343
1568
  width: size,
1344
1569
  height: size,
1345
1570
  ref,
@@ -1350,8 +1575,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1350
1575
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 13H24V19H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM8,21H6V11H8Zm9-8H12v2h3a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H10V19h5V17H12a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm9,6a2,2,0,0,1-2,2H21a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2Z" }), children);
1351
1576
  });
1352
1577
  if (process.env.NODE_ENV !== "production") IsoFilled.propTypes = require_iconPropTypes.iconPropTypes;
1353
- const IsoOutline = react.default.forwardRef(function IsoOutline({ children, size = 16, ...rest }, ref) {
1354
- return react.default.createElement(require_Icon_js, {
1578
+ const IsoOutline = /* @__PURE__ */ react.default.forwardRef(function IsoOutline({ children, size = 16, ...rest }, ref) {
1579
+ return react.default.createElement(require_Icon.Icon, {
1355
1580
  width: size,
1356
1581
  height: size,
1357
1582
  ref,
@@ -1362,8 +1587,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1362
1587
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,21H21a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2v6A2,2,0,0,1,24,21Zm-3-8v6h3V13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,21H10V19h5V17H12a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5v2H12v2h3a2,2,0,0,1,2,2v2A2,2,0,0,1,15,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 11H8V21H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,24V8H28V24Z" }), children);
1363
1588
  });
1364
1589
  if (process.env.NODE_ENV !== "production") IsoOutline.propTypes = require_iconPropTypes.iconPropTypes;
1365
- const ItemDefinition = react.default.forwardRef(function ItemDefinition({ children, size = 16, ...rest }, ref) {
1366
- return react.default.createElement(require_Icon_js, {
1590
+ const ItemDefinition = /* @__PURE__ */ react.default.forwardRef(function ItemDefinition({ children, size = 16, ...rest }, ref) {
1591
+ return react.default.createElement(require_Icon.Icon, {
1367
1592
  width: size,
1368
1593
  height: size,
1369
1594
  ref,
@@ -1374,8 +1599,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1374
1599
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h24c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM28,28H4V4h24v24ZM10,22v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM18.0906,19.7129v-4.9487h-1.3242v-1.7539h.688c.6538,0,.8599-.3096.8599-.9287v-1.5171h1.9775v2.4458h1.8403v1.7539h-1.8403v5.4819h1.7026v1.7539h-1.582c-1.5132,0-2.3218-.8252-2.3218-2.2871Z" }), children);
1375
1600
  });
1376
1601
  if (process.env.NODE_ENV !== "production") ItemDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1377
- const ItemUsage = react.default.forwardRef(function ItemUsage({ children, size = 16, ...rest }, ref) {
1378
- return react.default.createElement(require_Icon_js, {
1602
+ const ItemUsage = /* @__PURE__ */ react.default.forwardRef(function ItemUsage({ children, size = 16, ...rest }, ref) {
1603
+ return react.default.createElement(require_Icon.Icon, {
1379
1604
  width: size,
1380
1605
  height: size,
1381
1606
  ref,
@@ -1386,8 +1611,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1386
1611
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30h-10c-5,0-9-4-9-9v-10C2,6,6,2,11,2h10c5,0,9,4,9,9v10c0,5-4,9-9,9ZM11,4c-3.9,0-7,3.1-7,7v10c0,3.9,3.1,7,7,7h10c3.9,0,7-3.1,7-7v-10c0-3.9-3.1-7-7-7h-10ZM10,22v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM18.0906,19.7129v-4.9487h-1.3242v-1.7539h.688c.6538,0,.8599-.3096.8599-.9287v-1.5171h1.9775v2.4458h1.8403v1.7539h-1.8403v5.4819h1.7026v1.7539h-1.582c-1.5132,0-2.3218-.8252-2.3218-2.2871Z" }), children);
1387
1612
  });
1388
1613
  if (process.env.NODE_ENV !== "production") ItemUsage.propTypes = require_iconPropTypes.iconPropTypes;
1389
- const Java = react.default.forwardRef(function Java({ children, size = 16, ...rest }, ref) {
1390
- return react.default.createElement(require_Icon_js, {
1614
+ const Java = /* @__PURE__ */ react.default.forwardRef(function Java({ children, size = 16, ...rest }, ref) {
1615
+ return react.default.createElement(require_Icon.Icon, {
1391
1616
  width: size,
1392
1617
  height: size,
1393
1618
  ref,
@@ -1398,8 +1623,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1398
1623
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.3335,21h-2.667c-.9189,0-1.6665-.7476-1.6665-1.6665v-2.3335h2v2h2v-8h2v8.3335c0,.9189-.7476,1.6665-1.6665,1.6665ZM16,13v8h-2v-4h-2v4h-2v-8c0-1.1001.8999-2,2-2h2c1.1001,0,2,.8999,2,2ZM14,13h-2v2h2v-2ZM30,13v8h-2v-4h-2v4h-2v-8c0-1.1001.8999-2,2-2h2c1.1001,0,2,.8999,2,2ZM28,13h-2v2h2v-2ZM21,11h2l-2,10h-2l-2-10h2l1,7,1-7Z" }), children);
1399
1624
  });
1400
1625
  if (process.env.NODE_ENV !== "production") Java.propTypes = require_iconPropTypes.iconPropTypes;
1401
- const Jcl = react.default.forwardRef(function Jcl({ children, size = 16, ...rest }, ref) {
1402
- return react.default.createElement(require_Icon_js, {
1626
+ const Jcl = /* @__PURE__ */ react.default.forwardRef(function Jcl({ children, size = 16, ...rest }, ref) {
1627
+ return react.default.createElement(require_Icon.Icon, {
1403
1628
  width: size,
1404
1629
  height: size,
1405
1630
  ref,
@@ -1410,8 +1635,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1410
1635
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,21v2h-8v-14h2v12h6ZM10,21v-12h-2v12h-4v-2h-2v2c0,1.1025.897,2,2,2h4c1.103,0,2-.8975,2-2ZM20,21h-6v-10h6v-2h-6c-1.103,0-2,.897-2,2v10c0,1.1025.897,2,2,2h6v-2Z" }), children);
1411
1636
  });
1412
1637
  if (process.env.NODE_ENV !== "production") Jcl.propTypes = require_iconPropTypes.iconPropTypes;
1413
- const JobDaemon = react.default.forwardRef(function JobDaemon({ children, size = 16, ...rest }, ref) {
1414
- return react.default.createElement(require_Icon_js, {
1638
+ const JobDaemon = /* @__PURE__ */ react.default.forwardRef(function JobDaemon({ children, size = 16, ...rest }, ref) {
1639
+ return react.default.createElement(require_Icon.Icon, {
1415
1640
  width: size,
1416
1641
  height: size,
1417
1642
  ref,
@@ -1422,8 +1647,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1422
1647
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,17h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v11c0,1.1.9,2,2,2ZM12,4h8v11h-8V4ZM8,19h5v2h-5c-1.1,0-2-.9-2-2v-11h2v11ZM4,23h5v2h-5c-1.1,0-2-.9-2-2v-11h2v11ZM27,20c-1.6,0-3.1,1.4-4,2.4-.9-1-2.4-2.4-4-2.4-2.6,0-4,2-4,4s1.4,4,4,4,3.1-1.4,4-2.4c.9,1,2.4,2.4,4,2.4,2.6,0,4-2,4-4s-1.4-4-4-4ZM19,26c-1.5,0-2-1.1-2-2s.5-2,2-2,2,1.1,2.8,2c-.7.9-1.9,2-2.8,2ZM27,26c-.9,0-2-1.1-2.8-2,.7-.9,1.9-2,2.8-2,1.5,0,2,1.1,2,2s-.5,2-2,2Z" }), children);
1423
1648
  });
1424
1649
  if (process.env.NODE_ENV !== "production") JobDaemon.propTypes = require_iconPropTypes.iconPropTypes;
1425
- const JobRun = react.default.forwardRef(function JobRun({ children, size = 16, ...rest }, ref) {
1426
- return react.default.createElement(require_Icon_js, {
1650
+ const JobRun = /* @__PURE__ */ react.default.forwardRef(function JobRun({ children, size = 16, ...rest }, ref) {
1651
+ return react.default.createElement(require_Icon.Icon, {
1427
1652
  width: size,
1428
1653
  height: size,
1429
1654
  ref,
@@ -1434,8 +1659,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1434
1659
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,17h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v11c0,1.1.9,2,2,2ZM12,4h8v11h-8V4ZM8,19h6v2h-6c-1.1,0-2-.9-2-2v-11h2v11ZM4,23h6v2h-6c-1.1,0-2-.9-2-2v-11h2v11ZM30,24l-6,6-1.4-1.4,3.6-3.6h-9.2v-2h9.2l-3.6-3.6,1.4-1.4,6,6Z" }), children);
1435
1660
  });
1436
1661
  if (process.env.NODE_ENV !== "production") JobRun.propTypes = require_iconPropTypes.iconPropTypes;
1437
- const JoinFull = react.default.forwardRef(function JoinFull({ children, size = 16, ...rest }, ref) {
1438
- return react.default.createElement(require_Icon_js, {
1662
+ const JoinFull = /* @__PURE__ */ react.default.forwardRef(function JoinFull({ children, size = 16, ...rest }, ref) {
1663
+ return react.default.createElement(require_Icon.Icon, {
1439
1664
  width: size,
1440
1665
  height: size,
1441
1666
  ref,
@@ -1450,8 +1675,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1450
1675
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16a9.9976,9.9976,0,0,1,6-9.1621,10,10,0,1,0,0,18.3242A9.9976,9.9976,0,0,1,10,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,6a9.9539,9.9539,0,0,0-4,.8379,9.9953,9.9953,0,0,1,0,18.3242A9.9988,9.9988,0,1,0,20,6Z" }), children);
1451
1676
  });
1452
1677
  if (process.env.NODE_ENV !== "production") JoinFull.propTypes = require_iconPropTypes.iconPropTypes;
1453
- const JoinInner = react.default.forwardRef(function JoinInner({ children, size = 16, ...rest }, ref) {
1454
- return react.default.createElement(require_Icon_js, {
1678
+ const JoinInner = /* @__PURE__ */ react.default.forwardRef(function JoinInner({ children, size = 16, ...rest }, ref) {
1679
+ return react.default.createElement(require_Icon.Icon, {
1455
1680
  width: size,
1456
1681
  height: size,
1457
1682
  ref,
@@ -1462,8 +1687,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1462
1687
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,6a9.9355,9.9355,0,0,0-4,.8418A9.999,9.999,0,1,0,16,25.16,9.998,9.998,0,1,0,20,6ZM12,24A8,8,0,1,1,13.7573,8.2017a9.9734,9.9734,0,0,0,0,15.5986A7.9919,7.9919,0,0,1,12,24Zm8,0a7.9919,7.9919,0,0,1-1.7573-.2,9.9734,9.9734,0,0,0,0-15.5986A7.9972,7.9972,0,1,1,20,24Z" }), children);
1463
1688
  });
1464
1689
  if (process.env.NODE_ENV !== "production") JoinInner.propTypes = require_iconPropTypes.iconPropTypes;
1465
- const JoinInnerAlt = react.default.forwardRef(function JoinInnerAlt({ children, size = 16, ...rest }, ref) {
1466
- return react.default.createElement(require_Icon_js, {
1690
+ const JoinInnerAlt = /* @__PURE__ */ react.default.forwardRef(function JoinInnerAlt({ children, size = 16, ...rest }, ref) {
1691
+ return react.default.createElement(require_Icon.Icon, {
1467
1692
  width: size,
1468
1693
  height: size,
1469
1694
  ref,
@@ -1474,8 +1699,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1474
1699
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.3,12.6l-1.3,1.5c-1.1-1-2-2.2-2.7-3.5l1.8-.9c.6,1.1,1.3,2.1,2.2,2.9h0ZM6.4,7.7c-.3-.9-.4-1.9-.4-2.8v-.9s-2,0-2,0v.9c0,1.1.2,2.3.5,3.4l1.9-.6h0ZM14.2,15c-1.2-.2-2.4-.7-3.4-1.3l-1,1.7c.3.2.7.4,1.1.6-.4.2-.7.4-1.1.6l1,1.7c1.1-.7,2.2-1.1,3.4-1.3v-1.9h0ZM5.3,21.4l1.8.9c.6-1.1,1.3-2.1,2.2-2.9l-1.3-1.5c-1.1,1-2,2.2-2.7,3.5h0ZM4,27.1v.9h2v-.9c0-1,.1-1.9.4-2.8l-1.9-.6c-.3,1.1-.5,2.2-.5,3.4h0ZM23,11l-1.4,1.4,2.6,2.6h-8.2s0,2,0,2h8.2s-2.6,2.6-2.6,2.6l1.4,1.4,5-5s-5-5-5-5Z" }), children);
1475
1700
  });
1476
1701
  if (process.env.NODE_ENV !== "production") JoinInnerAlt.propTypes = require_iconPropTypes.iconPropTypes;
1477
- const JoinLeft = react.default.forwardRef(function JoinLeft({ children, size = 16, ...rest }, ref) {
1478
- return react.default.createElement(require_Icon_js, {
1702
+ const JoinLeft = /* @__PURE__ */ react.default.forwardRef(function JoinLeft({ children, size = 16, ...rest }, ref) {
1703
+ return react.default.createElement(require_Icon.Icon, {
1479
1704
  width: size,
1480
1705
  height: size,
1481
1706
  ref,
@@ -1490,8 +1715,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1490
1715
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16a10.0105,10.0105,0,0,1,6.0032-9.1606,10,10,0,1,0,0,18.3212A10.0105,10.0105,0,0,1,10,16Z" }), children);
1491
1716
  });
1492
1717
  if (process.env.NODE_ENV !== "production") JoinLeft.propTypes = require_iconPropTypes.iconPropTypes;
1493
- const JoinLeftOuter = react.default.forwardRef(function JoinLeftOuter({ children, size = 16, ...rest }, ref) {
1494
- return react.default.createElement(require_Icon_js, {
1718
+ const JoinLeftOuter = /* @__PURE__ */ react.default.forwardRef(function JoinLeftOuter({ children, size = 16, ...rest }, ref) {
1719
+ return react.default.createElement(require_Icon.Icon, {
1495
1720
  width: size,
1496
1721
  height: size,
1497
1722
  ref,
@@ -1502,8 +1727,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1502
1727
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16l-5,5-1.4-1.4,2.6-2.6h-10.2c-1.2.2-2.3.7-3.4,1.3l-1-1.7c.4-.3.8-.5,1.3-.7-4.1-1.8-6.9-5.6-6.9-10.1v-1.8s2,0,2,0v1.8c0,5.1,4.5,9.2,10,9.2h8.2l-2.6-2.6,1.4-1.4,5,5h0s0,0,0,0ZM4,27v1h2v-1c0-1,0-1.9.3-2.9l-1.9-.6c-.3,1.1-.5,2.3-.5,3.4h0ZM5.3,21.5l1.7.9c.6-1.1,1.3-2.1,2.2-3l-1.3-1.5c-1.1,1-2,2.2-2.6,3.6Z" }), children);
1503
1728
  });
1504
1729
  if (process.env.NODE_ENV !== "production") JoinLeftOuter.propTypes = require_iconPropTypes.iconPropTypes;
1505
- const JoinOuter = react.default.forwardRef(function JoinOuter({ children, size = 16, ...rest }, ref) {
1506
- return react.default.createElement(require_Icon_js, {
1730
+ const JoinOuter = /* @__PURE__ */ react.default.forwardRef(function JoinOuter({ children, size = 16, ...rest }, ref) {
1731
+ return react.default.createElement(require_Icon.Icon, {
1507
1732
  width: size,
1508
1733
  height: size,
1509
1734
  ref,
@@ -1514,8 +1739,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1514
1739
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,6a9.9539,9.9539,0,0,0-4,.8379,9.9953,9.9953,0,0,1,0,18.3242A9.9988,9.9988,0,1,0,20,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16a9.9976,9.9976,0,0,1,6-9.1621,10,10,0,1,0,0,18.3242A9.9976,9.9976,0,0,1,10,16Z" }), children);
1515
1740
  });
1516
1741
  if (process.env.NODE_ENV !== "production") JoinOuter.propTypes = require_iconPropTypes.iconPropTypes;
1517
- const JoinRight = react.default.forwardRef(function JoinRight({ children, size = 16, ...rest }, ref) {
1518
- return react.default.createElement(require_Icon_js, {
1742
+ const JoinRight = /* @__PURE__ */ react.default.forwardRef(function JoinRight({ children, size = 16, ...rest }, ref) {
1743
+ return react.default.createElement(require_Icon.Icon, {
1519
1744
  width: size,
1520
1745
  height: size,
1521
1746
  ref,
@@ -1530,8 +1755,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1530
1755
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16a9.9759,9.9759,0,0,0,3.7517,7.8008,7.9937,7.9937,0,0,0,0-15.6016A9.9759,9.9759,0,0,0,10,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,24A8,8,0,1,1,13.7517,8.1992a9.9758,9.9758,0,0,1,2.2451-1.36,10,10,0,1,0,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A7.9727,7.9727,0,0,1,12,24Z" }), children);
1531
1756
  });
1532
1757
  if (process.env.NODE_ENV !== "production") JoinRight.propTypes = require_iconPropTypes.iconPropTypes;
1533
- const JoinRightOuter = react.default.forwardRef(function JoinRightOuter({ children, size = 16, ...rest }, ref) {
1534
- return react.default.createElement(require_Icon_js, {
1758
+ const JoinRightOuter = /* @__PURE__ */ react.default.forwardRef(function JoinRightOuter({ children, size = 16, ...rest }, ref) {
1759
+ return react.default.createElement(require_Icon.Icon, {
1535
1760
  width: size,
1536
1761
  height: size,
1537
1762
  ref,
@@ -1542,8 +1767,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1542
1767
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.01,16l-5,5-1.41-1.41,2.59-2.59h-6.09s-2.07,0-2.07,0c-5.52,0-10.02,4.11-10.02,9.17v1.83h-2v-1.83c0-4.45,2.82-8.29,6.89-10.09-.43-.21-.85-.43-1.26-.69l1.02-1.74c1.04.66,2.16,1.11,3.35,1.34h2s0,0,0,0h8.17l-2.59-2.59,1.41-1.41,5,5h0ZM6.36,7.81c-.26-.92-.39-1.88-.39-2.85v-.96h-1.95v.96c0,1.16.16,2.32.47,3.43l1.87-.57ZM7.9,14.04l1.31-1.51c-.9-.85-1.64-1.85-2.19-2.97l-1.74.92c.66,1.35,1.54,2.54,2.62,3.56Z" }), children);
1543
1768
  });
1544
1769
  if (process.env.NODE_ENV !== "production") JoinRightOuter.propTypes = require_iconPropTypes.iconPropTypes;
1545
- const JoinNode = react.default.forwardRef(function JoinNode({ children, size = 16, ...rest }, ref) {
1546
- return react.default.createElement(require_Icon_js, {
1770
+ const JoinNode = /* @__PURE__ */ react.default.forwardRef(function JoinNode({ children, size = 16, ...rest }, ref) {
1771
+ return react.default.createElement(require_Icon.Icon, {
1547
1772
  width: size,
1548
1773
  height: size,
1549
1774
  ref,
@@ -1563,8 +1788,8 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1563
1788
  }), children);
1564
1789
  });
1565
1790
  if (process.env.NODE_ENV !== "production") JoinNode.propTypes = require_iconPropTypes.iconPropTypes;
1566
- const Jpg = react.default.forwardRef(function Jpg({ children, size = 16, ...rest }, ref) {
1567
- return react.default.createElement(require_Icon_js, {
1791
+ const Jpg = /* @__PURE__ */ react.default.forwardRef(function Jpg({ children, size = 16, ...rest }, ref) {
1792
+ return react.default.createElement(require_Icon.Icon, {
1568
1793
  width: size,
1569
1794
  height: size,
1570
1795
  ref,
@@ -1575,224 +1800,21 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1575
1800
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H24V21h4V17H26V15h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,23H12V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H14Zm0-7h4V11H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,23H4a2,2,0,0,1-2-2V19H4v2H8V9h2V21A2,2,0,0,1,8,23Z" }), children);
1576
1801
  });
1577
1802
  if (process.env.NODE_ENV !== "production") Jpg.propTypes = require_iconPropTypes.iconPropTypes;
1578
- const JsError = react.default.forwardRef(function JsError({ children, size = 16, ...rest }, ref) {
1579
- return react.default.createElement(require_Icon_js, {
1580
- width: size,
1581
- height: size,
1582
- ref,
1583
- xmlns: "http://www.w3.org/2000/svg",
1584
- viewBox: "0 0 32 32",
1585
- fill: "currentColor",
1586
- ...rest
1587
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20.3335,30h-2.667c-.9189,0-1.6665-.7476-1.6665-1.6665v-2.3335h2v2h2v-8h2v8.3335c0,.9189-.7476,1.6665-1.6665,1.6665Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28.3335,30h-4.3335v-2h4v-2h-2c-1.103,0-2-.897-2-2v-2.3335c0-.9189.7476-1.6665,1.6665-1.6665h4.3335v2h-4v2h2c1.103,0,2,.897,2,2v2.3335c0,.9189-.7476,1.6665-1.6665,1.6665Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,18c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 7H17V16H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m14,26h-4.5c-.3538,0-.6809-.1868-.8608-.4912L2.1392,14.5088c-.0928-.1569-.1392-.3329-.1392-.5088s.0464-.3519.1392-.5088L8.6392,2.4912c.1799-.3044.5071-.4912.8608-.4912h13c.3538,0,.6809.1868.8608.4912l6.5,11c.0928.1569.1392.3328.1392.5088s-.0464.3519-.1392.5088l-2,3.3845-1.7217-1.0173,1.6992-2.876-5.9089-10h-11.8589l-5.9089,10,5.9089,10h3.9294v2Z" }), children);
1588
- });
1589
- if (process.env.NODE_ENV !== "production") JsError.propTypes = require_iconPropTypes.iconPropTypes;
1590
- const Json = react.default.forwardRef(function Json({ children, size = 16, ...rest }, ref) {
1591
- return react.default.createElement(require_Icon_js, {
1592
- width: size,
1593
- height: size,
1594
- ref,
1595
- xmlns: "http://www.w3.org/2000/svg",
1596
- viewBox: "0 0 32 32",
1597
- fill: "currentColor",
1598
- ...rest
1599
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 11 31 21 29 21 27 15 27 21 25 21 25 11 27 11 29 17 29 11 31 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.3335,21h-2.667A1.6684,1.6684,0,0,1,17,19.3335v-6.667A1.6684,1.6684,0,0,1,18.6665,11h2.667A1.6684,1.6684,0,0,1,23,12.6665v6.667A1.6684,1.6684,0,0,1,21.3335,21ZM19,19h2V13H19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.3335,21H9V19h4V17H11a2.002,2.002,0,0,1-2-2V12.6665A1.6684,1.6684,0,0,1,10.6665,11H15v2H11v2h2a2.002,2.002,0,0,1,2,2v2.3335A1.6684,1.6684,0,0,1,13.3335,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.3335,21H2.6665A1.6684,1.6684,0,0,1,1,19.3335V17H3v2H5V11H7v8.3335A1.6684,1.6684,0,0,1,5.3335,21Z" }), children);
1600
- });
1601
- if (process.env.NODE_ENV !== "production") Json.propTypes = require_iconPropTypes.iconPropTypes;
1602
- const JsonReference = react.default.forwardRef(function JsonReference({ children, size = 16, ...rest }, ref) {
1603
- return react.default.createElement(require_Icon_js, {
1604
- width: size,
1605
- height: size,
1606
- ref,
1607
- xmlns: "http://www.w3.org/2000/svg",
1608
- viewBox: "0 0 32 32",
1609
- fill: "currentColor",
1610
- ...rest
1611
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 12 27 6 25 6 25 16 27 16 27 10 29 16 31 16 31 6 29 6 29 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.3335,6h-2.667A1.6683,1.6683,0,0,0,17,7.6665v6.667A1.6684,1.6684,0,0,0,18.6665,16h2.667A1.6683,1.6683,0,0,0,23,14.3335V7.6665A1.6683,1.6683,0,0,0,21.3335,6ZM21,14H19V8h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,7.6665V10a2.002,2.002,0,0,0,2,2h2v2H9v2h4.3335A1.6683,1.6683,0,0,0,15,14.3335V12a2.002,2.002,0,0,0-2-2H11V8h4V6H10.6665A1.6683,1.6683,0,0,0,9,7.6665Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,14H3V12H1v2.3335A1.6684,1.6684,0,0,0,2.6665,16h2.667A1.6683,1.6683,0,0,0,7,14.3335V6H5Z" }), children);
1612
- });
1613
- if (process.env.NODE_ENV !== "production") JsonReference.propTypes = require_iconPropTypes.iconPropTypes;
1614
- const JumpLink = react.default.forwardRef(function JumpLink({ children, size = 16, ...rest }, ref) {
1615
- return react.default.createElement(require_Icon_js, {
1616
- width: size,
1617
- height: size,
1618
- ref,
1619
- xmlns: "http://www.w3.org/2000/svg",
1620
- viewBox: "0 0 32 32",
1621
- fill: "currentColor",
1622
- ...rest
1623
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.4141,17.5859,18,22.1719V8H8V6H18a2.0024,2.0024,0,0,1,2,2V22.1719l4.5859-4.586L26,19l-7,7-7-7Z" }), children);
1624
- });
1625
- if (process.env.NODE_ENV !== "production") JumpLink.propTypes = require_iconPropTypes.iconPropTypes;
1626
- const KeepDry = react.default.forwardRef(function KeepDry({ children, size = 16, ...rest }, ref) {
1627
- return react.default.createElement(require_Icon_js, {
1628
- width: size,
1629
- height: size,
1630
- ref,
1631
- xmlns: "http://www.w3.org/2000/svg",
1632
- viewBox: "0 0 32 32",
1633
- fill: "currentColor",
1634
- ...rest
1635
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,10a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L24.17.4141a1.0381,1.0381,0,0,1,1.6592,0L28.3154,4.11A3.9693,3.9693,0,0,1,29,6.223,3.8978,3.8978,0,0,1,25,10Zm0-7.2368L23.3438,5.2257A1.89,1.89,0,0,0,23,6.223a2.014,2.014,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9854,15.83a13.9726,13.9726,0,0,0-1.8147-4.8323L26.4329,12.001a12.092,12.092,0,0,1,1.07,2.2124A5.4079,5.4079,0,0,0,26,14a6.5439,6.5439,0,0,0-3.939,1.333,14.5177,14.5177,0,0,0-3.0456-8.9341A13.8858,13.8858,0,0,0,17,4.4014V2H15V4.0464A14.3808,14.3808,0,0,0,2.0146,15.83,1,1,0,0,0,3.51,16.86,4.8551,4.8551,0,0,1,6,16a4.8653,4.8653,0,0,1,4.1406,2.5107,1.0393,1.0393,0,0,0,1.7188,0A5.02,5.02,0,0,1,15,16.1255V25.5a2.5,2.5,0,0,1-5,0V25H8v.5a4.5,4.5,0,0,0,9,0V16.1255a5.02,5.02,0,0,1,3.1406,2.3852.9994.9994,0,0,0,1.7188,0A4.8653,4.8653,0,0,1,26,16a4.8551,4.8551,0,0,1,2.49.86,1,1,0,0,0,1.4957-1.03ZM9.939,15.333A6.5439,6.5439,0,0,0,6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4413,12.4413,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333ZM16,14a6.5526,6.5526,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0564-9.1763,3.4307,2.6768,4.009,6.9487,4.0522,9.1728A6.552,6.552,0,0,0,16,14Z" }), children);
1636
- });
1637
- if (process.env.NODE_ENV !== "production") KeepDry.propTypes = require_iconPropTypes.iconPropTypes;
1638
- const Key = react.default.forwardRef(function Key({ children, size = 16, ...rest }, ref) {
1639
- return react.default.createElement(require_Icon_js, {
1640
- width: size,
1641
- height: size,
1642
- ref,
1643
- xmlns: "http://www.w3.org/2000/svg",
1644
- viewBox: "0 0 32 32",
1645
- fill: "currentColor",
1646
- ...rest
1647
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1648
- strokeWidth: "0",
1649
- d: "M30 9 28.0001 9 26 16 24.0001 9 22 9 25 17.9996 25 23 27 23 27 18 27.0001 18 30 9z"
1650
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1651
- strokeWidth: "0",
1652
- d: "M21 11 21 9 13 9 13 23 21 23 21 21 15 21 15 17 20 17 20 15 15 15 15 11 21 11z"
1653
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1654
- strokeWidth: "0",
1655
- d: "M11 9 8.8941 9 5 15.5527 5 9 3 9 3 23 5 23 5 18.7062 5.9277 17.2208 8.8941 23 11 23 7.1093 15.4308 11 9z"
1656
- }), children);
1657
- });
1658
- if (process.env.NODE_ENV !== "production") Key.propTypes = require_iconPropTypes.iconPropTypes;
1659
- const Keyboard = react.default.forwardRef(function Keyboard({ children, size = 16, ...rest }, ref) {
1660
- return react.default.createElement(require_Icon_js, {
1661
- width: size,
1662
- height: size,
1663
- ref,
1664
- xmlns: "http://www.w3.org/2000/svg",
1665
- viewBox: "0 0 32 32",
1666
- fill: "currentColor",
1667
- ...rest
1668
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,26H4a2,2,0,0,1-2-2V10A2,2,0,0,1,4,8H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,10V24H28V10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 20H21V22H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H8V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H12V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 12H16V14H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 12H20V14H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 20H8V22H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 16H8V18H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 16H12V18H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 16H16V18H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 12H26V14H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 16H26V18H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 16H20V18H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 20H26V22H23z" }), children);
1669
- });
1670
- if (process.env.NODE_ENV !== "production") Keyboard.propTypes = require_iconPropTypes.iconPropTypes;
1671
- const KeyboardOff = react.default.forwardRef(function KeyboardOff({ children, size = 16, ...rest }, ref) {
1672
- return react.default.createElement(require_Icon_js, {
1673
- width: size,
1674
- height: size,
1675
- ref,
1676
- xmlns: "http://www.w3.org/2000/svg",
1677
- viewBox: "0 0 32 32",
1678
- fill: "currentColor",
1679
- ...rest
1680
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H8V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 12H20V14H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 20H8V22H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 16H8V18H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 16H12V18H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 12H26V14H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 16H26V18H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.2,10H28v13h2V10c0-1.1-0.9-2-2-2H12.2L14.2,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28.6L3.4,2L2,3.4L6.6,8H4c-1.1,0-2,0.9-2,2v14c0,1.1,0.9,2,2,2h20.6l4,4L30,28.6z M4,24V10h4.6l2,2H10v2h2.6l2,2H14v2 h2.6l2,2H10v2h10.6l2,2H4z" }), children);
1681
- });
1682
- if (process.env.NODE_ENV !== "production") KeyboardOff.propTypes = require_iconPropTypes.iconPropTypes;
1683
- const KioskDevice = react.default.forwardRef(function KioskDevice({ children, size = 16, ...rest }, ref) {
1684
- return react.default.createElement(require_Icon_js, {
1685
- width: size,
1686
- height: size,
1687
- ref,
1688
- xmlns: "http://www.w3.org/2000/svg",
1689
- viewBox: "0 0 32 32",
1690
- fill: "currentColor",
1691
- ...rest
1692
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,19c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v13c0,1.1.9,2,2,2h7v9H4v2h24v-2h-9v-9h7ZM17,28h-2v-9h2v9ZM6,17V4h20v13H6ZM16,13c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1Z" }), children);
1693
- });
1694
- if (process.env.NODE_ENV !== "production") KioskDevice.propTypes = require_iconPropTypes.iconPropTypes;
1695
- const Kubelet = react.default.forwardRef(function Kubelet({ children, size = 16, ...rest }, ref) {
1696
- return react.default.createElement(require_Icon_js, {
1697
- width: size,
1698
- height: size,
1699
- ref,
1700
- xmlns: "http://www.w3.org/2000/svg",
1701
- viewBox: "0 0 32 32",
1702
- fill: "currentColor",
1703
- ...rest
1704
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1705
- strokeWidth: "0",
1706
- d: "m20.0444,27.2942l-3.0825-10.018-1.0132,3.04c-.1361.4084-.5183.6838-.9487.6838h-6s0-2,0-2h5.2793s1.772-5.3162,1.772-5.3162c.1307-.4123.5162-.6902.9487-.6838.4374.0046.8225.2891.9555.7058l3.0088,9.7783,1.0742-3.7589c.1227-.4293.5151-.7252.9615-.7252h5s0,2,0,2h-4.2456s-1.7933,6.2747-1.7933,6.2747c-.1216.4256-.5085.7207-.9511.7253h-.01c-.4389,0-.8265-.2863-.9556-.7058Z"
1707
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1708
- strokeWidth: "0",
1709
- d: "m16,28H6c-1.1028,0-2-.8972-2-2V6c0-1.1028.8972-2,2-2h20c1.1028,0,2,.8972,2,2v9h-2V6H6v20h10v2Z"
1710
- }), children);
1711
- });
1712
- if (process.env.NODE_ENV !== "production") Kubelet.propTypes = require_iconPropTypes.iconPropTypes;
1713
- const Kubernetes = react.default.forwardRef(function Kubernetes({ children, size = 16, ...rest }, ref) {
1714
- if (process.env.NODE_ENV !== "production") {
1715
- if (!didWarnAboutDeprecation["Kubernetes"]) {
1716
- didWarnAboutDeprecation["Kubernetes"] = true;
1717
- console.warn("The current kubernetes icon has been replaced by logo--kubernetes. As a result, the Kubernetes component will be removed in the next major version of @carbon/icons-react.");
1718
- }
1719
- }
1720
- return react.default.createElement(require_Icon_js, {
1721
- width: size,
1722
- height: size,
1723
- ref,
1724
- xmlns: "http://www.w3.org/2000/svg",
1725
- viewBox: "0 0 32 32",
1726
- fill: "currentColor",
1727
- ...rest
1728
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.2227,17.9639,25.9194,17.21a9.7843,9.7843,0,0,0-1.5249-6.6245l2.54-2.0254L25.6875,6.9961,23.1482,9.0205A9.97,9.97,0,0,0,17,6.0508V3H15V6.0508a9.97,9.97,0,0,0-6.1482,2.97L6.3125,6.9961,5.0654,8.56l2.54,2.0254A9.7843,9.7843,0,0,0,6.0806,17.21l-3.3033.7544.4454,1.9492L6.52,19.1606a10.0359,10.0359,0,0,0,4.2688,5.358l-1.33,2.7631,1.8018.8677L12.59,25.3882a9.8113,9.8113,0,0,0,6.8208,0L20.74,28.1494l1.8018-.8682-1.33-2.7626a10.0359,10.0359,0,0,0,4.2688-5.358l3.2973.7525ZM24,16c0,.2573-.0148.5112-.0386.7627l-5-1.1416a2.9664,2.9664,0,0,0-.1376-.5942L22.82,11.84A7.9392,7.9392,0,0,1,24,16Zm-9,0a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,15,16Zm6.5758-5.7256L17.58,13.4609a3.0028,3.0028,0,0,0-.58-.2768V8.0693A7.9762,7.9762,0,0,1,21.5758,10.2744ZM15,8.0693v5.1148a3.0028,3.0028,0,0,0-.58.2768l-3.9956-3.1865A7.9762,7.9762,0,0,1,15,8.0693ZM8,16a7.9392,7.9392,0,0,1,1.18-4.16l3.9962,3.1866a2.9664,2.9664,0,0,0-.1376.5942l-5,1.1416C8.0148,16.5112,8,16.2573,8,16Zm.4835,2.7124,4.9752-1.1362a3.0132,3.0132,0,0,0,.4146.5366L11.6594,22.71A8.031,8.031,0,0,1,8.4835,18.7124ZM16,24a7.9679,7.9679,0,0,1-2.54-.42l2.2206-4.6123A2.9988,2.9988,0,0,0,16,19a2.9988,2.9988,0,0,0,.319-.0322L18.54,23.58A7.9546,7.9546,0,0,1,16,24Zm4.3406-1.29-2.2139-4.5976a3.0132,3.0132,0,0,0,.4146-.5366l4.9752,1.1362A8.031,8.031,0,0,1,20.3406,22.71Z" }), children);
1729
- });
1730
- if (process.env.NODE_ENV !== "production") Kubernetes.propTypes = require_iconPropTypes.iconPropTypes;
1731
- const KubernetesControlPlaneNode = react.default.forwardRef(function KubernetesControlPlaneNode({ children, size = 16, ...rest }, ref) {
1732
- return react.default.createElement(require_Icon_js, {
1733
- width: size,
1734
- height: size,
1735
- ref,
1736
- xmlns: "http://www.w3.org/2000/svg",
1737
- viewBox: "0 0 32 32",
1738
- fill: "currentColor",
1739
- ...rest
1740
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.951 20h-2.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h6.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h2.1843v-2Zm-5 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Zm5-10h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h2.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h6.1843v-2Zm-9 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1741
- fill: "none",
1742
- d: "M0 0h32v32H0z"
1743
- }), children);
1744
- });
1745
- if (process.env.NODE_ENV !== "production") KubernetesControlPlaneNode.propTypes = require_iconPropTypes.iconPropTypes;
1746
- const KubernetesIpAddress = react.default.forwardRef(function KubernetesIpAddress({ children, size = 16, ...rest }, ref) {
1747
- return react.default.createElement(require_Icon_js, {
1748
- width: size,
1749
- height: size,
1750
- ref,
1751
- xmlns: "http://www.w3.org/2000/svg",
1752
- viewBox: "0 0 32 32",
1753
- fill: "currentColor",
1754
- ...rest
1755
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1756
- cx: "16",
1757
- cy: "9",
1758
- r: "2"
1759
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1760
- cx: "16",
1761
- cy: "16",
1762
- r: "2"
1763
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18.8157,26c-.302-.8472-.9685-1.5137-1.8157-1.8159v-2.1841h3c.2969,0,.5781-.1318.7683-.3599l5-6c.1982-.2378.2751-.5547.2078-.8569l-2-9c-.0696-.3145-.2864-.5757-.5823-.7021l-7-3c-.1257-.0542-.2598-.0811-.3938-.0811s-.2681.0269-.3938.0811l-7.0015,3c-.2959.1265-.5127.3877-.5825.7021l-1.9985,9c-.0671.3027.0098.6191.208.8569l5,6c.1902.228.4714.3599.7683.3599h3v2.1846c-.8472.3018-1.5137.9683-1.8157,1.8154H4v2h9.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h9.1843v-2h-9.1843Zm-10.7329-11.2627l1.7808-8.02,6.1365-2.6294,6.135,2.6294,1.7822,8.02-4.3855,5.2627h-7.0635l-4.3855-5.2627Zm7.9172,13.2627c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z" }), children);
1764
- });
1765
- if (process.env.NODE_ENV !== "production") KubernetesIpAddress.propTypes = require_iconPropTypes.iconPropTypes;
1766
- const KubernetesOperator = react.default.forwardRef(function KubernetesOperator({ children, size = 16, ...rest }, ref) {
1767
- return react.default.createElement(require_Icon_js, {
1768
- width: size,
1769
- height: size,
1770
- ref,
1771
- xmlns: "http://www.w3.org/2000/svg",
1772
- viewBox: "0 0 32 32",
1773
- fill: "currentColor",
1774
- ...rest
1775
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1776
- strokeWidth: "0",
1777
- d: "m19,21h-6c-1.1028,0-2-.8972-2-2v-6c0-1.1028.8972-2,2-2h6c1.1028,0,2,.8972,2,2v6c0,1.1028-.8972,2-2,2Zm-6-8v6h6v-6h-6Z"
1778
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1779
- strokeWidth: "0",
1780
- d: "m30,16c0-7.7197-6.2803-14-14-14S2,8.2803,2,16s6.2803,14,14,14c2.7773,0,5.417-.7959,7.7012-2.3081.3948.1914.8315.3081,1.2988.3081,1.6543,0,3-1.3457,3-3,0-.4673-.1167-.9043-.3079-1.2988,1.5122-2.2842,2.3079-4.9238,2.3079-7.7012Zm-26,0c0-6.6167,5.3833-12,12-12s12,5.3833,12,12c0,2.248-.6152,4.3877-1.7744,6.2681-.375-.1689-.7881-.2681-1.2256-.2681-1.6543,0-3,1.3457-3,3,0,.4375.0991.8506.2681,1.2256-1.8801,1.1592-4.0198,1.7744-6.2681,1.7744-6.6167,0-12-5.3833-12-12Zm21,10c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
1781
- }), children);
1782
- });
1783
- if (process.env.NODE_ENV !== "production") KubernetesOperator.propTypes = require_iconPropTypes.iconPropTypes;
1784
- const KubernetesPod = react.default.forwardRef(function KubernetesPod({ children, size = 16, ...rest }, ref) {
1785
- return react.default.createElement(require_Icon_js, {
1786
- width: size,
1787
- height: size,
1788
- ref,
1789
- xmlns: "http://www.w3.org/2000/svg",
1790
- viewBox: "0 0 32 32",
1791
- fill: "currentColor",
1792
- ...rest
1793
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.5046,11.6368l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,31c-.1741,0-.3481-.0454-.5039-.1362l-12-7c-.3071-.1792-.4961-.5081-.4961-.8638v-14c0-.3557.189-.6846.4961-.8638L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l11,6.4166-1.0078,1.7275-10.4961-6.1227-11,6.4166v12.8513l11,6.4166,11-6.4166v-7.4257h2v8c0,.3557-.189.6846-.4961.8638l-12,7c-.1558.0908-.3298.1362-.5039.1362Z" }), children);
1794
- });
1795
- if (process.env.NODE_ENV !== "production") KubernetesPod.propTypes = require_iconPropTypes.iconPropTypes;
1803
+ exports.IbmSoftwareWatsonxDataUnstructuredEnrichment = IbmSoftwareWatsonxDataUnstructuredEnrichment;
1804
+ exports.IbmSoftwareWatsonxDataUnstructuredImport = IbmSoftwareWatsonxDataUnstructuredImport;
1805
+ exports.IbmSoftwareWatsonxDocumentLibrary = IbmSoftwareWatsonxDocumentLibrary;
1806
+ exports.IbmWatsonAssistant = IbmWatsonAssistant;
1807
+ exports.IbmWatsonDiscovery = IbmWatsonDiscovery;
1808
+ exports.IbmWatsonKnowledgeCatalog = IbmWatsonKnowledgeCatalog;
1809
+ exports.IbmWatsonKnowledgeStudio = IbmWatsonKnowledgeStudio;
1810
+ exports.IbmWatsonLanguageTranslator = IbmWatsonLanguageTranslator;
1811
+ exports.IbmWatsonMachineLearning = IbmWatsonMachineLearning;
1812
+ exports.IbmWatsonNaturalLanguageClassifier = IbmWatsonNaturalLanguageClassifier;
1813
+ exports.IbmWatsonNaturalLanguageUnderstanding = IbmWatsonNaturalLanguageUnderstanding;
1814
+ exports.IbmWatsonOpenscale = IbmWatsonOpenscale;
1815
+ exports.IbmWatsonOrders = IbmWatsonOrders;
1816
+ exports.IbmWatsonQuery = IbmWatsonQuery;
1817
+ exports.IbmWatsonSpeechToText = IbmWatsonSpeechToText;
1796
1818
  exports.IbmWatsonStudio = IbmWatsonStudio;
1797
1819
  exports.IbmWatsonTextToSpeech = IbmWatsonTextToSpeech;
1798
1820
  exports.IbmWatsonToneAnalyzer = IbmWatsonToneAnalyzer;
@@ -1897,21 +1919,6 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1897
1919
  exports.JoinRight = JoinRight;
1898
1920
  exports.JoinRightOuter = JoinRightOuter;
1899
1921
  exports.Jpg = Jpg;
1900
- exports.JsError = JsError;
1901
- exports.Json = Json;
1902
- exports.JsonReference = JsonReference;
1903
- exports.JumpLink = JumpLink;
1904
- exports.KeepDry = KeepDry;
1905
- exports.Key = Key;
1906
- exports.Keyboard = Keyboard;
1907
- exports.KeyboardOff = KeyboardOff;
1908
- exports.KioskDevice = KioskDevice;
1909
- exports.Kubelet = Kubelet;
1910
- exports.Kubernetes = Kubernetes;
1911
- exports.KubernetesControlPlaneNode = KubernetesControlPlaneNode;
1912
- exports.KubernetesIpAddress = KubernetesIpAddress;
1913
- exports.KubernetesOperator = KubernetesOperator;
1914
- exports.KubernetesPod = KubernetesPod;
1915
1922
  exports.QID = QID;
1916
1923
  exports.WatsonHealthICa_2D = WatsonHealthICa_2D;
1917
1924
  exports.WatsonHealthImageAvailabilityLocal = WatsonHealthImageAvailabilityLocal;
@@ -1919,11 +1926,10 @@ var require_bucket_10 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1919
1926
  exports.WatsonHealthImageAvailabilityUnavailable = WatsonHealthImageAvailabilityUnavailable;
1920
1927
  exports.WatsonHealthInteractiveSegmentationCursor = WatsonHealthInteractiveSegmentationCursor;
1921
1928
  }));
1922
-
1923
1929
  //#endregion
1924
- Object.defineProperty(exports, 'default', {
1925
- enumerable: true,
1926
- get: function () {
1927
- return require_bucket_10();
1928
- }
1929
- });
1930
+ Object.defineProperty(exports, "default", {
1931
+ enumerable: true,
1932
+ get: function() {
1933
+ return require_bucket_10();
1934
+ }
1935
+ });