@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-5.js
14
12
  var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,15 +19,134 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
21
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
22
20
  */
23
21
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
24
- const require_chunk = require_chunk_CsKB0u1v$1.default;
25
- const require_Icon_js = require_Icon$1.default;
26
- const require_iconPropTypes = require_iconPropTypes_U9gLABJo$1.default;
22
+ const require_Icon = require_Icon_2zUDcllO$1.default;
23
+ const require_iconPropTypes = require_iconPropTypes_DaTOKOBs$1.default;
27
24
  let react = require("react");
28
- react = require_chunk.__toESM(react);
25
+ react = require_Icon.__toESM(react);
29
26
  let react_jsx_runtime = require("react/jsx-runtime");
30
27
  const didWarnAboutDeprecation = {};
31
- const DataError = react.default.forwardRef(function DataError({ children, size = 16, ...rest }, ref) {
32
- return react.default.createElement(require_Icon_js, {
28
+ const Data_1 = /* @__PURE__ */ react.default.forwardRef(function Data_1({ children, size = 16, ...rest }, ref) {
29
+ return react.default.createElement(require_Icon.Icon, {
30
+ width: size,
31
+ height: size,
32
+ ref,
33
+ xmlns: "http://www.w3.org/2000/svg",
34
+ viewBox: "0 0 32 32",
35
+ fill: "currentColor",
36
+ ...rest
37
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H28V8H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 24H28V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 15H17V17H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,11a4,4,0,1,1,4-4A4,4,0,0,1,7,11ZM7,5A2,2,0,1,0,9,7,2,2,0,0,0,7,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,29a4,4,0,1,1,4-4A4,4,0,0,1,7,29Zm0-6a2,2,0,1,0,2,2A2,2,0,0,0,7,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,20a4,4,0,1,1,4-4A4,4,0,0,1,25,20Zm0-6a2,2,0,1,0,2,2A2,2,0,0,0,25,14Z" }), children);
38
+ });
39
+ if (process.env.NODE_ENV !== "production") Data_1.propTypes = require_iconPropTypes.iconPropTypes;
40
+ const Data_2 = /* @__PURE__ */ react.default.forwardRef(function Data_2({ children, size = 16, ...rest }, ref) {
41
+ return react.default.createElement(require_Icon.Icon, {
42
+ width: size,
43
+ height: size,
44
+ ref,
45
+ xmlns: "http://www.w3.org/2000/svg",
46
+ viewBox: "0 0 32 32",
47
+ fill: "currentColor",
48
+ ...rest
49
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 6H15V8H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 6H28V8H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 12H28V14H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 12H18V14H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 12H8V14H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 18H28V20H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 24H21V26H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 24H28V26H24z" }), children);
50
+ });
51
+ if (process.env.NODE_ENV !== "production") Data_2.propTypes = require_iconPropTypes.iconPropTypes;
52
+ const DataBase = /* @__PURE__ */ react.default.forwardRef(function DataBase({ children, size = 16, ...rest }, ref) {
53
+ return react.default.createElement(require_Icon.Icon, {
54
+ width: size,
55
+ height: size,
56
+ ref,
57
+ xmlns: "http://www.w3.org/2000/svg",
58
+ viewBox: "0 0 32 32",
59
+ fill: "currentColor",
60
+ ...rest
61
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V5A2,2,0,0,0,24,3Zm0,2v6H8V5ZM8,19V13H24v6Zm0,8V21H24v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
62
+ cx: "11",
63
+ cy: "8",
64
+ r: "1"
65
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
66
+ cx: "11",
67
+ cy: "16",
68
+ r: "1"
69
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
70
+ cx: "11",
71
+ cy: "24",
72
+ r: "1"
73
+ }), children);
74
+ });
75
+ if (process.env.NODE_ENV !== "production") DataBase.propTypes = require_iconPropTypes.iconPropTypes;
76
+ const DataBaseAlt = /* @__PURE__ */ react.default.forwardRef(function DataBaseAlt({ children, size = 16, ...rest }, ref) {
77
+ return react.default.createElement(require_Icon.Icon, {
78
+ width: size,
79
+ height: size,
80
+ ref,
81
+ xmlns: "http://www.w3.org/2000/svg",
82
+ viewBox: "0 0 32 32",
83
+ fill: "currentColor",
84
+ ...rest
85
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 8H12V10H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 12H12V14H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 16H12V18H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 8H25V10H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 12H25V14H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H25V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4A2.0023,2.0023,0,0,0,2,6V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4ZM4,6H15V28H4ZM17,28V6H28V28Z" }), children);
86
+ });
87
+ if (process.env.NODE_ENV !== "production") DataBaseAlt.propTypes = require_iconPropTypes.iconPropTypes;
88
+ const DataCategorical = /* @__PURE__ */ react.default.forwardRef(function DataCategorical({ children, size = 16, ...rest }, ref) {
89
+ return react.default.createElement(require_Icon.Icon, {
90
+ width: size,
91
+ height: size,
92
+ ref,
93
+ xmlns: "http://www.w3.org/2000/svg",
94
+ viewBox: "0 0 32 32",
95
+ fill: "currentColor",
96
+ ...rest
97
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29,30h-10c-.5522,0-1-.4478-1-1v-10c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v10c0,.5522-.4478,1-1,1Zm-9-2h8v-8h-8v8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8,30c-3.3083,0-6-2.6917-6-6s2.6917-6,6-6,6,2.6917,6,6-2.6917,6-6,6Zm0-10c-2.2056,0-4,1.7944-4,4s1.7944,4,4,4,4-1.7944,4-4-1.7944-4-4-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,14h-12c-.3604,0-.6926-.1938-.8701-.5073s-.1729-.6982.0127-1.0072L15.1446,2.4822c.1937-.3229.5246-.4822.8554-.4822s.6617.1593.8554.4822l6.002,10.0033c.1855.309.1902.6937.0127,1.0072s-.5098.5073-.8701.5073Zm-10.2339-2h8.4678l-4.2339-7.0564-4.2339,7.0564Z" }), children);
98
+ });
99
+ if (process.env.NODE_ENV !== "production") DataCategorical.propTypes = require_iconPropTypes.iconPropTypes;
100
+ const DataCenter = /* @__PURE__ */ react.default.forwardRef(function DataCenter({ children, size = 16, ...rest }, ref) {
101
+ return react.default.createElement(require_Icon.Icon, {
102
+ width: size,
103
+ height: size,
104
+ ref,
105
+ xmlns: "http://www.w3.org/2000/svg",
106
+ viewBox: "0 0 32 32",
107
+ fill: "currentColor",
108
+ ...rest
109
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H23V6a2.0023,2.0023,0,0,0-2-2H11A2.0023,2.0023,0,0,0,9,6v4H4a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V12A2.0023,2.0023,0,0,0,28,10ZM4,28V12H9v2H7v2H9v2H7v2H9v2H7v2H9v4Zm17,0H11V6H21Zm7,0H23V24h2V22H23V20h2V18H23V16h2V14H23V12h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 8H18V10H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 12H18V14H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 16H18V18H14z" }), children);
110
+ });
111
+ if (process.env.NODE_ENV !== "production") DataCenter.propTypes = require_iconPropTypes.iconPropTypes;
112
+ const DataCheck = /* @__PURE__ */ react.default.forwardRef(function DataCheck({ children, size = 16, ...rest }, ref) {
113
+ return react.default.createElement(require_Icon.Icon, {
114
+ width: size,
115
+ height: size,
116
+ ref,
117
+ xmlns: "http://www.w3.org/2000/svg",
118
+ viewBox: "0 0 32 32",
119
+ fill: "currentColor",
120
+ ...rest
121
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 27.18 20.41 24.59 19 26 23 30 30 23 28.59 21.59 23 27.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
122
+ cx: "11",
123
+ cy: "8",
124
+ r: "1"
125
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
126
+ cx: "11",
127
+ cy: "16",
128
+ r: "1"
129
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
130
+ cx: "11",
131
+ cy: "24",
132
+ r: "1"
133
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2h8V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z" }), children);
134
+ });
135
+ if (process.env.NODE_ENV !== "production") DataCheck.propTypes = require_iconPropTypes.iconPropTypes;
136
+ const DataConnected = /* @__PURE__ */ react.default.forwardRef(function DataConnected({ children, size = 16, ...rest }, ref) {
137
+ return react.default.createElement(require_Icon.Icon, {
138
+ width: size,
139
+ height: size,
140
+ ref,
141
+ xmlns: "http://www.w3.org/2000/svg",
142
+ viewBox: "0 0 32 32",
143
+ fill: "currentColor",
144
+ ...rest
145
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 30 24 30 24 28 28 28 28 4 24 4 24 2 30 2 30 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.91,19.59a4.51,4.51,0,0,0-2.66-3.24,4.55,4.55,0,0,0-3.5,0,4.94,4.94,0,0,0-.64.35L15.3,13.89a4.53,4.53,0,1,0-1.41,1.41l2.81,2.81a4.48,4.48,0,0,0-.61,3.3,4.51,4.51,0,0,0,2.66,3.24,4.55,4.55,0,0,0,3.5,0,4.51,4.51,0,0,0,2.66-3.24,4.65,4.65,0,0,0,0-1.82ZM11.5,14A2.5,2.5,0,1,1,14,11.5,2.5,2.5,0,0,1,11.5,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 30 2 30 2 2 8 2 8 4 4 4 4 28 8 28 8 30z" }), children);
146
+ });
147
+ if (process.env.NODE_ENV !== "production") DataConnected.propTypes = require_iconPropTypes.iconPropTypes;
148
+ const DataError = /* @__PURE__ */ react.default.forwardRef(function DataError({ children, size = 16, ...rest }, ref) {
149
+ return react.default.createElement(require_Icon.Icon, {
33
150
  width: size,
34
151
  height: size,
35
152
  ref,
@@ -52,8 +169,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
52
169
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2H18V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 24.415 27.586 23 25 25.587 22.414 23 21 24.415 23.586 27 21 29.586 22.414 31 25 28.414 27.586 31 29 29.586 26.414 27 29 24.415z" }), children);
53
170
  });
54
171
  if (process.env.NODE_ENV !== "production") DataError.propTypes = require_iconPropTypes.iconPropTypes;
55
- const DataFormat = react.default.forwardRef(function DataFormat({ children, size = 16, ...rest }, ref) {
56
- return react.default.createElement(require_Icon_js, {
172
+ const DataFormat = /* @__PURE__ */ react.default.forwardRef(function DataFormat({ children, size = 16, ...rest }, ref) {
173
+ return react.default.createElement(require_Icon.Icon, {
57
174
  width: size,
58
175
  height: size,
59
176
  ref,
@@ -64,8 +181,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
64
181
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 11H26V13H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 19H14V21H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,16Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,10,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,24Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,22,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z" }), children);
65
182
  });
66
183
  if (process.env.NODE_ENV !== "production") DataFormat.propTypes = require_iconPropTypes.iconPropTypes;
67
- const DataReference = react.default.forwardRef(function DataReference({ children, size = 16, ...rest }, ref) {
68
- return react.default.createElement(require_Icon_js, {
184
+ const DataReference = /* @__PURE__ */ react.default.forwardRef(function DataReference({ children, size = 16, ...rest }, ref) {
185
+ return react.default.createElement(require_Icon.Icon, {
69
186
  width: size,
70
187
  height: size,
71
188
  ref,
@@ -76,8 +193,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
76
193
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 12 25 3 23 3 23 5 20 5 20 7 23 7 23 12 20 12 20 14 28 14 28 12 25 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8.5,5c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 19 6 21 9.5859 21 4 26.5859 5.4141 28 11 22.4141 11 26 13 26 13 19 6 19z" }), children);
77
194
  });
78
195
  if (process.env.NODE_ENV !== "production") DataReference.propTypes = require_iconPropTypes.iconPropTypes;
79
- const DataRegular = react.default.forwardRef(function DataRegular({ children, size = 16, ...rest }, ref) {
80
- return react.default.createElement(require_Icon_js, {
196
+ const DataRegular = /* @__PURE__ */ react.default.forwardRef(function DataRegular({ children, size = 16, ...rest }, ref) {
197
+ return react.default.createElement(require_Icon.Icon, {
81
198
  width: size,
82
199
  height: size,
83
200
  ref,
@@ -88,8 +205,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
88
205
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m27,24c-.4622,0-.8948.1133-1.2859.2998l-4.8289-4.8291c.699-.981,1.1147-2.1768,1.1147-3.4707,0-3.3086-2.6917-6-6-6-1.2937,0-2.4897.416-3.4709,1.1147l-4.8289-4.8286c.1865-.3911.2998-.8237.2998-1.2861,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3,1.3433,3,3,3c.4622,0,.8948-.1133,1.2859-.2998l4.8289,4.8291c-.699.981-1.1147,2.1768-1.1147,3.4707,0,3.3086,2.6917,6,6,6,1.2937,0,2.4897-.416,3.4709-1.1147l4.8289,4.8286c-.1865.3911-.2998.8237-.2998,1.2861,0,1.6567,1.3433,3,3,3s3-1.3433,3-3-1.3433-3-3-3Zm-11-4c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z" }), children);
89
206
  });
90
207
  if (process.env.NODE_ENV !== "production") DataRegular.propTypes = require_iconPropTypes.iconPropTypes;
91
- const DataSet = react.default.forwardRef(function DataSet({ children, size = 16, ...rest }, ref) {
92
- return react.default.createElement(require_Icon_js, {
208
+ const DataSet = /* @__PURE__ */ react.default.forwardRef(function DataSet({ children, size = 16, ...rest }, ref) {
209
+ return react.default.createElement(require_Icon.Icon, {
93
210
  width: size,
94
211
  height: size,
95
212
  ref,
@@ -100,8 +217,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
100
217
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 12 25 3 23 3 23 5 20 5 20 7 23 7 23 12 20 12 20 14 28 14 28 12 25 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8.5,5c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z" }), children);
101
218
  });
102
219
  if (process.env.NODE_ENV !== "production") DataSet.propTypes = require_iconPropTypes.iconPropTypes;
103
- const DataStructured = react.default.forwardRef(function DataStructured({ children, size = 16, ...rest }, ref) {
104
- return react.default.createElement(require_Icon_js, {
220
+ const DataStructured = /* @__PURE__ */ react.default.forwardRef(function DataStructured({ children, size = 16, ...rest }, ref) {
221
+ return react.default.createElement(require_Icon.Icon, {
105
222
  width: size,
106
223
  height: size,
107
224
  ref,
@@ -116,8 +233,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
116
233
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,22.14V18a2,2,0,0,0-2-2H17V12h9a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2h9v4H7a2,2,0,0,0-2,2v4.14a4,4,0,1,0,2,0V18h8v4H12v8h8V22H17V18h8v4.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26Zm10-2v4H14V24ZM6,10V4H26v6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" }), children);
117
234
  });
118
235
  if (process.env.NODE_ENV !== "production") DataStructured.propTypes = require_iconPropTypes.iconPropTypes;
119
- const DataUnreal = react.default.forwardRef(function DataUnreal({ children, size = 16, ...rest }, ref) {
120
- return react.default.createElement(require_Icon_js, {
236
+ const DataUnreal = /* @__PURE__ */ react.default.forwardRef(function DataUnreal({ children, size = 16, ...rest }, ref) {
237
+ return react.default.createElement(require_Icon.Icon, {
121
238
  width: size,
122
239
  height: size,
123
240
  ref,
@@ -128,8 +245,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
128
245
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16.4961,18.1318l-7-4c-.1536-.0879-.3248-.1318-.4961-.1318s-.3425.0439-.4961.1318l-7,4c-.3115.1777-.5039.5093-.5039.8682v8c0,.3589.1924.6904.5039.8682l7,4c.1536.0879.325.1318.4961.1318s.3425-.0439.4961-.1318l7-4c.3115-.1777.5039-.5093.5039-.8682v-8c0-.3589-.1924-.6904-.5039-.8682Zm-7.4961-1.98l4.9844,2.8481-4.9844,2.8481-4.9844-2.8481,4.9844-2.8481Zm-6,4.5713l5,2.8569v5.6968l-5-2.8569v-5.6968Zm7,8.5537v-5.6968l5-2.8569v5.6968l-5,2.8569Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,19v5c0,1.1025-.8972,2-2,2h-3.1719l1.5859-1.5859-1.4141-1.4141-4,4,4,4,1.4141-1.4141-1.5859-1.5859h3.1719c2.2056,0,4-1.7944,4-4v-5h-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m17.5039,15.0111l-2-1.1428c-.3115-.1781-.5039-.5094-.5039-.8683v-2h2v1.4197l1.4961.8549-.9922,1.7366Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m25.5039,14.4175l-1.5039.8594v-2.2769h-2v2.2769l-1.5039-.8594-.9922,1.7368,3,1.7139c.1536.0879.325.1318.4961.1318s.3425-.0439.4961-.1318l3-1.7139-.9922-1.7368Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28.4961,15.0111l-.9922-1.7366,1.4961-.8549v-1.4197h2v2c0,.3589-.1924.6902-.5039.8683l-2,1.1428Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.4961 8.7256 24.5039 6.9888 23 7.8481 21.4961 6.9888 20.5039 8.7256 22 9.5801 22 11 24 11 24 9.5801 25.4961 8.7256z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30.4961,4.1318l-3-1.7144-.9922,1.7368,1.4805.8457-1.4805.8457.9922,1.7368,1.5039-.8594v2.2769h2v-4c0-.3589-.1924-.6904-.5039-.8682Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24.5039,3.0111l-1.5039-.8594-1.5039.8594-.9922-1.7366,2-1.1428C22.6575.0439,22.8287,0,23,0s.3425.0439.4961.1317l2,1.1428-.9922,1.7366Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m19.4961,4.1543l-.9922-1.7368-3,1.7144c-.3115.1777-.5039.5093-.5039.8682v4h2v-2.2769l1.5039.8594.9922-1.7368-1.4805-.8457,1.4805-.8457Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9,1l-1.4141,1.4141,1.5859,1.5859h-3.1719c-2.2056,0-4,1.7944-4,4v5h2v-5c0-1.1025.8972-2,2-2h3.1719l-1.5859,1.5859,1.4141,1.4141,4-4L9,1Z" }), children);
129
246
  });
130
247
  if (process.env.NODE_ENV !== "production") DataUnreal.propTypes = require_iconPropTypes.iconPropTypes;
131
- const DataUnstructured = react.default.forwardRef(function DataUnstructured({ children, size = 16, ...rest }, ref) {
132
- return react.default.createElement(require_Icon_js, {
248
+ const DataUnstructured = /* @__PURE__ */ react.default.forwardRef(function DataUnstructured({ children, size = 16, ...rest }, ref) {
249
+ return react.default.createElement(require_Icon.Icon, {
133
250
  width: size,
134
251
  height: size,
135
252
  ref,
@@ -140,8 +257,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
140
257
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,24a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,6,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,26,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,24v4H14V24h4m2-2H12v8h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,22.14V17a2,2,0,0,0-2-2H7V10h3V2H2v8H5v5a2,2,0,0,0,2,2H25v5.14a4,4,0,1,0,2,0ZM4,4H8V8H4ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" }), children);
141
258
  });
142
259
  if (process.env.NODE_ENV !== "production") DataUnstructured.propTypes = require_iconPropTypes.iconPropTypes;
143
- const DataView = react.default.forwardRef(function DataView({ children, size = 16, ...rest }, ref) {
144
- return react.default.createElement(require_Icon_js, {
260
+ const DataView = /* @__PURE__ */ react.default.forwardRef(function DataView({ children, size = 16, ...rest }, ref) {
261
+ return react.default.createElement(require_Icon.Icon, {
145
262
  width: size,
146
263
  height: size,
147
264
  ref,
@@ -168,8 +285,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
168
285
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,21h7V19H5V13H21v3h2V5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2h7V27H5ZM5,5H21v6H5Z" }), children);
169
286
  });
170
287
  if (process.env.NODE_ENV !== "production") DataView.propTypes = require_iconPropTypes.iconPropTypes;
171
- const DataViewAlt = react.default.forwardRef(function DataViewAlt({ children, size = 16, ...rest }, ref) {
172
- return react.default.createElement(require_Icon_js, {
288
+ const DataViewAlt = /* @__PURE__ */ react.default.forwardRef(function DataViewAlt({ children, size = 16, ...rest }, ref) {
289
+ return react.default.createElement(require_Icon.Icon, {
173
290
  width: size,
174
291
  height: size,
175
292
  ref,
@@ -184,8 +301,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
184
301
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 17H12V19H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 12H19V14H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 7H19V9H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,2,4,2A2.0058,2.0058,0,0,0,2,4V28a2.0058,2.0058,0,0,0,2,2h8V28H4V4H22V15h2V4A2.0058,2.0058,0,0,0,22,2Z" }), children);
185
302
  });
186
303
  if (process.env.NODE_ENV !== "production") DataViewAlt.propTypes = require_iconPropTypes.iconPropTypes;
187
- const DataAccessor = react.default.forwardRef(function DataAccessor({ children, size = 16, ...rest }, ref) {
188
- return react.default.createElement(require_Icon_js, {
304
+ const DataAccessor = /* @__PURE__ */ react.default.forwardRef(function DataAccessor({ children, size = 16, ...rest }, ref) {
305
+ return react.default.createElement(require_Icon.Icon, {
189
306
  width: size,
190
307
  height: size,
191
308
  ref,
@@ -200,8 +317,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
200
317
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,13a2.9609,2.9609,0,0,0-1.2854.3008L17.4141,11l2.3-2.3008A2.9609,2.9609,0,0,0,21,9a3,3,0,1,0-3-3,2.9665,2.9665,0,0,0,.3,1.2852L16,9.5859,13.7,7.2852A2.9665,2.9665,0,0,0,14,6a3,3,0,1,0-3,3,2.9609,2.9609,0,0,0,1.2854-.3008L14.5859,11l-2.3005,2.3008A2.9609,2.9609,0,0,0,11,13a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L16,12.4141l2.3,2.3007A2.9665,2.9665,0,0,0,18,16a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,5ZM10,6a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,10,6Zm1,11a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,17Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,21,17Z" }), children);
201
318
  });
202
319
  if (process.env.NODE_ENV !== "production") DataAccessor.propTypes = require_iconPropTypes.iconPropTypes;
203
- const DataAnalytics = react.default.forwardRef(function DataAnalytics({ children, size = 16, ...rest }, ref) {
204
- return react.default.createElement(require_Icon_js, {
320
+ const DataAnalytics = /* @__PURE__ */ react.default.forwardRef(function DataAnalytics({ children, size = 16, ...rest }, ref) {
321
+ return react.default.createElement(require_Icon.Icon, {
205
322
  width: size,
206
323
  height: size,
207
324
  ref,
@@ -212,8 +329,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
212
329
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 11H14V17H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 13H9V17H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 7H4V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,28.5859l-7.5522-7.5522c1.5918-1.9082,2.5522-4.3604,2.5522-7.0337,0-6.0654-4.9346-11-11-11-2.4026,0-4.6853.7607-6.6013,2.2002l1.2012,1.5991c1.5669-1.1772,3.4343-1.7993,5.4001-1.7993,4.9626,0,9,4.0371,9,9s-4.0374,9-9,9c-2.8574,0-5.4819-1.312-7.2007-3.6001l-1.5991,1.2017c2.1001,2.7949,5.3076,4.3984,8.7998,4.3984,2.6733,0,5.1255-.9604,7.0337-2.5522l7.5522,7.5522,1.4141-1.4141Z" }), children);
213
330
  });
214
331
  if (process.env.NODE_ENV !== "production") DataAnalytics.propTypes = require_iconPropTypes.iconPropTypes;
215
- const DataBackup = react.default.forwardRef(function DataBackup({ children, size = 16, ...rest }, ref) {
216
- return react.default.createElement(require_Icon_js, {
332
+ const DataBackup = /* @__PURE__ */ react.default.forwardRef(function DataBackup({ children, size = 16, ...rest }, ref) {
333
+ return react.default.createElement(require_Icon.Icon, {
217
334
  width: size,
218
335
  height: size,
219
336
  ref,
@@ -236,8 +353,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
236
353
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,26H4V20h8V18H4V12H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V26a2,2,0,0,0,2,2h8ZM4,4H20v6H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,17v2.4131A6.996,6.996,0,1,0,22,30V28a5,5,0,1,1,4.5762-7H24v2h6V17Z" }), children);
237
354
  });
238
355
  if (process.env.NODE_ENV !== "production") DataBackup.propTypes = require_iconPropTypes.iconPropTypes;
239
- const DataBin = react.default.forwardRef(function DataBin({ children, size = 16, ...rest }, ref) {
240
- return react.default.createElement(require_Icon_js, {
356
+ const DataBin = /* @__PURE__ */ react.default.forwardRef(function DataBin({ children, size = 16, ...rest }, ref) {
357
+ return react.default.createElement(require_Icon.Icon, {
241
358
  width: size,
242
359
  height: size,
243
360
  ref,
@@ -248,8 +365,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
248
365
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H20a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2v7H20V4Zm0,9v6H20V13ZM20,28V21h8v7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 15 10 15 10 13 8 13 8 15 6 15 6 17 8 17 8 19 10 19 10 17 12 17 12 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6V4H10A2.0023,2.0023,0,0,0,8,6V9.08A6.99,6.99,0,0,0,8,22.92V26a2.0023,2.0023,0,0,0,2,2h6V26H10V22.92A6.99,6.99,0,0,0,10,9.08V6ZM14,16a5,5,0,1,1-5-5A5.0059,5.0059,0,0,1,14,16Z" }), children);
249
366
  });
250
367
  if (process.env.NODE_ENV !== "production") DataBin.propTypes = require_iconPropTypes.iconPropTypes;
251
- const DataBlob = react.default.forwardRef(function DataBlob({ children, size = 16, ...rest }, ref) {
252
- return react.default.createElement(require_Icon_js, {
368
+ const DataBlob = /* @__PURE__ */ react.default.forwardRef(function DataBlob({ children, size = 16, ...rest }, ref) {
369
+ return react.default.createElement(require_Icon.Icon, {
253
370
  width: size,
254
371
  height: size,
255
372
  ref,
@@ -260,8 +377,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
260
377
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 7H15V14H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 7H10V14H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,14H20a2.0021,2.0021,0,0,1-2-2V9a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v3A2.0021,2.0021,0,0,1,22,14ZM20,9v3h2V9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 18H24V25H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H10V25H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,25H15a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v3A2.0021,2.0021,0,0,1,17,25Zm-2-5v3h2V20Z" }), children);
261
378
  });
262
379
  if (process.env.NODE_ENV !== "production") DataBlob.propTypes = require_iconPropTypes.iconPropTypes;
263
- const DataClass = react.default.forwardRef(function DataClass({ children, size = 16, ...rest }, ref) {
264
- return react.default.createElement(require_Icon_js, {
380
+ const DataClass = /* @__PURE__ */ react.default.forwardRef(function DataClass({ children, size = 16, ...rest }, ref) {
381
+ return react.default.createElement(require_Icon.Icon, {
265
382
  width: size,
266
383
  height: size,
267
384
  ref,
@@ -272,8 +389,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
272
389
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,16a3.9612,3.9612,0,0,0-2.02.5657l-2.8586-2.8585,2.293-2.293a2,2,0,0,0,0-2.8284l-6-6a2,2,0,0,0-2.8284,0l-6,6a2,2,0,0,0,0,2.8284l2.293,2.293L8.02,16.5657A4.043,4.043,0,1,0,9.4343,17.98l2.8585-2.8586,2.293,2.293A1.9773,1.9773,0,0,0,15,17.7233V22H12v8h8V22H17V17.7233a1.9773,1.9773,0,0,0,.4142-.3091l2.293-2.293L22.5657,17.98A3.9885,3.9885,0,1,0,26,16ZM8,20a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,20Zm10,4v4H14V24h4Zm-2-8-6-6,6-6,6,6Zm10,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,22Z" }), children);
273
390
  });
274
391
  if (process.env.NODE_ENV !== "production") DataClass.propTypes = require_iconPropTypes.iconPropTypes;
275
- const DataCollection = react.default.forwardRef(function DataCollection({ children, size = 16, ...rest }, ref) {
276
- return react.default.createElement(require_Icon_js, {
392
+ const DataCollection = /* @__PURE__ */ react.default.forwardRef(function DataCollection({ children, size = 16, ...rest }, ref) {
393
+ return react.default.createElement(require_Icon.Icon, {
277
394
  width: size,
278
395
  height: size,
279
396
  ref,
@@ -288,8 +405,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
288
405
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 17 30 15 23.83 15 26.41 12.41 25 11 20 16 25 21 26.41 19.59 23.83 17 30 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 23.83 15 30 17 30 17 23.83 19.59 26.41 21 25 16 20 11 25 12.41 26.41 15 23.83z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 5.59 12.41 8.17 15 2 15 2 17 8.17 17 5.59 19.59 7 21 12 16 7 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 8.17 17 2 15 2 15 8.17 12.41 5.59 11 7 16 12 21 7 19.59 5.59 17 8.17z" }), children);
289
406
  });
290
407
  if (process.env.NODE_ENV !== "production") DataCollection.propTypes = require_iconPropTypes.iconPropTypes;
291
- const DataDefinition = react.default.forwardRef(function DataDefinition({ children, size = 16, ...rest }, ref) {
292
- return react.default.createElement(require_Icon_js, {
408
+ const DataDefinition = /* @__PURE__ */ react.default.forwardRef(function DataDefinition({ children, size = 16, ...rest }, ref) {
409
+ return react.default.createElement(require_Icon.Icon, {
293
410
  width: size,
294
411
  height: size,
295
412
  ref,
@@ -304,8 +421,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
304
421
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30a.9967.9967,0,0,1-.707-.293L8.5859,19A2.0126,2.0126,0,0,1,8,17.5859V10a2.002,2.002,0,0,1,2-2h7.5859A1.9864,1.9864,0,0,1,19,8.5859L29.707,19.293a.9994.9994,0,0,1,0,1.414l-9,9A.9967.9967,0,0,1,20,30ZM10,10v7.5859l10,10L27.5859,20l-10-10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8H28V4H4V28h8Z" }), children);
305
422
  });
306
423
  if (process.env.NODE_ENV !== "production") DataDefinition.propTypes = require_iconPropTypes.iconPropTypes;
307
- const DataDictionary = react.default.forwardRef(function DataDictionary({ children, size = 16, ...rest }, ref) {
308
- return react.default.createElement(require_Icon_js, {
424
+ const DataDictionary = /* @__PURE__ */ react.default.forwardRef(function DataDictionary({ children, size = 16, ...rest }, ref) {
425
+ return react.default.createElement(require_Icon.Icon, {
309
426
  width: size,
310
427
  height: size,
311
428
  ref,
@@ -316,8 +433,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
316
433
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,8h-8v2h8v-2ZM14,16h8v-2h-8v2ZM10,14h-2v-4h2v-2h-2v-4h18v12h2V4c0-1.1046-.8954-2-2-2H8c-1.1046,0-2,.8954-2,2v4h-2v2h2v4h-2v2h6v-2ZM4,20H1v10h3c1.6543,0,3-1.3457,3-3v-4c0-1.6543-1.3457-3-3-3ZM5,27c0,.5518-.4487,1-1,1h-1v-6h1c.5513,0,1,.4482,1,1v4ZM17,22v6c0,1.1025.8975,2,2,2h4v-2h-4v-6h4v-2h-4c-1.1025,0-2,.8975-2,2ZM9,22h2v6h-2v2h6v-2h-2v-6h2v-2h-6v2ZM25,20v2h2v8h2v-8h2v-2h-6Z" }), children);
317
434
  });
318
435
  if (process.env.NODE_ENV !== "production") DataDictionary.propTypes = require_iconPropTypes.iconPropTypes;
319
- const DataDiode = react.default.forwardRef(function DataDiode({ children, size = 16, ...rest }, ref) {
320
- return react.default.createElement(require_Icon_js, {
436
+ const DataDiode = /* @__PURE__ */ react.default.forwardRef(function DataDiode({ children, size = 16, ...rest }, ref) {
437
+ return react.default.createElement(require_Icon.Icon, {
321
438
  width: size,
322
439
  height: size,
323
440
  ref,
@@ -328,8 +445,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
328
445
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15H27V7H25v8H22V7H20v7.8262L7.5239,7.1484A1,1,0,0,0,6,8v7H2v2H6v7a1,1,0,0,0,1.5239.8516L20,17.1738V25h2V17h3v8h2V17h3ZM8,22.21V9.79L18.0918,16Z" }), children);
329
446
  });
330
447
  if (process.env.NODE_ENV !== "production") DataDiode.propTypes = require_iconPropTypes.iconPropTypes;
331
- const DataEnrichment = react.default.forwardRef(function DataEnrichment({ children, size = 16, ...rest }, ref) {
332
- return react.default.createElement(require_Icon_js, {
448
+ const DataEnrichment = /* @__PURE__ */ react.default.forwardRef(function DataEnrichment({ children, size = 16, ...rest }, ref) {
449
+ return react.default.createElement(require_Icon.Icon, {
333
450
  width: size,
334
451
  height: size,
335
452
  ref,
@@ -343,8 +460,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
343
460
  })] }) }), children);
344
461
  });
345
462
  if (process.env.NODE_ENV !== "production") DataEnrichment.propTypes = require_iconPropTypes.iconPropTypes;
346
- const DataEnrichmentAdd = react.default.forwardRef(function DataEnrichmentAdd({ children, size = 16, ...rest }, ref) {
347
- return react.default.createElement(require_Icon_js, {
463
+ const DataEnrichmentAdd = /* @__PURE__ */ react.default.forwardRef(function DataEnrichmentAdd({ children, size = 16, ...rest }, ref) {
464
+ return react.default.createElement(require_Icon.Icon, {
348
465
  width: size,
349
466
  height: size,
350
467
  ref,
@@ -362,8 +479,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
362
479
  ] }) }), children);
363
480
  });
364
481
  if (process.env.NODE_ENV !== "production") DataEnrichmentAdd.propTypes = require_iconPropTypes.iconPropTypes;
365
- const DataGlossary = react.default.forwardRef(function DataGlossary({ children, size = 16, ...rest }, ref) {
366
- return react.default.createElement(require_Icon_js, {
482
+ const DataGlossary = /* @__PURE__ */ react.default.forwardRef(function DataGlossary({ children, size = 16, ...rest }, ref) {
483
+ return react.default.createElement(require_Icon.Icon, {
367
484
  width: size,
368
485
  height: size,
369
486
  ref,
@@ -374,8 +491,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
374
491
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,8h-8v2h8v-2ZM14,16h8v-2h-8v2ZM10,14h-2v-4h2v-2h-2v-4h18v12h2V4c0-1.1046-.8954-2-2-2H8c-1.1046,0-2,.8954-2,2v4h-2v2h2v4h-2v2h6v-2ZM1,22v6c0,1.1025.8223,2,1.8335,2h4.1665v-6h-3v2h1v2h-2l.0142-6h3.9858v-2H2.8335c-1.0112,0-1.8335.8975-1.8335,2ZM21.1055,20h-2.2109c-1.0449,0-1.8945.8496-1.8945,1.8945v6.2109c0,1.0449.8496,1.8945,1.8945,1.8945h2.2109c1.0449,0,1.8945-.8496,1.8945-1.8945v-6.2109c0-1.0449-.8496-1.8945-1.8945-1.8945ZM21,28h-2v-6h2v6ZM11,20h-2v10h6v-2h-4v-8ZM31,22v-2h-4c-1.1025,0-2,.8975-2,2v2c0,1.1025.8975,2,2,2h2v2h-4v2h4c1.1025,0,2-.8975,2-2v-2c0-1.1025-.8975-2-2-2h-2v-2h4Z" }), children);
375
492
  });
376
493
  if (process.env.NODE_ENV !== "production") DataGlossary.propTypes = require_iconPropTypes.iconPropTypes;
377
- const DataPlayer = react.default.forwardRef(function DataPlayer({ children, size = 16, ...rest }, ref) {
378
- return react.default.createElement(require_Icon_js, {
494
+ const DataPlayer = /* @__PURE__ */ react.default.forwardRef(function DataPlayer({ children, size = 16, ...rest }, ref) {
495
+ return react.default.createElement(require_Icon.Icon, {
379
496
  width: size,
380
497
  height: size,
381
498
  ref,
@@ -386,8 +503,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
386
503
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,24v2H15.8164a2.983,2.983,0,0,0-5.6328,0H4V24H2v6H4V28h6.1836a2.983,2.983,0,0,0,5.6328,0H28v2h2V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 7.5 13 16.499 13 16.499 21 12 13 7.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22A10,10,0,1,1,26,12,10.0113,10.0113,0,0,1,16,22ZM16,4a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,16,4Z" }), children);
387
504
  });
388
505
  if (process.env.NODE_ENV !== "production") DataPlayer.propTypes = require_iconPropTypes.iconPropTypes;
389
- const DataQualityDefinition = react.default.forwardRef(function DataQualityDefinition({ children, size = 16, ...rest }, ref) {
390
- return react.default.createElement(require_Icon_js, {
506
+ const DataQualityDefinition = /* @__PURE__ */ react.default.forwardRef(function DataQualityDefinition({ children, size = 16, ...rest }, ref) {
507
+ return react.default.createElement(require_Icon.Icon, {
391
508
  width: size,
392
509
  height: size,
393
510
  ref,
@@ -423,8 +540,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
423
540
  ] })] }), children);
424
541
  });
425
542
  if (process.env.NODE_ENV !== "production") DataQualityDefinition.propTypes = require_iconPropTypes.iconPropTypes;
426
- const DataRefinery = react.default.forwardRef(function DataRefinery({ children, size = 16, ...rest }, ref) {
427
- return react.default.createElement(require_Icon_js, {
543
+ const DataRefinery = /* @__PURE__ */ react.default.forwardRef(function DataRefinery({ children, size = 16, ...rest }, ref) {
544
+ return react.default.createElement(require_Icon.Icon, {
428
545
  width: size,
429
546
  height: size,
430
547
  ref,
@@ -435,8 +552,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
435
552
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,30a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,7,30Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,26H14V24H24V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z" }), children);
436
553
  });
437
554
  if (process.env.NODE_ENV !== "production") DataRefinery.propTypes = require_iconPropTypes.iconPropTypes;
438
- const DataRefineryReference = react.default.forwardRef(function DataRefineryReference({ children, size = 16, ...rest }, ref) {
439
- return react.default.createElement(require_Icon_js, {
555
+ const DataRefineryReference = /* @__PURE__ */ react.default.forwardRef(function DataRefineryReference({ children, size = 16, ...rest }, ref) {
556
+ return react.default.createElement(require_Icon.Icon, {
440
557
  width: size,
441
558
  height: size,
442
559
  ref,
@@ -447,8 +564,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
447
564
  }, /* @__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,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,26H16V24h8V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z" }), children);
448
565
  });
449
566
  if (process.env.NODE_ENV !== "production") DataRefineryReference.propTypes = require_iconPropTypes.iconPropTypes;
450
- const DataSetEncryption = react.default.forwardRef(function DataSetEncryption({ children, size = 16, ...rest }, ref) {
451
- return react.default.createElement(require_Icon_js, {
567
+ const DataSetEncryption = /* @__PURE__ */ react.default.forwardRef(function DataSetEncryption({ children, size = 16, ...rest }, ref) {
568
+ return react.default.createElement(require_Icon.Icon, {
452
569
  width: size,
453
570
  height: size,
454
571
  ref,
@@ -459,8 +576,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
459
576
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,21.2783v-1.2783c0-2.2061-1.7944-4-4-4s-4,1.7939-4,4v1.2783c-.595.3469-1,.9849-1,1.7217v5c0,1.1025.897,2,2,2h6c1.103,0,2-.8975,2-2v-5c0-.7368-.405-1.3748-1-1.7217ZM25,18c1.103,0,2,.8975,2,2v1h-4v-1c0-1.1025.897-2,2-2ZM28,28h-6v-5h6v5ZM16,2.1299c-.98-.0898-2-.1299-3-.1299C7.7,2,2,3.25,2,6v18c0,2.75,5.7,4,11,4,1,0,2.02-.04,3-.1299v-2.0103c-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.02-.04,3-.1299v-2.0103c-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.02-.04,3-.1299,4.25-.4001,8-1.6401,8-3.8701v-6c0-2.23-3.75-3.47-8-3.8701ZM22,11.99c-.13.45-2.13,1.49-6,1.8699-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.01-.04,3-.1401,2.3301-.21,4.5-.6799,6-1.4299v3.5601ZM16,7.8599c-.8999.0901-1.8999.1401-3,.1401-5.84,0-8.84-1.46-9-1.98v-.01c.16-.55,3.16-2.01,9-2.01,1.1001,0,2.1001.05,3,.1401,3.8401.3699,5.8401,1.3999,6,1.8599-.1599.46-2.1599,1.49-6,1.8599Z" }), children);
460
577
  });
461
578
  if (process.env.NODE_ENV !== "production") DataSetEncryption.propTypes = require_iconPropTypes.iconPropTypes;
462
- const DataShare = react.default.forwardRef(function DataShare({ children, size = 16, ...rest }, ref) {
463
- return react.default.createElement(require_Icon_js, {
579
+ const DataShare = /* @__PURE__ */ react.default.forwardRef(function DataShare({ children, size = 16, ...rest }, ref) {
580
+ return react.default.createElement(require_Icon.Icon, {
464
581
  width: size,
465
582
  height: size,
466
583
  ref,
@@ -471,8 +588,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
471
588
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,25V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141L7,15.8281V25H19v2H7A2.0024,2.0024,0,0,1,5,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,22h4a2.002,2.002,0,0,1,2,2v4a2.002,2.002,0,0,1-2,2H24a2.002,2.002,0,0,1-2-2V24A2.002,2.002,0,0,1,24,22Zm4,6V24H23.9985L24,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,6v9.1719l3.5859-3.586L32,13l-6,6-6-6,1.4141-1.4141L25,15.1719V6H13V4H25A2.0024,2.0024,0,0,1,27,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H8V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H10V4H2z" }), children);
472
589
  });
473
590
  if (process.env.NODE_ENV !== "production") DataShare.propTypes = require_iconPropTypes.iconPropTypes;
474
- const DataTable = react.default.forwardRef(function DataTable({ children, size = 16, ...rest }, ref) {
475
- return react.default.createElement(require_Icon_js, {
591
+ const DataTable = /* @__PURE__ */ react.default.forwardRef(function DataTable({ children, size = 16, ...rest }, ref) {
592
+ return react.default.createElement(require_Icon.Icon, {
476
593
  width: size,
477
594
  height: size,
478
595
  ref,
@@ -483,8 +600,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
483
600
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H12V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 14H12V16H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 22H18V24H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 14H24V16H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 22H24V24H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,2,0,4H5V5ZM5,27V11H27l0,16Z" }), children);
484
601
  });
485
602
  if (process.env.NODE_ENV !== "production") DataTable.propTypes = require_iconPropTypes.iconPropTypes;
486
- const DataTableReference = react.default.forwardRef(function DataTableReference({ children, size = 16, ...rest }, ref) {
487
- return react.default.createElement(require_Icon_js, {
603
+ const DataTableReference = /* @__PURE__ */ react.default.forwardRef(function DataTableReference({ children, size = 16, ...rest }, ref) {
604
+ return react.default.createElement(require_Icon.Icon, {
488
605
  width: size,
489
606
  height: size,
490
607
  ref,
@@ -495,8 +612,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
495
612
  }, /* @__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: "M20 22H24V24H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18H20V20H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 14H24V16H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 14H12V16H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2.0027,2.0027,0,0,0,3,5V16H5V11H27V27H16v2H27a2.0027,2.0027,0,0,0,2-2V5A2.0027,2.0027,0,0,0,27,3Zm0,6H5V5H27Z" }), children);
496
613
  });
497
614
  if (process.env.NODE_ENV !== "production") DataTableReference.propTypes = require_iconPropTypes.iconPropTypes;
498
- const DataVis_1 = react.default.forwardRef(function DataVis_1({ children, size = 16, ...rest }, ref) {
499
- return react.default.createElement(require_Icon_js, {
615
+ const DataVis_1 = /* @__PURE__ */ react.default.forwardRef(function DataVis_1({ children, size = 16, ...rest }, ref) {
616
+ return react.default.createElement(require_Icon.Icon, {
500
617
  width: size,
501
618
  height: size,
502
619
  ref,
@@ -507,8 +624,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
507
624
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,22a3.9553,3.9553,0,0,0-2.0193.5667L20.167,18.7529a4.9654,4.9654,0,0,0,0-5.5058L22.714,10.7A3.0284,3.0284,0,1,0,21.3,9.286l-2.547,2.547a4.9654,4.9654,0,0,0-5.5058,0L9.4332,8.0191A3.9553,3.9553,0,0,0,10,6a4,4,0,1,0-4,4,3.9553,3.9553,0,0,0,2.0191-.5668l3.8139,3.8139a4.9654,4.9654,0,0,0,0,5.5058L8.0192,22.5668A3.9556,3.9556,0,0,0,6,22a4,4,0,1,0,4,4,3.9553,3.9553,0,0,0-.5667-2.0192l3.8138-3.8138A4.9686,4.9686,0,0,0,15,20.8989v3.2848a3,3,0,1,0,2,0V20.8989a4.9686,4.9686,0,0,0,1.7529-.7319l3.8138,3.8137A3.9553,3.9553,0,0,0,22,26a4,4,0,1,0,4-4ZM16,13a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,13ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm20,0a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z" }), children);
508
625
  });
509
626
  if (process.env.NODE_ENV !== "production") DataVis_1.propTypes = require_iconPropTypes.iconPropTypes;
510
- const DataVis_2 = react.default.forwardRef(function DataVis_2({ children, size = 16, ...rest }, ref) {
511
- return react.default.createElement(require_Icon_js, {
627
+ const DataVis_2 = /* @__PURE__ */ react.default.forwardRef(function DataVis_2({ children, size = 16, ...rest }, ref) {
628
+ return react.default.createElement(require_Icon.Icon, {
512
629
  width: size,
513
630
  height: size,
514
631
  ref,
@@ -519,8 +636,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
519
636
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H17a2.002,2.002,0,0,0-2,2v6H4a2.002,2.002,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H15a2.0023,2.0023,0,0,0,2-2V22H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2,0,4H17V4ZM15.0009,22H4V18H15ZM17,10H28.0007l.0005,4H17Zm-2,2v4H4V12ZM4,28V24H15.0011l0,4Zm13-8V16H28.0015l0,4Z" }), children);
520
637
  });
521
638
  if (process.env.NODE_ENV !== "production") DataVis_2.propTypes = require_iconPropTypes.iconPropTypes;
522
- const DataVis_3 = react.default.forwardRef(function DataVis_3({ children, size = 16, ...rest }, ref) {
523
- return react.default.createElement(require_Icon_js, {
639
+ const DataVis_3 = /* @__PURE__ */ react.default.forwardRef(function DataVis_3({ children, size = 16, ...rest }, ref) {
640
+ return react.default.createElement(require_Icon.Icon, {
524
641
  width: size,
525
642
  height: size,
526
643
  ref,
@@ -531,8 +648,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
531
648
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,3a2.9913,2.9913,0,0,0-2.8163,2H21.858a3.9807,3.9807,0,0,0-7.716,0H9.858A3.9916,3.9916,0,1,0,5,9.858v4.284a3.9807,3.9807,0,0,0,0,7.716v3.3257a3,3,0,1,0,2,0V21.858a3.978,3.978,0,0,0,1.6729-.9034l3.3638,1.6819A2.9635,2.9635,0,0,0,12,23a3.0117,3.0117,0,1,0,.9221-2.1572L9.7744,19.269A3.95,3.95,0,0,0,10,18a3.9963,3.9963,0,0,0-3-3.858V9.858A3.9947,3.9947,0,0,0,9.858,7h4.284a3.9366,3.9366,0,0,0,4.7816,2.8818l1.8118,3.1705a3.0451,3.0451,0,1,0,1.7326-.9987L20.6893,8.941A3.9839,3.9839,0,0,0,21.858,7h3.3257A2.995,2.995,0,1,0,28,3ZM8,18a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,18ZM6,8A2,2,0,1,1,8,6,2.002,2.002,0,0,1,6,8ZM16,6a2,2,0,1,1,2,2A2.002,2.002,0,0,1,16,6Z" }), children);
532
649
  });
533
650
  if (process.env.NODE_ENV !== "production") DataVis_3.propTypes = require_iconPropTypes.iconPropTypes;
534
- const DataVis_4 = react.default.forwardRef(function DataVis_4({ children, size = 16, ...rest }, ref) {
535
- return react.default.createElement(require_Icon_js, {
651
+ const DataVis_4 = /* @__PURE__ */ react.default.forwardRef(function DataVis_4({ children, size = 16, ...rest }, ref) {
652
+ return react.default.createElement(require_Icon.Icon, {
536
653
  width: size,
537
654
  height: size,
538
655
  ref,
@@ -543,8 +660,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
543
660
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2.002,2.002,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0027,2.0027,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3Zm0,6H17V5H27ZM15,27H11V23h4Zm0-6H11V17h4ZM9,21H5V17H9Zm2-6V11H21v4Zm0-6V5h4V9Zm12,2h4l0,4H23ZM9,5V15H5V5ZM5,23H9v4H5Zm12,4V17H27.001l.001,10Z" }), children);
544
661
  });
545
662
  if (process.env.NODE_ENV !== "production") DataVis_4.propTypes = require_iconPropTypes.iconPropTypes;
546
- const DataVolume = react.default.forwardRef(function DataVolume({ children, size = 16, ...rest }, ref) {
547
- return react.default.createElement(require_Icon_js, {
663
+ const DataVolume = /* @__PURE__ */ react.default.forwardRef(function DataVolume({ children, size = 16, ...rest }, ref) {
664
+ return react.default.createElement(require_Icon.Icon, {
548
665
  width: size,
549
666
  height: size,
550
667
  ref,
@@ -555,8 +672,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
555
672
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20h-4v2h4v2h-3c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h5v-8c0-1.103-.8975-2-2-2Zm0,8h-3v-2h3v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,22v-2h-3v-2h-2v2h-2v2h2v6c0,1.1025,.8975,2,2,2h3v-2h-3v-6h3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,20h-4v2h4v2h-3c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h5v-8c0-1.103-.8975-2-2-2Zm0,8h-3v-2h3v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,16.0005v4H2c-1.1025,0-2,.897-2,2v5.9995c0,1.1025,.8975,2,2,2H7v-13.9995h-2Zm-3,5.9995h3v6H2v-6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,14V5h7.5857l4,4h12.4143v8h2V9c-.0013-1.1041-.8959-1.9987-2-2h-11.5857l-3.4143-3.4141c-.3742-.3764-.8835-.5873-1.4143-.5859H4c-1.1041,.0013-1.9987,.8959-2,2V14h2Z" }), children);
556
673
  });
557
674
  if (process.env.NODE_ENV !== "production") DataVolume.propTypes = require_iconPropTypes.iconPropTypes;
558
- const DataVolumeAlt = react.default.forwardRef(function DataVolumeAlt({ children, size = 16, ...rest }, ref) {
559
- return react.default.createElement(require_Icon_js, {
675
+ const DataVolumeAlt = /* @__PURE__ */ react.default.forwardRef(function DataVolumeAlt({ children, size = 16, ...rest }, ref) {
676
+ return react.default.createElement(require_Icon.Icon, {
560
677
  width: size,
561
678
  height: size,
562
679
  ref,
@@ -571,8 +688,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
571
688
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,19c-1.6543,0-3-1.3458-3-3s1.3457-3,3-3,3,1.3458,3,3-1.3457,3-3,3Zm0-4c-.5515,0-1,.4486-1,1s.4485,1,1,1,1-.4486,1-1-.4485-1-1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,27H4c-1.104-.0013-1.9987-.896-2-2V5c.0013-1.104,.896-1.9987,2-2h7.5857c.5308-.0015,1.0401,.2095,1.4143,.5859l3.4143,3.4141h11.5857c1.104,.0013,1.9987,.896,2,2v7h-2v-7H15.5857l-4-4H4V25H13v2Z" }), children);
572
689
  });
573
690
  if (process.env.NODE_ENV !== "production") DataVolumeAlt.propTypes = require_iconPropTypes.iconPropTypes;
574
- const DatabaseDatastax = react.default.forwardRef(function DatabaseDatastax({ children, size = 16, ...rest }, ref) {
575
- return react.default.createElement(require_Icon_js, {
691
+ const DatabaseDatastax = /* @__PURE__ */ react.default.forwardRef(function DatabaseDatastax({ children, size = 16, ...rest }, ref) {
692
+ return react.default.createElement(require_Icon.Icon, {
576
693
  width: size,
577
694
  height: size,
578
695
  ref,
@@ -583,8 +700,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
583
700
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.8684,22.0684l1.7937-1.7476A4.2184,4.2184,0,0,0,23.95,21.9534c1.4026,0,2.0005-.5288,2.0005-1.38,0-.69-.4138-1.1267-1.4717-1.2646l-1.1958-.1612c-2.5754-.3217-4.0009-1.4484-4.0009-3.633,0-2.3225,1.8166-3.7942,4.5529-3.7942a5.7221,5.7221,0,0,1,4.691,1.8855l-1.7246,1.7246a3.9649,3.9649,0,0,0-2.8743-1.2876c-1.2649,0-1.8167.5059-1.8167,1.2417,0,.8049.4368,1.1726,1.5638,1.3567l1.2187.1609c2.6213.3679,3.886,1.5408,3.886,3.5412,0,2.3226-1.9546,3.9322-4.9439,3.9322A6.0942,6.0942,0,0,1,18.8684,22.0684Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.24,7.95h5.8409c4.185,0,6.9213,2.69,6.9213,8.0254S14.2661,24,10.0811,24H4.24Zm5.8409,13.36c2.2534,0,3.7021-1.3338,3.7021-4.07V14.71c0-2.7364-1.4487-4.07-3.7021-4.07H7.2756V21.31Z" }), children);
584
701
  });
585
702
  if (process.env.NODE_ENV !== "production") DatabaseDatastax.propTypes = require_iconPropTypes.iconPropTypes;
586
- const DatabaseElastic = react.default.forwardRef(function DatabaseElastic({ children, size = 16, ...rest }, ref) {
587
- return react.default.createElement(require_Icon_js, {
703
+ const DatabaseElastic = /* @__PURE__ */ react.default.forwardRef(function DatabaseElastic({ children, size = 16, ...rest }, ref) {
704
+ return react.default.createElement(require_Icon.Icon, {
588
705
  width: size,
589
706
  height: size,
590
707
  ref,
@@ -595,14 +712,14 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
595
712
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.8281,22.0684l1.7937-1.7476A4.2185,4.2185,0,0,0,22.91,21.9534c1.4025,0,2-.5288,2-1.38,0-.69-.4138-1.1267-1.4716-1.2646l-1.1958-.1612c-2.5755-.3217-4.001-1.4484-4.001-3.633,0-2.3225,1.8166-3.7942,4.553-3.7942a5.722,5.722,0,0,1,4.6909,1.8855l-1.7246,1.7246a3.9643,3.9643,0,0,0-2.8743-1.2876c-1.2649,0-1.8166.5059-1.8166,1.2417,0,.8049.4367,1.1726,1.5637,1.3567l1.2187.1609c2.6214.3679,3.886,1.5408,3.886,3.5413,0,2.3225-1.9546,3.9321-4.9438,3.9321A6.0944,6.0944,0,0,1,17.8281,22.0684Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.2471,24V7.95H15.825v2.69H8.2825v3.8862h6.6687v2.6905H8.2825V21.31H15.825V24Z" }), children);
596
713
  });
597
714
  if (process.env.NODE_ENV !== "production") DatabaseElastic.propTypes = require_iconPropTypes.iconPropTypes;
598
- const DatabaseEnterpriseDb2 = react.default.forwardRef(function DatabaseEnterpriseDb2({ children, size = 16, ...rest }, ref) {
715
+ const DatabaseEnterpriseDb2 = /* @__PURE__ */ react.default.forwardRef(function DatabaseEnterpriseDb2({ children, size = 16, ...rest }, ref) {
599
716
  if (process.env.NODE_ENV !== "production") {
600
717
  if (!didWarnAboutDeprecation["DatabaseEnterpriseDb2"]) {
601
718
  didWarnAboutDeprecation["DatabaseEnterpriseDb2"] = true;
602
719
  console.warn("Icon name was requested by the product team to be renamed to and replaced by database--enterprisedb. As a result, the DatabaseEnterpriseDb2 component will be removed in the next major version of @carbon/icons-react.");
603
720
  }
604
721
  }
605
- return react.default.createElement(require_Icon_js, {
722
+ return react.default.createElement(require_Icon.Icon, {
606
723
  width: size,
607
724
  height: size,
608
725
  ref,
@@ -613,8 +730,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
613
730
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.84,24V11.9966H20.783v2h.1149a3.3115,3.3115,0,0,1,3.3572-2.2764c2.46,0,3.84,1.7017,3.84,4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187,0-2.3913.6438-2.3913,1.9314V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2236,24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24Z" }), children);
614
731
  });
615
732
  if (process.env.NODE_ENV !== "production") DatabaseEnterpriseDb2.propTypes = require_iconPropTypes.iconPropTypes;
616
- const DatabaseEnterprisedb = react.default.forwardRef(function DatabaseEnterprisedb({ children, size = 16, ...rest }, ref) {
617
- return react.default.createElement(require_Icon_js, {
733
+ const DatabaseEnterprisedb = /* @__PURE__ */ react.default.forwardRef(function DatabaseEnterprisedb({ children, size = 16, ...rest }, ref) {
734
+ return react.default.createElement(require_Icon.Icon, {
618
735
  width: size,
619
736
  height: size,
620
737
  ref,
@@ -625,8 +742,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
625
742
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.84,24V11.9966H20.783v2h.1149a3.3115,3.3115,0,0,1,3.3572-2.2764c2.46,0,3.84,1.7017,3.84,4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187,0-2.3913.6438-2.3913,1.9314V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2236,24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24Z" }), children);
626
743
  });
627
744
  if (process.env.NODE_ENV !== "production") DatabaseEnterprisedb.propTypes = require_iconPropTypes.iconPropTypes;
628
- const DatabaseEtcd = react.default.forwardRef(function DatabaseEtcd({ children, size = 16, ...rest }, ref) {
629
- return react.default.createElement(require_Icon_js, {
745
+ const DatabaseEtcd = /* @__PURE__ */ react.default.forwardRef(function DatabaseEtcd({ children, size = 16, ...rest }, ref) {
746
+ return react.default.createElement(require_Icon.Icon, {
630
747
  width: size,
631
748
  height: size,
632
749
  ref,
@@ -637,8 +754,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
637
754
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.9443,20.9417v-6.6h-1.77V11.9966h.92c.8735,0,1.1494-.4138,1.1494-1.2417V8.7083h2.6445v3.2883h2.46V14.342h-2.46v7.3125h2.2764V24H24.0488A2.778,2.778,0,0,1,20.9443,20.9417Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.6846,24V7.95H17.2627v2.69H9.72v3.8862h6.669v2.6905H9.72V21.31h7.543V24Z" }), children);
638
755
  });
639
756
  if (process.env.NODE_ENV !== "production") DatabaseEtcd.propTypes = require_iconPropTypes.iconPropTypes;
640
- const DatabaseMessaging = react.default.forwardRef(function DatabaseMessaging({ children, size = 16, ...rest }, ref) {
641
- return react.default.createElement(require_Icon_js, {
757
+ const DatabaseMessaging = /* @__PURE__ */ react.default.forwardRef(function DatabaseMessaging({ children, size = 16, ...rest }, ref) {
758
+ return react.default.createElement(require_Icon.Icon, {
642
759
  width: size,
643
760
  height: size,
644
761
  ref,
@@ -649,8 +766,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
649
766
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23,32l-1.755-1,2.755-4h4v-7h-12v7h4v2h-4c-1.1025,0-2-.8975-2-2v-7c0-1.1025.8975-2,2-2h12c1.1025,0,2,.8975,2,2v7c0,1.1025-.8975,2-2,2h-3l-2,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m13,2C7.7021,2,2,3.252,2,6v18c0,2.4033,4.3618,3.6626,9,3.9404v-2.0015c-4.5337-.2803-6.8674-1.4644-7-1.939v-3.5723c1.7065.856,4.3062,1.3442,7,1.5063v-1.9951c-4.5337-.2803-6.8674-1.4644-7-1.939v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723,5.2979,0,11-1.252,11-4v-6.0005c-.0007-2.748-5.7024-3.9995-11-3.9995ZM3.9985,6.0151c.1523-.5552,3.1514-2.0151,9.0015-2.0151,5.7976,0,8.7949,1.4341,8.9968,2-.2019.5659-3.1992,2-8.9968,2-5.8501,0-8.8491-1.46-9.0015-1.9849Zm18.0015,5.9722c-.1606.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596Z" }), children);
650
767
  });
651
768
  if (process.env.NODE_ENV !== "production") DatabaseMessaging.propTypes = require_iconPropTypes.iconPropTypes;
652
- const DatabaseMongodb = react.default.forwardRef(function DatabaseMongodb({ children, size = 16, ...rest }, ref) {
653
- return react.default.createElement(require_Icon_js, {
769
+ const DatabaseMongodb = /* @__PURE__ */ react.default.forwardRef(function DatabaseMongodb({ children, size = 16, ...rest }, ref) {
770
+ return react.default.createElement(require_Icon.Icon, {
654
771
  width: size,
655
772
  height: size,
656
773
  ref,
@@ -661,8 +778,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
661
778
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.3481,28.875c-4.0473,0-5.5878-1.0579-5.5878-2.8284a2.2115,2.2115,0,0,1,2.1386-2.3v-.253a1.9726,1.9726,0,0,1-1.5405-2c0-1.242,1.0576-1.8628,2.207-2.1158v-.0918a3.6228,3.6228,0,0,1-2.1845-3.4953c0-2.4375,1.7246-4.07,4.9672-4.07A6.6717,6.6717,0,0,1,27.44,12.02v-.3908a1.5343,1.5343,0,0,1,1.7022-1.7476h1.8623v2.2534H28.4521v.322a3.5917,3.5917,0,0,1,1.8628,3.3343c0,2.4145-1.7016,4.0241-4.9668,4.0241a7.3662,7.3662,0,0,1-1.8393-.207,1.23,1.23,0,0,0-.8511,1.0808c0,.5979.5059.8967,1.564.8967H27.44c2.9434,0,4.208,1.2649,4.208,3.4263C31.6484,27.5183,29.9473,28.875,25.3481,28.875Zm1.4947-4.7371H22.75a1.473,1.473,0,0,0-.6211,1.2417c0,.92.6895,1.4717,2.5293,1.4717H26.13c1.9087,0,2.76-.4829,2.76-1.4946C28.89,24.5979,28.3374,24.1379,26.8428,24.1379Zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1617-1.84s-2.1616.6209-2.1616,1.84v.3912c0,1.1955.7588,1.84,2.1616,1.84S27.51,17.17,27.51,15.9749Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.2344,7.95H5.66l4.1162,7.8413h.0923l4.07-7.8413h3.2886V24H14.3525V12.48h-.0918L13.0186,15.032l-3.2881,6.07-3.2881-6.07L5.2007,12.48H5.1084V24H2.2344Z" }), children);
662
779
  });
663
780
  if (process.env.NODE_ENV !== "production") DatabaseMongodb.propTypes = require_iconPropTypes.iconPropTypes;
664
- const DatabasePostgreSql = react.default.forwardRef(function DatabasePostgreSql({ children, size = 16, ...rest }, ref) {
665
- return react.default.createElement(require_Icon_js, {
781
+ const DatabasePostgreSql = /* @__PURE__ */ react.default.forwardRef(function DatabasePostgreSql({ children, size = 16, ...rest }, ref) {
782
+ return react.default.createElement(require_Icon.Icon, {
666
783
  width: size,
667
784
  height: size,
668
785
  ref,
@@ -673,8 +790,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
673
790
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.98,28.875c-4.0474,0-5.5879-1.0579-5.5879-2.8284a2.2112,2.2112,0,0,1,2.1387-2.3v-.253a1.9725,1.9725,0,0,1-1.541-2c0-1.242,1.0576-1.8628,2.2075-2.1158v-.0918a3.622,3.622,0,0,1-2.1846-3.4953c0-2.4375,1.7246-4.07,4.9673-4.07a6.6768,6.6768,0,0,1,2.0923.2988v-.3908a1.5341,1.5341,0,0,1,1.7016-1.7476h1.8623v2.2534H26.0835v.322a3.5926,3.5926,0,0,1,1.8628,3.3343c0,2.4145-1.7022,4.0241-4.9668,4.0241a7.3717,7.3717,0,0,1-1.84-.207,1.23,1.23,0,0,0-.8505,1.0808c0,.5979.5058.8967,1.5634.8967h3.2193c2.9433,0,4.208,1.2649,4.208,3.4263C29.28,27.5183,27.5781,28.875,22.98,28.875Zm1.4941-4.7371H20.3809A1.474,1.474,0,0,0,19.76,25.38c0,.92.69,1.4717,2.5293,1.4717h1.4716c1.9092,0,2.76-.4829,2.76-1.4946C26.5205,24.5979,25.9688,24.1379,24.4736,24.1379Zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1611-1.84s-2.1621.6209-2.1621,1.84v.3912c0,1.1955.7588,1.84,2.1621,1.84S25.1406,17.17,25.1406,15.9749Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.603,24V7.95h7.22c2.9668,0,4.76,2,4.76,4.967,0,2.9893-1.7935,4.9668-4.76,4.9668H7.6387V24Zm3.0357-8.738h3.9092a1.6886,1.6886,0,0,0,1.8852-1.8167V12.3875a1.672,1.672,0,0,0-1.8852-1.7935H7.6387Z" }), children);
674
791
  });
675
792
  if (process.env.NODE_ENV !== "production") DatabasePostgreSql.propTypes = require_iconPropTypes.iconPropTypes;
676
- const DatabaseRabbit = react.default.forwardRef(function DatabaseRabbit({ children, size = 16, ...rest }, ref) {
677
- return react.default.createElement(require_Icon_js, {
793
+ const DatabaseRabbit = /* @__PURE__ */ react.default.forwardRef(function DatabaseRabbit({ children, size = 16, ...rest }, ref) {
794
+ return react.default.createElement(require_Icon.Icon, {
678
795
  width: size,
679
796
  height: size,
680
797
  ref,
@@ -685,14 +802,14 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
685
802
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.9434,20.7346c0-2.46,1.8623-3.6792,5.1279-3.6792h2.0464v-.8738c0-1.3337-.6665-2.1154-2.23-2.1154a3.1249,3.1249,0,0,0-2.7363,1.5175L18.4033,14.02a5.0544,5.0544,0,0,1,4.6909-2.3c3.2422,0,4.9668,1.54,4.9668,4.2771v5.6567h1.1958V24H27.624a2.184,2.184,0,0,1-2.23-2.07h-.1377c-.3912,1.5408-1.7017,2.3455-3.4952,2.3455C19.3232,24.2759,17.9434,22.8733,17.9434,20.7346Zm7.1743-.3218V18.8262H23.2324c-1.541,0-2.3.5288-2.3,1.4717v.3908c0,.9658.667,1.4488,1.8164,1.4488C24.06,22.1375,25.1177,21.54,25.1177,20.4128Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.9717,24H3.9365V7.95H11.18c2.92,0,4.7373,1.9316,4.7373,4.967a4.4237,4.4237,0,0,1-2.9893,4.553L16.2158,24h-3.38L9.8462,17.8145H6.9717Zm3.9092-8.738a1.689,1.689,0,0,0,1.8857-1.8167V12.3875a1.6723,1.6723,0,0,0-1.8857-1.7935H6.9717v4.668Z" }), children);
686
803
  });
687
804
  if (process.env.NODE_ENV !== "production") DatabaseRabbit.propTypes = require_iconPropTypes.iconPropTypes;
688
- const DatabaseRedis = react.default.forwardRef(function DatabaseRedis({ children, size = 16, ...rest }, ref) {
805
+ const DatabaseRedis = /* @__PURE__ */ react.default.forwardRef(function DatabaseRedis({ children, size = 16, ...rest }, ref) {
689
806
  if (process.env.NODE_ENV !== "production") {
690
807
  if (!didWarnAboutDeprecation["DatabaseRedis"]) {
691
808
  didWarnAboutDeprecation["DatabaseRedis"] = true;
692
809
  console.warn("Icon no longer relevant. IBM Cloud Databases for Redis UI icon is retired. New icon with new name was requested. As a result, the DatabaseRedis component will be removed in the next major version of @carbon/icons-react.");
693
810
  }
694
811
  }
695
- return react.default.createElement(require_Icon_js, {
812
+ return react.default.createElement(require_Icon.Icon, {
696
813
  width: size,
697
814
  height: size,
698
815
  ref,
@@ -703,8 +820,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
703
820
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.7156,22h-.115a3.371,3.371,0,0,1-3.3113,2.2764c-3.0124,0-4.6912-2.2764-4.6912-6.3006,0-4.0012,1.6788-6.2546,4.6912-6.2546a3.3049,3.3049,0,0,1,3.3113,2.2534h.115v-6.99h2.9433V24H25.7156Zm0-2.1157V16.0667c0-1.1727-1.0808-1.9314-2.4837-1.9314A2.556,2.556,0,0,0,20.68,16.9636v2.07a2.5365,2.5365,0,0,0,2.5522,2.8052C24.6348,21.8384,25.7156,21.1257,25.7156,19.8838Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.5576,24H3.5222V7.95h7.2434c2.92,0,4.7371,1.9316,4.7371,4.967a4.4237,4.4237,0,0,1-2.9893,4.553L15.8018,24h-3.38L9.4321,17.8145H6.5576Zm3.9092-8.738a1.6888,1.6888,0,0,0,1.8855-1.8167V12.3875a1.6722,1.6722,0,0,0-1.8855-1.7935H6.5576v4.668Z" }), children);
704
821
  });
705
822
  if (process.env.NODE_ENV !== "production") DatabaseRedis.propTypes = require_iconPropTypes.iconPropTypes;
706
- const Datastore = react.default.forwardRef(function Datastore({ children, size = 16, ...rest }, ref) {
707
- return react.default.createElement(require_Icon_js, {
823
+ const Datastore = /* @__PURE__ */ react.default.forwardRef(function Datastore({ children, size = 16, ...rest }, ref) {
824
+ return react.default.createElement(require_Icon.Icon, {
708
825
  width: size,
709
826
  height: size,
710
827
  ref,
@@ -723,8 +840,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
723
840
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 8H20V10H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2H8v4H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V20a2,2,0,0,0-2-2H24V14ZM6,6H26v6H6ZM26,26H6V20H26Zm-4-8H10V14H22Z" }), children);
724
841
  });
725
842
  if (process.env.NODE_ENV !== "production") Datastore.propTypes = require_iconPropTypes.iconPropTypes;
726
- const Db2BufferPool = react.default.forwardRef(function Db2BufferPool({ children, size = 16, ...rest }, ref) {
727
- return react.default.createElement(require_Icon_js, {
843
+ const Db2BufferPool = /* @__PURE__ */ react.default.forwardRef(function Db2BufferPool({ children, size = 16, ...rest }, ref) {
844
+ return react.default.createElement(require_Icon.Icon, {
728
845
  width: size,
729
846
  height: size,
730
847
  ref,
@@ -735,8 +852,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
735
852
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.338 31 24.602 30 26.8895 26 23 26 26.993 19 28.73 20 26.4463 24 30.3367 24 26.338 31z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 14H12V16H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 14H24V16H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H12V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 22H18V24H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,11H27v5h2V5c0-1.1025-.8972-2-2-2H5c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2h15v-2H5V11ZM27,5v4H5V5H27Z" }), children);
736
853
  });
737
854
  if (process.env.NODE_ENV !== "production") Db2BufferPool.propTypes = require_iconPropTypes.iconPropTypes;
738
- const Db2DataSharingGroup = react.default.forwardRef(function Db2DataSharingGroup({ children, size = 16, ...rest }, ref) {
739
- return react.default.createElement(require_Icon_js, {
855
+ const Db2DataSharingGroup = /* @__PURE__ */ react.default.forwardRef(function Db2DataSharingGroup({ children, size = 16, ...rest }, ref) {
856
+ return react.default.createElement(require_Icon.Icon, {
740
857
  width: size,
741
858
  height: size,
742
859
  ref,
@@ -747,8 +864,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
747
864
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,28v-6.1699l2.5898,2.5801,1.4102-1.4102-5-5-5,5,1.4102,1.4102,2.5898-2.5801v6.1699c0,1.1025,.8972,2,2,2h9v-2H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,17c-2.8506,0-5,1.29-5,3v7c0,1.71,2.1494,3,5,3s5-1.29,5-3v-7c0-1.71-2.1494-3-5-3Zm0,2c1.936,0,3,.751,3,1s-1.064,1-3,1-3-.751-3-1,1.064-1,3-1Zm0,9c-1.936,0-3-.751-3-1v-4.5796c.8264,.3623,1.8508,.5796,3,.5796s2.1736-.2173,3-.5796v4.5796c0,.249-1.064,1-3,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5898,7.5898l-2.5898,2.5801V4c0-1.1025-.8972-2-2-2H15v2h9v6.1699l-2.5898-2.5801-1.4102,1.4102,5,5,5-5-1.4102-1.4102Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,15c2.8506,0,5-1.29,5-3V5c0-1.71-2.1494-3-5-3S2,3.29,2,5v7c0,1.71,2.1494,3,5,3Zm0-11c1.936,0,3,.751,3,1s-1.064,1-3,1-3-.751-3-1,1.064-1,3-1Zm-3,3.4204c.8264,.3623,1.8508,.5796,3,.5796s2.1736-.2173,3-.5796v4.5796c0,.249-1.064,1-3,1s-3-.751-3-1V7.4204Z" }), children);
748
865
  });
749
866
  if (process.env.NODE_ENV !== "production") Db2DataSharingGroup.propTypes = require_iconPropTypes.iconPropTypes;
750
- const Db2Database = react.default.forwardRef(function Db2Database({ children, size = 16, ...rest }, ref) {
751
- return react.default.createElement(require_Icon_js, {
867
+ const Db2Database = /* @__PURE__ */ react.default.forwardRef(function Db2Database({ children, size = 16, ...rest }, ref) {
868
+ return react.default.createElement(require_Icon.Icon, {
752
869
  width: size,
753
870
  height: size,
754
871
  ref,
@@ -759,8 +876,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
759
876
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,3c-5.2979,0-11,1.252-11,4V25c0,2.748,5.7021,4,11,4s11-1.252,11-4V7c0-2.748-5.7021-4-11-4Zm0,2c5.7976,0,8.7949,1.4341,8.9968,2-.2019,.5659-3.1992,2-8.9968,2-5.8413,0-8.8394-1.4556-9-1.9824v-.0049c.1606-.5571,3.1587-2.0127,9-2.0127ZM7,9.4277c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723Zm0,6c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723Zm9,11.5723c-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127Z" }), children);
760
877
  });
761
878
  if (process.env.NODE_ENV !== "production") Db2Database.propTypes = require_iconPropTypes.iconPropTypes;
762
- const Db2DeveloperExtension = react.default.forwardRef(function Db2DeveloperExtension({ children, size = 16, ...rest }, ref) {
763
- return react.default.createElement(require_Icon_js, {
879
+ const Db2DeveloperExtension = /* @__PURE__ */ react.default.forwardRef(function Db2DeveloperExtension({ children, size = 16, ...rest }, ref) {
880
+ return react.default.createElement(require_Icon.Icon, {
764
881
  width: size,
765
882
  height: size,
766
883
  ref,
@@ -775,8 +892,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
775
892
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.3433,23.1714l1.8286,1.8286h-3.1694l-.0024-1.75v-11.25h-2v11.2051h0v1.7949h.0002c.0012,1.1028.8992,2,2.0022,2h3.1694l-1.8286,1.8286,1.4141,1.4141,4.2427-4.2427-4.2427-4.2427-1.4141,1.4141Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,10h16c1.1045,0,2-.8955,2-2v-1h3.9976l.0024,5h0v3h2v-6.4053h0v-1.5923c0-1.104-.8984-2.0024-2.0024-2.0024h-3.9976v-1c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2ZM4,4h16v4H4v-4Z" }), children);
776
893
  });
777
894
  if (process.env.NODE_ENV !== "production") Db2DeveloperExtension.propTypes = require_iconPropTypes.iconPropTypes;
778
- const Debug = react.default.forwardRef(function Debug({ children, size = 16, ...rest }, ref) {
779
- return react.default.createElement(require_Icon_js, {
895
+ const Debug = /* @__PURE__ */ react.default.forwardRef(function Debug({ children, size = 16, ...rest }, ref) {
896
+ return react.default.createElement(require_Icon.Icon, {
780
897
  width: size,
781
898
  height: size,
782
899
  ref,
@@ -787,8 +904,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
787
904
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.83,20l.34-2L25,17.15V13c0-.08,0-.15,0-.23l5.06-1.36-.51-1.93-4.83,1.29A9,9,0,0,0,20,5V2H18V4.23a8.81,8.81,0,0,0-4,0V2H12V5a9,9,0,0,0-4.71,5.82L2.46,9.48,2,11.41,7,12.77c0,.08,0,.15,0,.23v4.15L1.84,18l.32,2L7,19.18a8.9,8.9,0,0,0,.82,3.57L3.29,27.29l1.42,1.42,4.19-4.2a9,9,0,0,0,14.2,0l4.19,4.2,1.42-1.42-4.54-4.54A8.9,8.9,0,0,0,25,19.18ZM15,25.92A7,7,0,0,1,9,19V13h6ZM9.29,11a7,7,0,0,1,13.42,0ZM23,19a7,7,0,0,1-6,6.92V13h6Z" }), children);
788
905
  });
789
906
  if (process.env.NODE_ENV !== "production") Debug.propTypes = require_iconPropTypes.iconPropTypes;
790
- const DecisionNode = react.default.forwardRef(function DecisionNode({ children, size = 16, ...rest }, ref) {
791
- return react.default.createElement(require_Icon_js, {
907
+ const DecisionNode = /* @__PURE__ */ react.default.forwardRef(function DecisionNode({ children, size = 16, ...rest }, ref) {
908
+ return react.default.createElement(require_Icon.Icon, {
792
909
  width: size,
793
910
  height: size,
794
911
  ref,
@@ -802,8 +919,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
802
919
  }), children);
803
920
  });
804
921
  if (process.env.NODE_ENV !== "production") DecisionNode.propTypes = require_iconPropTypes.iconPropTypes;
805
- const DecisionTree = react.default.forwardRef(function DecisionTree({ children, size = 16, ...rest }, ref) {
806
- return react.default.createElement(require_Icon_js, {
922
+ const DecisionTree = /* @__PURE__ */ react.default.forwardRef(function DecisionTree({ children, size = 16, ...rest }, ref) {
923
+ return react.default.createElement(require_Icon.Icon, {
807
924
  width: size,
808
925
  height: size,
809
926
  ref,
@@ -814,8 +931,20 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
814
931
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,12V4H22V7H18a2.0023,2.0023,0,0,0-2,2v6H10V12H2v8h8V17h6v6a2.0023,2.0023,0,0,0,2,2h4v3h8V20H22v3H18V9h4v3ZM8,18H4V14H8Zm16,4h4v4H24ZM24,6h4v4H24Z" }), children);
815
932
  });
816
933
  if (process.env.NODE_ENV !== "production") DecisionTree.propTypes = require_iconPropTypes.iconPropTypes;
817
- const Delete = react.default.forwardRef(function Delete({ children, size = 16, ...rest }, ref) {
818
- return react.default.createElement(require_Icon_js, {
934
+ const Decline = /* @__PURE__ */ react.default.forwardRef(function Decline({ children, size = 16, ...rest }, ref) {
935
+ return react.default.createElement(require_Icon.Icon, {
936
+ width: size,
937
+ height: size,
938
+ ref,
939
+ xmlns: "http://www.w3.org/2000/svg",
940
+ viewBox: "0 0 32 32",
941
+ fill: "currentColor",
942
+ ...rest
943
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,14v10h-10v-2h6.58l-8.58-8.59-4.29,4.3c-.39.39-1.03.39-1.42,0L2.29,7.71l1.42-1.42,9.29,9.3,4.29-4.3c.39-.39,1.03-.39,1.42,0l9.29,9.29v-6.58h2Z" }), children);
944
+ });
945
+ if (process.env.NODE_ENV !== "production") Decline.propTypes = require_iconPropTypes.iconPropTypes;
946
+ const Delete = /* @__PURE__ */ react.default.forwardRef(function Delete({ children, size = 16, ...rest }, ref) {
947
+ return react.default.createElement(require_Icon.Icon, {
819
948
  width: size,
820
949
  height: size,
821
950
  ref,
@@ -826,8 +955,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
826
955
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29,26H12c-.2651,0-.5195-.1053-.707-.2928L2.293,16.7072c-.3906-.3906-.3906-1.0237,0-1.4143L11.293,6.2928c.1875-.1875.4419-.2928.707-.2928h17c.5522,0,1,.4478,1,1v18c0,.5522-.4478,1-1,1Zm-16.5857-2h15.5857V8h-15.5857l-8,8,8,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.4141 16 25 11.4141 23.5859 10 19 14.5859 14.4143 10 13 11.4141 17.5859 16 13 20.5859 14.4143 22 19 17.4141 23.5859 22 25 20.5859 20.4141 16z" }), children);
827
956
  });
828
957
  if (process.env.NODE_ENV !== "production") Delete.propTypes = require_iconPropTypes.iconPropTypes;
829
- const Delivery = react.default.forwardRef(function Delivery({ children, size = 16, ...rest }, ref) {
830
- return react.default.createElement(require_Icon_js, {
958
+ const Delivery = /* @__PURE__ */ react.default.forwardRef(function Delivery({ children, size = 16, ...rest }, ref) {
959
+ return react.default.createElement(require_Icon.Icon, {
831
960
  width: size,
832
961
  height: size,
833
962
  ref,
@@ -838,8 +967,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
838
967
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 16H16V18H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11H12V13H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H6V8H21V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a4,4,0,1,0,0,2h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z" }), children);
839
968
  });
840
969
  if (process.env.NODE_ENV !== "production") Delivery.propTypes = require_iconPropTypes.iconPropTypes;
841
- const DeliveryAdd = react.default.forwardRef(function DeliveryAdd({ children, size = 16, ...rest }, ref) {
842
- return react.default.createElement(require_Icon_js, {
970
+ const DeliveryAdd = /* @__PURE__ */ react.default.forwardRef(function DeliveryAdd({ children, size = 16, ...rest }, ref) {
971
+ return react.default.createElement(require_Icon.Icon, {
843
972
  width: size,
844
973
  height: size,
845
974
  ref,
@@ -850,8 +979,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
850
979
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6 8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H15V8h6V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V14H2V24a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z" }), children);
851
980
  });
852
981
  if (process.env.NODE_ENV !== "production") DeliveryAdd.propTypes = require_iconPropTypes.iconPropTypes;
853
- const DeliveryParcel = react.default.forwardRef(function DeliveryParcel({ children, size = 16, ...rest }, ref) {
854
- return react.default.createElement(require_Icon_js, {
982
+ const DeliveryParcel = /* @__PURE__ */ react.default.forwardRef(function DeliveryParcel({ children, size = 16, ...rest }, ref) {
983
+ return react.default.createElement(require_Icon.Icon, {
855
984
  width: size,
856
985
  height: size,
857
986
  ref,
@@ -871,8 +1000,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
871
1000
  }), children);
872
1001
  });
873
1002
  if (process.env.NODE_ENV !== "production") DeliveryParcel.propTypes = require_iconPropTypes.iconPropTypes;
874
- const DeliverySettings = react.default.forwardRef(function DeliverySettings({ children, size = 16, ...rest }, ref) {
875
- return react.default.createElement(require_Icon_js, {
1003
+ const DeliverySettings = /* @__PURE__ */ react.default.forwardRef(function DeliverySettings({ children, size = 16, ...rest }, ref) {
1004
+ return react.default.createElement(require_Icon.Icon, {
876
1005
  width: size,
877
1006
  height: size,
878
1007
  ref,
@@ -883,8 +1012,20 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
883
1012
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9189,18.6064l-3-7c-.1572-.3682-.5186-.6064-.9189-.6064h-3v-2c0-.5527-.4473-1-1-1h-3v2h2v12.5562c-.9094.5308-1.5869,1.4009-1.858,2.4438h-6.2841c-.447-1.7207-1.9993-3-3.8579-3s-3.4109,1.2793-3.8579,3h-1.1421v-8h-2v9c0,.5527.4473,1,1,1h2.1421c.447,1.7207,1.9993,3,3.8579,3s3.4109-1.2793,3.8579-3h6.2841c.4472,1.7207,1.9997,3,3.858,3s3.4108-1.2793,3.858-3h2.142c.5527,0,1-.4473,1-1v-7c0-.1401-.0293-.2725-.0811-.3936ZM9,28c-1.1025,0-2-.8975-2-2s.8975-2,2-2,2,.8975,2,2-.8975,2-2,2ZM23,13h2.3408l2.1431,5h-4.4839v-5ZM23,28c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2ZM28,25h-1.142c-.4472-1.7207-1.9997-3-3.858-3v-2h5v5ZM4.833,11.7529l-1.49,1.4901,1.414,1.414,1.49-1.4901c.5318.3546,1.127.6031,1.753.7321v2.1011h2v-2.1011c.626-.129,1.2211-.3775,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49c.3545-.5318.603-1.127.732-1.753h2.1011v-2h-2.1011c-.129-.6259-.3774-1.2211-.7319-1.7529l1.4901-1.4901-1.414-1.414-1.4901,1.4901c-.5318-.3546-1.127-.6031-1.753-.7321V2h-2v2.1011c-.6259.129-1.2211.3775-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49c-.3545.5318-.603,1.127-.732,1.753H2v2h2.1011c.1289.6259.3774,1.2211.7319,1.7529ZM9,6c1.6569,0,3,1.3431,3,3-.0018,1.6561-1.3439,2.9982-3,3-1.6569,0-3-1.3431-3-3s1.3431-3,3-3Z" }), children);
884
1013
  });
885
1014
  if (process.env.NODE_ENV !== "production") DeliverySettings.propTypes = require_iconPropTypes.iconPropTypes;
886
- const DeliveryTruck = react.default.forwardRef(function DeliveryTruck({ children, size = 16, ...rest }, ref) {
887
- return react.default.createElement(require_Icon_js, {
1015
+ const DeliveryTime = /* @__PURE__ */ react.default.forwardRef(function DeliveryTime({ children, size = 16, ...rest }, ref) {
1016
+ return react.default.createElement(require_Icon.Icon, {
1017
+ width: size,
1018
+ height: size,
1019
+ ref,
1020
+ xmlns: "http://www.w3.org/2000/svg",
1021
+ viewBox: "0 0 32 32",
1022
+ fill: "currentColor",
1023
+ ...rest
1024
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30c-7.7197,0-14-6.2803-14-14S8.2803,2,16,2s14,6.2803,14,14-6.2803,14-14,14ZM16,4c-6.6167,0-12,5.3833-12,12s5.3833,12,12,12,12-5.3828,12-12-5.3828-12-12-12ZM20.293,21.707l-5.293-5.293V7h2v8.5859l4.707,4.707-1.4141,1.4141ZM13,17h-2v-2h2v2ZM9,17h-2v-2h2v2Z" }), children);
1025
+ });
1026
+ if (process.env.NODE_ENV !== "production") DeliveryTime.propTypes = require_iconPropTypes.iconPropTypes;
1027
+ const DeliveryTruck = /* @__PURE__ */ react.default.forwardRef(function DeliveryTruck({ children, size = 16, ...rest }, ref) {
1028
+ return react.default.createElement(require_Icon.Icon, {
888
1029
  width: size,
889
1030
  height: size,
890
1031
  ref,
@@ -895,8 +1036,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
895
1036
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.92,16.61l-3-7A1,1,0,0,0,26,9H23V7a1,1,0,0,0-1-1H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.92,16.61ZM23,11h2.34l2.14,5H23ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm10.14-3H12.86a4,4,0,0,0-7.72,0H4V8H21V20.56A4,4,0,0,0,19.14,23ZM23,26a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86A4,4,0,0,0,23,20V18h5Z" }), children);
896
1037
  });
897
1038
  if (process.env.NODE_ENV !== "production") DeliveryTruck.propTypes = require_iconPropTypes.iconPropTypes;
898
- const Demo = react.default.forwardRef(function Demo({ children, size = 16, ...rest }, ref) {
899
- return react.default.createElement(require_Icon_js, {
1039
+ const Demo = /* @__PURE__ */ react.default.forwardRef(function Demo({ children, size = 16, ...rest }, ref) {
1040
+ return react.default.createElement(require_Icon.Icon, {
900
1041
  width: size,
901
1042
  height: size,
902
1043
  ref,
@@ -907,8 +1048,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
907
1048
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 2 20 14 30 8 20 2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,14v8H4V6h10v-2H4c-1.1045,0-2,.8955-2,2v16c0,1.1045.8955,2,2,2h8v4h-4v2h16v-2h-4v-4h8c1.1046,0,2-.8955,2-2v-8h-2Zm-10,14h-4v-4h4v4Z" }), children);
908
1049
  });
909
1050
  if (process.env.NODE_ENV !== "production") Demo.propTypes = require_iconPropTypes.iconPropTypes;
910
- const WatsonHealthDenominate = react.default.forwardRef(function WatsonHealthDenominate({ children, size = 16, ...rest }, ref) {
911
- return react.default.createElement(require_Icon_js, {
1051
+ const WatsonHealthDenominate = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthDenominate({ children, size = 16, ...rest }, ref) {
1052
+ return react.default.createElement(require_Icon.Icon, {
912
1053
  width: size,
913
1054
  height: size,
914
1055
  ref,
@@ -919,8 +1060,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
919
1060
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23H19a3,3,0,0,0-3,3v2h2V26a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V26A3,3,0,0,0,25,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,18a4,4,0,1,0,4-4A4,4,0,0,0,18,18Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,24,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 15.415 13.586 14 11 16.587 8.414 14 7 15.415 9.586 18 7 20.586 8.414 22 11 19.414 13.586 22 15 20.586 12.414 18 15 15.415z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,26H4V6h7.1716l3.4141,3.4143L15.1716,10H28v8h2V10a2,2,0,0,0-2-2H16L12.5859,4.5858A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z" }), children);
920
1061
  });
921
1062
  if (process.env.NODE_ENV !== "production") WatsonHealthDenominate.propTypes = require_iconPropTypes.iconPropTypes;
922
- const Departure = react.default.forwardRef(function Departure({ children, size = 16, ...rest }, ref) {
923
- return react.default.createElement(require_Icon_js, {
1063
+ const Departure = /* @__PURE__ */ react.default.forwardRef(function Departure({ children, size = 16, ...rest }, ref) {
1064
+ return react.default.createElement(require_Icon.Icon, {
924
1065
  width: size,
925
1066
  height: size,
926
1067
  ref,
@@ -931,8 +1072,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
931
1072
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.48,5.15l5.69,8.14.8,1.15,1.35-.36,4.52-1.21a2.13,2.13,0,0,1,1.12,0A1.84,1.84,0,0,1,28.23,14,1.87,1.87,0,0,1,27,16.45l-18.71,5a1.78,1.78,0,0,1-1,0A1.87,1.87,0,0,1,6,20.12l-.25-.93L5,16.38l-.74-2.74,1.44-.39L8,16.35l.81,1.08,1.31-.35,2.8-.75,1.94-.52-.52-1.93L12.08,5.52l1.4-.37M14.16,3a1.06,1.06,0,0,0-.5,0l-3.09.83A1,1,0,0,0,9.89,5l2.5,9.36-2.81.75L6.85,11.5a1,1,0,0,0-.52-.36,1.06,1.06,0,0,0-.5,0L2.72,12A1,1,0,0,0,2,13.16L3,16.9l.75,2.8.25.94a3.87,3.87,0,0,0,2.74,2.74,3.91,3.91,0,0,0,2,0l18.7-5a3.84,3.84,0,0,0,0-7.44,4.27,4.27,0,0,0-2.16,0l-4.51,1.21L14.7,3.41A1,1,0,0,0,14.16,3Z" }), children);
932
1073
  });
933
1074
  if (process.env.NODE_ENV !== "production") Departure.propTypes = require_iconPropTypes.iconPropTypes;
934
- const Dependency = react.default.forwardRef(function Dependency({ children, size = 16, ...rest }, ref) {
935
- return react.default.createElement(require_Icon_js, {
1075
+ const Dependency = /* @__PURE__ */ react.default.forwardRef(function Dependency({ children, size = 16, ...rest }, ref) {
1076
+ return react.default.createElement(require_Icon.Icon, {
936
1077
  width: size,
937
1078
  height: size,
938
1079
  ref,
@@ -943,8 +1084,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
943
1084
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.0051,16.3956l-3.5975,3.5977-1.4142-1.4142,3.5976-3.5976M10.5792,20l-3.5792,3.5791,1.4075,1.4209,3.5925-3.5926M5.5792,25l-3.5792,3.5791,1.4075,1.4209,3.5925-3.5926M20.6015,9.971l-3.6081,3.6081,1.4142,1.4142,3.608-3.6082M14,2v2h12.5713s-4.5847,4.5858-4.5847,4.5858l1.4142,1.4142,4.5992-4.5847v12.5847h2l-.0134-16h-15.9866Z" }), children);
944
1085
  });
945
1086
  if (process.env.NODE_ENV !== "production") Dependency.propTypes = require_iconPropTypes.iconPropTypes;
946
- const Deploy = react.default.forwardRef(function Deploy({ children, size = 16, ...rest }, ref) {
947
- return react.default.createElement(require_Icon_js, {
1087
+ const Deploy = /* @__PURE__ */ react.default.forwardRef(function Deploy({ children, size = 16, ...rest }, ref) {
1088
+ return react.default.createElement(require_Icon.Icon, {
948
1089
  width: size,
949
1090
  height: size,
950
1091
  ref,
@@ -955,8 +1096,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
955
1096
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,2,17,8l1.4146,1.4023L22,5.8184V28H6V12H4V28a2.0025,2.0025,0,0,0,2,2H22a2.0025,2.0025,0,0,0,2-2V5.8154l3.5859,3.5869L29,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24H12a2.0023,2.0023,0,0,1-2-2V18a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,16,24Zm-4-6v4h4V18Z" }), children);
956
1097
  });
957
1098
  if (process.env.NODE_ENV !== "production") Deploy.propTypes = require_iconPropTypes.iconPropTypes;
958
- const DeployRules = react.default.forwardRef(function DeployRules({ children, size = 16, ...rest }, ref) {
959
- return react.default.createElement(require_Icon_js, {
1099
+ const DeployRules = /* @__PURE__ */ react.default.forwardRef(function DeployRules({ children, size = 16, ...rest }, ref) {
1100
+ return react.default.createElement(require_Icon.Icon, {
960
1101
  width: size,
961
1102
  height: size,
962
1103
  ref,
@@ -967,8 +1108,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
967
1108
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 4 12 10 13.41 11.41 17 7.83 17 20 19 20 19 7.83 22.59 11.41 24 10 18 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H15V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 22H24V24H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 26H24V28H8z" }), children);
968
1109
  });
969
1110
  if (process.env.NODE_ENV !== "production") DeployRules.propTypes = require_iconPropTypes.iconPropTypes;
970
- const DeploymentCanary = react.default.forwardRef(function DeploymentCanary({ children, size = 16, ...rest }, ref) {
971
- return react.default.createElement(require_Icon_js, {
1111
+ const DeploymentCanary = /* @__PURE__ */ react.default.forwardRef(function DeploymentCanary({ children, size = 16, ...rest }, ref) {
1112
+ return react.default.createElement(require_Icon.Icon, {
972
1113
  width: size,
973
1114
  height: size,
974
1115
  ref,
@@ -983,8 +1124,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
983
1124
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.4632,7.4637c-.9373-.9372-2.2085-1.4637-3.534-1.4637h-.0107c-1.319,0-2.584.524-3.5167,1.4567l-2.9076,2.9076L8.4181,2.2855c-.3805-.3806-.9976-.3806-1.3781,0l-.5519.5521c-3.3182,3.3195-3.3174,8.7003.0017,12.0189l3.1455,3.145L1.0509,26.5858l1.4141,1.4142,9.9984-9.9985-4.5596-4.5591c-2.4756-2.4761-2.5327-6.4688-.1714-9.0142l8.3573,8.3603c1.223,1.2234,1.2228,3.2066-.0004,4.4298l-.7964.7964,1.4141,1.4141.7964-.7964c1.8623-1.8628,1.9683-4.7998.3638-6.813l2.9406-2.9406c.5626-.5626,1.3257-.8787,2.1214-.8787h0c.7952,0,1.5579.3159,2.1203.8781l2.1224,2.1219c-1.4878,1.4873-5.1719,5.1699-5.1719,5.1699v2.8301c0,3.866-3.134,7-7,7h-3v2h3c4.9706,0,9-4.0294,9-9v-2.0586c.7607-.7021,6-5.9414,6-5.9414l-3.5368-3.5363Z" }), children);
984
1125
  });
985
1126
  if (process.env.NODE_ENV !== "production") DeploymentCanary.propTypes = require_iconPropTypes.iconPropTypes;
986
- const DeploymentPattern = react.default.forwardRef(function DeploymentPattern({ children, size = 16, ...rest }, ref) {
987
- return react.default.createElement(require_Icon_js, {
1127
+ const DeploymentPattern = /* @__PURE__ */ react.default.forwardRef(function DeploymentPattern({ children, size = 16, ...rest }, ref) {
1128
+ return react.default.createElement(require_Icon.Icon, {
988
1129
  width: size,
989
1130
  height: size,
990
1131
  ref,
@@ -995,8 +1136,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
995
1136
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,20H4.73A1.9735,1.9735,0,0,0,3,19a2,2,0,0,0,0,4A1.9735,1.9735,0,0,0,4.73,22H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,9a1.9735,1.9735,0,0,0-1.73,1H24v2h3.27A1.9991,1.9991,0,1,0,29,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.4141,5,21,.5859,16.5859,5,20,8.4141V18h2V8.4141ZM21,3.4141,22.5859,5,21,6.5859,19.4141,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,23.5859V14H10v9.5859L6.5859,27,11,31.4141,15.4141,27ZM9.4141,27,11,25.4141,12.5859,27,11,28.5859Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,10H8.4141L5,6.5859.5859,11,5,15.4141,8.4141,12H18ZM5,12.5859,3.4141,11,5,9.4141,6.5859,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,3A2,2,0,0,0,9,3,1.9733,1.9733,0,0,0,10,4.73V8h2V4.73A1.9733,1.9733,0,0,0,13,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,27.2705V24H20v3.27a2,2,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.4141,21,27,16.5859,23.5859,20H14v2h9.5859L27,25.4141ZM27,19.4141,28.5859,21,27,22.5859,25.4141,21Z" }), children);
996
1137
  });
997
1138
  if (process.env.NODE_ENV !== "production") DeploymentPattern.propTypes = require_iconPropTypes.iconPropTypes;
998
- const DeploymentPolicy = react.default.forwardRef(function DeploymentPolicy({ children, size = 16, ...rest }, ref) {
999
- return react.default.createElement(require_Icon_js, {
1139
+ const DeploymentPolicy = /* @__PURE__ */ react.default.forwardRef(function DeploymentPolicy({ children, size = 16, ...rest }, ref) {
1140
+ return react.default.createElement(require_Icon.Icon, {
1000
1141
  width: size,
1001
1142
  height: size,
1002
1143
  ref,
@@ -1007,8 +1148,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1007
1148
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 16 19 14 26.171 14 23.878 11.707 25.292 10.293 30 15 25.292 19.707 23.878 18.293 26.171 16 19 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 12 15 12 15 5.828 12.707 8.121 11.293 6.707 16 2 20.707 6.707 19.293 8.121 17 5.828 17 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,20.1011V18a4.0045,4.0045,0,0,0-4-4H5.8281l2.293-2.293L6.707,10.293,2,15l4.707,4.707,1.4141-1.414L5.8281,16H13a2.0025,2.0025,0,0,1,2,2v2.1011a5,5,0,1,0,2,0ZM16,28a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,28Z" }), children);
1008
1149
  });
1009
1150
  if (process.env.NODE_ENV !== "production") DeploymentPolicy.propTypes = require_iconPropTypes.iconPropTypes;
1010
- const DeploymentUnitData = react.default.forwardRef(function DeploymentUnitData({ children, size = 16, ...rest }, ref) {
1011
- return react.default.createElement(require_Icon_js, {
1151
+ const DeploymentUnitData = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitData({ children, size = 16, ...rest }, ref) {
1152
+ return react.default.createElement(require_Icon.Icon, {
1012
1153
  width: size,
1013
1154
  height: size,
1014
1155
  ref,
@@ -1019,8 +1160,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1019
1160
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23H12V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,16,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H14Z" }), children);
1020
1161
  });
1021
1162
  if (process.env.NODE_ENV !== "production") DeploymentUnitData.propTypes = require_iconPropTypes.iconPropTypes;
1022
- const DeploymentUnitExecution = react.default.forwardRef(function DeploymentUnitExecution({ children, size = 16, ...rest }, ref) {
1023
- return react.default.createElement(require_Icon_js, {
1163
+ const DeploymentUnitExecution = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitExecution({ children, size = 16, ...rest }, ref) {
1164
+ return react.default.createElement(require_Icon.Icon, {
1024
1165
  width: size,
1025
1166
  height: size,
1026
1167
  ref,
@@ -1031,8 +1172,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1031
1172
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 11 20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z" }), children);
1032
1173
  });
1033
1174
  if (process.env.NODE_ENV !== "production") DeploymentUnitExecution.propTypes = require_iconPropTypes.iconPropTypes;
1034
- const DeploymentUnitInstallation = react.default.forwardRef(function DeploymentUnitInstallation({ children, size = 16, ...rest }, ref) {
1035
- return react.default.createElement(require_Icon_js, {
1175
+ const DeploymentUnitInstallation = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitInstallation({ children, size = 16, ...rest }, ref) {
1176
+ return react.default.createElement(require_Icon.Icon, {
1036
1177
  width: size,
1037
1178
  height: size,
1038
1179
  ref,
@@ -1043,8 +1184,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1043
1184
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z" }), children);
1044
1185
  });
1045
1186
  if (process.env.NODE_ENV !== "production") DeploymentUnitInstallation.propTypes = require_iconPropTypes.iconPropTypes;
1046
- const DeploymentUnitPresentation = react.default.forwardRef(function DeploymentUnitPresentation({ children, size = 16, ...rest }, ref) {
1047
- return react.default.createElement(require_Icon_js, {
1187
+ const DeploymentUnitPresentation = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitPresentation({ children, size = 16, ...rest }, ref) {
1188
+ return react.default.createElement(require_Icon.Icon, {
1048
1189
  width: size,
1049
1190
  height: size,
1050
1191
  ref,
@@ -1055,8 +1196,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1055
1196
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V11H14Z" }), children);
1056
1197
  });
1057
1198
  if (process.env.NODE_ENV !== "production") DeploymentUnitPresentation.propTypes = require_iconPropTypes.iconPropTypes;
1058
- const DeploymentUnitTechnicalData = react.default.forwardRef(function DeploymentUnitTechnicalData({ children, size = 16, ...rest }, ref) {
1059
- return react.default.createElement(require_Icon_js, {
1199
+ const DeploymentUnitTechnicalData = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitTechnicalData({ children, size = 16, ...rest }, ref) {
1200
+ return react.default.createElement(require_Icon.Icon, {
1060
1201
  width: size,
1061
1202
  height: size,
1062
1203
  ref,
@@ -1067,8 +1208,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1067
1208
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,23H17V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,21,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" }), children);
1068
1209
  });
1069
1210
  if (process.env.NODE_ENV !== "production") DeploymentUnitTechnicalData.propTypes = require_iconPropTypes.iconPropTypes;
1070
- const DeploymentUnitTechnicalExecution = react.default.forwardRef(function DeploymentUnitTechnicalExecution({ children, size = 16, ...rest }, ref) {
1071
- return react.default.createElement(require_Icon_js, {
1211
+ const DeploymentUnitTechnicalExecution = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitTechnicalExecution({ children, size = 16, ...rest }, ref) {
1212
+ return react.default.createElement(require_Icon.Icon, {
1072
1213
  width: size,
1073
1214
  height: size,
1074
1215
  ref,
@@ -1079,8 +1220,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1079
1220
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 11 25 9 17 9 17 23 25 23 25 21 19 21 19 17 24 17 24 15 19 15 19 11 25 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" }), children);
1080
1221
  });
1081
1222
  if (process.env.NODE_ENV !== "production") DeploymentUnitTechnicalExecution.propTypes = require_iconPropTypes.iconPropTypes;
1082
- const DeploymentUnitTechnicalInstallation = react.default.forwardRef(function DeploymentUnitTechnicalInstallation({ children, size = 16, ...rest }, ref) {
1083
- return react.default.createElement(require_Icon_js, {
1223
+ const DeploymentUnitTechnicalInstallation = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitTechnicalInstallation({ children, size = 16, ...rest }, ref) {
1224
+ return react.default.createElement(require_Icon.Icon, {
1084
1225
  width: size,
1085
1226
  height: size,
1086
1227
  ref,
@@ -1091,8 +1232,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1091
1232
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 11 20 11 20 21 17 21 17 23 25 23 25 21 22 21 22 11 25 11 25 9 17 9 17 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" }), children);
1092
1233
  });
1093
1234
  if (process.env.NODE_ENV !== "production") DeploymentUnitTechnicalInstallation.propTypes = require_iconPropTypes.iconPropTypes;
1094
- const DeploymentUnitTechnicalPresentation = react.default.forwardRef(function DeploymentUnitTechnicalPresentation({ children, size = 16, ...rest }, ref) {
1095
- return react.default.createElement(require_Icon_js, {
1235
+ const DeploymentUnitTechnicalPresentation = /* @__PURE__ */ react.default.forwardRef(function DeploymentUnitTechnicalPresentation({ children, size = 16, ...rest }, ref) {
1236
+ return react.default.createElement(require_Icon.Icon, {
1096
1237
  width: size,
1097
1238
  height: size,
1098
1239
  ref,
@@ -1103,8 +1244,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1103
1244
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,23H17V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H19Zm0-7h4V10.9985H19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" }), children);
1104
1245
  });
1105
1246
  if (process.env.NODE_ENV !== "production") DeploymentUnitTechnicalPresentation.propTypes = require_iconPropTypes.iconPropTypes;
1106
- const DeskAdjustable = react.default.forwardRef(function DeskAdjustable({ children, size = 16, ...rest }, ref) {
1107
- return react.default.createElement(require_Icon_js, {
1247
+ const DeskAdjustable = /* @__PURE__ */ react.default.forwardRef(function DeskAdjustable({ children, size = 16, ...rest }, ref) {
1248
+ return react.default.createElement(require_Icon.Icon, {
1108
1249
  width: size,
1109
1250
  height: size,
1110
1251
  ref,
@@ -1115,8 +1256,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1115
1256
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 27.172 17 22 15 22 15 27.172 12.414 24.586 11 26 16 31 21 26 19.586 24.586 17 27.172z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,12H2v8H4V30H6V20H26V30h2V20h2Zm-2,6H4V14H28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 4.828 15 10 17 10 17 4.828 19.586 7.414 21 6 16 1 11 6 12.414 7.414 15 4.828z" }), children);
1116
1257
  });
1117
1258
  if (process.env.NODE_ENV !== "production") DeskAdjustable.propTypes = require_iconPropTypes.iconPropTypes;
1118
- const Development = react.default.forwardRef(function Development({ children, size = 16, ...rest }, ref) {
1119
- return react.default.createElement(require_Icon_js, {
1259
+ const Development = /* @__PURE__ */ react.default.forwardRef(function Development({ children, size = 16, ...rest }, ref) {
1260
+ return react.default.createElement(require_Icon.Icon, {
1120
1261
  width: size,
1121
1262
  height: size,
1122
1263
  ref,
@@ -1127,8 +1268,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1127
1268
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,4V8H4V4H8M2,2v8h8V2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,7v4H14V7h4M12,5v8h8V5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,16v4H4V16H8M2,14v8h8V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,10v6H16v6H10v8H30V10Zm-4,8h4v4H18ZM16,28H12V24h4Zm6,0H18V24h4Zm6,0H24V24h4Zm0-6H24V18h4Zm-4-6V12h4v4Z" }), children);
1128
1269
  });
1129
1270
  if (process.env.NODE_ENV !== "production") Development.propTypes = require_iconPropTypes.iconPropTypes;
1130
- const Devices = react.default.forwardRef(function Devices({ children, size = 16, ...rest }, ref) {
1131
- return react.default.createElement(require_Icon_js, {
1271
+ const Devices = /* @__PURE__ */ react.default.forwardRef(function Devices({ children, size = 16, ...rest }, ref) {
1272
+ return react.default.createElement(require_Icon.Icon, {
1132
1273
  width: size,
1133
1274
  height: size,
1134
1275
  ref,
@@ -1139,8 +1280,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1139
1280
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30H4a2,2,0,0,1-2-2V16a2,2,0,0,1,2-2h6a2,2,0,0,1,2,2V28A2,2,0,0,1,10,30ZM4,16V28h6V16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H6A2,2,0,0,0,4,6v6H6V6H28V20H14v2h2v4H14v2h9V26H18V22H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Z" }), children);
1140
1281
  });
1141
1282
  if (process.env.NODE_ENV !== "production") Devices.propTypes = require_iconPropTypes.iconPropTypes;
1142
- const DevicesApps = react.default.forwardRef(function DevicesApps({ children, size = 16, ...rest }, ref) {
1143
- return react.default.createElement(require_Icon_js, {
1283
+ const DevicesApps = /* @__PURE__ */ react.default.forwardRef(function DevicesApps({ children, size = 16, ...rest }, ref) {
1284
+ return react.default.createElement(require_Icon.Icon, {
1144
1285
  width: size,
1145
1286
  height: size,
1146
1287
  ref,
@@ -1151,8 +1292,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1151
1292
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 2H30V6H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 8H30V12H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 2H24V6H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 8H24V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,20h-14v2h2v4h-2v2h9v-2h-5v-4h10c.5304,0,1.0392-.2108,1.4142-.5858s.5858-.8838.5858-1.4142v-6h-2v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m6,6h12v-2H6c-.5304,0-1.0392.2107-1.4142.5858-.3751.375-.5858.8838-.5858,1.4142v6h2v-6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,14H4c-.5304,0-1.0392.2107-1.4142.5858-.3751.375-.5858.8838-.5858,1.4142v12c0,.5304.2107,1.0392.5858,1.4142.375.375.8838.5858,1.4142.5858h6c.5304,0,1.0392-.2108,1.4142-.5858.3751-.375.5858-.8838.5858-1.4142v-12c0-.5304-.2107-1.0392-.5858-1.4142-.375-.3751-.8838-.5858-1.4142-.5858Zm0,14H4v-12h6v12Z" }), children);
1152
1293
  });
1153
1294
  if (process.env.NODE_ENV !== "production") DevicesApps.propTypes = require_iconPropTypes.iconPropTypes;
1154
- const DewPoint = react.default.forwardRef(function DewPoint({ children, size = 16, ...rest }, ref) {
1155
- return react.default.createElement(require_Icon_js, {
1295
+ const DewPoint = /* @__PURE__ */ react.default.forwardRef(function DewPoint({ children, size = 16, ...rest }, ref) {
1296
+ return react.default.createElement(require_Icon.Icon, {
1156
1297
  width: size,
1157
1298
  height: size,
1158
1299
  ref,
@@ -1163,8 +1304,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1163
1304
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.5,30A5.4962,5.4962,0,0,1,9,24.52c0-3.4426,4.3442-21.0141,4.5293-21.76a1,1,0,0,1,1.9414,0C15.6558,3.5059,20,21.0774,20,24.52A5.4962,5.4962,0,0,1,14.5,30Zm0-22.7561C13.0391,13.38,11,22.4089,11,24.52a3.5,3.5,0,0,0,7,0C18,22.4089,15.9609,13.38,14.5,7.2439Z" }), children);
1164
1305
  });
1165
1306
  if (process.env.NODE_ENV !== "production") DewPoint.propTypes = require_iconPropTypes.iconPropTypes;
1166
- const DewPointFilled = react.default.forwardRef(function DewPointFilled({ children, size = 16, ...rest }, ref) {
1167
- return react.default.createElement(require_Icon_js, {
1307
+ const DewPointFilled = /* @__PURE__ */ react.default.forwardRef(function DewPointFilled({ children, size = 16, ...rest }, ref) {
1308
+ return react.default.createElement(require_Icon.Icon, {
1168
1309
  width: size,
1169
1310
  height: size,
1170
1311
  ref,
@@ -1175,8 +1316,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1175
1316
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.5,30A5.4962,5.4962,0,0,1,9,24.52c0-3.4426,4.3442-21.0141,4.5293-21.76a1,1,0,0,1,1.9414,0C15.6558,3.5059,20,21.0774,20,24.52A5.4962,5.4962,0,0,1,14.5,30Z" }), children);
1176
1317
  });
1177
1318
  if (process.env.NODE_ENV !== "production") DewPointFilled.propTypes = require_iconPropTypes.iconPropTypes;
1178
- const DfsortIbmZSort = react.default.forwardRef(function DfsortIbmZSort({ children, size = 16, ...rest }, ref) {
1179
- return react.default.createElement(require_Icon_js, {
1319
+ const DfsortIbmZSort = /* @__PURE__ */ react.default.forwardRef(function DfsortIbmZSort({ children, size = 16, ...rest }, ref) {
1320
+ return react.default.createElement(require_Icon.Icon, {
1180
1321
  width: size,
1181
1322
  height: size,
1182
1323
  ref,
@@ -1187,8 +1328,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1187
1328
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.6,24l1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6V2h2v24.6l2.6-2.6h0ZM14,2v2h16v-2H14ZM14,10h14v-2h-14v2ZM14,16h12v-2h-12v2ZM14,22h10v-2h-10v2ZM14,28h8v-2h-8v2Z" }), children);
1188
1329
  });
1189
1330
  if (process.env.NODE_ENV !== "production") DfsortIbmZSort.propTypes = require_iconPropTypes.iconPropTypes;
1190
- const Diagram = react.default.forwardRef(function Diagram({ children, size = 16, ...rest }, ref) {
1191
- return react.default.createElement(require_Icon_js, {
1331
+ const Diagram = /* @__PURE__ */ react.default.forwardRef(function Diagram({ children, size = 16, ...rest }, ref) {
1332
+ return react.default.createElement(require_Icon.Icon, {
1192
1333
  width: size,
1193
1334
  height: size,
1194
1335
  ref,
@@ -1199,8 +1340,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1199
1340
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30A11,11,0,0,1,13,8a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11,11,0,0,1,13,30ZM12,10.06A9,9,0,1,0,21.94,20H14a2,2,0,0,1-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,14H19a2,2,0,0,1-2-2V3a1,1,0,0,1,1-1A11,11,0,0,1,29,13,1,1,0,0,1,28,14Zm-9-2h7.94A9,9,0,0,0,19,4.06Z" }), children);
1200
1341
  });
1201
1342
  if (process.env.NODE_ENV !== "production") Diagram.propTypes = require_iconPropTypes.iconPropTypes;
1202
- const DiagramReference = react.default.forwardRef(function DiagramReference({ children, size = 16, ...rest }, ref) {
1203
- return react.default.createElement(require_Icon_js, {
1343
+ const DiagramReference = /* @__PURE__ */ react.default.forwardRef(function DiagramReference({ children, size = 16, ...rest }, ref) {
1344
+ return react.default.createElement(require_Icon.Icon, {
1204
1345
  width: size,
1205
1346
  height: size,
1206
1347
  ref,
@@ -1211,8 +1352,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1211
1352
  }, /* @__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: "M15,28V26a9.0133,9.0133,0,0,0,8.9448-8H16a2.0021,2.0021,0,0,1-2-2V8.0552A9.0133,9.0133,0,0,0,6,17H4A11.0125,11.0125,0,0,1,15,6a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11.0125,11.0125,0,0,1,15,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.0057,14H19.995A1.9957,1.9957,0,0,1,18,12V3a1.0083,1.0083,0,0,1,1.02-1A11.0125,11.0125,0,0,1,30,12.98,1.0035,1.0035,0,0,1,29.0057,14ZM20,12h7.9448A9.018,9.018,0,0,0,20,4.0552Z" }), children);
1212
1353
  });
1213
1354
  if (process.env.NODE_ENV !== "production") DiagramReference.propTypes = require_iconPropTypes.iconPropTypes;
1214
- const DiamondOutline = react.default.forwardRef(function DiamondOutline({ children, size = 16, ...rest }, ref) {
1215
- return react.default.createElement(require_Icon_js, {
1355
+ const DiamondOutline = /* @__PURE__ */ react.default.forwardRef(function DiamondOutline({ children, size = 16, ...rest }, ref) {
1356
+ return react.default.createElement(require_Icon.Icon, {
1216
1357
  width: size,
1217
1358
  height: size,
1218
1359
  ref,
@@ -1226,8 +1367,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1226
1367
  }), children);
1227
1368
  });
1228
1369
  if (process.env.NODE_ENV !== "production") DiamondOutline.propTypes = require_iconPropTypes.iconPropTypes;
1229
- const DiamondSolid = react.default.forwardRef(function DiamondSolid({ children, size = 16, ...rest }, ref) {
1230
- return react.default.createElement(require_Icon_js, {
1370
+ const DiamondSolid = /* @__PURE__ */ react.default.forwardRef(function DiamondSolid({ children, size = 16, ...rest }, ref) {
1371
+ return react.default.createElement(require_Icon.Icon, {
1231
1372
  width: size,
1232
1373
  height: size,
1233
1374
  ref,
@@ -1241,8 +1382,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1241
1382
  }), children);
1242
1383
  });
1243
1384
  if (process.env.NODE_ENV !== "production") DiamondSolid.propTypes = require_iconPropTypes.iconPropTypes;
1244
- const DiamondFill = react.default.forwardRef(function DiamondFill({ children, size = 16, ...rest }, ref) {
1245
- if (size === "glyph" || size === "glyph" || size === "glyphpx") return react.default.createElement(require_Icon_js, {
1385
+ const DiamondFill = /* @__PURE__ */ react.default.forwardRef(function DiamondFill({ children, size = 16, ...rest }, ref) {
1386
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") return react.default.createElement(require_Icon.Icon, {
1246
1387
  width: size,
1247
1388
  height: size,
1248
1389
  ref,
@@ -1251,7 +1392,7 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1251
1392
  fill: "currentColor",
1252
1393
  ...rest
1253
1394
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142M8,1,1,8l7,7,7-7L8,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142" }), children);
1254
- return react.default.createElement(require_Icon_js, {
1395
+ return react.default.createElement(require_Icon.Icon, {
1255
1396
  width: size,
1256
1397
  height: size,
1257
1398
  ref,
@@ -1262,8 +1403,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1262
1403
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142M8,1,1,8l7,7,7-7L8,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142" }), children);
1263
1404
  });
1264
1405
  if (process.env.NODE_ENV !== "production") DiamondFill.propTypes = require_iconPropTypes.iconPropTypes;
1265
- const WatsonHealthDicom_6000 = react.default.forwardRef(function WatsonHealthDicom_6000({ children, size = 16, ...rest }, ref) {
1266
- return react.default.createElement(require_Icon_js, {
1406
+ const WatsonHealthDicom_6000 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthDicom_6000({ children, size = 16, ...rest }, ref) {
1407
+ return react.default.createElement(require_Icon.Icon, {
1267
1408
  width: size,
1268
1409
  height: size,
1269
1410
  ref,
@@ -1274,8 +1415,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1274
1415
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,11H7a3,3,0,0,0-3,3v2H6V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V14A3,3,0,0,0,13,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,10A4,4,0,1,0,6,6,4,4,0,0,0,10,10Zm0-6A2,2,0,1,1,8,6,2,2,0,0,1,10,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H30V6H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 8H30V10H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 12H26V14H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,30H3a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2H6v2H3v2H5a2,2,0,0,1,2,2v2A2,2,0,0,1,5,30ZM3,26v2H5V26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30H11a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,13,30Zm-2-8v6h2V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30H19a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,21,30Zm-2-8v6h2V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,30H27a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,29,30Zm-2-8v6h2V22Z" }), children);
1275
1416
  });
1276
1417
  if (process.env.NODE_ENV !== "production") WatsonHealthDicom_6000.propTypes = require_iconPropTypes.iconPropTypes;
1277
- const WatsonHealthDicomOverlay = react.default.forwardRef(function WatsonHealthDicomOverlay({ children, size = 16, ...rest }, ref) {
1278
- return react.default.createElement(require_Icon_js, {
1418
+ const WatsonHealthDicomOverlay = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthDicomOverlay({ children, size = 16, ...rest }, ref) {
1419
+ return react.default.createElement(require_Icon.Icon, {
1279
1420
  width: size,
1280
1421
  height: size,
1281
1422
  ref,
@@ -1286,8 +1427,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1286
1427
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6V26H4V6H28m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 8H16V10H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H16V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 16H12V18H6z" }), children);
1287
1428
  });
1288
1429
  if (process.env.NODE_ENV !== "production") WatsonHealthDicomOverlay.propTypes = require_iconPropTypes.iconPropTypes;
1289
- const DigitalIdentity = react.default.forwardRef(function DigitalIdentity({ children, size = 16, ...rest }, ref) {
1290
- return react.default.createElement(require_Icon_js, {
1430
+ const DigitalIdentity = /* @__PURE__ */ react.default.forwardRef(function DigitalIdentity({ children, size = 16, ...rest }, ref) {
1431
+ return react.default.createElement(require_Icon.Icon, {
1291
1432
  width: size,
1292
1433
  height: size,
1293
1434
  ref,
@@ -1298,14 +1439,14 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1298
1439
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,19v-1c0-1.7-1.3-3-3-3h-6c-1.7,0-3,1.3-3,3v7h2v-7c0-.5.4-1,1-1h6c.5,0,1,.5,1,1v1h2ZM10,10c0,2.2,1.8,4,4,4s4-1.8,4-4-1.8-4-4-4-4,1.8-4,4ZM16,10c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM27,21c0,7.8-7.7,8-8,8v2c0,0,10-.2,10-10h-2ZM19,27c2.1,0,6-1.3,6-6h-2c0,3.9-3.6,4-4,4v2ZM5,3h18v16h2V3c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v26c0,1.1.9,2,2,2h12v-2H5V3ZM20,21c.6,0,1,.4,1,1s-.4,1-1,1-1-.4-1-1,.4-1,1-1Z" }), children);
1299
1440
  });
1300
1441
  if (process.env.NODE_ENV !== "production") DigitalIdentity.propTypes = require_iconPropTypes.iconPropTypes;
1301
- const DirectLink = react.default.forwardRef(function DirectLink({ children, size = 16, ...rest }, ref) {
1442
+ const DirectLink = /* @__PURE__ */ react.default.forwardRef(function DirectLink({ children, size = 16, ...rest }, ref) {
1302
1443
  if (process.env.NODE_ENV !== "production") {
1303
1444
  if (!didWarnAboutDeprecation["DirectLink"]) {
1304
1445
  didWarnAboutDeprecation["DirectLink"] = true;
1305
1446
  console.warn("The current icon has been replaced with the correct version of the App icon, use the most appropriate ibm-cloud--direct-link icon variant instead. As a result, the DirectLink component will be removed in the next major version of @carbon/icons-react.");
1306
1447
  }
1307
1448
  }
1308
- return react.default.createElement(require_Icon_js, {
1449
+ return react.default.createElement(require_Icon.Icon, {
1309
1450
  width: size,
1310
1451
  height: size,
1311
1452
  ref,
@@ -1316,8 +1457,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1316
1457
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.4131,14.584,12.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L1.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l3.2915,3.2915L3,22.5859,4.4141,24l1.8784-1.8784L9.584,25.4131a2.0016,2.0016,0,0,0,2.832,0l2.2559-2.2559-1.4156-1.4155L10.998,23.999,3.001,16.002l7.997-8.001,8.001,8.001L17.5,17.5l1.4146,1.4146,1.4985-1.4986a2.0016,2.0016,0,0,0,0-2.832Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4131,14.584l-3.2915-3.2915L29,9.4141,27.5859,8,25.7075,9.8784,22.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L17.3281,8.8428l1.4146,1.4145L20.998,8.001l8.001,8.001-8.001,7.997-7.997-7.997,1.5-1.501-1.4156-1.4156L11.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l7.9971,7.9971a2.0016,2.0016,0,0,0,2.832,0l7.9971-7.9971a2.0016,2.0016,0,0,0,0-2.832Z" }), children);
1317
1458
  });
1318
1459
  if (process.env.NODE_ENV !== "production") DirectLink.propTypes = require_iconPropTypes.iconPropTypes;
1319
- const DirectionBearRight_01 = react.default.forwardRef(function DirectionBearRight_01({ children, size = 16, ...rest }, ref) {
1320
- return react.default.createElement(require_Icon_js, {
1460
+ const DirectionBearRight_01 = /* @__PURE__ */ react.default.forwardRef(function DirectionBearRight_01({ children, size = 16, ...rest }, ref) {
1461
+ return react.default.createElement(require_Icon.Icon, {
1321
1462
  width: size,
1322
1463
  height: size,
1323
1464
  ref,
@@ -1328,8 +1469,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1328
1469
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4V6h6.5859L12.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,13.4644,13.95L20,7.4141V14h2V4Z" }), children);
1329
1470
  });
1330
1471
  if (process.env.NODE_ENV !== "production") DirectionBearRight_01.propTypes = require_iconPropTypes.iconPropTypes;
1331
- const DirectionBearRight_01Filled = react.default.forwardRef(function DirectionBearRight_01Filled({ children, size = 16, ...rest }, ref) {
1332
- return react.default.createElement(require_Icon_js, {
1472
+ const DirectionBearRight_01Filled = /* @__PURE__ */ react.default.forwardRef(function DirectionBearRight_01Filled({ children, size = 16, ...rest }, ref) {
1473
+ return react.default.createElement(require_Icon.Icon, {
1333
1474
  width: size,
1334
1475
  height: size,
1335
1476
  ref,
@@ -1344,8 +1485,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1344
1485
  }), children);
1345
1486
  });
1346
1487
  if (process.env.NODE_ENV !== "production") DirectionBearRight_01Filled.propTypes = require_iconPropTypes.iconPropTypes;
1347
- const DirectionBearRight_02 = react.default.forwardRef(function DirectionBearRight_02({ children, size = 16, ...rest }, ref) {
1348
- return react.default.createElement(require_Icon_js, {
1488
+ const DirectionBearRight_02 = /* @__PURE__ */ react.default.forwardRef(function DirectionBearRight_02({ children, size = 16, ...rest }, ref) {
1489
+ return react.default.createElement(require_Icon.Icon, {
1349
1490
  width: size,
1350
1491
  height: size,
1351
1492
  ref,
@@ -1359,8 +1500,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1359
1500
  }), children);
1360
1501
  });
1361
1502
  if (process.env.NODE_ENV !== "production") DirectionBearRight_02.propTypes = require_iconPropTypes.iconPropTypes;
1362
- const DirectionBearRight_02Filled = react.default.forwardRef(function DirectionBearRight_02Filled({ children, size = 16, ...rest }, ref) {
1363
- return react.default.createElement(require_Icon_js, {
1503
+ const DirectionBearRight_02Filled = /* @__PURE__ */ react.default.forwardRef(function DirectionBearRight_02Filled({ children, size = 16, ...rest }, ref) {
1504
+ return react.default.createElement(require_Icon.Icon, {
1364
1505
  width: size,
1365
1506
  height: size,
1366
1507
  ref,
@@ -1375,8 +1516,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1375
1516
  }), children);
1376
1517
  });
1377
1518
  if (process.env.NODE_ENV !== "production") DirectionBearRight_02Filled.propTypes = require_iconPropTypes.iconPropTypes;
1378
- const DirectionCurve = react.default.forwardRef(function DirectionCurve({ children, size = 16, ...rest }, ref) {
1379
- return react.default.createElement(require_Icon_js, {
1519
+ const DirectionCurve = /* @__PURE__ */ react.default.forwardRef(function DirectionCurve({ children, size = 16, ...rest }, ref) {
1520
+ return react.default.createElement(require_Icon.Icon, {
1380
1521
  width: size,
1381
1522
  height: size,
1382
1523
  ref,
@@ -1387,8 +1528,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1387
1528
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,4l-7,7,1.4141,1.4141L16,7.8281v6.7686a3.01,3.01,0,0,1-.6572,1.874l-2.2471,2.8086A5.0206,5.0206,0,0,0,12,22.4033V28h2V22.4033a3.01,3.01,0,0,1,.6572-1.874l2.2471-2.8086A5.0206,5.0206,0,0,0,18,14.5967V7.8281l4.5859,4.586L24,11Z" }), children);
1388
1529
  });
1389
1530
  if (process.env.NODE_ENV !== "production") DirectionCurve.propTypes = require_iconPropTypes.iconPropTypes;
1390
- const DirectionCurveFilled = react.default.forwardRef(function DirectionCurveFilled({ children, size = 16, ...rest }, ref) {
1391
- return react.default.createElement(require_Icon_js, {
1531
+ const DirectionCurveFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionCurveFilled({ children, size = 16, ...rest }, ref) {
1532
+ return react.default.createElement(require_Icon.Icon, {
1392
1533
  width: size,
1393
1534
  height: size,
1394
1535
  ref,
@@ -1403,8 +1544,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1403
1544
  }), children);
1404
1545
  });
1405
1546
  if (process.env.NODE_ENV !== "production") DirectionCurveFilled.propTypes = require_iconPropTypes.iconPropTypes;
1406
- const DirectionFork = react.default.forwardRef(function DirectionFork({ children, size = 16, ...rest }, ref) {
1407
- return react.default.createElement(require_Icon_js, {
1547
+ const DirectionFork = /* @__PURE__ */ react.default.forwardRef(function DirectionFork({ children, size = 16, ...rest }, ref) {
1548
+ return react.default.createElement(require_Icon.Icon, {
1408
1549
  width: size,
1409
1550
  height: size,
1410
1551
  ref,
@@ -1415,8 +1556,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1415
1556
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 13 6 7.414 15 16.414 15 28 17 28 17 16.414 26 7.414 26 13 28 13 28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13z" }), children);
1416
1557
  });
1417
1558
  if (process.env.NODE_ENV !== "production") DirectionFork.propTypes = require_iconPropTypes.iconPropTypes;
1418
- const DirectionForkFilled = react.default.forwardRef(function DirectionForkFilled({ children, size = 16, ...rest }, ref) {
1419
- return react.default.createElement(require_Icon_js, {
1559
+ const DirectionForkFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionForkFilled({ children, size = 16, ...rest }, ref) {
1560
+ return react.default.createElement(require_Icon.Icon, {
1420
1561
  width: size,
1421
1562
  height: size,
1422
1563
  ref,
@@ -1431,8 +1572,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1431
1572
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,14H24V9.4141l-7,7V26H15V16.4141l-7-7V14H6V6h8V8H9.4141L16,14.5859,22.5859,8H18V6h8Z" }), children);
1432
1573
  });
1433
1574
  if (process.env.NODE_ENV !== "production") DirectionForkFilled.propTypes = require_iconPropTypes.iconPropTypes;
1434
- const DirectionLoopLeft = react.default.forwardRef(function DirectionLoopLeft({ children, size = 16, ...rest }, ref) {
1435
- return react.default.createElement(require_Icon_js, {
1575
+ const DirectionLoopLeft = /* @__PURE__ */ react.default.forwardRef(function DirectionLoopLeft({ children, size = 16, ...rest }, ref) {
1576
+ return react.default.createElement(require_Icon.Icon, {
1436
1577
  width: size,
1437
1578
  height: size,
1438
1579
  ref,
@@ -1443,8 +1584,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1443
1584
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 20H18V28H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,4a7.0078,7.0078,0,0,0-7,7v3h2V11a5,5,0,1,1,5,5H5.8281l4.586-4.5859L9,10,2,17l7,7,1.4141-1.4141L5.8281,18H23A7,7,0,0,0,23,4Z" }), children);
1444
1585
  });
1445
1586
  if (process.env.NODE_ENV !== "production") DirectionLoopLeft.propTypes = require_iconPropTypes.iconPropTypes;
1446
- const DirectionLoopLeftFilled = react.default.forwardRef(function DirectionLoopLeftFilled({ children, size = 16, ...rest }, ref) {
1447
- return react.default.createElement(require_Icon_js, {
1587
+ const DirectionLoopLeftFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionLoopLeftFilled({ children, size = 16, ...rest }, ref) {
1588
+ return react.default.createElement(require_Icon.Icon, {
1448
1589
  width: size,
1449
1590
  height: size,
1450
1591
  ref,
@@ -1459,8 +1600,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1459
1600
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4ZM16,18h2v8H16ZM4,15l7-7,1.4141,1.4141L7.8281,14H21a3,3,0,1,0-3-3v1H16V11a5,5,0,1,1,5,5H7.8281l4.586,4.5859L11,22Z" }), children);
1460
1601
  });
1461
1602
  if (process.env.NODE_ENV !== "production") DirectionLoopLeftFilled.propTypes = require_iconPropTypes.iconPropTypes;
1462
- const DirectionLoopRight = react.default.forwardRef(function DirectionLoopRight({ children, size = 16, ...rest }, ref) {
1463
- return react.default.createElement(require_Icon_js, {
1603
+ const DirectionLoopRight = /* @__PURE__ */ react.default.forwardRef(function DirectionLoopRight({ children, size = 16, ...rest }, ref) {
1604
+ return react.default.createElement(require_Icon.Icon, {
1464
1605
  width: size,
1465
1606
  height: size,
1466
1607
  ref,
@@ -1471,8 +1612,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1471
1612
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 20H16V28H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,4a7.0078,7.0078,0,0,1,7,7v3H14V11a5,5,0,1,0-5,5H26.1719l-4.586-4.5859L23,10l7,7-7,7-1.4141-1.4141L26.1719,18H9A7,7,0,0,1,9,4Z" }), children);
1472
1613
  });
1473
1614
  if (process.env.NODE_ENV !== "production") DirectionLoopRight.propTypes = require_iconPropTypes.iconPropTypes;
1474
- const DirectionLoopRightFilled = react.default.forwardRef(function DirectionLoopRightFilled({ children, size = 16, ...rest }, ref) {
1475
- return react.default.createElement(require_Icon_js, {
1615
+ const DirectionLoopRightFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionLoopRightFilled({ children, size = 16, ...rest }, ref) {
1616
+ return react.default.createElement(require_Icon.Icon, {
1476
1617
  width: size,
1477
1618
  height: size,
1478
1619
  ref,
@@ -1487,8 +1628,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1487
1628
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM16,26H14V18h2Zm5-4-1.4141-1.4141L24.1719,16H11a5,5,0,1,1,5-5v1H14V11a3,3,0,1,0-3,3H24.1719l-4.586-4.5859L21,8l7,7Z" }), children);
1488
1629
  });
1489
1630
  if (process.env.NODE_ENV !== "production") DirectionLoopRightFilled.propTypes = require_iconPropTypes.iconPropTypes;
1490
- const DirectionMerge = react.default.forwardRef(function DirectionMerge({ children, size = 16, ...rest }, ref) {
1491
- return react.default.createElement(require_Icon_js, {
1631
+ const DirectionMerge = /* @__PURE__ */ react.default.forwardRef(function DirectionMerge({ children, size = 16, ...rest }, ref) {
1632
+ return react.default.createElement(require_Icon.Icon, {
1492
1633
  width: size,
1493
1634
  height: size,
1494
1635
  ref,
@@ -1499,8 +1640,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1499
1640
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.8784,15.4648A2.9821,2.9821,0,0,1,17,13.3433V7.8281l4.5859,4.586L23,11,16,4,9,11l1.4141,1.4141L15,7.8281v5.5152a2.9805,2.9805,0,0,1-.8784,2.1211l-2.6572,2.6567A4.9682,4.9682,0,0,0,10,21.6567V28h2V21.6567a2.9805,2.9805,0,0,1,.8784-2.1211l2.6572-2.6567A5.0021,5.0021,0,0,0,16,16.3135a5.0021,5.0021,0,0,0,.4644.5654l2.6572,2.6563A2.9821,2.9821,0,0,1,20,21.6567V28h2V21.6567a4.9682,4.9682,0,0,0-1.4644-3.5356Z" }), children);
1500
1641
  });
1501
1642
  if (process.env.NODE_ENV !== "production") DirectionMerge.propTypes = require_iconPropTypes.iconPropTypes;
1502
- const DirectionMergeFilled = react.default.forwardRef(function DirectionMergeFilled({ children, size = 16, ...rest }, ref) {
1503
- return react.default.createElement(require_Icon_js, {
1643
+ const DirectionMergeFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionMergeFilled({ children, size = 16, ...rest }, ref) {
1644
+ return react.default.createElement(require_Icon.Icon, {
1504
1645
  width: size,
1505
1646
  height: size,
1506
1647
  ref,
@@ -1515,8 +1656,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1515
1656
  }), children);
1516
1657
  });
1517
1658
  if (process.env.NODE_ENV !== "production") DirectionMergeFilled.propTypes = require_iconPropTypes.iconPropTypes;
1518
- const DirectionRight_01 = react.default.forwardRef(function DirectionRight_01({ children, size = 16, ...rest }, ref) {
1519
- return react.default.createElement(require_Icon_js, {
1659
+ const DirectionRight_01 = /* @__PURE__ */ react.default.forwardRef(function DirectionRight_01({ children, size = 16, ...rest }, ref) {
1660
+ return react.default.createElement(require_Icon.Icon, {
1520
1661
  width: size,
1521
1662
  height: size,
1522
1663
  ref,
@@ -1527,8 +1668,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1527
1668
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,4,17.5859,5.4141,22.1719,10H10a2,2,0,0,0-2,2V28h2V12H22.1719l-4.586,4.5859L19,18l7-7Z" }), children);
1528
1669
  });
1529
1670
  if (process.env.NODE_ENV !== "production") DirectionRight_01.propTypes = require_iconPropTypes.iconPropTypes;
1530
- const DirectionRight_01Filled = react.default.forwardRef(function DirectionRight_01Filled({ children, size = 16, ...rest }, ref) {
1531
- return react.default.createElement(require_Icon_js, {
1671
+ const DirectionRight_01Filled = /* @__PURE__ */ react.default.forwardRef(function DirectionRight_01Filled({ children, size = 16, ...rest }, ref) {
1672
+ return react.default.createElement(require_Icon.Icon, {
1532
1673
  width: size,
1533
1674
  height: size,
1534
1675
  ref,
@@ -1543,8 +1684,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1543
1684
  }), children);
1544
1685
  });
1545
1686
  if (process.env.NODE_ENV !== "production") DirectionRight_01Filled.propTypes = require_iconPropTypes.iconPropTypes;
1546
- const DirectionRight_02 = react.default.forwardRef(function DirectionRight_02({ children, size = 16, ...rest }, ref) {
1547
- return react.default.createElement(require_Icon_js, {
1687
+ const DirectionRight_02 = /* @__PURE__ */ react.default.forwardRef(function DirectionRight_02({ children, size = 16, ...rest }, ref) {
1688
+ return react.default.createElement(require_Icon.Icon, {
1548
1689
  width: size,
1549
1690
  height: size,
1550
1691
  ref,
@@ -1555,8 +1696,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1555
1696
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,8,17.5859,9.4141,22.1719,14H10a2,2,0,0,0-2,2V28h2V16H22.1719l-4.586,4.5859L19,22l7-7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 4H10V12H8z" }), children);
1556
1697
  });
1557
1698
  if (process.env.NODE_ENV !== "production") DirectionRight_02.propTypes = require_iconPropTypes.iconPropTypes;
1558
- const DirectionRight_02Filled = react.default.forwardRef(function DirectionRight_02Filled({ children, size = 16, ...rest }, ref) {
1559
- return react.default.createElement(require_Icon_js, {
1699
+ const DirectionRight_02Filled = /* @__PURE__ */ react.default.forwardRef(function DirectionRight_02Filled({ children, size = 16, ...rest }, ref) {
1700
+ return react.default.createElement(require_Icon.Icon, {
1560
1701
  width: size,
1561
1702
  height: size,
1562
1703
  ref,
@@ -1571,8 +1712,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1571
1712
  }), children);
1572
1713
  });
1573
1714
  if (process.env.NODE_ENV !== "production") DirectionRight_02Filled.propTypes = require_iconPropTypes.iconPropTypes;
1574
- const DirectionRotaryFirstRight = react.default.forwardRef(function DirectionRotaryFirstRight({ children, size = 16, ...rest }, ref) {
1575
- return react.default.createElement(require_Icon_js, {
1715
+ const DirectionRotaryFirstRight = /* @__PURE__ */ react.default.forwardRef(function DirectionRotaryFirstRight({ children, size = 16, ...rest }, ref) {
1716
+ return react.default.createElement(require_Icon.Icon, {
1576
1717
  width: size,
1577
1718
  height: size,
1578
1719
  ref,
@@ -1583,8 +1724,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1583
1724
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18v6.5859L15.8712,14.457A5.9242,5.9242,0,0,0,17,11a6,6,0,1,0-7,5.91V28h2V16.91a5.9566,5.9566,0,0,0,2.4554-1.04L24.5859,26H18v2H28V18ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z" }), children);
1584
1725
  });
1585
1726
  if (process.env.NODE_ENV !== "production") DirectionRotaryFirstRight.propTypes = require_iconPropTypes.iconPropTypes;
1586
- const DirectionRotaryFirstRightFilled = react.default.forwardRef(function DirectionRotaryFirstRightFilled({ children, size = 16, ...rest }, ref) {
1587
- return react.default.createElement(require_Icon_js, {
1727
+ const DirectionRotaryFirstRightFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionRotaryFirstRightFilled({ children, size = 16, ...rest }, ref) {
1728
+ return react.default.createElement(require_Icon.Icon, {
1588
1729
  width: size,
1589
1730
  height: size,
1590
1731
  ref,
@@ -1603,8 +1744,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1603
1744
  }), children);
1604
1745
  });
1605
1746
  if (process.env.NODE_ENV !== "production") DirectionRotaryFirstRightFilled.propTypes = require_iconPropTypes.iconPropTypes;
1606
- const DirectionRotaryRight = react.default.forwardRef(function DirectionRotaryRight({ children, size = 16, ...rest }, ref) {
1607
- return react.default.createElement(require_Icon_js, {
1747
+ const DirectionRotaryRight = /* @__PURE__ */ react.default.forwardRef(function DirectionRotaryRight({ children, size = 16, ...rest }, ref) {
1748
+ return react.default.createElement(require_Icon.Icon, {
1608
1749
  width: size,
1609
1750
  height: size,
1610
1751
  ref,
@@ -1615,161 +1756,19 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1615
1756
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,4,20.5859,5.4141,25.1719,10H16.91A5.9965,5.9965,0,1,0,10,16.91V28h2V16.91A6.0061,6.0061,0,0,0,16.91,12h8.2622l-4.586,4.5859L22,18l7-7ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z" }), children);
1616
1757
  });
1617
1758
  if (process.env.NODE_ENV !== "production") DirectionRotaryRight.propTypes = require_iconPropTypes.iconPropTypes;
1618
- const DirectionRotaryRightFilled = react.default.forwardRef(function DirectionRotaryRightFilled({ children, size = 16, ...rest }, ref) {
1619
- return react.default.createElement(require_Icon_js, {
1620
- width: size,
1621
- height: size,
1622
- ref,
1623
- xmlns: "http://www.w3.org/2000/svg",
1624
- viewBox: "0 0 32 32",
1625
- fill: "currentColor",
1626
- ...rest
1627
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1628
- cx: "11",
1629
- cy: "11",
1630
- r: "3"
1631
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,18l-1.4141-1.4141L23.1719,12h-7.273A5.0145,5.0145,0,0,1,12,15.8989V26H10V15.8989A5,5,0,1,1,15.8989,10h7.273l-4.586-4.5859L20,4l7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1632
- fill: "none",
1633
- d: "M20,4,18.5859,5.4141,23.1719,10h-7.273A5,5,0,1,0,10,15.8989V26h2V15.8989A5.0145,5.0145,0,0,0,15.8989,12h7.273l-4.586,4.5859L20,18l7-7ZM11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Z",
1634
- "data-icon-path": "inner-path"
1635
- }), children);
1636
- });
1637
- if (process.env.NODE_ENV !== "production") DirectionRotaryRightFilled.propTypes = require_iconPropTypes.iconPropTypes;
1638
- const DirectionRotaryStraight = react.default.forwardRef(function DirectionRotaryStraight({ children, size = 16, ...rest }, ref) {
1639
- return react.default.createElement(require_Icon_js, {
1640
- width: size,
1641
- height: size,
1642
- ref,
1643
- xmlns: "http://www.w3.org/2000/svg",
1644
- viewBox: "0 0 32 32",
1645
- fill: "currentColor",
1646
- ...rest
1647
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,12.09V5.8281l4.5859,4.586L23,9,16,2,9,9l1.4141,1.4141L15,5.8281V12.09A5.9925,5.9925,0,0,0,15,23.91V28h2V23.91A5.9925,5.9925,0,0,0,17,12.09ZM16,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,22Z" }), children);
1648
- });
1649
- if (process.env.NODE_ENV !== "production") DirectionRotaryStraight.propTypes = require_iconPropTypes.iconPropTypes;
1650
- const DirectionRotaryStraightFilled = react.default.forwardRef(function DirectionRotaryStraightFilled({ children, size = 16, ...rest }, ref) {
1651
- return react.default.createElement(require_Icon_js, {
1652
- width: size,
1653
- height: size,
1654
- ref,
1655
- xmlns: "http://www.w3.org/2000/svg",
1656
- viewBox: "0 0 32 32",
1657
- fill: "currentColor",
1658
- ...rest
1659
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1660
- cx: "16",
1661
- cy: "19",
1662
- r: "3"
1663
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,12.4141,17,7.8281v6.273a5,5,0,0,1,0,9.7978V28H15V23.8989a5,5,0,0,1,0-9.7978V7.8281l-4.5859,4.586L9,11l7-7,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1664
- fill: "none",
1665
- d: "M21.5859,12.4141,23,11,16,4,9,11l1.4141,1.4141L15,7.8281v6.273a5,5,0,0,0,0,9.7978V28h2V23.8989a5,5,0,0,0,0-9.7978V7.8281ZM19,19a3,3,0,1,1-3-3A3.0033,3.0033,0,0,1,19,19Z",
1666
- "data-icon-path": "inner-path"
1667
- }), children);
1668
- });
1669
- if (process.env.NODE_ENV !== "production") DirectionRotaryStraightFilled.propTypes = require_iconPropTypes.iconPropTypes;
1670
- const DirectionSharpTurn = react.default.forwardRef(function DirectionSharpTurn({ children, size = 16, ...rest }, ref) {
1671
- return react.default.createElement(require_Icon_js, {
1672
- width: size,
1673
- height: size,
1674
- ref,
1675
- xmlns: "http://www.w3.org/2000/svg",
1676
- viewBox: "0 0 32 32",
1677
- fill: "currentColor",
1678
- ...rest
1679
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18v6.5859L7.707,6.293A1,1,0,0,0,6,7V28H8V9.4141L24.5859,26H18v2H28V18Z" }), children);
1680
- });
1681
- if (process.env.NODE_ENV !== "production") DirectionSharpTurn.propTypes = require_iconPropTypes.iconPropTypes;
1682
- const DirectionSharpTurnFilled = react.default.forwardRef(function DirectionSharpTurnFilled({ children, size = 16, ...rest }, ref) {
1683
- return react.default.createElement(require_Icon_js, {
1684
- width: size,
1685
- height: size,
1686
- ref,
1687
- xmlns: "http://www.w3.org/2000/svg",
1688
- viewBox: "0 0 32 32",
1689
- fill: "currentColor",
1690
- ...rest
1691
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1692
- fill: "none",
1693
- d: "M26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z",
1694
- "data-icon-path": "inner-path"
1695
- }), children);
1696
- });
1697
- if (process.env.NODE_ENV !== "production") DirectionSharpTurnFilled.propTypes = require_iconPropTypes.iconPropTypes;
1698
- const DirectionStraight = react.default.forwardRef(function DirectionStraight({ children, size = 16, ...rest }, ref) {
1699
- return react.default.createElement(require_Icon_js, {
1700
- width: size,
1701
- height: size,
1702
- ref,
1703
- xmlns: "http://www.w3.org/2000/svg",
1704
- viewBox: "0 0 32 32",
1705
- fill: "currentColor",
1706
- ...rest
1707
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 4 9 11 10.414 12.414 15 7.828 15 28 17 28 17 7.828 21.586 12.414 23 11 16 4z" }), children);
1708
- });
1709
- if (process.env.NODE_ENV !== "production") DirectionStraight.propTypes = require_iconPropTypes.iconPropTypes;
1710
- const DirectionStraightFilled = react.default.forwardRef(function DirectionStraightFilled({ children, size = 16, ...rest }, ref) {
1711
- return react.default.createElement(require_Icon_js, {
1712
- width: size,
1713
- height: size,
1714
- ref,
1715
- xmlns: "http://www.w3.org/2000/svg",
1716
- viewBox: "0 0 32 32",
1717
- fill: "currentColor",
1718
- ...rest
1719
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1720
- fill: "none",
1721
- d: "M21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z",
1722
- "data-icon-path": "inner-path"
1723
- }), children);
1724
- });
1725
- if (process.env.NODE_ENV !== "production") DirectionStraightFilled.propTypes = require_iconPropTypes.iconPropTypes;
1726
- const DirectionStraightRight = react.default.forwardRef(function DirectionStraightRight({ children, size = 16, ...rest }, ref) {
1727
- return react.default.createElement(require_Icon_js, {
1728
- width: size,
1729
- height: size,
1730
- ref,
1731
- xmlns: "http://www.w3.org/2000/svg",
1732
- viewBox: "0 0 32 32",
1733
- fill: "currentColor",
1734
- ...rest
1735
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 16 21 9 19.586 10.414 24.172 15 4 15 4 17 24.172 17 19.586 21.586 21 23 28 16z" }), children);
1736
- });
1737
- if (process.env.NODE_ENV !== "production") DirectionStraightRight.propTypes = require_iconPropTypes.iconPropTypes;
1738
- const DirectionStraightRightFilled = react.default.forwardRef(function DirectionStraightRightFilled({ children, size = 16, ...rest }, ref) {
1739
- return react.default.createElement(require_Icon_js, {
1740
- width: size,
1741
- height: size,
1742
- ref,
1743
- xmlns: "http://www.w3.org/2000/svg",
1744
- viewBox: "0 0 32 32",
1745
- fill: "currentColor",
1746
- ...rest
1747
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1748
- fill: "none",
1749
- d: "M20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z",
1750
- "data-icon-path": "inner-path"
1751
- }), children);
1752
- });
1753
- if (process.env.NODE_ENV !== "production") DirectionStraightRightFilled.propTypes = require_iconPropTypes.iconPropTypes;
1754
- const DirectionUTurn = react.default.forwardRef(function DirectionUTurn({ children, size = 16, ...rest }, ref) {
1755
- return react.default.createElement(require_Icon_js, {
1756
- width: size,
1757
- height: size,
1758
- ref,
1759
- xmlns: "http://www.w3.org/2000/svg",
1760
- viewBox: "0 0 32 32",
1761
- fill: "currentColor",
1762
- ...rest
1763
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.5859,19.5859,22,24.1719V12A8,8,0,0,0,6,12V28H8V12a6,6,0,0,1,12,0V24.1719l-4.5859-4.586L14,21l7,7,7-7Z" }), children);
1764
- });
1765
- if (process.env.NODE_ENV !== "production") DirectionUTurn.propTypes = require_iconPropTypes.iconPropTypes;
1766
1759
  exports.DataAccessor = DataAccessor;
1767
1760
  exports.DataAnalytics = DataAnalytics;
1768
1761
  exports.DataBackup = DataBackup;
1762
+ exports.DataBase = DataBase;
1763
+ exports.DataBaseAlt = DataBaseAlt;
1769
1764
  exports.DataBin = DataBin;
1770
1765
  exports.DataBlob = DataBlob;
1766
+ exports.DataCategorical = DataCategorical;
1767
+ exports.DataCenter = DataCenter;
1768
+ exports.DataCheck = DataCheck;
1771
1769
  exports.DataClass = DataClass;
1772
1770
  exports.DataCollection = DataCollection;
1771
+ exports.DataConnected = DataConnected;
1773
1772
  exports.DataDefinition = DataDefinition;
1774
1773
  exports.DataDictionary = DataDictionary;
1775
1774
  exports.DataDiode = DataDiode;
@@ -1800,6 +1799,8 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1800
1799
  exports.DataVis_4 = DataVis_4;
1801
1800
  exports.DataVolume = DataVolume;
1802
1801
  exports.DataVolumeAlt = DataVolumeAlt;
1802
+ exports.Data_1 = Data_1;
1803
+ exports.Data_2 = Data_2;
1803
1804
  exports.DatabaseDatastax = DatabaseDatastax;
1804
1805
  exports.DatabaseElastic = DatabaseElastic;
1805
1806
  exports.DatabaseEnterpriseDb2 = DatabaseEnterpriseDb2;
@@ -1818,11 +1819,13 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1818
1819
  exports.Debug = Debug;
1819
1820
  exports.DecisionNode = DecisionNode;
1820
1821
  exports.DecisionTree = DecisionTree;
1822
+ exports.Decline = Decline;
1821
1823
  exports.Delete = Delete;
1822
1824
  exports.Delivery = Delivery;
1823
1825
  exports.DeliveryAdd = DeliveryAdd;
1824
1826
  exports.DeliveryParcel = DeliveryParcel;
1825
1827
  exports.DeliverySettings = DeliverySettings;
1828
+ exports.DeliveryTime = DeliveryTime;
1826
1829
  exports.DeliveryTruck = DeliveryTruck;
1827
1830
  exports.Demo = Demo;
1828
1831
  exports.Departure = Departure;
@@ -1875,25 +1878,14 @@ var require_bucket_5 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1875
1878
  exports.DirectionRotaryFirstRight = DirectionRotaryFirstRight;
1876
1879
  exports.DirectionRotaryFirstRightFilled = DirectionRotaryFirstRightFilled;
1877
1880
  exports.DirectionRotaryRight = DirectionRotaryRight;
1878
- exports.DirectionRotaryRightFilled = DirectionRotaryRightFilled;
1879
- exports.DirectionRotaryStraight = DirectionRotaryStraight;
1880
- exports.DirectionRotaryStraightFilled = DirectionRotaryStraightFilled;
1881
- exports.DirectionSharpTurn = DirectionSharpTurn;
1882
- exports.DirectionSharpTurnFilled = DirectionSharpTurnFilled;
1883
- exports.DirectionStraight = DirectionStraight;
1884
- exports.DirectionStraightFilled = DirectionStraightFilled;
1885
- exports.DirectionStraightRight = DirectionStraightRight;
1886
- exports.DirectionStraightRightFilled = DirectionStraightRightFilled;
1887
- exports.DirectionUTurn = DirectionUTurn;
1888
1881
  exports.WatsonHealthDenominate = WatsonHealthDenominate;
1889
1882
  exports.WatsonHealthDicomOverlay = WatsonHealthDicomOverlay;
1890
1883
  exports.WatsonHealthDicom_6000 = WatsonHealthDicom_6000;
1891
1884
  }));
1892
-
1893
1885
  //#endregion
1894
- Object.defineProperty(exports, 'default', {
1895
- enumerable: true,
1896
- get: function () {
1897
- return require_bucket_5();
1898
- }
1899
- });
1886
+ Object.defineProperty(exports, "default", {
1887
+ enumerable: true,
1888
+ get: function() {
1889
+ return require_bucket_5();
1890
+ }
1891
+ });