@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-8.js
14
12
  var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,195 @@ var require_bucket_8 = /* @__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
- const GemReference = react.default.forwardRef(function GemReference({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const GameWireless = /* @__PURE__ */ react.default.forwardRef(function GameWireless({ children, size = 16, ...rest }, ref) {
28
+ return react.default.createElement(require_Icon.Icon, {
29
+ width: size,
30
+ height: size,
31
+ ref,
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ viewBox: "0 0 32 32",
34
+ fill: "currentColor",
35
+ ...rest
36
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.51,30a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,23l2.33-8.84a5.54,5.54,0,0,1,2.59-3.41,5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,13h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.55,5.55,0,0,1,2.59,3.41L29.81,23a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,25H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,30ZM9.83,12a3.49,3.49,0,0,0-1.72.46,3.58,3.58,0,0,0-1.66,2.19L4.12,23.49A3.6,3.6,0,0,0,6.6,27.88a3.43,3.43,0,0,0,2.62-.34,3.57,3.57,0,0,0,1.66-2.19L11.5,23h9l.61,2.35a3.6,3.6,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.53,3.53,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20a2,2,0,1,1,2-2A2,2,0,0,1,10,20Zm0-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
37
+ cx: "22",
38
+ cy: "16",
39
+ r: "1"
40
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
41
+ cx: "22",
42
+ cy: "20",
43
+ r: "1"
44
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
45
+ cx: "20",
46
+ cy: "18",
47
+ r: "1"
48
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
49
+ cx: "24",
50
+ cy: "18",
51
+ r: "1"
52
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.75,9l-1.5-1.33a5,5,0,0,1,7.5,0L18.25,9a3,3,0,0,0-4.5,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.25,6.37a7,7,0,0,0-10.5,0L9.25,5.05a9,9,0,0,1,13.5,0Z" }), children);
53
+ });
54
+ if (process.env.NODE_ENV !== "production") GameWireless.propTypes = require_iconPropTypes.iconPropTypes;
55
+ const Gamification = /* @__PURE__ */ react.default.forwardRef(function Gamification({ children, size = 16, ...rest }, ref) {
56
+ return react.default.createElement(require_Icon.Icon, {
57
+ width: size,
58
+ height: size,
59
+ ref,
60
+ xmlns: "http://www.w3.org/2000/svg",
61
+ viewBox: "0 0 32 32",
62
+ fill: "currentColor",
63
+ ...rest
64
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,23h-.1315l.9635-1.4453A1.0008,1.0008,0,0,0,24,21V12.0005c0-9.8858-7.92-10-8-10A1,1,0,0,0,15,3l-.0005,2H14a.9956.9956,0,0,0-.581.1865l-7,5a1,1,0,0,0-.3676,1.13l1,3a.9976.9976,0,0,0,1.09.6733l4.87-.6958L9.1519,20.47a1,1,0,0,0,.0161,1.085L10.1315,23H10a3.0033,3.0033,0,0,0-3,3v4H26V26A3.0033,3.0033,0,0,0,23,23Zm-7.1519-9.47a1,1,0,0,0-.99-1.52l-6.1738.8819-.5025-1.5078L14.32,7.0005H15.999a1,1,0,0,0,1-.9995L17,4.1289C18.5013,4.4636,21.2167,5.67,21.86,10H19v2h3v2H19v2h3v2H19v2h3v.6973L20.4648,23h-7.93L11.19,20.9824ZM24,28H9V26a1.0009,1.0009,0,0,1,1-1H23a1.0006,1.0006,0,0,1,1,1Z" }), children);
65
+ });
66
+ if (process.env.NODE_ENV !== "production") Gamification.propTypes = require_iconPropTypes.iconPropTypes;
67
+ const GasStation = /* @__PURE__ */ react.default.forwardRef(function GasStation({ children, size = 16, ...rest }, ref) {
68
+ return react.default.createElement(require_Icon.Icon, {
69
+ width: size,
70
+ height: size,
71
+ ref,
72
+ xmlns: "http://www.w3.org/2000/svg",
73
+ viewBox: "0 0 32 32",
74
+ fill: "currentColor",
75
+ ...rest
76
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H15V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.4142,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5644,3.5644,0,0,0,2.7654,3.5251A3.5062,3.5062,0,0,0,29,24.5V9.4144A2,2,0,0,0,28.4142,8ZM17,26H6V6H17Z" }), children);
77
+ });
78
+ if (process.env.NODE_ENV !== "production") GasStation.propTypes = require_iconPropTypes.iconPropTypes;
79
+ const GasStationFilled = /* @__PURE__ */ react.default.forwardRef(function GasStationFilled({ children, size = 16, ...rest }, ref) {
80
+ return react.default.createElement(require_Icon.Icon, {
81
+ width: size,
82
+ height: size,
83
+ ref,
84
+ xmlns: "http://www.w3.org/2000/svg",
85
+ viewBox: "0 0 32 32",
86
+ fill: "currentColor",
87
+ ...rest
88
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
89
+ fill: "none",
90
+ d: "M8 10H15V12H8z",
91
+ "data-icon-path": "inner-path"
92
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.4143,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5645,3.5645,0,0,0,2.7654,3.5249A3.506,3.506,0,0,0,29,24.5V9.4146A2,2,0,0,0,28.4143,8ZM15,12H8V10h7Z" }), children);
93
+ });
94
+ if (process.env.NODE_ENV !== "production") GasStationFilled.propTypes = require_iconPropTypes.iconPropTypes;
95
+ const Gateway = /* @__PURE__ */ react.default.forwardRef(function Gateway({ children, size = 16, ...rest }, ref) {
96
+ return react.default.createElement(require_Icon.Icon, {
97
+ width: size,
98
+ height: size,
99
+ ref,
100
+ xmlns: "http://www.w3.org/2000/svg",
101
+ viewBox: "0 0 32 32",
102
+ fill: "currentColor",
103
+ ...rest
104
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,16a1.9857,1.9857,0,0,0-.5859-1.4141L24.6211,8.793,27.489,5.9253a2,2,0,1,0-1.414-1.4141L23.207,7.3789l-5.7929-5.793a1.9995,1.9995,0,0,0-2.8282,0L8.793,7.3789,5.925,4.5112A2,2,0,1,0,4.511,5.9253L7.3789,8.793l-5.793,5.7929a1.9995,1.9995,0,0,0,0,2.8282l5.793,5.7929L4.511,26.0747a2,2,0,1,0,1.414,1.4141l2.868-2.8677,5.7929,5.793a1.9995,1.9995,0,0,0,2.8282,0l5.7929-5.793,2.868,2.8677a2,2,0,1,0,1.414-1.4141L24.6211,23.207l5.793-5.7929A1.9866,1.9866,0,0,0,31,16Zm-7.793,5.793L20.4141,19,19,20.4141l2.793,2.7929L16,29l-5.793-5.793L13,20.4141,11.5859,19,8.793,21.793,3,16l5.7925-5.7935L11.5859,13,13,11.5859,10.2065,8.7925,16,3l5.7935,5.7925L19,11.5859,20.4141,13l2.7934-2.7935L29,16Z" }), children);
105
+ });
106
+ if (process.env.NODE_ENV !== "production") Gateway.propTypes = require_iconPropTypes.iconPropTypes;
107
+ const GatewayApi = /* @__PURE__ */ react.default.forwardRef(function GatewayApi({ children, size = 16, ...rest }, ref) {
108
+ return react.default.createElement(require_Icon.Icon, {
109
+ width: size,
110
+ height: size,
111
+ ref,
112
+ xmlns: "http://www.w3.org/2000/svg",
113
+ viewBox: "0 0 32 32",
114
+ fill: "currentColor",
115
+ ...rest
116
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,18.1841V13.8159a3.0007,3.0007,0,1,0-2,0v4.3687a3,3,0,1,0,2,0ZM16,10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,16,10Zm0,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" }), children);
117
+ });
118
+ if (process.env.NODE_ENV !== "production") GatewayApi.propTypes = require_iconPropTypes.iconPropTypes;
119
+ const GatewayMail = /* @__PURE__ */ react.default.forwardRef(function GatewayMail({ children, size = 16, ...rest }, ref) {
120
+ return react.default.createElement(require_Icon.Icon, {
121
+ width: size,
122
+ height: size,
123
+ ref,
124
+ xmlns: "http://www.w3.org/2000/svg",
125
+ viewBox: "0 0 32 32",
126
+ fill: "currentColor",
127
+ ...rest
128
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.8779,12.1218a.4186.4186,0,0,0-.437-.0971l-9.1666,3.3335a.4167.4167,0,0,0-.0122.7786l4.0006,1.6,1.6,4.0007A.4168.4168,0,0,0,16.25,22h.0067a.4169.4169,0,0,0,.3849-.2743l3.3333-9.1669A.4165.4165,0,0,0,19.8779,12.1218Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" }), children);
129
+ });
130
+ if (process.env.NODE_ENV !== "production") GatewayMail.propTypes = require_iconPropTypes.iconPropTypes;
131
+ const GatewayPublic = /* @__PURE__ */ react.default.forwardRef(function GatewayPublic({ children, size = 16, ...rest }, ref) {
132
+ return react.default.createElement(require_Icon.Icon, {
133
+ width: size,
134
+ height: size,
135
+ ref,
136
+ xmlns: "http://www.w3.org/2000/svg",
137
+ viewBox: "0 0 32 32",
138
+ fill: "currentColor",
139
+ ...rest
140
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,14H14V12a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A2.0023,2.0023,0,0,0,19,14Zm0,7H13V16h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" }), children);
141
+ });
142
+ if (process.env.NODE_ENV !== "production") GatewayPublic.propTypes = require_iconPropTypes.iconPropTypes;
143
+ const GatewaySecurity = /* @__PURE__ */ react.default.forwardRef(function GatewaySecurity({ children, size = 16, ...rest }, ref) {
144
+ return react.default.createElement(require_Icon.Icon, {
145
+ width: size,
146
+ height: size,
147
+ ref,
148
+ xmlns: "http://www.w3.org/2000/svg",
149
+ viewBox: "0 0 32 32",
150
+ fill: "currentColor",
151
+ ...rest
152
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,11v6.4678a5.0216,5.0216,0,0,0,2.8613,4.52L16,23l2.1387-1.0127A5.0216,5.0216,0,0,0,21,17.4678V11Zm8,6.4678a3.012,3.012,0,0,1-1.7168,2.7109L16,20.7861l-1.2832-.6074A3.012,3.012,0,0,1,13,17.4678V13h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" }), children);
153
+ });
154
+ if (process.env.NODE_ENV !== "production") GatewaySecurity.propTypes = require_iconPropTypes.iconPropTypes;
155
+ const GatewayUserAccess = /* @__PURE__ */ react.default.forwardRef(function GatewayUserAccess({ children, size = 16, ...rest }, ref) {
156
+ return react.default.createElement(require_Icon.Icon, {
157
+ width: size,
158
+ height: size,
159
+ ref,
160
+ xmlns: "http://www.w3.org/2000/svg",
161
+ viewBox: "0 0 32 32",
162
+ fill: "currentColor",
163
+ ...rest
164
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,22H19V20a1.0011,1.0011,0,0,0-1-1H14a1.0011,1.0011,0,0,0-1,1v2H11V20a3.0033,3.0033,0,0,1,3-3h4a3.0033,3.0033,0,0,1,3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,16a3.5,3.5,0,1,1,3.5-3.5A3.5041,3.5041,0,0,1,16,16Zm0-5a1.5,1.5,0,1,0,1.5,1.5A1.5017,1.5017,0,0,0,16,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" }), children);
165
+ });
166
+ if (process.env.NODE_ENV !== "production") GatewayUserAccess.propTypes = require_iconPropTypes.iconPropTypes;
167
+ const GatewayVpn = /* @__PURE__ */ react.default.forwardRef(function GatewayVpn({ children, size = 16, ...rest }, ref) {
168
+ return react.default.createElement(require_Icon.Icon, {
169
+ width: size,
170
+ height: size,
171
+ ref,
172
+ xmlns: "http://www.w3.org/2000/svg",
173
+ viewBox: "0 0 32 32",
174
+ fill: "currentColor",
175
+ ...rest
176
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,14.2783V12a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A1.9929,1.9929,0,0,0,20,14.2783ZM16,10a2.0023,2.0023,0,0,1,2,2v2H14V12A2.0023,2.0023,0,0,1,16,10Zm3,11H13V16h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" }), children);
177
+ });
178
+ if (process.env.NODE_ENV !== "production") GatewayVpn.propTypes = require_iconPropTypes.iconPropTypes;
179
+ const Gears = /* @__PURE__ */ react.default.forwardRef(function Gears({ children, size = 16, ...rest }, ref) {
180
+ return react.default.createElement(require_Icon.Icon, {
181
+ width: size,
182
+ height: size,
183
+ ref,
184
+ xmlns: "http://www.w3.org/2000/svg",
185
+ viewBox: "0 0 32 32",
186
+ fill: "currentColor",
187
+ ...rest
188
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
189
+ strokeWidth: "0",
190
+ d: "m28,21.9847c0-.4595-.0568-.9053-.155-1.3354l2.155-.8273-.7167-1.8671-2.2063.8469c-.4529-.7197-1.0501-1.3392-1.7568-1.8106l.9695-2.1777-1.8271-.8135-.9706,2.1801c-.478-.123-.9761-.1954-1.492-.1954s-1.014.0724-1.492.1954l-.9706-2.1801-1.8271.8135.9695,2.1777c-.7067.4714-1.3039,1.0909-1.7568,1.8106l-2.2063-.8469-.7167,1.8671,2.155.8273c-.0983.4302-.155.8759-.155,1.3354,0,.4396.0507.8672.1408,1.2802l-2.1408.9531.8135,1.8271,2.08-.9261c.442.7173,1.0259,1.3374,1.7191,1.8134l-.9023,2.3508,1.8671.7167.856-2.2299c.5004.1357,1.0239.2146,1.5666.2146s1.0662-.0789,1.5666-.2146l.856,2.2299,1.8671-.7167-.9023-2.3508c.6932-.476,1.2772-1.0961,1.7191-1.8134l2.08.9261.8135-1.8271-2.1408-.9531c.0901-.413.1408-.8406.1408-1.2802Zm-6,4c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Z"
191
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
192
+ strokeWidth: "0",
193
+ d: "m13.471,14.8852l1.4788,1.4788,1.4142-1.4142-1.4788-1.4787c.5146-.7222.871-1.5616,1.0245-2.471h2.0903v-2h-2.0903c-.1535-.9094-.5098-1.7488-1.0245-2.471l1.4788-1.4788-1.4142-1.4142-1.4788,1.4788c-.7222-.5146-1.5616-.871-2.471-1.0245v-2.0903h-2v2.0903c-.9094.1535-1.7488.5099-2.471,1.0245l-1.4788-1.4788-1.4142,1.4142,1.4788,1.4788c-.5146.7222-.871,1.5616-1.0245,2.471H2v2h2.0903c.1535.9094.5098,1.7488,1.0245,2.471l-1.4788,1.4787,1.4142,1.4142,1.4788-1.4788c.7222.5146,1.5616.871,2.471,1.0245v2.0903h2v-2.0903c.9094-.1535,1.7488-.5098,2.471-1.0245Zm-7.471-4.8852c0-2.2056,1.7939-4,4-4s4,1.7944,4,4-1.7939,4-4,4-4-1.7944-4-4Z"
194
+ }), children);
195
+ });
196
+ if (process.env.NODE_ENV !== "production") Gears.propTypes = require_iconPropTypes.iconPropTypes;
197
+ const Gem = /* @__PURE__ */ react.default.forwardRef(function Gem({ children, size = 16, ...rest }, ref) {
198
+ return react.default.createElement(require_Icon.Icon, {
199
+ width: size,
200
+ height: size,
201
+ ref,
202
+ xmlns: "http://www.w3.org/2000/svg",
203
+ viewBox: "0 0 32 32",
204
+ fill: "currentColor",
205
+ ...rest
206
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,4H8.5L1.7158,13.0454,16,29.5269,30.2842,13.0454ZM27,12H21.5543l-3.75-6H22.5ZM10.3021,14l3.7536,10.23L5.19,14Zm2.13,0H19.568l-3.569,9.7212Zm.3725-2L16,6.8867,19.1957,12Zm8.8935,2H26.81L17.9427,24.2314ZM9.5,6h4.6957l-3.75,6H5Z" }), children);
207
+ });
208
+ if (process.env.NODE_ENV !== "production") Gem.propTypes = require_iconPropTypes.iconPropTypes;
209
+ const GemReference = /* @__PURE__ */ react.default.forwardRef(function GemReference({ children, size = 16, ...rest }, ref) {
210
+ return react.default.createElement(require_Icon.Icon, {
32
211
  width: size,
33
212
  height: size,
34
213
  ref,
@@ -39,8 +218,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
39
218
  }, /* @__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: "M23.5,4H8.5L1.7158,13.0454,6.01,18l1.5114-1.31L5.19,14h5.2554L16,22.8867,21.5544,14H26.81L15.8125,26.6919,17.3242,28l12.96-14.9546ZM5,12,9.5,6h4.6958l-3.75,6ZM16,6.8867,19.1958,12H12.8042Zm0,12.2266L12.8044,14h6.3912ZM21.5542,12l-3.75-6H22.5L27,12Z" }), children);
40
219
  });
41
220
  if (process.env.NODE_ENV !== "production") GemReference.propTypes = require_iconPropTypes.iconPropTypes;
42
- const GenderFemale = react.default.forwardRef(function GenderFemale({ children, size = 16, ...rest }, ref) {
43
- return react.default.createElement(require_Icon_js, {
221
+ const GenderFemale = /* @__PURE__ */ react.default.forwardRef(function GenderFemale({ children, size = 16, ...rest }, ref) {
222
+ return react.default.createElement(require_Icon.Icon, {
44
223
  width: size,
45
224
  height: size,
46
225
  ref,
@@ -51,8 +230,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
51
230
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,19.9307a8,8,0,1,0-2,0V22H10v2h5v4h2V24h5V22H17ZM10,12a6,6,0,1,1,6,6A6.0066,6.0066,0,0,1,10,12Z" }), children);
52
231
  });
53
232
  if (process.env.NODE_ENV !== "production") GenderFemale.propTypes = require_iconPropTypes.iconPropTypes;
54
- const GenderMale = react.default.forwardRef(function GenderMale({ children, size = 16, ...rest }, ref) {
55
- return react.default.createElement(require_Icon_js, {
233
+ const GenderMale = /* @__PURE__ */ react.default.forwardRef(function GenderMale({ children, size = 16, ...rest }, ref) {
234
+ return react.default.createElement(require_Icon.Icon, {
56
235
  width: size,
57
236
  height: size,
58
237
  ref,
@@ -63,8 +242,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
63
242
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,4V6h6.5859l-7.6884,7.6885a8.028,8.028,0,1,0,1.414,1.414L26,7.4141V14h2V4ZM12,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,12,26Z" }), children);
64
243
  });
65
244
  if (process.env.NODE_ENV !== "production") GenderMale.propTypes = require_iconPropTypes.iconPropTypes;
66
- const GeneratePdf = react.default.forwardRef(function GeneratePdf({ children, size = 16, ...rest }, ref) {
67
- return react.default.createElement(require_Icon_js, {
245
+ const GeneratePdf = /* @__PURE__ */ react.default.forwardRef(function GeneratePdf({ children, size = 16, ...rest }, ref) {
246
+ return react.default.createElement(require_Icon.Icon, {
68
247
  width: size,
69
248
  height: size,
70
249
  ref,
@@ -75,8 +254,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
75
254
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,24v4H8V24H6v4H6a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2h0V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 21 19.586 19.586 17 22.172 17 14 15 14 15 22.172 12.414 19.586 11 21 16 26 21 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 4 28 2 22 2 22 12 24 12 24 8 27 8 27 6 24 6 24 4 28 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,12H13V2h4a3.0033,3.0033,0,0,1,3,3V9A3.0033,3.0033,0,0,1,17,12Zm-2-2h2a1.0011,1.0011,0,0,0,1-1V5a1.0011,1.0011,0,0,0-1-1H15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,2H4V12H6V9H9a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,9,2ZM6,7V4H9l.001,3Z" }), children);
76
255
  });
77
256
  if (process.env.NODE_ENV !== "production") GeneratePdf.propTypes = require_iconPropTypes.iconPropTypes;
78
- const Gif = react.default.forwardRef(function Gif({ children, size = 16, ...rest }, ref) {
79
- return react.default.createElement(require_Icon_js, {
257
+ const Gif = /* @__PURE__ */ react.default.forwardRef(function Gif({ children, size = 16, ...rest }, ref) {
258
+ return react.default.createElement(require_Icon.Icon, {
80
259
  width: size,
81
260
  height: size,
82
261
  ref,
@@ -87,8 +266,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
87
266
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,12v8a3,3,0,0,0,3,3h5V15H6v2H8v4H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1h5V9H5A3,3,0,0,0,2,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 9 12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z" }), children);
88
267
  });
89
268
  if (process.env.NODE_ENV !== "production") Gif.propTypes = require_iconPropTypes.iconPropTypes;
90
- const Gift = react.default.forwardRef(function Gift({ children, size = 16, ...rest }, ref) {
91
- return react.default.createElement(require_Icon_js, {
269
+ const Gift = /* @__PURE__ */ react.default.forwardRef(function Gift({ children, size = 16, ...rest }, ref) {
270
+ return react.default.createElement(require_Icon.Icon, {
92
271
  width: size,
93
272
  height: size,
94
273
  ref,
@@ -99,8 +278,20 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
99
278
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,10H23.2383A4.4867,4.4867,0,0,0,16,4.7065,4.4873,4.4873,0,0,0,8.7617,10H6a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2V28a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V18a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,26,10ZM17,7.5A2.5,2.5,0,1,1,19.5,10H17ZM12.5,5A2.503,2.503,0,0,1,15,7.5V10H12.5a2.5,2.5,0,0,1,0-5ZM6,12h9v4H6Zm2,6h7V28H8ZM24.0012,28H17V18h7ZM17,16V12h9l.0012,4Z" }), children);
100
279
  });
101
280
  if (process.env.NODE_ENV !== "production") Gift.propTypes = require_iconPropTypes.iconPropTypes;
102
- const GlobalFilters = react.default.forwardRef(function GlobalFilters({ children, size = 16, ...rest }, ref) {
103
- return react.default.createElement(require_Icon_js, {
281
+ const GitRepo = /* @__PURE__ */ react.default.forwardRef(function GitRepo({ children, size = 16, ...rest }, ref) {
282
+ return react.default.createElement(require_Icon.Icon, {
283
+ width: size,
284
+ height: size,
285
+ ref,
286
+ xmlns: "http://www.w3.org/2000/svg",
287
+ viewBox: "0 0 32 32",
288
+ fill: "currentColor",
289
+ ...rest
290
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,2H8c-2.21,0-4,1.79-4,4v17c0,2.21,1.79,4,4,4h1v-2h-1c-1.1,0-2-.9-2-2s.9-2,2-2h18v4h-8v2h9c.55,0,1-.45,1-1V3c0-.55-.45-1-1-1ZM26,19H8c-.73,0-1.41.2-2,.54V6c0-1.1.9-2,2-2h18v15ZM11,23h5v7l-2.5-2-2.5,2v-7Z" }), children);
291
+ });
292
+ if (process.env.NODE_ENV !== "production") GitRepo.propTypes = require_iconPropTypes.iconPropTypes;
293
+ const GlobalFilters = /* @__PURE__ */ react.default.forwardRef(function GlobalFilters({ children, size = 16, ...rest }, ref) {
294
+ return react.default.createElement(require_Icon.Icon, {
104
295
  width: size,
105
296
  height: size,
106
297
  ref,
@@ -111,8 +302,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
111
302
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.9,7c-.4-1.7-2-3-3.9-3s-3.4,1.3-3.9,3h-3.1v2h3.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h17.1v-2H12.9ZM9,10c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM23,12c-1.9,0-3.4,1.3-3.9,3H2v2h17.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h3.1v-2h-3.1c-.4-1.7-2-3-3.9-3ZM23,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM14,20c-1.9,0-3.4,1.3-3.9,3H2v2h8.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h12.1v-2h-12.1c-.4-1.7-2-3-3.9-3ZM14,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2Z" }), children);
112
303
  });
113
304
  if (process.env.NODE_ENV !== "production") GlobalFilters.propTypes = require_iconPropTypes.iconPropTypes;
114
- const GlobalLoanAndTrial = react.default.forwardRef(function GlobalLoanAndTrial({ children, size = 16, ...rest }, ref) {
115
- return react.default.createElement(require_Icon_js, {
305
+ const GlobalLoanAndTrial = /* @__PURE__ */ react.default.forwardRef(function GlobalLoanAndTrial({ children, size = 16, ...rest }, ref) {
306
+ return react.default.createElement(require_Icon.Icon, {
116
307
  width: size,
117
308
  height: size,
118
309
  ref,
@@ -127,8 +318,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
127
318
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,20H8c-1.1028,0-2-.8972-2-2v-4c0-1.1028.8972-2,2-2h16c1.1028,0,2,.8972,2,2v4c0,1.1028-.8972,2-2,2Zm-16-6v4h16v-4H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,4h-12.1699l2.5801-2.5898L17,0l-5,5,5,5,1.4102-1.4102-2.5801-2.5898h12.1699v18h2V6c0-1.1025-.8972-2-2-2Z" }), children);
128
319
  });
129
320
  if (process.env.NODE_ENV !== "production") GlobalLoanAndTrial.propTypes = require_iconPropTypes.iconPropTypes;
130
- const Globe = react.default.forwardRef(function Globe({ children, size = 16, ...rest }, ref) {
131
- return react.default.createElement(require_Icon_js, {
321
+ const Globe = /* @__PURE__ */ react.default.forwardRef(function Globe({ children, size = 16, ...rest }, ref) {
322
+ return react.default.createElement(require_Icon.Icon, {
132
323
  width: size,
133
324
  height: size,
134
325
  ref,
@@ -139,8 +330,20 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
139
330
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,4a7,7,0,1,1-7,7,7,7,0,0,1,7-7m0-2a9,9,0,1,0,9,9A9,9,0,0,0,14,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,11a13.9563,13.9563,0,0,0-4.1051-9.8949L22.4813,2.5187A11.9944,11.9944,0,0,1,5.5568,19.5194l-.0381-.0381L4.1051,20.8949A13.9563,13.9563,0,0,0,14,25v3H10v2H20V28H16V24.84A14.0094,14.0094,0,0,0,28,11Z" }), children);
140
331
  });
141
332
  if (process.env.NODE_ENV !== "production") Globe.propTypes = require_iconPropTypes.iconPropTypes;
142
- const Gradient = react.default.forwardRef(function Gradient({ children, size = 16, ...rest }, ref) {
143
- return react.default.createElement(require_Icon_js, {
333
+ const GlobePrivate = /* @__PURE__ */ react.default.forwardRef(function GlobePrivate({ children, size = 16, ...rest }, ref) {
334
+ return react.default.createElement(require_Icon.Icon, {
335
+ width: size,
336
+ height: size,
337
+ ref,
338
+ xmlns: "http://www.w3.org/2000/svg",
339
+ viewBox: "0 0 32 32",
340
+ fill: "currentColor",
341
+ ...rest
342
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,31h-8c-.5527,0-1-.4473-1-1v-5c0-.5527.4473-1,1-1h1v-2c0-1.6543,1.3457-3,3-3s3,1.3457,3,3v2h1c.5527,0,1,.4473,1,1v5c0,.5527-.4473,1-1,1ZM23,29h6v-3h-6v3ZM25,24h2v-2c0-.5518-.4482-1-1-1s-1,.4482-1,1v2ZM16,30c-7.7197,0-14-6.2803-14-14S8.2803,2,16,2c7.3828,0,13.4502,5.7456,13.9648,13h.0352v2H12.02c.2427,6.0771,2.6406,9.8643,3.46,10.9893.1724.0068.3462.0107.52.0107v2ZM4.0415,17c.4209,5.0801,4.021,9.2734,8.7998,10.5781-1.1616-2.0605-2.644-5.6211-2.8232-10.5781h-5.9766ZM21.9814,15h5.9775c-.4219-5.0884-4.0332-9.2861-8.8232-10.5845,1.1621,2.0742,2.6631,5.6641,2.8457,10.5845ZM12.0205,15h7.959c-.2461-5.9897-2.6455-9.8389-3.4668-10.9893-.3398-.0146-.6855-.0146-1.0254,0-.8213,1.1504-3.2207,4.9995-3.4668,10.9893ZM4.0415,15h5.9771c.1826-4.9204,1.6836-8.5103,2.8452-10.5845-4.79,1.2983-8.4009,5.4961-8.8223,10.5845Z" }), children);
343
+ });
344
+ if (process.env.NODE_ENV !== "production") GlobePrivate.propTypes = require_iconPropTypes.iconPropTypes;
345
+ const Gradient = /* @__PURE__ */ react.default.forwardRef(function Gradient({ children, size = 16, ...rest }, ref) {
346
+ return react.default.createElement(require_Icon.Icon, {
144
347
  width: size,
145
348
  height: size,
146
349
  ref,
@@ -151,8 +354,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
151
354
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2.0023,2.0023,0,0,0,4,6V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM22,26V22H18v4H14V22H10V18h4V14H10V10h4V6h4v4h4V6h4V26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 10H18V14H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V22H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 14H22V18H18z" }), children);
152
355
  });
153
356
  if (process.env.NODE_ENV !== "production") Gradient.propTypes = require_iconPropTypes.iconPropTypes;
154
- const GraphAggregator = react.default.forwardRef(function GraphAggregator({ children, size = 16, ...rest }, ref) {
155
- return react.default.createElement(require_Icon_js, {
357
+ const GraphAggregator = /* @__PURE__ */ react.default.forwardRef(function GraphAggregator({ children, size = 16, ...rest }, ref) {
358
+ return react.default.createElement(require_Icon.Icon, {
156
359
  width: size,
157
360
  height: size,
158
361
  ref,
@@ -163,8 +366,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
163
366
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 18H5V30H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 24H11V30H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 16H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 20H23V30H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 14H29V30H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2c-1.1046,0-2,.8954-2,2,0,.178.0307.3475.0743.5117l-3.5624,3.5627c-.1644-.0437-.3339-.0745-.512-.0745-.3171,0-.6129.0805-.8793.2119l-3.1332-2.0887c.0026-.0416.0125-.081.0125-.1232,0-1.1046-.8954-2-2-2s-2,.8954-2,2c0,.279.0578.5443.1609.7855l-3.9287,5.238c-.0771-.009-.1527-.0234-.2322-.0234-.178,0-.3474.0307-.5116.0743l-3.5627-3.5627c.0436-.1642.0743-.3336.0743-.5116,0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2c.178,0,.3474-.0307.5116-.0743l3.5627,3.5627c-.0436.1642-.0743.3336-.0743.5116,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.279-.0578-.5443-.1609-.7855l3.9286-5.238c.0771.009.1527.0234.2323.0234.3171,0,.6129-.0805.8793-.2119l3.1332,2.0887c-.0026.0416-.0125.081-.0125.1232,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.178-.0307-.3474-.0743-.5116l3.5627-3.5627c.1642.0436.3336.0743.5116.0743,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), children);
164
367
  });
165
368
  if (process.env.NODE_ENV !== "production") GraphAggregator.propTypes = require_iconPropTypes.iconPropTypes;
166
- const GraphicalDataFlow = react.default.forwardRef(function GraphicalDataFlow({ children, size = 16, ...rest }, ref) {
167
- return react.default.createElement(require_Icon_js, {
369
+ const GraphicalDataFlow = /* @__PURE__ */ react.default.forwardRef(function GraphicalDataFlow({ children, size = 16, ...rest }, ref) {
370
+ return react.default.createElement(require_Icon.Icon, {
168
371
  width: size,
169
372
  height: size,
170
373
  ref,
@@ -175,8 +378,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
175
378
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H22a2.0023,2.0023,0,0,1-2-2V22a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,30Zm-6-8h-.0012L22,28h6V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,26H12a3.0033,3.0033,0,0,1-3-3V19h2v4a1.001,1.001,0,0,0,1,1h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18H24V15a1.001,1.001,0,0,0-1-1H18V12h5a3.0033,3.0033,0,0,1,3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,18a.9986.9986,0,0,1-.4971-.1323L10,15.2886,5.4968,17.8677a1,1,0,0,1-1.4712-1.0938l1.0618-4.572L2.269,9.1824a1,1,0,0,1,.5662-1.6687l4.2-.7019L9.1006,2.5627a1,1,0,0,1,1.7881-.0214l2.2046,4.271,4.0764.7021a1,1,0,0,1,.5613,1.668l-2.8184,3.02,1.0613,4.5718A1,1,0,0,1,15,18Zm-5-5s.343.18.4971.2686l3.01,1.7241-.7837-3.3763,2.282-2.4453-3.2331-.5569-1.7456-3.382L8.3829,8.6144l-3.3809.565,2.2745,2.437-.7841,3.3763,3.0105-1.7241C9.657,13.18,10,13,10,13Z" }), children);
176
379
  });
177
380
  if (process.env.NODE_ENV !== "production") GraphicalDataFlow.propTypes = require_iconPropTypes.iconPropTypes;
178
- const Grid = react.default.forwardRef(function Grid({ children, size = 16, ...rest }, ref) {
179
- return react.default.createElement(require_Icon_js, {
381
+ const Grid = /* @__PURE__ */ react.default.forwardRef(function Grid({ children, size = 16, ...rest }, ref) {
382
+ return react.default.createElement(require_Icon.Icon, {
180
383
  width: size,
181
384
  height: size,
182
385
  ref,
@@ -187,8 +390,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
187
390
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,12,4Zm0,8H6V6h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,8H20V6h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,12,18Zm0,8H6V20h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,26,18Zm0,8H20V20h6Z" }), children);
188
391
  });
189
392
  if (process.env.NODE_ENV !== "production") Grid.propTypes = require_iconPropTypes.iconPropTypes;
190
- const Group = react.default.forwardRef(function Group({ children, size = 16, ...rest }, ref) {
191
- return react.default.createElement(require_Icon_js, {
393
+ const Group = /* @__PURE__ */ react.default.forwardRef(function Group({ children, size = 16, ...rest }, ref) {
394
+ return react.default.createElement(require_Icon.Icon, {
192
395
  width: size,
193
396
  height: size,
194
397
  ref,
@@ -199,8 +402,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
199
402
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,30H29V27a3,3,0,0,0-3-3H22a3,3,0,0,0-3,3v3H17V27a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,12a3,3,0,1,1-3,3,3,3,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,24,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,22H13V19a3,3,0,0,0-3-3H6a3,3,0,0,0-3,3v3H1V19a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,4A3,3,0,1,1,5,7,3,3,0,0,1,8,4M8,2a5,5,0,1,0,5,5A5,5,0,0,0,8,2Z" }), children);
200
403
  });
201
404
  if (process.env.NODE_ENV !== "production") Group.propTypes = require_iconPropTypes.iconPropTypes;
202
- const GroupAccess = react.default.forwardRef(function GroupAccess({ children, size = 16, ...rest }, ref) {
203
- return react.default.createElement(require_Icon_js, {
405
+ const GroupAccess = /* @__PURE__ */ react.default.forwardRef(function GroupAccess({ children, size = 16, ...rest }, ref) {
406
+ return react.default.createElement(require_Icon.Icon, {
204
407
  width: size,
205
408
  height: size,
206
409
  ref,
@@ -211,8 +414,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
211
414
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,19H6V17a3.0033,3.0033,0,0,1,3-3h5v2H9a1.0011,1.0011,0,0,0-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,13a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,12,13Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,12,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,20,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,20,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,26H24V24a1.0011,1.0011,0,0,0-1-1H17a1.0011,1.0011,0,0,0-1,1v2H14V24a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z" }), children);
212
415
  });
213
416
  if (process.env.NODE_ENV !== "production") GroupAccess.propTypes = require_iconPropTypes.iconPropTypes;
214
- const GroupAccount = react.default.forwardRef(function GroupAccount({ children, size = 16, ...rest }, ref) {
215
- return react.default.createElement(require_Icon_js, {
417
+ const GroupAccount = /* @__PURE__ */ react.default.forwardRef(function GroupAccount({ children, size = 16, ...rest }, ref) {
418
+ return react.default.createElement(require_Icon.Icon, {
216
419
  width: size,
217
420
  height: size,
218
421
  ref,
@@ -223,8 +426,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
223
426
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,11H11a3,3,0,0,0-3,3v4h2V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V14A3,3,0,0,0,17,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,6a4,4,0,1,0,4-4A4,4,0,0,0,10,6Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,16,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,27H16a2.0021,2.0021,0,0,1-2-2V19a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,22,27Zm-6-8v6h6V19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z" }), children);
224
427
  });
225
428
  if (process.env.NODE_ENV !== "production") GroupAccount.propTypes = require_iconPropTypes.iconPropTypes;
226
- const GroupPresentation = react.default.forwardRef(function GroupPresentation({ children, size = 16, ...rest }, ref) {
227
- return react.default.createElement(require_Icon_js, {
429
+ const GroupPresentation = /* @__PURE__ */ react.default.forwardRef(function GroupPresentation({ children, size = 16, ...rest }, ref) {
430
+ return react.default.createElement(require_Icon.Icon, {
228
431
  width: size,
229
432
  height: size,
230
433
  ref,
@@ -255,8 +458,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
255
458
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,26,14ZM6,4v8H26V4Z" }), children);
256
459
  });
257
460
  if (process.env.NODE_ENV !== "production") GroupPresentation.propTypes = require_iconPropTypes.iconPropTypes;
258
- const GroupResource = react.default.forwardRef(function GroupResource({ children, size = 16, ...rest }, ref) {
259
- return react.default.createElement(require_Icon_js, {
461
+ const GroupResource = /* @__PURE__ */ react.default.forwardRef(function GroupResource({ children, size = 16, ...rest }, ref) {
462
+ return react.default.createElement(require_Icon.Icon, {
260
463
  width: size,
261
464
  height: size,
262
465
  ref,
@@ -267,8 +470,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
267
470
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24H10a2.0021,2.0021,0,0,1-2-2V10a2.0021,2.0021,0,0,1,2-2H22a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,22,24ZM10,10V22H22V10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z" }), children);
268
471
  });
269
472
  if (process.env.NODE_ENV !== "production") GroupResource.propTypes = require_iconPropTypes.iconPropTypes;
270
- const GroupSecurity = react.default.forwardRef(function GroupSecurity({ children, size = 16, ...rest }, ref) {
271
- return react.default.createElement(require_Icon_js, {
473
+ const GroupSecurity = /* @__PURE__ */ react.default.forwardRef(function GroupSecurity({ children, size = 16, ...rest }, ref) {
474
+ return react.default.createElement(require_Icon.Icon, {
272
475
  width: size,
273
476
  height: size,
274
477
  ref,
@@ -279,8 +482,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
279
482
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,21H9V19a3.0033,3.0033,0,0,1,3-3h6v2H12a1.0011,1.0011,0,0,0-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,15,15Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,15,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28H28V26a1.0011,1.0011,0,0,0-1-1H21a1.0011,1.0011,0,0,0-1,1v2H18V26a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z" }), children);
280
483
  });
281
484
  if (process.env.NODE_ENV !== "production") GroupSecurity.propTypes = require_iconPropTypes.iconPropTypes;
282
- const GroupObjects = react.default.forwardRef(function GroupObjects({ children, size = 16, ...rest }, ref) {
283
- return react.default.createElement(require_Icon_js, {
485
+ const GroupObjects = /* @__PURE__ */ react.default.forwardRef(function GroupObjects({ children, size = 16, ...rest }, ref) {
486
+ return react.default.createElement(require_Icon.Icon, {
284
487
  width: size,
285
488
  height: size,
286
489
  ref,
@@ -291,8 +494,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
291
494
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,13V9H9V19h4v4H23V13Zm-8-2h6v6H11ZM21,21H15V19h4V15h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z" }), children);
292
495
  });
293
496
  if (process.env.NODE_ENV !== "production") GroupObjects.propTypes = require_iconPropTypes.iconPropTypes;
294
- const GroupObjectsNew = react.default.forwardRef(function GroupObjectsNew({ children, size = 16, ...rest }, ref) {
295
- return react.default.createElement(require_Icon_js, {
497
+ const GroupObjectsNew = /* @__PURE__ */ react.default.forwardRef(function GroupObjectsNew({ children, size = 16, ...rest }, ref) {
498
+ return react.default.createElement(require_Icon.Icon, {
296
499
  width: size,
297
500
  height: size,
298
501
  ref,
@@ -303,8 +506,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
303
506
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 10 15 10 15 15 10 15 10 17 15 17 15 22 17 22 17 17 22 17 22 15 17 15 17 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z" }), children);
304
507
  });
305
508
  if (process.env.NODE_ENV !== "production") GroupObjectsNew.propTypes = require_iconPropTypes.iconPropTypes;
306
- const GroupObjectsSave = react.default.forwardRef(function GroupObjectsSave({ children, size = 16, ...rest }, ref) {
307
- return react.default.createElement(require_Icon_js, {
509
+ const GroupObjectsSave = /* @__PURE__ */ react.default.forwardRef(function GroupObjectsSave({ children, size = 16, ...rest }, ref) {
510
+ return react.default.createElement(require_Icon.Icon, {
308
511
  width: size,
309
512
  height: size,
310
513
  ref,
@@ -315,8 +518,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
315
518
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18.18 10.41 14.59 9 16 14 21 23 12 21.59 10.581 14 18.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z" }), children);
316
519
  });
317
520
  if (process.env.NODE_ENV !== "production") GroupObjectsSave.propTypes = require_iconPropTypes.iconPropTypes;
318
- const Growth = react.default.forwardRef(function Growth({ children, size = 16, ...rest }, ref) {
319
- return react.default.createElement(require_Icon_js, {
521
+ const Growth = /* @__PURE__ */ react.default.forwardRef(function Growth({ children, size = 16, ...rest }, ref) {
522
+ return react.default.createElement(require_Icon.Icon, {
320
523
  width: size,
321
524
  height: size,
322
525
  ref,
@@ -327,8 +530,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
327
530
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,8v2h6.5859L18,18.5859,13.707,14.293a.9994.9994,0,0,0-1.414,0L2,24.5859,3.4141,26,13,16.4141l4.293,4.2929a.9994.9994,0,0,0,1.414,0L28,11.4141V18h2V8Z" }), children);
328
531
  });
329
532
  if (process.env.NODE_ENV !== "production") Growth.propTypes = require_iconPropTypes.iconPropTypes;
330
- const Gui = react.default.forwardRef(function Gui({ children, size = 16, ...rest }, ref) {
331
- return react.default.createElement(require_Icon_js, {
533
+ const Gui = /* @__PURE__ */ react.default.forwardRef(function Gui({ children, size = 16, ...rest }, ref) {
534
+ return react.default.createElement(require_Icon.Icon, {
332
535
  width: size,
333
536
  height: size,
334
537
  ref,
@@ -351,8 +554,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
351
554
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4Zm0,2v4H4V6ZM4,12h6V26H4Zm8,14V12H28V26Z" }), children);
352
555
  });
353
556
  if (process.env.NODE_ENV !== "production") Gui.propTypes = require_iconPropTypes.iconPropTypes;
354
- const GuiManagement = react.default.forwardRef(function GuiManagement({ children, size = 16, ...rest }, ref) {
355
- return react.default.createElement(require_Icon_js, {
557
+ const GuiManagement = /* @__PURE__ */ react.default.forwardRef(function GuiManagement({ children, size = 16, ...rest }, ref) {
558
+ return react.default.createElement(require_Icon.Icon, {
356
559
  width: size,
357
560
  height: size,
358
561
  ref,
@@ -375,8 +578,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
375
578
  }), children);
376
579
  });
377
580
  if (process.env.NODE_ENV !== "production") GuiManagement.propTypes = require_iconPropTypes.iconPropTypes;
378
- const QH = react.default.forwardRef(function QH({ children, size = 16, ...rest }, ref) {
379
- return react.default.createElement(require_Icon_js, {
581
+ const QH = /* @__PURE__ */ react.default.forwardRef(function QH({ children, size = 16, ...rest }, ref) {
582
+ return react.default.createElement(require_Icon.Icon, {
380
583
  width: size,
381
584
  height: size,
382
585
  ref,
@@ -387,8 +590,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
387
590
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 9 18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z" }), children);
388
591
  });
389
592
  if (process.env.NODE_ENV !== "production") QH.propTypes = require_iconPropTypes.iconPropTypes;
390
- const Hail = react.default.forwardRef(function Hail({ children, size = 16, ...rest }, ref) {
391
- return react.default.createElement(require_Icon_js, {
593
+ const Hail = /* @__PURE__ */ react.default.forwardRef(function Hail({ children, size = 16, ...rest }, ref) {
594
+ return react.default.createElement(require_Icon.Icon, {
392
595
  width: size,
393
596
  height: size,
394
597
  ref,
@@ -419,8 +622,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
419
622
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.868 30.496 14.132 29.504 17.276 24 11.277 24 16.132 15.504 17.868 16.496 14.723 22 20.724 22 15.868 30.496z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z" }), children);
420
623
  });
421
624
  if (process.env.NODE_ENV !== "production") Hail.propTypes = require_iconPropTypes.iconPropTypes;
422
- const WatsonHealthHangingProtocol = react.default.forwardRef(function WatsonHealthHangingProtocol({ children, size = 16, ...rest }, ref) {
423
- return react.default.createElement(require_Icon_js, {
625
+ const WatsonHealthHangingProtocol = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthHangingProtocol({ children, size = 16, ...rest }, ref) {
626
+ return react.default.createElement(require_Icon.Icon, {
424
627
  width: size,
425
628
  height: size,
426
629
  ref,
@@ -431,8 +634,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
431
634
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.37,20.52,17,15.41V13.86A4,4,0,1,0,12,10h2a2,2,0,1,1,4,.34A2.08,2.08,0,0,1,15.89,12h0a.89.89,0,0,0-.89.89v2.52L5.63,20.52A3.1,3.1,0,0,0,4.25,22a2.83,2.83,0,0,0,2.56,4H25.19a2.83,2.83,0,0,0,2.56-4A3.1,3.1,0,0,0,26.37,20.52ZM25.19,24H6.81A.81.81,0,0,1,6,23.19a1,1,0,0,1,.52-.88L16,17.14l9.48,5.17a1,1,0,0,1,.52.88A.81.81,0,0,1,25.19,24Z" }), children);
432
635
  });
433
636
  if (process.env.NODE_ENV !== "production") WatsonHealthHangingProtocol.propTypes = require_iconPropTypes.iconPropTypes;
434
- const Harbor = react.default.forwardRef(function Harbor({ children, size = 16, ...rest }, ref) {
435
- return react.default.createElement(require_Icon_js, {
637
+ const Harbor = /* @__PURE__ */ react.default.forwardRef(function Harbor({ children, size = 16, ...rest }, ref) {
638
+ return react.default.createElement(require_Icon.Icon, {
436
639
  width: size,
437
640
  height: size,
438
641
  ref,
@@ -443,8 +646,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
443
646
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,17A11.0109,11.0109,0,0,1,17,27.9492V14h6V12H17V9.8579a4,4,0,1,0-2,0V12H9v2h6V27.9492A11.0109,11.0109,0,0,1,5,17H3a13,13,0,0,0,26,0ZM14,6a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,14,6Z" }), children);
444
647
  });
445
648
  if (process.env.NODE_ENV !== "production") Harbor.propTypes = require_iconPropTypes.iconPropTypes;
446
- const HardwareSecurityModule = react.default.forwardRef(function HardwareSecurityModule({ children, size = 16, ...rest }, ref) {
447
- return react.default.createElement(require_Icon_js, {
649
+ const HardwareSecurityModule = /* @__PURE__ */ react.default.forwardRef(function HardwareSecurityModule({ children, size = 16, ...rest }, ref) {
650
+ return react.default.createElement(require_Icon.Icon, {
448
651
  width: size,
449
652
  height: size,
450
653
  ref,
@@ -463,8 +666,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
463
666
  }), children);
464
667
  });
465
668
  if (process.env.NODE_ENV !== "production") HardwareSecurityModule.propTypes = require_iconPropTypes.iconPropTypes;
466
- const Hashtag = react.default.forwardRef(function Hashtag({ children, size = 16, ...rest }, ref) {
467
- return react.default.createElement(require_Icon_js, {
669
+ const Hashtag = /* @__PURE__ */ react.default.forwardRef(function Hashtag({ children, size = 16, ...rest }, ref) {
670
+ return react.default.createElement(require_Icon.Icon, {
468
671
  width: size,
469
672
  height: size,
470
673
  ref,
@@ -475,8 +678,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
475
678
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12V10H22V4H20v6H12V4H10v6H4v2h6v8H4v2h6v6h2V22h8v6h2V22h6V20H22V12Zm-8,8H12V12h8Z" }), children);
476
679
  });
477
680
  if (process.env.NODE_ENV !== "production") Hashtag.propTypes = require_iconPropTypes.iconPropTypes;
478
- const Haze = react.default.forwardRef(function Haze({ children, size = 16, ...rest }, ref) {
479
- return react.default.createElement(require_Icon_js, {
681
+ const Haze = /* @__PURE__ */ react.default.forwardRef(function Haze({ children, size = 16, ...rest }, ref) {
682
+ return react.default.createElement(require_Icon.Icon, {
480
683
  width: size,
481
684
  height: size,
482
685
  ref,
@@ -496,8 +699,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
496
699
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,8a8.0092,8.0092,0,0,0-8,8h2a6,6,0,1,1,6,6H7a1,1,0,0,0,0,2H18A8,8,0,0,0,18,8Z" }), children);
497
700
  });
498
701
  if (process.env.NODE_ENV !== "production") Haze.propTypes = require_iconPropTypes.iconPropTypes;
499
- const HazeNight = react.default.forwardRef(function HazeNight({ children, size = 16, ...rest }, ref) {
500
- return react.default.createElement(require_Icon_js, {
702
+ const HazeNight = /* @__PURE__ */ react.default.forwardRef(function HazeNight({ children, size = 16, ...rest }, ref) {
703
+ return react.default.createElement(require_Icon.Icon, {
501
704
  width: size,
502
705
  height: size,
503
706
  ref,
@@ -508,8 +711,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
508
711
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,22H13a1,1,0,0,0,0,2h9.6772a11.0991,11.0991,0,0,1-7.5561,2.9976c-.1384,0-.2783.0048-.4177,0a11.0945,11.0945,0,0,1-3.201-21.584,15.1528,15.1528,0,0,0-.0488,6.5869h2.0457a13.15,13.15,0,0,1,.39-7.6206A1.015,1.015,0,0,0,12.98,3a.9825.9825,0,0,0-.1746.0156A13.0958,13.0958,0,0,0,14.63,28.9971c.164.0063.3281,0,.4907,0A13.04,13.04,0,0,0,25.3779,24H29a1,1,0,0,0,0-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,20H17a1,1,0,0,1,0-2H27a1,1,0,0,1,0,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,16H13a1,1,0,0,1,0-2H25a1,1,0,0,1,0,2Z" }), children);
509
712
  });
510
713
  if (process.env.NODE_ENV !== "production") HazeNight.propTypes = require_iconPropTypes.iconPropTypes;
511
- const Hd = react.default.forwardRef(function Hd({ children, size = 16, ...rest }, ref) {
512
- return react.default.createElement(require_Icon_js, {
714
+ const Hd = /* @__PURE__ */ react.default.forwardRef(function Hd({ children, size = 16, ...rest }, ref) {
715
+ return react.default.createElement(require_Icon.Icon, {
513
716
  width: size,
514
717
  height: size,
515
718
  ref,
@@ -520,8 +723,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
520
723
  }, /* @__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" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,11H18V21h4a3,3,0,0,0,3-3V14A3,3,0,0,0,22,11Zm1,7a1,1,0,0,1-1,1H20V13h2a1,1,0,0,1,1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 11 13 15 10 15 10 11 8 11 8 21 10 21 10 17 13 17 13 21 15 21 15 11 13 11z" }), children);
521
724
  });
522
725
  if (process.env.NODE_ENV !== "production") Hd.propTypes = require_iconPropTypes.iconPropTypes;
523
- const HdFilled = react.default.forwardRef(function HdFilled({ children, size = 16, ...rest }, ref) {
524
- return react.default.createElement(require_Icon_js, {
726
+ const HdFilled = /* @__PURE__ */ react.default.forwardRef(function HdFilled({ children, size = 16, ...rest }, ref) {
727
+ return react.default.createElement(require_Icon.Icon, {
525
728
  width: size,
526
729
  height: size,
527
730
  ref,
@@ -532,8 +735,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
532
735
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,13H20v6h2a1,1,0,0,0,1-1V14A1,1,0,0,0,22,13Z" }), /* @__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,6ZM15,21H13V17H10v4H8V11h2v4h3V11h2Zm10-3a3,3,0,0,1-3,3H18V11h4a3,3,0,0,1,3,3Z" }), children);
533
736
  });
534
737
  if (process.env.NODE_ENV !== "production") HdFilled.propTypes = require_iconPropTypes.iconPropTypes;
535
- const Hdr = react.default.forwardRef(function Hdr({ children, size = 16, ...rest }, ref) {
536
- return react.default.createElement(require_Icon_js, {
738
+ const Hdr = /* @__PURE__ */ react.default.forwardRef(function Hdr({ children, size = 16, ...rest }, ref) {
739
+ return react.default.createElement(require_Icon.Icon, {
537
740
  width: size,
538
741
  height: size,
539
742
  ref,
@@ -544,8 +747,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
544
747
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15V11a2,2,0,0,0-2-2H22V23h2V17h1.48l2.34,6H30l-2.33-6H28A2,2,0,0,0,30,15Zm-6-4h4v4H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z" }), children);
545
748
  });
546
749
  if (process.env.NODE_ENV !== "production") Hdr.propTypes = require_iconPropTypes.iconPropTypes;
547
- const Heading = react.default.forwardRef(function Heading({ children, size = 16, ...rest }, ref) {
548
- return react.default.createElement(require_Icon_js, {
750
+ const Heading = /* @__PURE__ */ react.default.forwardRef(function Heading({ children, size = 16, ...rest }, ref) {
751
+ return react.default.createElement(require_Icon.Icon, {
549
752
  width: size,
550
753
  height: size,
551
754
  ref,
@@ -556,8 +759,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
556
759
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,7v18h-3v-6h-10v6h-3V7h3v9h10V7h3Z" }), children);
557
760
  });
558
761
  if (process.env.NODE_ENV !== "production") Heading.propTypes = require_iconPropTypes.iconPropTypes;
559
- const Headphones = react.default.forwardRef(function Headphones({ children, size = 16, ...rest }, ref) {
560
- return react.default.createElement(require_Icon_js, {
762
+ const Headphones = /* @__PURE__ */ react.default.forwardRef(function Headphones({ children, size = 16, ...rest }, ref) {
763
+ return react.default.createElement(require_Icon.Icon, {
561
764
  width: size,
562
765
  height: size,
563
766
  ref,
@@ -568,8 +771,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
568
771
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,16V15A9,9,0,0,0,7,15v1A5,5,0,0,0,7,26H9V15a7,7,0,0,1,14,0V26h2a5,5,0,0,0,0-10ZM4,21a3,3,0,0,1,3-3v6A3,3,0,0,1,4,21Zm21,3V18a3,3,0,0,1,0,6Z" }), children);
569
772
  });
570
773
  if (process.env.NODE_ENV !== "production") Headphones.propTypes = require_iconPropTypes.iconPropTypes;
571
- const Headset = react.default.forwardRef(function Headset({ children, size = 16, ...rest }, ref) {
572
- return react.default.createElement(require_Icon_js, {
774
+ const Headset = /* @__PURE__ */ react.default.forwardRef(function Headset({ children, size = 16, ...rest }, ref) {
775
+ return react.default.createElement(require_Icon.Icon, {
573
776
  width: size,
574
777
  height: size,
575
778
  ref,
@@ -580,8 +783,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
580
783
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,10h-.06A9,9,0,0,0,7.06,10H7A5,5,0,0,0,7,20H9V11a7,7,0,0,1,14,0V21a4,4,0,0,1-3.17,3.91,4,4,0,1,0,.05,2A6,6,0,0,0,25,21V20a5,5,0,0,0,0-10ZM4,15a3,3,0,0,1,3-3v6A3,3,0,0,1,4,15ZM16,28a2,2,0,1,1,2-2A2,2,0,0,1,16,28Zm9-10V12a3,3,0,0,1,0,6Z" }), children);
581
784
  });
582
785
  if (process.env.NODE_ENV !== "production") Headset.propTypes = require_iconPropTypes.iconPropTypes;
583
- const HealthCross = react.default.forwardRef(function HealthCross({ children, size = 16, ...rest }, ref) {
584
- return react.default.createElement(require_Icon_js, {
786
+ const HealthCross = /* @__PURE__ */ react.default.forwardRef(function HealthCross({ children, size = 16, ...rest }, ref) {
787
+ return react.default.createElement(require_Icon.Icon, {
585
788
  width: size,
586
789
  height: size,
587
790
  ref,
@@ -592,8 +795,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
592
795
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,28H13a2.0023,2.0023,0,0,1-2-2V21H6a2.0023,2.0023,0,0,1-2-2V13a2.002,2.002,0,0,1,2-2h5V6a2.002,2.002,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v5h5a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H21v5A2.0027,2.0027,0,0,1,19,28ZM6,13v6h7v7h6V19h7V13H19V6H13v7Z" }), children);
593
796
  });
594
797
  if (process.env.NODE_ENV !== "production") HealthCross.propTypes = require_iconPropTypes.iconPropTypes;
595
- const Hearing = react.default.forwardRef(function Hearing({ children, size = 16, ...rest }, ref) {
596
- return react.default.createElement(require_Icon_js, {
798
+ const Hearing = /* @__PURE__ */ react.default.forwardRef(function Hearing({ children, size = 16, ...rest }, ref) {
799
+ return react.default.createElement(require_Icon.Icon, {
597
800
  width: size,
598
801
  height: size,
599
802
  ref,
@@ -604,8 +807,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
604
807
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30V28A10.0114,10.0114,0,0,0,28,18h2A12.0134,12.0134,0,0,1,18,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,26V24a6.0066,6.0066,0,0,0,6-6h2A8.0092,8.0092,0,0,1,18,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,22V20a2.0023,2.0023,0,0,0,2-2h2A4.0042,4.0042,0,0,1,18,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,2a9.01,9.01,0,0,0-9,9H3a7,7,0,0,1,14,0,7.09,7.09,0,0,1-3.501,6.1348L13,17.4229v3.0732a2.9354,2.9354,0,0,1-.9009,2.1514,4.1824,4.1824,0,0,1-4.6318,1.03A4.0918,4.0918,0,0,1,5,20H3a6.1156,6.1156,0,0,0,3.6694,5.5117,5.7822,5.7822,0,0,0,2.3145.4863A6.5854,6.5854,0,0,0,13.4624,24.11,4.94,4.94,0,0,0,15,20.4961V18.5537A9.1077,9.1077,0,0,0,19,11,9.01,9.01,0,0,0,10,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.28,8.0825A3.0061,3.0061,0,0,1,13,11h2a4.9786,4.9786,0,0,0-1.8843-3.9111A5.0414,5.0414,0,0,0,8.835,6.1323,4.95,4.95,0,0,0,5.1323,9.835,5.0318,5.0318,0,0,0,7.436,15.2935,3.0777,3.0777,0,0,1,9,17.9229V20h2V17.9229a5.0608,5.0608,0,0,0-2.5371-4.3458A3.0016,3.0016,0,0,1,9.28,8.0825Z" }), children);
605
808
  });
606
809
  if (process.env.NODE_ENV !== "production") Hearing.propTypes = require_iconPropTypes.iconPropTypes;
607
- const HeatMap = react.default.forwardRef(function HeatMap({ children, size = 16, ...rest }, ref) {
608
- return react.default.createElement(require_Icon_js, {
810
+ const HeatMap = /* @__PURE__ */ react.default.forwardRef(function HeatMap({ children, size = 16, ...rest }, ref) {
811
+ return react.default.createElement(require_Icon.Icon, {
609
812
  width: size,
610
813
  height: size,
611
814
  ref,
@@ -616,8 +819,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
616
819
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H22V20H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 16H30V18H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 6H16V8H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22H12V16a2.0023,2.0023,0,0,0-2-2H4a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h6v4a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V24A2.0023,2.0023,0,0,0,16,22ZM4,22V16h6v6Zm8,6V24h4v4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24a2.0021,2.0021,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,28,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H22a2.0023,2.0023,0,0,0-2,2v6H18a2.0023,2.0023,0,0,0-2,2v2a2.0023,2.0023,0,0,0,2,2h2a2.0023,2.0023,0,0,0,2-2V12h6a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2ZM18,14V12h2v2Zm4-4V4h6v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H8a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,8,10ZM4,4V8H8V4Z" }), children);
617
820
  });
618
821
  if (process.env.NODE_ENV !== "production") HeatMap.propTypes = require_iconPropTypes.iconPropTypes;
619
- const HeatMap_02 = react.default.forwardRef(function HeatMap_02({ children, size = 16, ...rest }, ref) {
620
- return react.default.createElement(require_Icon_js, {
822
+ const HeatMap_02 = /* @__PURE__ */ react.default.forwardRef(function HeatMap_02({ children, size = 16, ...rest }, ref) {
823
+ return react.default.createElement(require_Icon.Icon, {
621
824
  width: size,
622
825
  height: size,
623
826
  ref,
@@ -640,8 +843,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
640
843
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.5,30A3.5,3.5,0,1,1,30,26.5,3.5041,3.5041,0,0,1,26.5,30Zm0-5A1.5,1.5,0,1,0,28,26.5,1.5017,1.5017,0,0,0,26.5,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,30a3.958,3.958,0,0,1-2.126-.6211,6.9977,6.9977,0,1,1,4.1109-6.8384A3.9916,3.9916,0,0,1,14,30Zm-1.8843-3.0278.5391.4946a1.9915,1.9915,0,1,0,2.0039-3.343l-.6909-.2432.03-.8467a5.0085,5.0085,0,1,0-2.5166,4.3023Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,16a6.0067,6.0067,0,0,1-6-6,5.3246,5.3246,0,0,1,.0269-.5327A3.9564,3.9564,0,0,1,16,6a4.0045,4.0045,0,0,1,4-4,3.9564,3.9564,0,0,1,3.4673,2.0271C23.6484,4.009,23.8252,4,24,4a6,6,0,0,1,0,12ZM20,4a2.0021,2.0021,0,0,0-2,2,1.9805,1.9805,0,0,0,1.43,1.9023l.9018.2706-.2153.9162A3.9938,3.9938,0,1,0,24,6a4.0064,4.0064,0,0,0-.9121.1162l-.9155.2141-.27-.9006A1.9807,1.9807,0,0,0,20,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.5,11A4.5,4.5,0,1,1,11,6.5,4.5051,4.5051,0,0,1,6.5,11Zm0-7A2.5,2.5,0,1,0,9,6.5,2.503,2.503,0,0,0,6.5,4Z" }), children);
641
844
  });
642
845
  if (process.env.NODE_ENV !== "production") HeatMap_02.propTypes = require_iconPropTypes.iconPropTypes;
643
- const HeatMap_03 = react.default.forwardRef(function HeatMap_03({ children, size = 16, ...rest }, ref) {
644
- return react.default.createElement(require_Icon_js, {
846
+ const HeatMap_03 = /* @__PURE__ */ react.default.forwardRef(function HeatMap_03({ children, size = 16, ...rest }, ref) {
847
+ return react.default.createElement(require_Icon.Icon, {
645
848
  width: size,
646
849
  height: size,
647
850
  ref,
@@ -652,8 +855,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
652
855
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2.0023,2.0023,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3ZM19,9H13V5h6Zm0,2v4H13V11Zm-8,0v4H5V11Zm0,6v4H5V17Zm2,0h6v4H13Zm8-2V11h6l0,4ZM5,23h6v4H5Zm16,4V23h6v4Z" }), children);
653
856
  });
654
857
  if (process.env.NODE_ENV !== "production") HeatMap_03.propTypes = require_iconPropTypes.iconPropTypes;
655
- const HeatMapStocks = react.default.forwardRef(function HeatMapStocks({ children, size = 16, ...rest }, ref) {
656
- return react.default.createElement(require_Icon_js, {
858
+ const HeatMapStocks = /* @__PURE__ */ react.default.forwardRef(function HeatMapStocks({ children, size = 16, ...rest }, ref) {
859
+ return react.default.createElement(require_Icon.Icon, {
657
860
  width: size,
658
861
  height: size,
659
862
  ref,
@@ -664,8 +867,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
664
867
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3ZM9,21H5V17H9Zm2,2h4v4H11Zm6,0h4v4H17Zm0-8V11h4v4Zm4-6H17V5h4Zm2,2h4v4H23ZM15,5V15H5V5Zm8,22V17h4V27Z" }), children);
665
868
  });
666
869
  if (process.env.NODE_ENV !== "production") HeatMapStocks.propTypes = require_iconPropTypes.iconPropTypes;
667
- const Helicopter = react.default.forwardRef(function Helicopter({ children, size = 16, ...rest }, ref) {
668
- return react.default.createElement(require_Icon_js, {
870
+ const Helicopter = /* @__PURE__ */ react.default.forwardRef(function Helicopter({ children, size = 16, ...rest }, ref) {
871
+ return react.default.createElement(require_Icon.Icon, {
669
872
  width: size,
670
873
  height: size,
671
874
  ref,
@@ -676,8 +879,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
676
879
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8V6H8V8H18v4H4V8H2v8H4V14h6.2192l2.0533,8.2129A4.9923,4.9923,0,0,0,17.123,26H26a4.0045,4.0045,0,0,0,4-4V19.3623a2.0007,2.0007,0,0,0-.4639-1.28L25.0684,12.72A1.9968,1.9968,0,0,0,23.5317,12H20V8ZM26,24H17.123a2.9949,2.9949,0,0,1-2.91-2.2725L12.2808,14H18v6H28v2A2.0023,2.0023,0,0,1,26,24ZM23.5317,14l3.3333,4H20V14Z" }), children);
677
880
  });
678
881
  if (process.env.NODE_ENV !== "production") Helicopter.propTypes = require_iconPropTypes.iconPropTypes;
679
- const Help = react.default.forwardRef(function Help({ children, size = 16, ...rest }, ref) {
680
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
882
+ const Help = /* @__PURE__ */ react.default.forwardRef(function Help({ children, size = 16, ...rest }, ref) {
883
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
681
884
  width: size,
682
885
  height: size,
683
886
  ref,
@@ -690,7 +893,7 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
690
893
  cy: "11.8",
691
894
  r: ".8"
692
895
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.5,4H7.8C6.5,4,5.5,5,5.5,6.2c0,0,0,0,0,0v0.2h1V6.2C6.5,5.6,7.1,5,7.8,5h0.8c0.7,0,1.2,0.6,1.2,1.2S9.2,7.5,8.5,7.5h-1 v2.2h1V8.5c1.2,0,2.2-1,2.2-2.2S9.7,4,8.5,4z" }), children);
693
- return react.default.createElement(require_Icon_js, {
896
+ return react.default.createElement(require_Icon.Icon, {
694
897
  width: size,
695
898
  height: size,
696
899
  ref,
@@ -705,8 +908,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
705
908
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,8H15.5A4.49,4.49,0,0,0,11,12.5V13h2v-.5A2.5,2.5,0,0,1,15.5,10H17a2.5,2.5,0,0,1,0,5H15v4.5h2V17a4.5,4.5,0,0,0,0-9Z" }), children);
706
909
  });
707
910
  if (process.env.NODE_ENV !== "production") Help.propTypes = require_iconPropTypes.iconPropTypes;
708
- const HelpFilled = react.default.forwardRef(function HelpFilled({ children, size = 16, ...rest }, ref) {
709
- return react.default.createElement(require_Icon_js, {
911
+ const HelpFilled = /* @__PURE__ */ react.default.forwardRef(function HelpFilled({ children, size = 16, ...rest }, ref) {
912
+ return react.default.createElement(require_Icon.Icon, {
710
913
  width: size,
711
914
  height: size,
712
915
  ref,
@@ -721,8 +924,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
721
924
  }), children);
722
925
  });
723
926
  if (process.env.NODE_ENV !== "production") HelpFilled.propTypes = require_iconPropTypes.iconPropTypes;
724
- const HelpDesk = react.default.forwardRef(function HelpDesk({ children, size = 16, ...rest }, ref) {
725
- return react.default.createElement(require_Icon_js, {
927
+ const HelpDesk = /* @__PURE__ */ react.default.forwardRef(function HelpDesk({ children, size = 16, ...rest }, ref) {
928
+ return react.default.createElement(require_Icon.Icon, {
726
929
  width: size,
727
930
  height: size,
728
931
  ref,
@@ -733,8 +936,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
733
936
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,10H21a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,27,10Zm1,9H26v9H22V19H20V13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,20,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,22,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,16V13a3.0033,3.0033,0,0,0-3-3H5a3.0033,3.0033,0,0,0-3,3v3H0v2H16V16ZM4,13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v3H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,5A4,4,0,1,1,8,9,4.0042,4.0042,0,0,1,4,5ZM6,5A2,2,0,1,0,8,3,2.0023,2.0023,0,0,0,6,5Z" }), children);
734
937
  });
735
938
  if (process.env.NODE_ENV !== "production") HelpDesk.propTypes = require_iconPropTypes.iconPropTypes;
736
- const HexagonOutline = react.default.forwardRef(function HexagonOutline({ children, size = 16, ...rest }, ref) {
737
- return react.default.createElement(require_Icon_js, {
939
+ const HexagonOutline = /* @__PURE__ */ react.default.forwardRef(function HexagonOutline({ children, size = 16, ...rest }, ref) {
940
+ return react.default.createElement(require_Icon.Icon, {
738
941
  width: size,
739
942
  height: size,
740
943
  ref,
@@ -748,8 +951,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
748
951
  }), children);
749
952
  });
750
953
  if (process.env.NODE_ENV !== "production") HexagonOutline.propTypes = require_iconPropTypes.iconPropTypes;
751
- const HexagonSolid = react.default.forwardRef(function HexagonSolid({ children, size = 16, ...rest }, ref) {
752
- return react.default.createElement(require_Icon_js, {
954
+ const HexagonSolid = /* @__PURE__ */ react.default.forwardRef(function HexagonSolid({ children, size = 16, ...rest }, ref) {
955
+ return react.default.createElement(require_Icon.Icon, {
753
956
  width: size,
754
957
  height: size,
755
958
  ref,
@@ -763,8 +966,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
763
966
  }), children);
764
967
  });
765
968
  if (process.env.NODE_ENV !== "production") HexagonSolid.propTypes = require_iconPropTypes.iconPropTypes;
766
- const HexagonVerticalOutline = react.default.forwardRef(function HexagonVerticalOutline({ children, size = 16, ...rest }, ref) {
767
- return react.default.createElement(require_Icon_js, {
969
+ const HexagonVerticalOutline = /* @__PURE__ */ react.default.forwardRef(function HexagonVerticalOutline({ children, size = 16, ...rest }, ref) {
970
+ return react.default.createElement(require_Icon.Icon, {
768
971
  width: size,
769
972
  height: size,
770
973
  ref,
@@ -778,8 +981,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
778
981
  }), children);
779
982
  });
780
983
  if (process.env.NODE_ENV !== "production") HexagonVerticalOutline.propTypes = require_iconPropTypes.iconPropTypes;
781
- const HexagonVerticalSolid = react.default.forwardRef(function HexagonVerticalSolid({ children, size = 16, ...rest }, ref) {
782
- return react.default.createElement(require_Icon_js, {
984
+ const HexagonVerticalSolid = /* @__PURE__ */ react.default.forwardRef(function HexagonVerticalSolid({ children, size = 16, ...rest }, ref) {
985
+ return react.default.createElement(require_Icon.Icon, {
783
986
  width: size,
784
987
  height: size,
785
988
  ref,
@@ -793,8 +996,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
793
996
  }), children);
794
997
  });
795
998
  if (process.env.NODE_ENV !== "production") HexagonVerticalSolid.propTypes = require_iconPropTypes.iconPropTypes;
796
- const QHintonPlot = react.default.forwardRef(function QHintonPlot({ children, size = 16, ...rest }, ref) {
797
- return react.default.createElement(require_Icon_js, {
999
+ const QHintonPlot = /* @__PURE__ */ react.default.forwardRef(function QHintonPlot({ children, size = 16, ...rest }, ref) {
1000
+ return react.default.createElement(require_Icon.Icon, {
798
1001
  width: size,
799
1002
  height: size,
800
1003
  ref,
@@ -805,8 +1008,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
805
1008
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H6V6H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 2H14V6H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 2H22V6H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 2H30V6H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 10H6V14H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 10H14V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 10H22V14H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 10H30V14H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H6V22H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H14V22H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 18H22V22H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 18H30V22H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H6V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 26H14V30H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 26H22V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 26H30V30H26z" }), children);
806
1009
  });
807
1010
  if (process.env.NODE_ENV !== "production") QHintonPlot.propTypes = require_iconPropTypes.iconPropTypes;
808
- const WatsonHealthHl7Attributes = react.default.forwardRef(function WatsonHealthHl7Attributes({ children, size = 16, ...rest }, ref) {
809
- return react.default.createElement(require_Icon_js, {
1011
+ const WatsonHealthHl7Attributes = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthHl7Attributes({ children, size = 16, ...rest }, ref) {
1012
+ return react.default.createElement(require_Icon.Icon, {
810
1013
  width: size,
811
1014
  height: size,
812
1015
  ref,
@@ -817,8 +1020,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
817
1020
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 9 21 9 21 13 23 13 23 11 26.847 11 22 23 24.157 23 29 11 29 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 21 14 9 12 9 12 23 20 23 20 21 14 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z" }), children);
818
1021
  });
819
1022
  if (process.env.NODE_ENV !== "production") WatsonHealthHl7Attributes.propTypes = require_iconPropTypes.iconPropTypes;
820
- const WatsonHealthHoleFilling = react.default.forwardRef(function WatsonHealthHoleFilling({ children, size = 16, ...rest }, ref) {
821
- return react.default.createElement(require_Icon_js, {
1023
+ const WatsonHealthHoleFilling = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthHoleFilling({ children, size = 16, ...rest }, ref) {
1024
+ return react.default.createElement(require_Icon.Icon, {
822
1025
  width: size,
823
1026
  height: size,
824
1027
  ref,
@@ -833,8 +1036,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
833
1036
  }), /* @__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,6V26H26.0012L26,6Z" }), children);
834
1037
  });
835
1038
  if (process.env.NODE_ENV !== "production") WatsonHealthHoleFilling.propTypes = require_iconPropTypes.iconPropTypes;
836
- const WatsonHealthHoleFillingCursor = react.default.forwardRef(function WatsonHealthHoleFillingCursor({ children, size = 16, ...rest }, ref) {
837
- return react.default.createElement(require_Icon_js, {
1039
+ const WatsonHealthHoleFillingCursor = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthHoleFillingCursor({ children, size = 16, ...rest }, ref) {
1040
+ return react.default.createElement(require_Icon.Icon, {
838
1041
  width: size,
839
1042
  height: size,
840
1043
  ref,
@@ -849,8 +1052,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
849
1052
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H10a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM10,10V28H28V10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2 2 2 2 11 4 11 4 4 11 4 11 2z" }), children);
850
1053
  });
851
1054
  if (process.env.NODE_ENV !== "production") WatsonHealthHoleFillingCursor.propTypes = require_iconPropTypes.iconPropTypes;
852
- const Home = react.default.forwardRef(function Home({ children, size = 16, ...rest }, ref) {
853
- return react.default.createElement(require_Icon_js, {
1055
+ const Home = /* @__PURE__ */ react.default.forwardRef(function Home({ children, size = 16, ...rest }, ref) {
1056
+ return react.default.createElement(require_Icon.Icon, {
854
1057
  width: size,
855
1058
  height: size,
856
1059
  ref,
@@ -861,8 +1064,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
861
1064
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.6123,2.2138a1.01,1.01,0,0,0-1.2427,0L1,13.4194l1.2427,1.5717L4,13.6209V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM18,26H14V18h4Zm2,0V18a2.0023,2.0023,0,0,0-2-2H14a2.002,2.002,0,0,0-2,2v8H6V12.0615l10-7.79,10,7.8005V26Z" }), children);
862
1065
  });
863
1066
  if (process.env.NODE_ENV !== "production") Home.propTypes = require_iconPropTypes.iconPropTypes;
864
- const HorizontalLineDashed = react.default.forwardRef(function HorizontalLineDashed({ children, size = 16, ...rest }, ref) {
865
- return react.default.createElement(require_Icon_js, {
1067
+ const HorizontalLineDashed = /* @__PURE__ */ react.default.forwardRef(function HorizontalLineDashed({ children, size = 16, ...rest }, ref) {
1068
+ return react.default.createElement(require_Icon.Icon, {
866
1069
  width: size,
867
1070
  height: size,
868
1071
  ref,
@@ -873,8 +1076,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
873
1076
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,17h-4v-2h4v2ZM22,17h-4v-2h4v2ZM14,17h-4v-2h4v2ZM6,17H2v-2h4v2Z" }), children);
874
1077
  });
875
1078
  if (process.env.NODE_ENV !== "production") HorizontalLineDashed.propTypes = require_iconPropTypes.iconPropTypes;
876
- const HorizontalLineSolid = react.default.forwardRef(function HorizontalLineSolid({ children, size = 16, ...rest }, ref) {
877
- return react.default.createElement(require_Icon_js, {
1079
+ const HorizontalLineSolid = /* @__PURE__ */ react.default.forwardRef(function HorizontalLineSolid({ children, size = 16, ...rest }, ref) {
1080
+ return react.default.createElement(require_Icon.Icon, {
878
1081
  width: size,
879
1082
  height: size,
880
1083
  ref,
@@ -885,8 +1088,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
885
1088
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,15h28v2H2v-2Z" }), children);
886
1089
  });
887
1090
  if (process.env.NODE_ENV !== "production") HorizontalLineSolid.propTypes = require_iconPropTypes.iconPropTypes;
888
- const HorizontalView = react.default.forwardRef(function HorizontalView({ children, size = 16, ...rest }, ref) {
889
- return react.default.createElement(require_Icon_js, {
1091
+ const HorizontalView = /* @__PURE__ */ react.default.forwardRef(function HorizontalView({ children, size = 16, ...rest }, ref) {
1092
+ return react.default.createElement(require_Icon.Icon, {
890
1093
  width: size,
891
1094
  height: size,
892
1095
  ref,
@@ -897,8 +1100,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
897
1100
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,30ZM4,20H3.9985L4,28H28V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,14H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,14ZM4,4H3.9985L4,12H28V4Z" }), children);
898
1101
  });
899
1102
  if (process.env.NODE_ENV !== "production") HorizontalView.propTypes = require_iconPropTypes.iconPropTypes;
900
- const Hospital = react.default.forwardRef(function Hospital({ children, size = 16, ...rest }, ref) {
901
- return react.default.createElement(require_Icon_js, {
1103
+ const Hospital = /* @__PURE__ */ react.default.forwardRef(function Hospital({ children, size = 16, ...rest }, ref) {
1104
+ return react.default.createElement(require_Icon.Icon, {
902
1105
  width: size,
903
1106
  height: size,
904
1107
  ref,
@@ -909,8 +1112,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
909
1112
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 10 17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H26V4a2.0023,2.0023,0,0,0-2-2H8A2.0023,2.0023,0,0,0,6,4v6H4a2.0023,2.0023,0,0,0-2,2V30H30V12A2.0023,2.0023,0,0,0,28,10ZM14,28V22h4v6Zm6,0V21a1,1,0,0,0-1-1H13a1,1,0,0,0-1,1v7H4V12H8V4H24v8h4V28Z" }), children);
910
1113
  });
911
1114
  if (process.env.NODE_ENV !== "production") Hospital.propTypes = require_iconPropTypes.iconPropTypes;
912
- const HospitalBed = react.default.forwardRef(function HospitalBed({ children, size = 16, ...rest }, ref) {
913
- return react.default.createElement(require_Icon_js, {
1115
+ const HospitalBed = /* @__PURE__ */ react.default.forwardRef(function HospitalBed({ children, size = 16, ...rest }, ref) {
1116
+ return react.default.createElement(require_Icon.Icon, {
914
1117
  width: size,
915
1118
  height: size,
916
1119
  ref,
@@ -921,8 +1124,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
921
1124
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,16H17a2.0023,2.0023,0,0,0-2,2v6H4V14H2V30H4V26H28v4h2V21A5.0059,5.0059,0,0,0,25,16Zm3,8H17V18h8a3.0033,3.0033,0,0,1,3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.5,17A1.5,1.5,0,1,1,8,18.5,1.5017,1.5017,0,0,1,9.5,17m0-2A3.5,3.5,0,1,0,13,18.5,3.5,3.5,0,0,0,9.5,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 6 17 6 17 2 15 2 15 6 11 6 11 8 15 8 15 12 17 12 17 8 21 8 21 6z" }), children);
922
1125
  });
923
1126
  if (process.env.NODE_ENV !== "production") HospitalBed.propTypes = require_iconPropTypes.iconPropTypes;
924
- const Hotel = react.default.forwardRef(function Hotel({ children, size = 16, ...rest }, ref) {
925
- return react.default.createElement(require_Icon_js, {
1127
+ const Hotel = /* @__PURE__ */ react.default.forwardRef(function Hotel({ children, size = 16, ...rest }, ref) {
1128
+ return react.default.createElement(require_Icon.Icon, {
926
1129
  width: size,
927
1130
  height: size,
928
1131
  ref,
@@ -933,8 +1136,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
933
1136
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.5,15A1.5,1.5,0,1,1,8,16.5,1.5,1.5,0,0,1,9.5,15m0-2A3.5,3.5,0,1,0,13,16.5,3.5,3.5,0,0,0,9.5,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,14H17a2,2,0,0,0-2,2v6H4V10.6L16,4.14l12.53,6.74.94-1.76-13-7a1,1,0,0,0-.94,0l-13,7A1,1,0,0,0,2,10V30H4V24H28v6h2V19A5,5,0,0,0,25,14Zm-8,8V16h8a3,3,0,0,1,3,3v3Z" }), children);
934
1137
  });
935
1138
  if (process.env.NODE_ENV !== "production") Hotel.propTypes = require_iconPropTypes.iconPropTypes;
936
- const Hourglass = react.default.forwardRef(function Hourglass({ children, size = 16, ...rest }, ref) {
937
- return react.default.createElement(require_Icon_js, {
1139
+ const Hourglass = /* @__PURE__ */ react.default.forwardRef(function Hourglass({ children, size = 16, ...rest }, ref) {
1140
+ return react.default.createElement(require_Icon.Icon, {
938
1141
  width: size,
939
1142
  height: size,
940
1143
  ref,
@@ -945,8 +1148,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
945
1148
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 19H17V21H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 23H17V25H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,11.67V4h3V2H6V4H9v7.67a2,2,0,0,0,.4,1.2L11.75,16,9.4,19.13a2,2,0,0,0-.4,1.2V28H6v2H26V28H23V20.33a2,2,0,0,0-.4-1.2L20.25,16l2.35-3.13A2,2,0,0,0,23,11.67ZM21,4v7H11V4Zm0,16.33V28H11V20.33L14.25,16,12,13h8l-2.25,3Z" }), children);
946
1149
  });
947
1150
  if (process.env.NODE_ENV !== "production") Hourglass.propTypes = require_iconPropTypes.iconPropTypes;
948
- const Html = react.default.forwardRef(function Html({ children, size = 16, ...rest }, ref) {
949
- return react.default.createElement(require_Icon_js, {
1151
+ const Html = /* @__PURE__ */ react.default.forwardRef(function Html({ children, size = 16, ...rest }, ref) {
1152
+ return react.default.createElement(require_Icon.Icon, {
950
1153
  width: size,
951
1154
  height: size,
952
1155
  ref,
@@ -957,8 +1160,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
957
1160
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 19 28 11 26 11 26 21 32 21 32 19 28 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 11 22 11 20.5 15 19 11 17 11 17 21 19 21 19 14 20.5 18 22 14 22 21 24 21 24 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 13 11 13 11 21 13 21 13 13 15 13 15 11 9 11 9 13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 11 5 15 2 15 2 11 0 11 0 21 2 21 2 17 5 17 5 21 7 21 7 11 5 11z" }), children);
958
1161
  });
959
1162
  if (process.env.NODE_ENV !== "production") Html.propTypes = require_iconPropTypes.iconPropTypes;
960
- const HtmlReference = react.default.forwardRef(function HtmlReference({ children, size = 16, ...rest }, ref) {
961
- return react.default.createElement(require_Icon_js, {
1163
+ const HtmlReference = /* @__PURE__ */ react.default.forwardRef(function HtmlReference({ children, size = 16, ...rest }, ref) {
1164
+ return react.default.createElement(require_Icon.Icon, {
962
1165
  width: size,
963
1166
  height: size,
964
1167
  ref,
@@ -969,8 +1172,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
969
1172
  }, /* @__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: "M28 14 28 6 26 6 26 16 32 16 32 14 28 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 6 22 6 20.5 10 19 6 17 6 17 16 19 16 19 9 20.5 13 22 9 22 16 24 16 24 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 8 11 8 11 16 13 16 13 8 15 8 15 6 9 6 9 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 6 5 10 2 10 2 6 0 6 0 16 2 16 2 12 5 12 5 16 7 16 7 6 5 6z" }), children);
970
1173
  });
971
1174
  if (process.env.NODE_ENV !== "production") HtmlReference.propTypes = require_iconPropTypes.iconPropTypes;
972
- const Http = react.default.forwardRef(function Http({ children, size = 16, ...rest }, ref) {
973
- return react.default.createElement(require_Icon_js, {
1175
+ const Http = /* @__PURE__ */ react.default.forwardRef(function Http({ children, size = 16, ...rest }, ref) {
1176
+ return react.default.createElement(require_Icon.Icon, {
974
1177
  width: size,
975
1178
  height: size,
976
1179
  ref,
@@ -981,8 +1184,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
981
1184
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,11H25V21h2V18h3a2.0027,2.0027,0,0,0,2-2V13A2.0023,2.0023,0,0,0,30,11Zm-3,5V13h3l.001,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13 12 13 12 21 14 21 14 13 16 13 16 11 10 11 10 13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 11 17 11 17 13 19 13 19 21 21 21 21 13 23 13 23 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 11 6 15 3 15 3 11 1 11 1 21 3 21 3 17 6 17 6 21 8 21 8 11 6 11z" }), children);
982
1185
  });
983
1186
  if (process.env.NODE_ENV !== "production") Http.propTypes = require_iconPropTypes.iconPropTypes;
984
- const Humidity = react.default.forwardRef(function Humidity({ children, size = 16, ...rest }, ref) {
985
- return react.default.createElement(require_Icon_js, {
1187
+ const Humidity = /* @__PURE__ */ react.default.forwardRef(function Humidity({ children, size = 16, ...rest }, ref) {
1188
+ return react.default.createElement(require_Icon.Icon, {
986
1189
  width: size,
987
1190
  height: size,
988
1191
  ref,
@@ -993,8 +1196,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
993
1196
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.4761,13.9932,16.8472,3.4365a1.04,1.04,0,0,0-1.6944,0L8.4941,14.0444A9.9861,9.9861,0,0,0,7,19a9,9,0,0,0,18,0A10.0632,10.0632,0,0,0,23.4761,13.9932ZM16,26.0005a7.0089,7.0089,0,0,1-7-7,7.978,7.978,0,0,1,1.2183-3.9438l.935-1.4888L21.2271,23.6411A6.9772,6.9772,0,0,1,16,26.0005Z" }), children);
994
1197
  });
995
1198
  if (process.env.NODE_ENV !== "production") Humidity.propTypes = require_iconPropTypes.iconPropTypes;
996
- const HumidityAlt = react.default.forwardRef(function HumidityAlt({ children, size = 16, ...rest }, ref) {
997
- return react.default.createElement(require_Icon_js, {
1199
+ const HumidityAlt = /* @__PURE__ */ react.default.forwardRef(function HumidityAlt({ children, size = 16, ...rest }, ref) {
1200
+ return react.default.createElement(require_Icon.Icon, {
998
1201
  width: size,
999
1202
  height: size,
1000
1203
  ref,
@@ -1005,8 +1208,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1005
1208
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,12a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L25.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L29.3154,6.11A3.9693,3.9693,0,0,1,30,8.223,3.8978,3.8978,0,0,1,26,12Zm0-7.2368L24.3438,7.2257A1.89,1.89,0,0,0,24,8.223a2.0139,2.0139,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,30H8.5A6.4962,6.4962,0,0,1,7.2,17.1381a8.9938,8.9938,0,0,1,17.6006,0A6.4964,6.4964,0,0,1,23.5,30ZM16,12a7,7,0,0,0-6.9414,6.1452l-.0991.8122-.8155.064A4.4962,4.4962,0,0,0,8.5,28h15a4.4962,4.4962,0,0,0,.3564-8.9786l-.8154-.064-.0986-.8122A7.0022,7.0022,0,0,0,16,12Z" }), children);
1006
1209
  });
1007
1210
  if (process.env.NODE_ENV !== "production") HumidityAlt.propTypes = require_iconPropTypes.iconPropTypes;
1008
- const Hurricane = react.default.forwardRef(function Hurricane({ children, size = 16, ...rest }, ref) {
1009
- return react.default.createElement(require_Icon_js, {
1211
+ const Hurricane = /* @__PURE__ */ react.default.forwardRef(function Hurricane({ children, size = 16, ...rest }, ref) {
1212
+ return react.default.createElement(require_Icon.Icon, {
1010
1213
  width: size,
1011
1214
  height: size,
1012
1215
  ref,
@@ -1017,8 +1220,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1017
1220
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z" }), children);
1018
1221
  });
1019
1222
  if (process.env.NODE_ENV !== "production") Hurricane.propTypes = require_iconPropTypes.iconPropTypes;
1020
- const HybridNetworking = react.default.forwardRef(function HybridNetworking({ children, size = 16, ...rest }, ref) {
1021
- return react.default.createElement(require_Icon_js, {
1223
+ const HybridNetworking = /* @__PURE__ */ react.default.forwardRef(function HybridNetworking({ children, size = 16, ...rest }, ref) {
1224
+ return react.default.createElement(require_Icon.Icon, {
1022
1225
  width: size,
1023
1226
  height: size,
1024
1227
  ref,
@@ -1029,8 +1232,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1029
1232
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,24.1836V20H15v4.1836a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,12a3.9962,3.9962,0,0,0-3.8579,3H9.8579a4,4,0,1,0,0,2H22.1421A3.9934,3.9934,0,1,0,26,12ZM6,18a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,6,18Zm20,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,26,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,5a3,3,0,1,0-4,2.8164V12h2V7.8164A2.9917,2.9917,0,0,0,19,5Z" }), children);
1030
1233
  });
1031
1234
  if (process.env.NODE_ENV !== "production") HybridNetworking.propTypes = require_iconPropTypes.iconPropTypes;
1032
- const HybridNetworkingAlt = react.default.forwardRef(function HybridNetworkingAlt({ children, size = 16, ...rest }, ref) {
1033
- return react.default.createElement(require_Icon_js, {
1235
+ const HybridNetworkingAlt = /* @__PURE__ */ react.default.forwardRef(function HybridNetworkingAlt({ children, size = 16, ...rest }, ref) {
1236
+ return react.default.createElement(require_Icon.Icon, {
1034
1237
  width: size,
1035
1238
  height: size,
1036
1239
  ref,
@@ -1041,8 +1244,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1041
1244
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,22a3.9583,3.9583,0,0,0-2.02.5659L17.4141,16,23.981,9.4331A3.9521,3.9521,0,0,0,26,10a4,4,0,1,0-4-4,3.951,3.951,0,0,0,.5669,2.019L16,14.5859,9.4343,8.02A3.9577,3.9577,0,0,0,10,6a4,4,0,1,0-4,4,3.9583,3.9583,0,0,0,2.02-.5659L14.5859,16,8.019,22.5669A3.9521,3.9521,0,0,0,6,22a4,4,0,1,0,4,4,3.951,3.951,0,0,0-.5669-2.019L16,17.4141,22.5657,23.98A3.9577,3.9577,0,0,0,22,26a4,4,0,1,0,4-4ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z" }), children);
1042
1245
  });
1043
1246
  if (process.env.NODE_ENV !== "production") HybridNetworkingAlt.propTypes = require_iconPropTypes.iconPropTypes;
1044
- const IbmAiOnZ = react.default.forwardRef(function IbmAiOnZ({ children, size = 16, ...rest }, ref) {
1045
- return react.default.createElement(require_Icon_js, {
1247
+ const IbmAiOnZ = /* @__PURE__ */ react.default.forwardRef(function IbmAiOnZ({ children, size = 16, ...rest }, ref) {
1248
+ return react.default.createElement(require_Icon.Icon, {
1046
1249
  width: size,
1047
1250
  height: size,
1048
1251
  ref,
@@ -1053,8 +1256,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1053
1256
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,26c-.7384,0-1.3762.4047-1.7226,1h-5.2774l7.7998-10.4004c.2275-.3027.2642-.708.0947-1.0469s-.5156-.5527-.8945-.5527h-10.1843c-.4141-1.1615-1.5138-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.3019,0,2.4016-.8385,2.8157-2h8.1843l-7.7998,10.4004c-.2275.3027-.2642.708-.0947,1.0469s.5156.5527.8945.5527h7.2774c.3464.5953.9842,1,1.7226,1,1.1046,0,2-.8954,2-2s-.8954-2-2-2Zm-13-9c-.5513,0-1-.4482-1-1s.4487-1,1-1,1,.4482,1,1-.4487,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,21h-2v4.5859L4.4139,16,14,6.4142v4.5858h2v-6h10v8h2V5c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2v22c0,1.1046.8954,2,2,2h12v-8ZM4,5h8.5858L4,13.5858V5Zm0,22v-8.5858l8.5858,8.5858H4Z" }), children);
1054
1257
  });
1055
1258
  if (process.env.NODE_ENV !== "production") IbmAiOnZ.propTypes = require_iconPropTypes.iconPropTypes;
1056
- const IbmAiopsInsights = react.default.forwardRef(function IbmAiopsInsights({ children, size = 16, ...rest }, ref) {
1057
- return react.default.createElement(require_Icon_js, {
1259
+ const IbmAiopsInsights = /* @__PURE__ */ react.default.forwardRef(function IbmAiopsInsights({ children, size = 16, ...rest }, ref) {
1260
+ return react.default.createElement(require_Icon.Icon, {
1058
1261
  width: size,
1059
1262
  height: size,
1060
1263
  ref,
@@ -1069,8 +1272,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1069
1272
  }), children);
1070
1273
  });
1071
1274
  if (process.env.NODE_ENV !== "production") IbmAiopsInsights.propTypes = require_iconPropTypes.iconPropTypes;
1072
- const IbmApiConnect = react.default.forwardRef(function IbmApiConnect({ children, size = 16, ...rest }, ref) {
1073
- return react.default.createElement(require_Icon_js, {
1275
+ const IbmApiConnect = /* @__PURE__ */ react.default.forwardRef(function IbmApiConnect({ children, size = 16, ...rest }, ref) {
1276
+ return react.default.createElement(require_Icon.Icon, {
1074
1277
  width: size,
1075
1278
  height: size,
1076
1279
  ref,
@@ -1081,8 +1284,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1081
1284
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,12c-1.1393,0-2.1624.484-2.8915,1.2505l-3.1586-1.7552c.0272-.162.05-.3257.05-.4954,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.0923.5928,2.0405,1.4676,2.5651l-.8963,4.4782c-1.4501.2102-2.5713,1.4492-2.5713,2.9567,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-.0867-.0183-.1684-.0256-.2533l4.9317-2.2424c.7339.9048,1.8404,1.4957,3.0939,1.4957,2.2061,0,4-1.7939,4-4s-1.7939-4-4-4ZM12.9989,10.0002c.552,0,1.0004.4482,1.0004,1s-.4484,1-1.0004,1-1.0004-.4482-1.0004-1,.4484-1,1.0004-1ZM10.9982,22.0001c-.552,0-1.0004-.4482-1.0004-1s.4484-1,1.0004-1c.4135,0,.7687.2517.9209.6099l.0009.002c.0504.1194.0785.2505.0785.3881,0,.5518-.4484,1-1.0004,1ZM13.1545,18.9224c-.1838-.1906-.395-.3505-.6233-.4874l.8966-4.4782c.5893-.0854,1.1195-.3394,1.5463-.7159l3.1684,1.7599c-.0835.3213-.1418.6522-.1418.9993,0,.2355.0303.4633.0695.6877l-4.9158,2.2345ZM22.0022,18.0002c-1.1029,0-2.0007-.8975-2.0007-2s.8978-2,2.0007-2,2.0007.8975,2.0007,2-.8978,2-2.0007,2ZM27.0908,11.4079c.6175,1.4903.9125,3.0496.9092,4.5921-.0033,1.5629-.3128,3.1085-.9009,4.5475l1.7934.8965c.7238-1.7181,1.1039-3.5704,1.1075-5.444.0035-1.7996-.3405-3.6188-1.061-5.3572-2.2286-5.3799-7.4473-8.6357-12.939-8.6428-1.7888-.0023-3.6066.3401-5.3595,1.0661l.7655,1.8474c1.5025-.6221,3.0607-.9156,4.594-.9135,4.7072.0063,9.1801,2.7969,11.0908,7.4079ZM20.594,27.0868c-1.5026.6222-3.0607.9152-4.594.9132-4.7075-.0062-9.1802-2.797-11.0908-7.4076-.6175-1.4904-.9125-3.0498-.9092-4.5924.0033-1.5627.3128-3.1082.9009-4.5472l-1.7934-.8965c-.7237,1.718-1.1039,3.5702-1.1075,5.4437-.0035,1.7997.3404,3.619,1.061,5.3576,1.4775,3.5657,4.2683,6.1985,7.582,7.5705,1.6852.6977,3.5055,1.0695,5.357,1.0719,1.7887.0024,3.6064-.3399,5.3594-1.0658l-.7654-1.8474ZM25,23c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2ZM7,5c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2Z" }), children);
1082
1285
  });
1083
1286
  if (process.env.NODE_ENV !== "production") IbmApiConnect.propTypes = require_iconPropTypes.iconPropTypes;
1084
- const IbmAppConnectEnterprise = react.default.forwardRef(function IbmAppConnectEnterprise({ children, size = 16, ...rest }, ref) {
1085
- return react.default.createElement(require_Icon_js, {
1287
+ const IbmAppConnectEnterprise = /* @__PURE__ */ react.default.forwardRef(function IbmAppConnectEnterprise({ children, size = 16, ...rest }, ref) {
1288
+ return react.default.createElement(require_Icon.Icon, {
1086
1289
  width: size,
1087
1290
  height: size,
1088
1291
  ref,
@@ -1093,8 +1296,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1093
1296
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,19c-.2045,0-.404.0212-.597.0604l-2.5553-4.2578c.711-.7224,1.1523-1.7111,1.1523-2.8026,0-2.2061-1.7939-4-4-4s-4,1.7939-4,4c0,1.0931.4424,2.0834,1.1552,2.806l-3.111,5.1983c-.0151-.0003-.0291-.0043-.0443-.0043-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2c0-.3502-.0941-.6718-.2466-.9555l3.1263-5.2239c.3578.1053.7288.1794,1.1203.1794.3933,0,.7659-.0747,1.1251-.1809l2.5706,4.2833c-.428.5187-.6957,1.1741-.6957,1.8976,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3ZM14,12c0-1.1025.8975-2,2-2s2,.8975,2,2-.8975,2-2,2-2-.8975-2-2ZM22,23c-.5518,0-1-.4482-1-1s.4482-1,1-1,1,.4482,1,1-.4482,1-1,1ZM30,16.9995v-.0005h0c-.0005-7.7192-6.2805-13.999-14-13.999S2,9.2803,2,17c0,4.1558,2.0088,7.644,3.3611,8.8938,1.0293.9512,2.5835,2.1062,4.6389,2.1062,3.3086,0,6-2.6917,6-6,0-.834-.168-1.6416-.5-2.4006l-1.832.8008c.2197.5049.332,1.0432.332,1.5999,0,2.2056-1.7939,4-4,4s-4-1.7944-4-4,1.7939-4,4-4v-2c-2.5745,0-4.7689,1.6328-5.6187,3.9148-.2546-.9341-.3813-1.9031-.3813-2.9148,0-6.6167,5.3828-12,12-12s12,5.3833,12,12h.001c0,1.0518-.1367,2.0977-.4053,3.1084l1.9316.5156c.3145-1.1804.4734-2.3997.4727-3.624h0v-.0005Z" }), children);
1094
1297
  });
1095
1298
  if (process.env.NODE_ENV !== "production") IbmAppConnectEnterprise.propTypes = require_iconPropTypes.iconPropTypes;
1096
- const IbmApplicationAndDiscoveryDeliveryIntelligence = react.default.forwardRef(function IbmApplicationAndDiscoveryDeliveryIntelligence({ children, size = 16, ...rest }, ref) {
1097
- return react.default.createElement(require_Icon_js, {
1299
+ const IbmApplicationAndDiscoveryDeliveryIntelligence = /* @__PURE__ */ react.default.forwardRef(function IbmApplicationAndDiscoveryDeliveryIntelligence({ children, size = 16, ...rest }, ref) {
1300
+ return react.default.createElement(require_Icon.Icon, {
1098
1301
  width: size,
1099
1302
  height: size,
1100
1303
  ref,
@@ -1105,8 +1308,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1105
1308
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,6h-2v10h2V6ZM28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-4,2.3333c-.3071.1792-.4961.5081-.4961.8638v8.6667h2V4.9076l3-1.7499,11,6.4166v3.4257h2v-4c0-.3557-.189-.6846-.4961-.8638ZM4.9987,22.4315v-13.4315h-1.9987v14.006c0,.3559.1889.6849.4958.8642l10.4971,6.1298,1.0072-1.7282h-.0001s-10.0013-5.8403-10.0013-5.8403ZM22,26.9999h2v-9.9999h-2v9.9999ZM27,27h2v-6h-2v6ZM17,27h2v-8h-2v8Z" }), children);
1106
1309
  });
1107
1310
  if (process.env.NODE_ENV !== "production") IbmApplicationAndDiscoveryDeliveryIntelligence.propTypes = require_iconPropTypes.iconPropTypes;
1108
- const IbmAspera = react.default.forwardRef(function IbmAspera({ children, size = 16, ...rest }, ref) {
1109
- return react.default.createElement(require_Icon_js, {
1311
+ const IbmAspera = /* @__PURE__ */ react.default.forwardRef(function IbmAspera({ children, size = 16, ...rest }, ref) {
1312
+ return react.default.createElement(require_Icon.Icon, {
1110
1313
  width: size,
1111
1314
  height: size,
1112
1315
  ref,
@@ -1117,8 +1320,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1117
1320
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,11c-.75,0-1.39.4-1.73,1h-10.27c-2.21,0-4,1.79-4,4,0,.73.21,1.41.56,2h-6.83c-.34-.6-.98-1-1.73-1-1.12,0-2,.88-2,2s.88,2,2,2c.75,0,1.39-.4,1.73-1h10.27c2.21,0,4-1.79,4-4,0-.73-.21-1.41-.56-2h6.83c.34.6.98,1,1.73,1,1.12,0,2-.88,2-2s-.88-2-2-2ZM18,16c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM5.05,15h-2c0-7.29,5.08-12,12.95-12h10v2h-10c-6.75,0-10.95,3.83-10.95,10ZM16.05,29H6.05v-2h10c6.14,0,10.95-4.39,10.95-10h2c0,6.73-5.69,12-12.95,12Z" }), children);
1118
1321
  });
1119
1322
  if (process.env.NODE_ENV !== "production") IbmAspera.propTypes = require_iconPropTypes.iconPropTypes;
1120
- const IbmBluepay = react.default.forwardRef(function IbmBluepay({ children, size = 16, ...rest }, ref) {
1121
- return react.default.createElement(require_Icon_js, {
1323
+ const IbmBluepay = /* @__PURE__ */ react.default.forwardRef(function IbmBluepay({ children, size = 16, ...rest }, ref) {
1324
+ return react.default.createElement(require_Icon.Icon, {
1122
1325
  width: size,
1123
1326
  height: size,
1124
1327
  ref,
@@ -1129,8 +1332,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1129
1332
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,26V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141-3.5859-3.586v10.1719h12v2H7c-1.104-.0013-1.9987-.896-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,18h-3v-2h-2v2h-1c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h4v2h-6s0,2,0,2h3v2h2v-2h1c1.1046,0,2-.8954,2-2v-2c0-1.1046-.8954-2-2-2h-4v-2h6v-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12V6c-.0012-1.104-.896-1.9988-2-2H12v2h14v6" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H7V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H10V4H2z" }), children);
1130
1333
  });
1131
1334
  if (process.env.NODE_ENV !== "production") IbmBluepay.propTypes = require_iconPropTypes.iconPropTypes;
1132
- const IbmCloudant = react.default.forwardRef(function IbmCloudant({ children, size = 16, ...rest }, ref) {
1133
- return react.default.createElement(require_Icon_js, {
1335
+ const IbmCloudant = /* @__PURE__ */ react.default.forwardRef(function IbmCloudant({ children, size = 16, ...rest }, ref) {
1336
+ return react.default.createElement(require_Icon.Icon, {
1134
1337
  width: size,
1135
1338
  height: size,
1136
1339
  ref,
@@ -1141,8 +1344,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1141
1344
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,26h5c3.86,0,7-3.14,7-7v-2h-2v2c0,2.76-2.24,5-5,5h-5v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20.25,14c-2.34,0-4.25-1.91-4.25-4.25,0-1.79,1.14-3.38,2.78-3.99.74-2.21,2.84-3.76,5.22-3.76s4.48,1.55,5.22,3.76c1.65.61,2.78,2.19,2.78,3.99,0,2.29-1.86,4.19-4.14,4.25h-7.61Zm3.75-10c-1.64,0-3.08,1.17-3.42,2.77l-.14.64-.64.13c-1.04.21-1.8,1.14-1.8,2.2,0,1.24,1.01,2.26,2.25,2.26h7.58c1.18-.03,2.17-1.05,2.17-2.26,0-1.06-.76-1.99-1.8-2.2l-.64-.13-.14-.64c-.34-1.6-1.78-2.77-3.42-2.77Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m4,14h2v-2c0-2.76,2.24-5,5-5h4v-2h-4c-3.86,0-7,3.14-7,7v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,17h-6c-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-10c0-1.1-.9-2-2-2Zm0,2v2h-6v-2h6Zm0,4v2h-6v-2h6Zm-6,6v-2h6v2H4Z" }), children);
1142
1345
  });
1143
1346
  if (process.env.NODE_ENV !== "production") IbmCloudant.propTypes = require_iconPropTypes.iconPropTypes;
1144
- const IbmContentServices = react.default.forwardRef(function IbmContentServices({ children, size = 16, ...rest }, ref) {
1145
- return react.default.createElement(require_Icon_js, {
1347
+ const IbmContentCortexRepository = /* @__PURE__ */ react.default.forwardRef(function IbmContentCortexRepository({ children, size = 16, ...rest }, ref) {
1348
+ return react.default.createElement(require_Icon.Icon, {
1146
1349
  width: size,
1147
1350
  height: size,
1148
1351
  ref,
@@ -1152,9 +1355,9 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1152
1355
  ...rest
1153
1356
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,32l-2.1387-1.0117c-1.7383-.8232-2.8613-2.5977-2.8613-4.5205v-6.4678h10v6.4678c0,1.9238-1.123,3.6973-2.8613,4.5195l-2.1387,1.0127Zm-1.2832-2.8203l1.2832,.6074,1.2832-.6074c1.043-.4932,1.7168-1.5576,1.7168-2.7119v-4.4678h-6v4.4678c0,1.1543,.6738,2.2188,1.7168,2.7119h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,10.5859c-.3752-.375-.8838-.5859-1.4143-.5859h-5.5857c-1.1045,0-2,.8955-2,2v14c0,1.1045,.8955,2,2,2h9v-2H10V12h4v4c0,1.1045,.8955,2,2,2h4.2917c.6929,0,1.312-.4136,1.5771-1.0537,.2656-.6406,.1201-1.3711-.3701-1.8613l-4.4988-4.499Zm-1,5.4141v-3.5859l3.5852,3.5859h-3.5852Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6H16l-3.4141-3.4141c-.3752-.375-.8838-.5859-1.4143-.5859H4c-1.1045,0-2,.8955-2,2V24c0,1.1045,.8955,2,2,2h2v-2H4V4h7.1716l4,4h12.8284v10h2V8c0-1.1045-.8955-2-2-2Z" }), children);
1154
1357
  });
1155
- if (process.env.NODE_ENV !== "production") IbmContentServices.propTypes = require_iconPropTypes.iconPropTypes;
1156
- const IbmDataPower = react.default.forwardRef(function IbmDataPower({ children, size = 16, ...rest }, ref) {
1157
- return react.default.createElement(require_Icon_js, {
1358
+ if (process.env.NODE_ENV !== "production") IbmContentCortexRepository.propTypes = require_iconPropTypes.iconPropTypes;
1359
+ const IbmDataPower = /* @__PURE__ */ react.default.forwardRef(function IbmDataPower({ children, size = 16, ...rest }, ref) {
1360
+ return react.default.createElement(require_Icon.Icon, {
1158
1361
  width: size,
1159
1362
  height: size,
1160
1363
  ref,
@@ -1165,8 +1368,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1165
1368
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5ZM16,13c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3ZM27,25c0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2,2-.8954,2-2ZM5,7c0,1.1046.8954,2,2,2s2-.8954,2-2-.8954-2-2-2-2,.8954-2,2ZM30,16c0-7.7197-6.2803-14-14-14-1.8638,0-3.6758.3623-5.3857,1.0771l.7715,1.8457c1.4644-.6123,3.0166-.9229,4.6143-.9229,6.2803,0,11.4492,4.8496,11.959,11h-4.959v2h7v-1ZM21.3857,28.9229l-.7715-1.8457c-1.4639.6123-3.0166.9229-4.6143.9229-6.2798,0-11.4487-4.8496-11.9585-11h4.9585v-2H2v1c0,7.7197,6.2803,14,14,14,1.8643,0,3.6768-.3623,5.3857-1.0771Z" }), children);
1166
1369
  });
1167
1370
  if (process.env.NODE_ENV !== "production") IbmDataPower.propTypes = require_iconPropTypes.iconPropTypes;
1168
- const IbmDataProductExchange = react.default.forwardRef(function IbmDataProductExchange({ children, size = 16, ...rest }, ref) {
1169
- return react.default.createElement(require_Icon_js, {
1371
+ const IbmDataProductExchange = /* @__PURE__ */ react.default.forwardRef(function IbmDataProductExchange({ children, size = 16, ...rest }, ref) {
1372
+ return react.default.createElement(require_Icon.Icon, {
1170
1373
  width: size,
1171
1374
  height: size,
1172
1375
  ref,
@@ -1177,8 +1380,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1177
1380
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,21v2h1.7483c-2.2363,3.1196-5.8357,5-9.7483,5-6.6169,0-12-5.3833-12-12h-2c0,7.7197,6.2803,14,14,14,4.355,0,8.3743-2.001,11-5.3452v1.3452h2v-5h-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.5046,11.6367l-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,2c-4.355,0-8.3743,2.001-11,5.3452v-1.3452h-2v5h5v-2h-1.7483c2.2363-3.1196,5.8357-5,9.7483-5,6.6169,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14Z" }), children);
1178
1381
  });
1179
1382
  if (process.env.NODE_ENV !== "production") IbmDataProductExchange.propTypes = require_iconPropTypes.iconPropTypes;
1180
- const IbmDataReplication = react.default.forwardRef(function IbmDataReplication({ children, size = 16, ...rest }, ref) {
1181
- return react.default.createElement(require_Icon_js, {
1383
+ const IbmDataReplication = /* @__PURE__ */ react.default.forwardRef(function IbmDataReplication({ children, size = 16, ...rest }, ref) {
1384
+ return react.default.createElement(require_Icon.Icon, {
1182
1385
  width: size,
1183
1386
  height: size,
1184
1387
  ref,
@@ -1189,8 +1392,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1189
1392
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20v2h5.22a11.0163,11.0163,0,0,1-11.97,4.6533l-.4986,1.937A13,13,0,0,0,26,24.293V28h2V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,3a4.0045,4.0045,0,0,0-4,4,3.954,3.954,0,0,0,.5669,2.019L9.019,21.5669A3.9521,3.9521,0,0,0,7,21a4,4,0,1,0,4,4,3.954,3.954,0,0,0-.5669-2.019L22.981,10.4331A3.9518,3.9518,0,0,0,25,11a4,4,0,0,0,0-8ZM7,27a2,2,0,1,1,2-2A2.002,2.002,0,0,1,7,27ZM25,9a2,2,0,1,1,2-2A2.002,2.002,0,0,1,25,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,3A13.04,13.04,0,0,0,6,7.707V4H4v8h8V10H6.78a11.0163,11.0163,0,0,1,11.97-4.6533l.4986-1.937A13.0358,13.0358,0,0,0,16,3Z" }), children);
1190
1393
  });
1191
1394
  if (process.env.NODE_ENV !== "production") IbmDataReplication.propTypes = require_iconPropTypes.iconPropTypes;
1192
- const IbmDataband = react.default.forwardRef(function IbmDataband({ children, size = 16, ...rest }, ref) {
1193
- return react.default.createElement(require_Icon_js, {
1395
+ const IbmDataband = /* @__PURE__ */ react.default.forwardRef(function IbmDataband({ children, size = 16, ...rest }, ref) {
1396
+ return react.default.createElement(require_Icon.Icon, {
1194
1397
  width: size,
1195
1398
  height: size,
1196
1399
  ref,
@@ -1201,8 +1404,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1201
1404
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.69,16.37c.84.83,1.31,1.97,1.31,3.15,0,1.19-.47,2.33-1.32,3.17-.88.87-2.03,1.31-3.18,1.31s-2.31-.44-3.19-1.31c-.59-.59-7.76-7.72-10.76-10.7l-1.27-1.27c-.59-.61-1.46-.84-2.28-.66-.47.11-.91.31-1.26.66-.47.47-.73,1.1-.73,1.76s.26,1.29.73,1.76c.52.51,6.74,6.7,6.74,6.7l-1.42,1.41-6.74-6.7c-.85-.85-1.32-1.97-1.32-3.17s.47-2.32,1.32-3.17c.85-.85,1.98-1.31,3.18-1.31s2.33.47,3.18,1.31l1.27,1.27,10.76,10.7c.98.97,2.56.97,3.54,0,.47-.47.73-1.1.73-1.76s-.26-1.29-.73-1.76l-6.73-6.69,1.42-1.41,6.74,6.7h0l.01.01ZM16,2c2.21,0,4,1.79,4,4s-1.79,4-4,4h0c-2.21,0-4-1.79-4-4s1.79-4,4-4h0ZM16.02,8c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01ZM20,26c0,2.21-1.79,4-4,4s-4-1.79-4-4,1.79-4,4-4,4,1.79,4,4ZM16.02,28c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01Z" }), children);
1202
1405
  });
1203
1406
  if (process.env.NODE_ENV !== "production") IbmDataband.propTypes = require_iconPropTypes.iconPropTypes;
1204
- const IbmDatastage = react.default.forwardRef(function IbmDatastage({ children, size = 16, ...rest }, ref) {
1205
- return react.default.createElement(require_Icon_js, {
1407
+ const IbmDatastage = /* @__PURE__ */ react.default.forwardRef(function IbmDatastage({ children, size = 16, ...rest }, ref) {
1408
+ return react.default.createElement(require_Icon.Icon, {
1206
1409
  width: size,
1207
1410
  height: size,
1208
1411
  ref,
@@ -1213,8 +1416,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1213
1416
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,22.1V13h-2v9.1c-1.4,0.4-2.5,1.5-2.9,2.9H13v2h9.1c0.4,1.7,2,3,3.9,3c2.2,0,4-1.8,4-4C30,24.1,28.7,22.6,27,22.1z M26,28c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S27.1,28,26,28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30H2v-8h8V30z M4,28h4v-4H4V28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.9,7H19V5H9.9C9.4,3.3,7.9,2,6,2C3.8,2,2,3.8,2,6c0,1.9,1.3,3.4,3,3.9V19h2V9.9C8.4,9.5,9.5,8.4,9.9,7z M6,8 C4.9,8,4,7.1,4,6s0.9-2,2-2s2,0.9,2,2S7.1,8,6,8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 2 22 4 26.6 4 11 19.6 12.4 21 28 5.4 28 10 30 10 30 2z" }), children);
1214
1417
  });
1215
1418
  if (process.env.NODE_ENV !== "production") IbmDatastage.propTypes = require_iconPropTypes.iconPropTypes;
1216
- const IbmDb2 = react.default.forwardRef(function IbmDb2({ children, size = 16, ...rest }, ref) {
1217
- return react.default.createElement(require_Icon_js, {
1419
+ const IbmDb2 = /* @__PURE__ */ react.default.forwardRef(function IbmDb2({ children, size = 16, ...rest }, ref) {
1420
+ return react.default.createElement(require_Icon.Icon, {
1218
1421
  width: size,
1219
1422
  height: size,
1220
1423
  ref,
@@ -1225,8 +1428,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1225
1428
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,13c-3.4207,0-6,1.5049-6,3.5v8c0,1.9951,2.5793,3.5,6,3.5s6-1.5049,6-3.5v-8c0-1.9951-2.5793-3.5-6-3.5Zm0,2c2.4814,0,4,.9712,4,1.5s-1.5186,1.5-4,1.5-4-.9712-4-1.5,1.5186-1.5,4-1.5Zm0,11c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Zm0-4c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,15.5c0,3.08-2.14,5.65-5.0099,6.3199v-2.0699c1.75-.62,3.0099-2.28,3.0099-4.25,0-2.33-1.83-4.29-4.15-4.4801l-.81-.0599-.1-.8099c-.43-3.5-3.42-6.15-6.94-6.15-3.53,0-6.52,2.65-6.95,6.15l-.1.8099-.81.0599c-2.32.1901-4.14,2.1501-4.14,4.4801,0,1.96,1.25,3.62,2.9901,4.24v2.08c-2.86-.6799-4.9901-3.25-4.9901-6.3199,0-3.1,2.22-5.75,5.2-6.36.86-4.1201,4.52-7.14,8.8-7.14,4.27,0,7.9301,3.0199,8.8,7.14,2.97.61,5.2,3.26,5.2,6.36Z" }), children);
1226
1429
  });
1227
1430
  if (process.env.NODE_ENV !== "production") IbmDb2.propTypes = require_iconPropTypes.iconPropTypes;
1228
- const IbmDb2Alt = react.default.forwardRef(function IbmDb2Alt({ children, size = 16, ...rest }, ref) {
1229
- return react.default.createElement(require_Icon_js, {
1431
+ const IbmDb2Alt = /* @__PURE__ */ react.default.forwardRef(function IbmDb2Alt({ children, size = 16, ...rest }, ref) {
1432
+ return react.default.createElement(require_Icon.Icon, {
1230
1433
  width: size,
1231
1434
  height: size,
1232
1435
  ref,
@@ -1237,8 +1440,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1237
1440
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.3579,22h-8.397v-2.3287l3.6545-3.1277c1.3259-1.1389,1.7849-1.8019,1.7849-2.8047v-.238c0-.9009-.7991-1.3599-1.564-1.3599-1.1218,0-1.6658,.7649-1.9038,1.6658l-2.2268-.8499c.5271-1.6488,1.9038-3.0256,4.3687-3.0256,2.5667,0,4.0457,1.5128,4.0457,3.5696,0,2.0398-1.4619,3.2806-3.1619,4.6235l-2.2097,1.7339h5.6094v2.1417Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.8291,9.4212h2.5159v5.1505h.085c.2549-.986,1.2407-1.6998,2.3967-1.6998,2.2607,0,3.4336,1.6318,3.4336,4.6575s-1.1729,4.6746-3.4336,4.6746c-1.156,0-2.1418-.731-2.3967-1.6998h-.085v1.4958h-2.5159V9.4212Zm5.8135,8.8901v-1.5469c0-1.1218-.697-1.8528-1.6489-1.8528s-1.6487,.4929-1.6487,1.3088v2.6348c0,.8159,.6968,1.3088,1.6487,1.3088s1.6489-.731,1.6489-1.8528Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M1.1163,10.1351H5.5867c3.1448,0,5.2185,1.9889,5.2185,5.9325s-2.0737,5.9324-5.2185,5.9324H1.1163V10.1351Zm4.4704,9.5687c1.53,0,2.4819-.8329,2.4819-2.7197v-1.8358c0-1.8868-.9519-2.7197-2.4819-2.7197h-1.8867v7.2753h1.8867Z" }), children);
1238
1441
  });
1239
1442
  if (process.env.NODE_ENV !== "production") IbmDb2Alt.propTypes = require_iconPropTypes.iconPropTypes;
1240
- const IbmDb2Warehouse = react.default.forwardRef(function IbmDb2Warehouse({ children, size = 16, ...rest }, ref) {
1241
- return react.default.createElement(require_Icon_js, {
1443
+ const IbmDb2Warehouse = /* @__PURE__ */ react.default.forwardRef(function IbmDb2Warehouse({ children, size = 16, ...rest }, ref) {
1444
+ return react.default.createElement(require_Icon.Icon, {
1242
1445
  width: size,
1243
1446
  height: size,
1244
1447
  ref,
@@ -1249,8 +1452,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1249
1452
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.5039,17.6362l-6-3.5c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-6,3.5c-.3071.1792-.4961.5083-.4961.8638v7c0,.3555.189.6846.4961.8638l6,3.5c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l6-3.5c.3071-.1792.4961-.5083.4961-.8638v-7c0-.3555-.189-.6846-.4961-.8638Zm-1.5039,6.1978l-2.5317-1.519c.0132-.1045.0317-.207.0317-.3149,0-1.0225-.6187-1.9014-1.5-2.2881v-2.9707l4,2.333v4.7598Zm-6-7.0928v2.9707c-.8813.3867-1.5,1.2656-1.5,2.2881,0,.1079.0186.2104.0317.3149l-2.5317,1.519v-4.7598l4-2.333Zm1,11.1011l-3.9517-2.3052,2.5071-1.5039c.4087.291.9055.4668,1.4446.4668s1.0359-.1758,1.4446-.4668l2.5071,1.5039-3.9517,2.3052Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24.8,9.14c-.87-4.12-4.52-7.14-8.8-7.14s-7.93,3.02-8.8,7.14c-2.97.6-5.2,3.26-5.2,6.36,0,3.07,2.14,5.63,5,6.31v-2.11c-1.74-.62-3-2.24-3-4.2,0-2.33,1.82-4.31,4.14-4.49l.82-.06.1-.81c.43-3.5,3.41-6.14,6.94-6.14s6.51,2.64,6.94,6.14l.1.81.82.06c2.32.19,4.14,2.16,4.14,4.49,0,1.95-1.26,3.59-3,4.21v2.11c2.86-.68,5-3.26,5-6.32,0-3.11-2.23-5.76-5.2-6.36Z" }), children);
1250
1453
  });
1251
1454
  if (process.env.NODE_ENV !== "production") IbmDb2Warehouse.propTypes = require_iconPropTypes.iconPropTypes;
1252
- const IbmDeployableArchitecture = react.default.forwardRef(function IbmDeployableArchitecture({ children, size = 16, ...rest }, ref) {
1253
- return react.default.createElement(require_Icon_js, {
1455
+ const IbmDeployableArchitecture = /* @__PURE__ */ react.default.forwardRef(function IbmDeployableArchitecture({ children, size = 16, ...rest }, ref) {
1456
+ return react.default.createElement(require_Icon.Icon, {
1254
1457
  width: size,
1255
1458
  height: size,
1256
1459
  ref,
@@ -1261,8 +1464,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1261
1464
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM24,4c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM24,28c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM25,15h-4.11c1.3-1.27,2.11-3.04,2.11-5v-2h-2v2c0,2.76-2.24,5-5,5h-7v2h7c2.76,0,5,2.24,5,5v2h2v-2c0-1.96-.81-3.73-2.11-5h4.11v-2ZM11.63,20.29l-.04.02-1.31.77-1.28.76-5-2.96v-5.76l5-2.96,1.28.76,1.31.77.04.02,1.71,1.02,1.02-1.72-1.71-1.02-.04-.02-1.33-.78-1.77-1.05c-.16-.09-.33-.14-.51-.14s-.35.05-.51.14l-6,3.55c-.3.18-.49.51-.49.86v6.9c0,.35.19.68.49.86l6,3.55c.16.09.33.14.51.14s.35-.05.51-.14l1.77-1.05,1.33-.78.04-.02,1.71-1.02-1.02-1.72-1.71,1.02Z" }), children);
1262
1465
  });
1263
1466
  if (process.env.NODE_ENV !== "production") IbmDeployableArchitecture.propTypes = require_iconPropTypes.iconPropTypes;
1264
- const IbmDevopsTest = react.default.forwardRef(function IbmDevopsTest({ children, size = 16, ...rest }, ref) {
1265
- return react.default.createElement(require_Icon_js, {
1467
+ const IbmDevopsTest = /* @__PURE__ */ react.default.forwardRef(function IbmDevopsTest({ children, size = 16, ...rest }, ref) {
1468
+ return react.default.createElement(require_Icon.Icon, {
1266
1469
  width: size,
1267
1470
  height: size,
1268
1471
  ref,
@@ -1273,8 +1476,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1273
1476
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.9668,20.038h12.0059v2H2.9668v-2ZM2.9668,25.038h12.0059v2H2.9668v-2ZM19,5.038h9.9668v2h-9.9668v-2ZM17,10.0345h11.9668v2h-11.9668v-2ZM26.5049,18.0883l-3.5357,3.5356-3.5356-3.5356-1.4141,1.414,3.5357,3.5357-3.5357,3.5356,1.4141,1.4141,3.5356-3.5357,3.5357,3.5357,1.414-1.4141-3.5356-3.5356,3.5356-3.5357-1.414-1.414ZM7.9667,9.213l-2.5899-2.5899-1.4099,1.41,4,4.0001,7.9998-8-1.4099-1.41-6.5901,6.5898Z" }), children);
1274
1477
  });
1275
1478
  if (process.env.NODE_ENV !== "production") IbmDevopsTest.propTypes = require_iconPropTypes.iconPropTypes;
1276
- const IbmDynamicRouteServer = react.default.forwardRef(function IbmDynamicRouteServer({ children, size = 16, ...rest }, ref) {
1277
- return react.default.createElement(require_Icon_js, {
1479
+ const IbmDynamicRouteServer = /* @__PURE__ */ react.default.forwardRef(function IbmDynamicRouteServer({ children, size = 16, ...rest }, ref) {
1480
+ return react.default.createElement(require_Icon.Icon, {
1278
1481
  width: size,
1279
1482
  height: size,
1280
1483
  ref,
@@ -1293,8 +1496,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1293
1496
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m7,13H1v6h6v-6Zm-2,4h-2v-2h2v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m17.4999,6.6774c-1.316-1.67-3.3437-2.6774-5.4999-2.6774-2.4907,0-4.8135,1.3403-6.063,3.499l-1.1655,2.0186,1.7324,1,1.165-2.0176c.8921-1.542,2.5518-2.5,4.3311-2.5s3.439.958,4.3311,2.4995c.0048.0082.011.0154.0158.0236l-1.9328,3.348c-1.1128,1.9282-3.188,3.1274-5.415,3.1289l.001,1-.001,1c2.2271.002,4.3022,1.2002,5.415,3.1289l1.9326,3.347c-.0049.0084-.0112.0156-.0161.024-.8916,1.542-2.5513,2.5-4.3306,2.5s-3.439-.958-4.3306-2.499l-1.165-2.0186-1.7324,1,1.1655,2.0195c1.249,2.1572,3.5718,3.498,6.0625,3.498,2.1555,0,4.1829-1.0075,5.5004-2.6772,1.3154,1.6699,3.3427,2.6772,5.4996,2.6772h2v-2h-2c-1.7387,0-3.3566-.918-4.2612-2.3972.9349-1.003,2.254-1.6018,3.6547-1.6018h2.6064v-2h-2.6064c-1.7564,0-3.4199.6761-4.6906,1.824l-1.5565-2.6961c-.7776-1.3467-1.9164-2.4129-3.2465-3.1289,1.3301-.716,2.4688-1.7822,3.2465-3.1289l1.5565-2.6962c1.2706,1.1483,2.9341,1.8246,4.6906,1.8246h2.6064v-2h-2.6064c-1.4005,0-2.7194-.5986-3.6552-1.6017.9044-1.4795,2.5226-2.3978,4.2616-2.3978h2v-2h-2c-2.157,0-4.1844,1.0074-5.5001,2.6774Z" }), children);
1294
1497
  });
1295
1498
  if (process.env.NODE_ENV !== "production") IbmDynamicRouteServer.propTypes = require_iconPropTypes.iconPropTypes;
1296
- const IbmEloAutomotiveCompliance = react.default.forwardRef(function IbmEloAutomotiveCompliance({ children, size = 16, ...rest }, ref) {
1297
- return react.default.createElement(require_Icon_js, {
1499
+ const IbmEloAutomotiveCompliance = /* @__PURE__ */ react.default.forwardRef(function IbmEloAutomotiveCompliance({ children, size = 16, ...rest }, ref) {
1500
+ return react.default.createElement(require_Icon.Icon, {
1298
1501
  width: size,
1299
1502
  height: size,
1300
1503
  ref,
@@ -1314,8 +1517,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1314
1517
  }), children);
1315
1518
  });
1316
1519
  if (process.env.NODE_ENV !== "production") IbmEloAutomotiveCompliance.propTypes = require_iconPropTypes.iconPropTypes;
1317
- const IbmEloEngineeringInsights = react.default.forwardRef(function IbmEloEngineeringInsights({ children, size = 16, ...rest }, ref) {
1318
- return react.default.createElement(require_Icon_js, {
1520
+ const IbmEloEngineeringInsights = /* @__PURE__ */ react.default.forwardRef(function IbmEloEngineeringInsights({ children, size = 16, ...rest }, ref) {
1521
+ return react.default.createElement(require_Icon.Icon, {
1319
1522
  width: size,
1320
1523
  height: size,
1321
1524
  ref,
@@ -1338,8 +1541,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1338
1541
  }), children);
1339
1542
  });
1340
1543
  if (process.env.NODE_ENV !== "production") IbmEloEngineeringInsights.propTypes = require_iconPropTypes.iconPropTypes;
1341
- const IbmEloMethodComposer = react.default.forwardRef(function IbmEloMethodComposer({ children, size = 16, ...rest }, ref) {
1342
- return react.default.createElement(require_Icon_js, {
1544
+ const IbmEloMethodComposer = /* @__PURE__ */ react.default.forwardRef(function IbmEloMethodComposer({ children, size = 16, ...rest }, ref) {
1545
+ return react.default.createElement(require_Icon.Icon, {
1343
1546
  width: size,
1344
1547
  height: size,
1345
1548
  ref,
@@ -1356,8 +1559,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1356
1559
  }), children);
1357
1560
  });
1358
1561
  if (process.env.NODE_ENV !== "production") IbmEloMethodComposer.propTypes = require_iconPropTypes.iconPropTypes;
1359
- const IbmEloPublishing = react.default.forwardRef(function IbmEloPublishing({ children, size = 16, ...rest }, ref) {
1360
- return react.default.createElement(require_Icon_js, {
1562
+ const IbmEloPublishing = /* @__PURE__ */ react.default.forwardRef(function IbmEloPublishing({ children, size = 16, ...rest }, ref) {
1563
+ return react.default.createElement(require_Icon.Icon, {
1361
1564
  width: size,
1362
1565
  height: size,
1363
1566
  ref,
@@ -1380,8 +1583,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1380
1583
  }), children);
1381
1584
  });
1382
1585
  if (process.env.NODE_ENV !== "production") IbmEloPublishing.propTypes = require_iconPropTypes.iconPropTypes;
1383
- const IbmEngineeringLifecycleMgmt = react.default.forwardRef(function IbmEngineeringLifecycleMgmt({ children, size = 16, ...rest }, ref) {
1384
- return react.default.createElement(require_Icon_js, {
1586
+ const IbmEngineeringLifecycleMgmt = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringLifecycleMgmt({ children, size = 16, ...rest }, ref) {
1587
+ return react.default.createElement(require_Icon.Icon, {
1385
1588
  width: size,
1386
1589
  height: size,
1387
1590
  ref,
@@ -1398,8 +1601,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1398
1601
  }), children);
1399
1602
  });
1400
1603
  if (process.env.NODE_ENV !== "production") IbmEngineeringLifecycleMgmt.propTypes = require_iconPropTypes.iconPropTypes;
1401
- const IbmEngineeringRequirementsDoorsNext = react.default.forwardRef(function IbmEngineeringRequirementsDoorsNext({ children, size = 16, ...rest }, ref) {
1402
- return react.default.createElement(require_Icon_js, {
1604
+ const IbmEngineeringRequirementsDoorsNext = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringRequirementsDoorsNext({ children, size = 16, ...rest }, ref) {
1605
+ return react.default.createElement(require_Icon.Icon, {
1403
1606
  width: size,
1404
1607
  height: size,
1405
1608
  ref,
@@ -1421,8 +1624,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1421
1624
  }), children);
1422
1625
  });
1423
1626
  if (process.env.NODE_ENV !== "production") IbmEngineeringRequirementsDoorsNext.propTypes = require_iconPropTypes.iconPropTypes;
1424
- const IbmEngineeringSystemsDesignRhapsody = react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsody({ children, size = 16, ...rest }, ref) {
1425
- return react.default.createElement(require_Icon_js, {
1627
+ const IbmEngineeringSystemsDesignRhapsody = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsody({ children, size = 16, ...rest }, ref) {
1628
+ return react.default.createElement(require_Icon.Icon, {
1426
1629
  width: size,
1427
1630
  height: size,
1428
1631
  ref,
@@ -1445,8 +1648,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1445
1648
  }), children);
1446
1649
  });
1447
1650
  if (process.env.NODE_ENV !== "production") IbmEngineeringSystemsDesignRhapsody.propTypes = require_iconPropTypes.iconPropTypes;
1448
- const IbmEngineeringSystemsDesignRhapsodyModelManager = react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsodyModelManager({ children, size = 16, ...rest }, ref) {
1449
- return react.default.createElement(require_Icon_js, {
1651
+ const IbmEngineeringSystemsDesignRhapsodyModelManager = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsodyModelManager({ children, size = 16, ...rest }, ref) {
1652
+ return react.default.createElement(require_Icon.Icon, {
1450
1653
  width: size,
1451
1654
  height: size,
1452
1655
  ref,
@@ -1469,8 +1672,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1469
1672
  }), children);
1470
1673
  });
1471
1674
  if (process.env.NODE_ENV !== "production") IbmEngineeringSystemsDesignRhapsodyModelManager.propTypes = require_iconPropTypes.iconPropTypes;
1472
- const IbmEngineeringSystemsDesignRhapsodySn1 = react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsodySn1({ children, size = 16, ...rest }, ref) {
1473
- return react.default.createElement(require_Icon_js, {
1675
+ const IbmEngineeringSystemsDesignRhapsodySn1 = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsodySn1({ children, size = 16, ...rest }, ref) {
1676
+ return react.default.createElement(require_Icon.Icon, {
1474
1677
  width: size,
1475
1678
  height: size,
1476
1679
  ref,
@@ -1514,8 +1717,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1514
1717
  }), children);
1515
1718
  });
1516
1719
  if (process.env.NODE_ENV !== "production") IbmEngineeringSystemsDesignRhapsodySn1.propTypes = require_iconPropTypes.iconPropTypes;
1517
- const IbmEngineeringSystemsDesignRhapsodySn2 = react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsodySn2({ children, size = 16, ...rest }, ref) {
1518
- return react.default.createElement(require_Icon_js, {
1720
+ const IbmEngineeringSystemsDesignRhapsodySn2 = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringSystemsDesignRhapsodySn2({ children, size = 16, ...rest }, ref) {
1721
+ return react.default.createElement(require_Icon.Icon, {
1519
1722
  width: size,
1520
1723
  height: size,
1521
1724
  ref,
@@ -1541,8 +1744,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1541
1744
  }), children);
1542
1745
  });
1543
1746
  if (process.env.NODE_ENV !== "production") IbmEngineeringSystemsDesignRhapsodySn2.propTypes = require_iconPropTypes.iconPropTypes;
1544
- const IbmEngineeringTestMgmt = react.default.forwardRef(function IbmEngineeringTestMgmt({ children, size = 16, ...rest }, ref) {
1545
- return react.default.createElement(require_Icon_js, {
1747
+ const IbmEngineeringTestMgmt = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringTestMgmt({ children, size = 16, ...rest }, ref) {
1748
+ return react.default.createElement(require_Icon.Icon, {
1546
1749
  width: size,
1547
1750
  height: size,
1548
1751
  ref,
@@ -1565,8 +1768,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1565
1768
  }), children);
1566
1769
  });
1567
1770
  if (process.env.NODE_ENV !== "production") IbmEngineeringTestMgmt.propTypes = require_iconPropTypes.iconPropTypes;
1568
- const IbmEngineeringWorkflowMgmt = react.default.forwardRef(function IbmEngineeringWorkflowMgmt({ children, size = 16, ...rest }, ref) {
1569
- return react.default.createElement(require_Icon_js, {
1771
+ const IbmEngineeringWorkflowMgmt = /* @__PURE__ */ react.default.forwardRef(function IbmEngineeringWorkflowMgmt({ children, size = 16, ...rest }, ref) {
1772
+ return react.default.createElement(require_Icon.Icon, {
1570
1773
  width: size,
1571
1774
  height: size,
1572
1775
  ref,
@@ -1595,8 +1798,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1595
1798
  }), children);
1596
1799
  });
1597
1800
  if (process.env.NODE_ENV !== "production") IbmEngineeringWorkflowMgmt.propTypes = require_iconPropTypes.iconPropTypes;
1598
- const IbmEventAutomation = react.default.forwardRef(function IbmEventAutomation({ children, size = 16, ...rest }, ref) {
1599
- return react.default.createElement(require_Icon_js, {
1801
+ const IbmEventAutomation = /* @__PURE__ */ react.default.forwardRef(function IbmEventAutomation({ children, size = 16, ...rest }, ref) {
1802
+ return react.default.createElement(require_Icon.Icon, {
1600
1803
  width: size,
1601
1804
  height: size,
1602
1805
  ref,
@@ -1619,8 +1822,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1619
1822
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8.0254,19.8821c-3.0999-1.6578-5.0254-4.8696-5.0254-8.3821C3,6.4729,6.9277,2.307,11.9421,2.0161l.1157,1.9966c-3.9578.2297-7.0579,3.5186-7.0579,7.4873,0,2.7732,1.5208,5.3092,3.9688,6.6184l-.9434,1.7637Z" }), children);
1620
1823
  });
1621
1824
  if (process.env.NODE_ENV !== "production") IbmEventAutomation.propTypes = require_iconPropTypes.iconPropTypes;
1622
- const IbmEventEndpointMgmt = react.default.forwardRef(function IbmEventEndpointMgmt({ children, size = 16, ...rest }, ref) {
1623
- return react.default.createElement(require_Icon_js, {
1825
+ const IbmEventEndpointMgmt = /* @__PURE__ */ react.default.forwardRef(function IbmEventEndpointMgmt({ children, size = 16, ...rest }, ref) {
1826
+ return react.default.createElement(require_Icon.Icon, {
1624
1827
  width: size,
1625
1828
  height: size,
1626
1829
  ref,
@@ -1639,8 +1842,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1639
1842
  }), children);
1640
1843
  });
1641
1844
  if (process.env.NODE_ENV !== "production") IbmEventEndpointMgmt.propTypes = require_iconPropTypes.iconPropTypes;
1642
- const IbmEventProcessing = react.default.forwardRef(function IbmEventProcessing({ children, size = 16, ...rest }, ref) {
1643
- return react.default.createElement(require_Icon_js, {
1845
+ const IbmEventProcessing = /* @__PURE__ */ react.default.forwardRef(function IbmEventProcessing({ children, size = 16, ...rest }, ref) {
1846
+ return react.default.createElement(require_Icon.Icon, {
1644
1847
  width: size,
1645
1848
  height: size,
1646
1849
  ref,
@@ -1659,8 +1862,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1659
1862
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m7.77,16.7993c-3.3972-.8026-5.77-3.8042-5.77-7.2993C2,5.3645,5.3645,2,9.5,2h2.5v2h-2.5c-3.0327,0-5.5,2.4673-5.5,5.5,0,2.5634,1.7395,4.7645,4.23,5.3528l-.46,1.9465Z" }), children);
1660
1863
  });
1661
1864
  if (process.env.NODE_ENV !== "production") IbmEventProcessing.propTypes = require_iconPropTypes.iconPropTypes;
1662
- const IbmEventStreams = react.default.forwardRef(function IbmEventStreams({ children, size = 16, ...rest }, ref) {
1663
- return react.default.createElement(require_Icon_js, {
1865
+ const IbmEventStreams = /* @__PURE__ */ react.default.forwardRef(function IbmEventStreams({ children, size = 16, ...rest }, ref) {
1866
+ return react.default.createElement(require_Icon.Icon, {
1664
1867
  width: size,
1665
1868
  height: size,
1666
1869
  ref,
@@ -1679,8 +1882,8 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1679
1882
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m4.2993,23.855c-2.1277-2.0861-3.2993-4.8757-3.2993-7.855C1,9.9346,5.9346,5,12,5c2.9795,0,5.7693,1.1719,7.8555,3.2998l-1.4282,1.4001c-1.7068-1.7411-3.9895-2.7-6.4272-2.7-4.9626,0-9,4.0374-9,9,0,2.4376.9587,4.7201,2.6997,6.427l-1.4004,1.428Z" }), children);
1680
1883
  });
1681
1884
  if (process.env.NODE_ENV !== "production") IbmEventStreams.propTypes = require_iconPropTypes.iconPropTypes;
1682
- const IbmGcm = react.default.forwardRef(function IbmGcm({ children, size = 16, ...rest }, ref) {
1683
- return react.default.createElement(require_Icon_js, {
1885
+ const IbmGcm = /* @__PURE__ */ react.default.forwardRef(function IbmGcm({ children, size = 16, ...rest }, ref) {
1886
+ return react.default.createElement(require_Icon.Icon, {
1684
1887
  width: size,
1685
1888
  height: size,
1686
1889
  ref,
@@ -1697,257 +1900,30 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1697
1900
  }), children);
1698
1901
  });
1699
1902
  if (process.env.NODE_ENV !== "production") IbmGcm.propTypes = require_iconPropTypes.iconPropTypes;
1700
- const IbmGlobalStorageArchitecture = react.default.forwardRef(function IbmGlobalStorageArchitecture({ children, size = 16, ...rest }, ref) {
1701
- return react.default.createElement(require_Icon_js, {
1702
- width: size,
1703
- height: size,
1704
- ref,
1705
- xmlns: "http://www.w3.org/2000/svg",
1706
- viewBox: "0 0 32 32",
1707
- fill: "currentColor",
1708
- ...rest
1709
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM5,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM27,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM6,24v-3h9v3h2v-3h9v3h2v-3c0-1.1-.9-2-2-2h-9v-3h-2v3H6c-1.1,0-2,.9-2,2v3h2ZM21.7,6.1c-.8-2.4-3.1-4.1-5.7-4.1s-4.9,1.7-5.7,4.1c-1.9.3-3.3,1.9-3.3,3.9s1.8,4,4,4h10c2.2,0,4-1.8,4-4s-1.4-3.6-3.3-3.9ZM21,12h-10c-1.1,0-2-.9-2-2s.9-2,2-2h1c0-2.2,1.8-4,4-4s4,1.8,4,4h1c1.1,0,2,.9,2,2s-.9,2-2,2Z" }), children);
1710
- });
1711
- if (process.env.NODE_ENV !== "production") IbmGlobalStorageArchitecture.propTypes = require_iconPropTypes.iconPropTypes;
1712
- const IbmGranite = react.default.forwardRef(function IbmGranite({ children, size = 16, ...rest }, ref) {
1713
- return react.default.createElement(require_Icon_js, {
1714
- width: size,
1715
- height: size,
1716
- ref,
1717
- xmlns: "http://www.w3.org/2000/svg",
1718
- viewBox: "0 0 32 32",
1719
- fill: "currentColor",
1720
- ...rest
1721
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3482.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v14c0,.3555.189.6846.4961.8643l12,7c.1558.0908.3296.1357.5039.1357s.3481-.0449.5039-.1357l12-7c.3076-.1797.4961-.5088.4961-.8643v-14c0-.3555-.1885-.6846-.4961-.8638ZM16,3.1577l10.0155,5.8422-2.3773,1.3867-5.6382-3.2529c-.3105-.1787-.6895-.1787-1,0l-6.4995,3.75c-.1992.115-.3417.2961-.4235.5034l-4.0925-2.3873,10.0155-5.8422h0ZM12,14.8244l3,1.75v3.8291l-3-1.7307v-3.8484ZM16,14.8423l-4-2.3333v-.1813l5.5-3.1733,4.148,2.3933-5.648,3.2947h0ZM17,16.5744l6-3.5v5.5984l-5.5,3.1729-.5-.2885v-4.9828ZM5,10.741l5,2.9167v5.5923c0,.3574.1909.6875.5005.8662l4.4995,2.5961v5.5471l-10-5.8336v-11.6848ZM17,28.2594v-4.3932c.1553.0889.3271.1338.5.1338s.3447-.0449.5-.1338l6.5-3.75c.3096-.1787.5-.5088.5-.8662v-7.3423l2-1.1667v11.6848l-10,5.8336Z" }), children);
1722
- });
1723
- if (process.env.NODE_ENV !== "production") IbmGranite.propTypes = require_iconPropTypes.iconPropTypes;
1724
- const IbmIbv = react.default.forwardRef(function IbmIbv({ children, size = 16, ...rest }, ref) {
1725
- return react.default.createElement(require_Icon_js, {
1726
- width: size,
1727
- height: size,
1728
- ref,
1729
- xmlns: "http://www.w3.org/2000/svg",
1730
- viewBox: "0 0 32 32",
1731
- fill: "currentColor",
1732
- ...rest
1733
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15,24c-3.8594,0-7-3.1401-7-7s3.1406-7,7-7,7,3.1401,7,7-3.1406,7-7,7Zm0-12c-2.7568,0-5,2.2432-5,5s2.2432,5,5,5,5-2.2432,5-5-2.2432-5-5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,13h-2V4h-9v-2h9c1.1025,0,2,.897,2,2v9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15,30c-7.168,0-13-5.8315-13-13S7.832,4,15,4v2c-6.0654,0-11,4.9346-11,11s4.9346,11,11,11,11-4.9346,11-11v-1h2v1c0,7.1685-5.832,13-13,13Z" }), children);
1734
- });
1735
- if (process.env.NODE_ENV !== "production") IbmIbv.propTypes = require_iconPropTypes.iconPropTypes;
1736
- const IbmInstana = react.default.forwardRef(function IbmInstana({ children, size = 16, ...rest }, ref) {
1737
- return react.default.createElement(require_Icon_js, {
1738
- width: size,
1739
- height: size,
1740
- ref,
1741
- xmlns: "http://www.w3.org/2000/svg",
1742
- viewBox: "0 0 32 32",
1743
- fill: "currentColor",
1744
- ...rest
1745
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 13H11V19H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 13H23V19H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 11H15V24H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 9H19V22H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1746
- cx: "22",
1747
- cy: "5",
1748
- r: "2"
1749
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1750
- cx: "10",
1751
- cy: "27",
1752
- r: "2"
1753
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.0916,28h-8.0916v-2h8.0916l5.9082-10-2.6992-4.5679,1.7227-1.0176,2.6992,4.5679c.3701.6274.3701,1.4077,0,2.0352l-5.9092,10c-.3574.6055-1.0176.9824-1.7217.9824Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m4.9768,21.5859l-2.6992-4.5684c-.3701-.6274-.3701-1.4077,0-2.0352l5.9092-10c.3584-.606,1.0176-.9824,1.7217-.9824h8.0916v2h-8.0916l-5.9082,10,2.6992,4.5684-1.7227,1.0176Z" }), children);
1754
- });
1755
- if (process.env.NODE_ENV !== "production") IbmInstana.propTypes = require_iconPropTypes.iconPropTypes;
1756
- const IbmJrs = react.default.forwardRef(function IbmJrs({ children, size = 16, ...rest }, ref) {
1757
- return react.default.createElement(require_Icon_js, {
1758
- width: size,
1759
- height: size,
1760
- ref,
1761
- xmlns: "http://www.w3.org/2000/svg",
1762
- viewBox: "0 0 32 32",
1763
- fill: "currentColor",
1764
- ...rest
1765
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1766
- strokeWidth: "0",
1767
- d: "M12 18 10 18 10 6 7 6 7 18 5 18 5 4 12 4 12 18z"
1768
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1769
- strokeWidth: "0",
1770
- d: "M21 26 19 26 19 12 16 12 16 21.9946 14 21.9946 14 10 21 10 21 26z"
1771
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1772
- strokeWidth: "0",
1773
- d: "M30 26 28 26 28 18 25 18 25 26 23 26 23 16 30 16 30 26z"
1774
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1775
- strokeWidth: "0",
1776
- d: "M4 20 4 22 8.5859 22 2 28.5859 3.4141 30 10 23.4141 10 28 12 28 12 20 4 20z"
1777
- }), children);
1778
- });
1779
- if (process.env.NODE_ENV !== "production") IbmJrs.propTypes = require_iconPropTypes.iconPropTypes;
1780
- const IbmKnowledgeCatalog = react.default.forwardRef(function IbmKnowledgeCatalog({ children, size = 16, ...rest }, ref) {
1781
- return react.default.createElement(require_Icon_js, {
1782
- width: size,
1783
- height: size,
1784
- ref,
1785
- xmlns: "http://www.w3.org/2000/svg",
1786
- viewBox: "0 0 32 32",
1787
- fill: "currentColor",
1788
- ...rest
1789
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,25h-3v-3h3v3ZM29,22h-3v3h3v-3ZM24,27h-3v3h3v-3ZM29,27h-3v3h3v-3ZM20,8h-8v2h8v-2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2Z" }), children);
1790
- });
1791
- if (process.env.NODE_ENV !== "production") IbmKnowledgeCatalog.propTypes = require_iconPropTypes.iconPropTypes;
1792
- const IbmKnowledgeCatalogPremium = react.default.forwardRef(function IbmKnowledgeCatalogPremium({ children, size = 16, ...rest }, ref) {
1793
- return react.default.createElement(require_Icon_js, {
1794
- width: size,
1795
- height: size,
1796
- ref,
1797
- xmlns: "http://www.w3.org/2000/svg",
1798
- viewBox: "0 0 32 32",
1799
- fill: "currentColor",
1800
- ...rest
1801
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10h-8v-2h8v2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2ZM23.4,24.3l-3.7.5,2.7,2.6-.7,3.6,3.4-1.7,3.2,1.7-.7-3.6,2.7-2.6-3.6-.5-1.7-3.3s-1.6,3.3-1.6,3.3Z" }), children);
1802
- });
1803
- if (process.env.NODE_ENV !== "production") IbmKnowledgeCatalogPremium.propTypes = require_iconPropTypes.iconPropTypes;
1804
- const IbmKnowledgeCatalogStandard = react.default.forwardRef(function IbmKnowledgeCatalogStandard({ children, size = 16, ...rest }, ref) {
1805
- return react.default.createElement(require_Icon_js, {
1806
- width: size,
1807
- height: size,
1808
- ref,
1809
- xmlns: "http://www.w3.org/2000/svg",
1810
- viewBox: "0 0 32 32",
1811
- fill: "currentColor",
1812
- ...rest
1813
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10h-8v-2h8v2ZM16,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v17h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h10v-2ZM20,15h-8v2h8v-2ZM23,27.2l-2.6-2.6-1.4,1.4,4,4,7-7-1.4-1.4-5.6,5.6Z" }), children);
1814
- });
1815
- if (process.env.NODE_ENV !== "production") IbmKnowledgeCatalogStandard.propTypes = require_iconPropTypes.iconPropTypes;
1816
- const IbmLaunchpadS4 = react.default.forwardRef(function IbmLaunchpadS4({ children, size = 16, ...rest }, ref) {
1817
- return react.default.createElement(require_Icon_js, {
1818
- width: size,
1819
- height: size,
1820
- ref,
1821
- xmlns: "http://www.w3.org/2000/svg",
1822
- viewBox: "0 0 32 32",
1823
- fill: "currentColor",
1824
- ...rest
1825
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1826
- strokeWidth: "0",
1827
- d: "m22,26v2H4V10h2v-2h-2c-1.1045,0-2,.8955-2,2v18c0,1.1045.8955,2,2,2h18c1.1045,0,2-.8955,2-2v-2h-2Z"
1828
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1829
- strokeWidth: "0",
1830
- d: "m30,5.9932v-1.9932c0-1.1046-.8954-2-2-2H10c-1.1046,0-2,.8954-2,2v18c0,1.1046.8954,2,2,2h18c1.1046,0,2-.8954,2-2v-3h-2v3H10V4h18v1.9932h2Z"
1831
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1832
- strokeWidth: "0",
1833
- d: "m27.5,17h-9c-1.9297,0-3.5-1.5703-3.5-3.5,0-1.7935,1.3555-3.2759,3.0957-3.4766.4561-2.291,2.4814-4.0234,4.9043-4.0234s4.4482,1.7324,4.9043,4.0234c1.7402.2007,3.0957,1.6831,3.0957,3.4766,0,1.9297-1.5703,3.5-3.5,3.5Zm-9-5c-.8271,0-1.5.6729-1.5,1.5s.6729,1.5,1.5,1.5h9c.8271,0,1.5-.6729,1.5-1.5s-.6729-1.5-1.5-1.5h-1.5v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1.5Z"
1834
- }), children);
1835
- });
1836
- if (process.env.NODE_ENV !== "production") IbmLaunchpadS4.propTypes = require_iconPropTypes.iconPropTypes;
1837
- const IbmLpa = react.default.forwardRef(function IbmLpa({ children, size = 16, ...rest }, ref) {
1838
- return react.default.createElement(require_Icon_js, {
1839
- width: size,
1840
- height: size,
1841
- ref,
1842
- xmlns: "http://www.w3.org/2000/svg",
1843
- viewBox: "0 0 32 32",
1844
- fill: "currentColor",
1845
- ...rest
1846
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1847
- strokeWidth: "0",
1848
- d: "m30,30h-2v-2c0-.5513-.4482-1-1-1h-6c-.5518,0-1,.4487-1,1v2h-2v-2c0-1.6543,1.3457-3,3-3h6c1.6543,0,3,1.3457,3,3v2Z"
1849
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1850
- strokeWidth: "0",
1851
- d: "m24,24c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Zm0-6c-1.1025,0-2,.897-2,2s.8975,2,2,2,2-.897,2-2-.8975-2-2-2Z"
1852
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1853
- strokeWidth: "0",
1854
- d: "M8 20H10V22H8z"
1855
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1856
- strokeWidth: "0",
1857
- d: "M12 20H18V22H12z"
1858
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1859
- strokeWidth: "0",
1860
- d: "M8 16H10V18H8z"
1861
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1862
- strokeWidth: "0",
1863
- d: "M12 16H18V18H12z"
1864
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1865
- strokeWidth: "0",
1866
- d: "M8 12H10V14H8z"
1867
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1868
- strokeWidth: "0",
1869
- d: "M12 12H18V14H12z"
1870
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1871
- strokeWidth: "0",
1872
- d: "m21,5h-3v-1c0-1.103-.8975-2-2-2h-6c-1.1025,0-2,.897-2,2v1h-3c-1.1025,0-2,.897-2,2v19c0,1.103.8975,2,2,2h9v-2H5V7h3v2h10v-2h3v6.9999h2v-6.9999c0-1.103-.8975-2-2-2Zm-5,2h-6v-3h6v3Z"
1873
- }), children);
1874
- });
1875
- if (process.env.NODE_ENV !== "production") IbmLpa.propTypes = require_iconPropTypes.iconPropTypes;
1876
- const IbmLqe = react.default.forwardRef(function IbmLqe({ children, size = 16, ...rest }, ref) {
1877
- return react.default.createElement(require_Icon_js, {
1878
- width: size,
1879
- height: size,
1880
- ref,
1881
- xmlns: "http://www.w3.org/2000/svg",
1882
- viewBox: "0 0 32 32",
1883
- fill: "currentColor",
1884
- ...rest
1885
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1886
- strokeWidth: "0",
1887
- d: "m31,29.5859l-8.5479-8.5469c-2.0986,2.5171-5.178,3.9609-8.4521,3.9609-6.0654,0-11-4.9346-11-11S7.9346,3,14,3s11,4.9346,11,11c0,1.6001-.3354,3.1416-.9968,4.583l1.8174.834c.7827-1.7041,1.1794-3.5269,1.1794-5.417,0-7.168-5.8318-13-13-13S1,6.832,1,14s5.8318,13,13,13c3.1343,0,6.1025-1.1387,8.4395-3.1465l7.1465,7.1465,1.4141-1.4141Z"
1888
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1889
- strokeWidth: "0",
1890
- d: "m17,15c-.8066,0-1.5369.3237-2.0767.8438l-2.96-1.4805c.0146-.1201.0366-.2388.0366-.3633s-.022-.2432-.0366-.3633l2.96-1.4805c.5398.52,1.27.8438,2.0767.8438,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.1245.022.2432.0366.3633l-2.96,1.4805c-.5398-.52-1.27-.8438-2.0767-.8438-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.8066,0,1.5369-.3237,2.0767-.8438l2.96,1.4805c-.0146.1201-.0366.2388-.0366.3633,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0-6c.5515,0,1,.4482,1,1s-.4485,1-1,1-1-.4482-1-1,.4485-1,1-1Zm-8,6c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Zm8,4c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Z"
1891
- }), children);
1892
- });
1893
- if (process.env.NODE_ENV !== "production") IbmLqe.propTypes = require_iconPropTypes.iconPropTypes;
1894
- const IbmMachineLearningForZos = react.default.forwardRef(function IbmMachineLearningForZos({ children, size = 16, ...rest }, ref) {
1895
- return react.default.createElement(require_Icon_js, {
1896
- width: size,
1897
- height: size,
1898
- ref,
1899
- xmlns: "http://www.w3.org/2000/svg",
1900
- viewBox: "0 0 32 32",
1901
- fill: "currentColor",
1902
- ...rest
1903
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,27v-6h-2v4.6l-9.6-9.6L15,6.4v4.6h2v-6h10v8h2V5c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h12v-2ZM5,5h8.6L5,13.6V5ZM5,27v-8.6l8.6,8.6H5ZM26.6,19l-3.7-3.7c-.2-.2-.4-.3-.6-.3h-3.5c-.6-1.6-2.3-2.4-3.8-1.8-.9.3-1.6,1-1.8,1.9-.5,1.6.4,3.3,2,3.7,1.5.5,3.1-.3,3.7-1.8h3l3.8,3.8c.1.1.3.2.5.2h3.9v-2s-3.5,0-3.5,0ZM16,17c-.6,0-1-.4-1-1s.4-1,1-1,1,.4,1,1-.4,1-1,1ZM24.8,23c-.4-1.2-1.5-2-2.8-2s-3,1.3-3,3,1.4,3,3,3,2.4-.8,2.8-2h5.2v-2h-5.2ZM22,25c-.5,0-1-.5-1-1s.5-1,1-1,1,.5,1,1-.4,1-1,1ZM26,27h4v2h-4v-2ZM28,15h2v2h-2v-2Z" }), children);
1904
- });
1905
- if (process.env.NODE_ENV !== "production") IbmMachineLearningForZos.propTypes = require_iconPropTypes.iconPropTypes;
1906
- const IbmMatch_360 = react.default.forwardRef(function IbmMatch_360({ children, size = 16, ...rest }, ref) {
1907
- return react.default.createElement(require_Icon_js, {
1908
- width: size,
1909
- height: size,
1910
- ref,
1911
- xmlns: "http://www.w3.org/2000/svg",
1912
- viewBox: "0 0 32 32",
1913
- fill: "currentColor",
1914
- ...rest
1915
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,5,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,27,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,23H26V11a2.0059,2.0059,0,0,0-2-2H22V7h2a4.0118,4.0118,0,0,1,4,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V23H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,23H4V11A4.0118,4.0118,0,0,1,8,7h2V9H8a2.0059,2.0059,0,0,0-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2,14.7,4.6343l-2.9057.42,2.1029,2.0514L13.4,10,16,8.6343,18.6,10l-.4972-2.8943,2.1029-2.0486L17.3,4.6343Z" }), children);
1916
- });
1917
- if (process.env.NODE_ENV !== "production") IbmMatch_360.propTypes = require_iconPropTypes.iconPropTypes;
1918
- const IbmMaximoApplicationSuite = react.default.forwardRef(function IbmMaximoApplicationSuite({ children, size = 16, ...rest }, ref) {
1919
- return react.default.createElement(require_Icon_js, {
1920
- width: size,
1921
- height: size,
1922
- ref,
1923
- xmlns: "http://www.w3.org/2000/svg",
1924
- viewBox: "0 0 32 32",
1925
- fill: "currentColor",
1926
- ...rest
1927
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,3v2h-12.4258l-6.4238,11.0117,3.6408,6.5537.7783-2.5654,1.9139.5806-1.7417,5.7416-5.7416-1.7416.5806-1.9139s1.2918.3851,2.375.712l-3.8296-6.8933c-.1719-.3086-.168-.6846.0098-.9893L8.1357,3.4961c.1797-.3076.5088-.4961.8643-.4961h13ZM23,29c.3555,0,.6846-.1885.8643-.4961l7-12c.1777-.3047.1816-.6807.0098-.9893l-3.8296-6.8933c1.0832.3269,2.375.712,2.375.712l.5806-1.9139-5.7416-1.7416-1.7417,5.7416,1.9139.5806.7783-2.5654,3.6408,6.5537-6.4238,11.0117h-12.4258v2h13-.0002ZM21,16c0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5,5-2.2432,5-5ZM19,16c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Z" }), children);
1928
- });
1929
- if (process.env.NODE_ENV !== "production") IbmMaximoApplicationSuite.propTypes = require_iconPropTypes.iconPropTypes;
1930
- const IbmMq = react.default.forwardRef(function IbmMq({ children, size = 16, ...rest }, ref) {
1931
- return react.default.createElement(require_Icon_js, {
1932
- width: size,
1933
- height: size,
1934
- ref,
1935
- xmlns: "http://www.w3.org/2000/svg",
1936
- viewBox: "0 0 32 32",
1937
- fill: "currentColor",
1938
- ...rest
1939
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,28.4l-0.9-1.8c4-2.1,6.5-6.2,6.5-10.6c0-6.6-5.4-12-12-12c-1.3,0-2.5,0.2-3.7,0.6l-0.6-1.9C13.1,2.2,14.5,2,16,2 c7.7,0,14,6.3,14,14C30,21.2,27.1,26,22.5,28.4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.5,23.8l-1-1.7c2.2-1.2,3.5-3.6,3.5-6.1c0-3.9-3.1-7-7-7c-0.6,0-1.2,0.1-1.8,0.2l-0.5-1.9C14.5,7.1,15.2,7,16,7 c5,0,9,4,9,9C25,19.2,23.3,22.2,20.5,23.8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.5,28.4C4.9,26,2,21.2,2,16c0-1.5,0.2-2.9,0.7-4.3l1.9,0.6C4.2,13.5,4,14.7,4,16c0,4.5,2.5,8.6,6.5,10.6L9.5,28.4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.5,23.8C8.7,22.2,7,19.2,7,16c0-0.8,0.1-1.5,0.3-2.2l1.9,0.5C9.1,14.8,9,15.4,9,16c0,2.5,1.3,4.8,3.5,6.1L11.5,23.8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,16c0-2.2-1.8-4-4-4c-0.7,0-1.4,0.2-2,0.6L8.9,7.5C9,7.3,9,7.2,9,7c0-1.1-0.9-2-2-2S5,5.9,5,7s0.9,2,2,2 c0.2,0,0.3,0,0.5-0.1l5.1,5.1c-0.4,0.6-0.6,1.3-0.6,2c0,1.9,1.3,3.4,3,3.9v7.4c-0.6,0.3-1,1-1,1.7c0,1.1,0.9,2,2,2s2-0.9,2-2 c0-0.7-0.4-1.4-1-1.7v-7.4C18.7,19.4,20,17.9,20,16z M16,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S17.1,18,16,18z" }), children);
1940
- });
1941
- if (process.env.NODE_ENV !== "production") IbmMq.propTypes = require_iconPropTypes.iconPropTypes;
1903
+ exports.GameWireless = GameWireless;
1904
+ exports.Gamification = Gamification;
1905
+ exports.GasStation = GasStation;
1906
+ exports.GasStationFilled = GasStationFilled;
1907
+ exports.Gateway = Gateway;
1908
+ exports.GatewayApi = GatewayApi;
1909
+ exports.GatewayMail = GatewayMail;
1910
+ exports.GatewayPublic = GatewayPublic;
1911
+ exports.GatewaySecurity = GatewaySecurity;
1912
+ exports.GatewayUserAccess = GatewayUserAccess;
1913
+ exports.GatewayVpn = GatewayVpn;
1914
+ exports.Gears = Gears;
1915
+ exports.Gem = Gem;
1942
1916
  exports.GemReference = GemReference;
1943
1917
  exports.GenderFemale = GenderFemale;
1944
1918
  exports.GenderMale = GenderMale;
1945
1919
  exports.GeneratePdf = GeneratePdf;
1946
1920
  exports.Gif = Gif;
1947
1921
  exports.Gift = Gift;
1922
+ exports.GitRepo = GitRepo;
1948
1923
  exports.GlobalFilters = GlobalFilters;
1949
1924
  exports.GlobalLoanAndTrial = GlobalLoanAndTrial;
1950
1925
  exports.Globe = Globe;
1926
+ exports.GlobePrivate = GlobePrivate;
1951
1927
  exports.Gradient = Gradient;
1952
1928
  exports.GraphAggregator = GraphAggregator;
1953
1929
  exports.GraphicalDataFlow = GraphicalDataFlow;
@@ -2014,7 +1990,7 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
2014
1990
  exports.IbmAspera = IbmAspera;
2015
1991
  exports.IbmBluepay = IbmBluepay;
2016
1992
  exports.IbmCloudant = IbmCloudant;
2017
- exports.IbmContentServices = IbmContentServices;
1993
+ exports.IbmContentCortexRepository = IbmContentCortexRepository;
2018
1994
  exports.IbmDataPower = IbmDataPower;
2019
1995
  exports.IbmDataProductExchange = IbmDataProductExchange;
2020
1996
  exports.IbmDataReplication = IbmDataReplication;
@@ -2043,21 +2019,6 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
2043
2019
  exports.IbmEventProcessing = IbmEventProcessing;
2044
2020
  exports.IbmEventStreams = IbmEventStreams;
2045
2021
  exports.IbmGcm = IbmGcm;
2046
- exports.IbmGlobalStorageArchitecture = IbmGlobalStorageArchitecture;
2047
- exports.IbmGranite = IbmGranite;
2048
- exports.IbmIbv = IbmIbv;
2049
- exports.IbmInstana = IbmInstana;
2050
- exports.IbmJrs = IbmJrs;
2051
- exports.IbmKnowledgeCatalog = IbmKnowledgeCatalog;
2052
- exports.IbmKnowledgeCatalogPremium = IbmKnowledgeCatalogPremium;
2053
- exports.IbmKnowledgeCatalogStandard = IbmKnowledgeCatalogStandard;
2054
- exports.IbmLaunchpadS4 = IbmLaunchpadS4;
2055
- exports.IbmLpa = IbmLpa;
2056
- exports.IbmLqe = IbmLqe;
2057
- exports.IbmMachineLearningForZos = IbmMachineLearningForZos;
2058
- exports.IbmMatch_360 = IbmMatch_360;
2059
- exports.IbmMaximoApplicationSuite = IbmMaximoApplicationSuite;
2060
- exports.IbmMq = IbmMq;
2061
2022
  exports.QH = QH;
2062
2023
  exports.QHintonPlot = QHintonPlot;
2063
2024
  exports.WatsonHealthHangingProtocol = WatsonHealthHangingProtocol;
@@ -2065,11 +2026,10 @@ var require_bucket_8 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
2065
2026
  exports.WatsonHealthHoleFilling = WatsonHealthHoleFilling;
2066
2027
  exports.WatsonHealthHoleFillingCursor = WatsonHealthHoleFillingCursor;
2067
2028
  }));
2068
-
2069
2029
  //#endregion
2070
- Object.defineProperty(exports, 'default', {
2071
- enumerable: true,
2072
- get: function () {
2073
- return require_bucket_8();
2074
- }
2075
- });
2030
+ Object.defineProperty(exports, "default", {
2031
+ enumerable: true,
2032
+ get: function() {
2033
+ return require_bucket_8();
2034
+ }
2035
+ });