@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-6.js
14
12
  var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,161 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
21
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
22
20
  */
23
21
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
24
- const require_chunk = require_chunk_CsKB0u1v$1.default;
25
- const require_Icon_js = require_Icon$1.default;
26
- const require_iconPropTypes = require_iconPropTypes_U9gLABJo$1.default;
22
+ const require_Icon = require_Icon_2zUDcllO$1.default;
23
+ const require_iconPropTypes = require_iconPropTypes_DaTOKOBs$1.default;
27
24
  let react = require("react");
28
- react = require_chunk.__toESM(react);
25
+ react = require_Icon.__toESM(react);
29
26
  let react_jsx_runtime = require("react/jsx-runtime");
30
- const DirectionUTurnFilled = react.default.forwardRef(function DirectionUTurnFilled({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const DirectionRotaryRightFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionRotaryRightFilled({ children, size = 16, ...rest }, ref) {
28
+ return react.default.createElement(require_Icon.Icon, {
29
+ width: size,
30
+ height: size,
31
+ ref,
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ viewBox: "0 0 32 32",
34
+ fill: "currentColor",
35
+ ...rest
36
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
37
+ cx: "11",
38
+ cy: "11",
39
+ r: "3"
40
+ }), /* @__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", {
41
+ fill: "none",
42
+ 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",
43
+ "data-icon-path": "inner-path"
44
+ }), children);
45
+ });
46
+ if (process.env.NODE_ENV !== "production") DirectionRotaryRightFilled.propTypes = require_iconPropTypes.iconPropTypes;
47
+ const DirectionRotaryStraight = /* @__PURE__ */ react.default.forwardRef(function DirectionRotaryStraight({ children, size = 16, ...rest }, ref) {
48
+ return react.default.createElement(require_Icon.Icon, {
49
+ width: size,
50
+ height: size,
51
+ ref,
52
+ xmlns: "http://www.w3.org/2000/svg",
53
+ viewBox: "0 0 32 32",
54
+ fill: "currentColor",
55
+ ...rest
56
+ }, /* @__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);
57
+ });
58
+ if (process.env.NODE_ENV !== "production") DirectionRotaryStraight.propTypes = require_iconPropTypes.iconPropTypes;
59
+ const DirectionRotaryStraightFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionRotaryStraightFilled({ children, size = 16, ...rest }, ref) {
60
+ return react.default.createElement(require_Icon.Icon, {
61
+ width: size,
62
+ height: size,
63
+ ref,
64
+ xmlns: "http://www.w3.org/2000/svg",
65
+ viewBox: "0 0 32 32",
66
+ fill: "currentColor",
67
+ ...rest
68
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
69
+ cx: "16",
70
+ cy: "19",
71
+ r: "3"
72
+ }), /* @__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", {
73
+ fill: "none",
74
+ 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",
75
+ "data-icon-path": "inner-path"
76
+ }), children);
77
+ });
78
+ if (process.env.NODE_ENV !== "production") DirectionRotaryStraightFilled.propTypes = require_iconPropTypes.iconPropTypes;
79
+ const DirectionSharpTurn = /* @__PURE__ */ react.default.forwardRef(function DirectionSharpTurn({ children, size = 16, ...rest }, ref) {
80
+ return react.default.createElement(require_Icon.Icon, {
81
+ width: size,
82
+ height: size,
83
+ ref,
84
+ xmlns: "http://www.w3.org/2000/svg",
85
+ viewBox: "0 0 32 32",
86
+ fill: "currentColor",
87
+ ...rest
88
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18v6.5859L7.707,6.293A1,1,0,0,0,6,7V28H8V9.4141L24.5859,26H18v2H28V18Z" }), children);
89
+ });
90
+ if (process.env.NODE_ENV !== "production") DirectionSharpTurn.propTypes = require_iconPropTypes.iconPropTypes;
91
+ const DirectionSharpTurnFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionSharpTurnFilled({ children, size = 16, ...rest }, ref) {
92
+ return react.default.createElement(require_Icon.Icon, {
93
+ width: size,
94
+ height: size,
95
+ ref,
96
+ xmlns: "http://www.w3.org/2000/svg",
97
+ viewBox: "0 0 32 32",
98
+ fill: "currentColor",
99
+ ...rest
100
+ }, /* @__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", {
101
+ fill: "none",
102
+ d: "M26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z",
103
+ "data-icon-path": "inner-path"
104
+ }), children);
105
+ });
106
+ if (process.env.NODE_ENV !== "production") DirectionSharpTurnFilled.propTypes = require_iconPropTypes.iconPropTypes;
107
+ const DirectionStraight = /* @__PURE__ */ react.default.forwardRef(function DirectionStraight({ children, size = 16, ...rest }, ref) {
108
+ return react.default.createElement(require_Icon.Icon, {
109
+ width: size,
110
+ height: size,
111
+ ref,
112
+ xmlns: "http://www.w3.org/2000/svg",
113
+ viewBox: "0 0 32 32",
114
+ fill: "currentColor",
115
+ ...rest
116
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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);
117
+ });
118
+ if (process.env.NODE_ENV !== "production") DirectionStraight.propTypes = require_iconPropTypes.iconPropTypes;
119
+ const DirectionStraightFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionStraightFilled({ children, size = 16, ...rest }, ref) {
120
+ return react.default.createElement(require_Icon.Icon, {
121
+ width: size,
122
+ height: size,
123
+ ref,
124
+ xmlns: "http://www.w3.org/2000/svg",
125
+ viewBox: "0 0 32 32",
126
+ fill: "currentColor",
127
+ ...rest
128
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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", {
129
+ fill: "none",
130
+ d: "M21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z",
131
+ "data-icon-path": "inner-path"
132
+ }), children);
133
+ });
134
+ if (process.env.NODE_ENV !== "production") DirectionStraightFilled.propTypes = require_iconPropTypes.iconPropTypes;
135
+ const DirectionStraightRight = /* @__PURE__ */ react.default.forwardRef(function DirectionStraightRight({ children, size = 16, ...rest }, ref) {
136
+ return react.default.createElement(require_Icon.Icon, {
137
+ width: size,
138
+ height: size,
139
+ ref,
140
+ xmlns: "http://www.w3.org/2000/svg",
141
+ viewBox: "0 0 32 32",
142
+ fill: "currentColor",
143
+ ...rest
144
+ }, /* @__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);
145
+ });
146
+ if (process.env.NODE_ENV !== "production") DirectionStraightRight.propTypes = require_iconPropTypes.iconPropTypes;
147
+ const DirectionStraightRightFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionStraightRightFilled({ children, size = 16, ...rest }, ref) {
148
+ return react.default.createElement(require_Icon.Icon, {
149
+ width: size,
150
+ height: size,
151
+ ref,
152
+ xmlns: "http://www.w3.org/2000/svg",
153
+ viewBox: "0 0 32 32",
154
+ fill: "currentColor",
155
+ ...rest
156
+ }, /* @__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", {
157
+ fill: "none",
158
+ d: "M20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z",
159
+ "data-icon-path": "inner-path"
160
+ }), children);
161
+ });
162
+ if (process.env.NODE_ENV !== "production") DirectionStraightRightFilled.propTypes = require_iconPropTypes.iconPropTypes;
163
+ const DirectionUTurn = /* @__PURE__ */ react.default.forwardRef(function DirectionUTurn({ children, size = 16, ...rest }, ref) {
164
+ return react.default.createElement(require_Icon.Icon, {
165
+ width: size,
166
+ height: size,
167
+ ref,
168
+ xmlns: "http://www.w3.org/2000/svg",
169
+ viewBox: "0 0 32 32",
170
+ fill: "currentColor",
171
+ ...rest
172
+ }, /* @__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);
173
+ });
174
+ if (process.env.NODE_ENV !== "production") DirectionUTurn.propTypes = require_iconPropTypes.iconPropTypes;
175
+ const DirectionUTurnFilled = /* @__PURE__ */ react.default.forwardRef(function DirectionUTurnFilled({ children, size = 16, ...rest }, ref) {
176
+ return react.default.createElement(require_Icon.Icon, {
32
177
  width: size,
33
178
  height: size,
34
179
  ref,
@@ -43,8 +188,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
43
188
  }), /* @__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,26l-7-7,1.4141-1.4141L20,22.1719V14A6,6,0,0,0,8,14V26H6V14a8,8,0,0,1,16,0v8.1719l4.5859-4.586L28,19Z" }), children);
44
189
  });
45
190
  if (process.env.NODE_ENV !== "production") DirectionUTurnFilled.propTypes = require_iconPropTypes.iconPropTypes;
46
- const DirectoryDomain = react.default.forwardRef(function DirectoryDomain({ children, size = 16, ...rest }, ref) {
47
- return react.default.createElement(require_Icon_js, {
191
+ const DirectoryDomain = /* @__PURE__ */ react.default.forwardRef(function DirectoryDomain({ children, size = 16, ...rest }, ref) {
192
+ return react.default.createElement(require_Icon.Icon, {
48
193
  width: size,
49
194
  height: size,
50
195
  ref,
@@ -55,8 +200,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
55
200
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,26H18.8157A2.9959,2.9959,0,0,0,17,24.1841V19h7a2.0025,2.0025,0,0,0,2-2V4a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,4V17a2.0025,2.0025,0,0,0,2,2h7v5.1841A2.9959,2.9959,0,0,0,13.1843,26H4v2h9.1843a2.982,2.982,0,0,0,5.6314,0H28ZM24,12H8V9H24Zm0-8V7H8V4ZM8,14H24v3H8Zm8,14a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,16,28Z" }), children);
56
201
  });
57
202
  if (process.env.NODE_ENV !== "production") DirectoryDomain.propTypes = require_iconPropTypes.iconPropTypes;
58
- const DisableStep = react.default.forwardRef(function DisableStep({ children, size = 16, ...rest }, ref) {
59
- return react.default.createElement(require_Icon_js, {
203
+ const DisableStep = /* @__PURE__ */ react.default.forwardRef(function DisableStep({ children, size = 16, ...rest }, ref) {
204
+ return react.default.createElement(require_Icon.Icon, {
60
205
  width: size,
61
206
  height: size,
62
207
  ref,
@@ -67,8 +212,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
67
212
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,12H3c-.55,0-1-.45-1-1V3c0-.55.45-1,1-1h26c.55,0,1,.45,1,1v8c0,.55-.45,1-1,1ZM4,4v6h24v-6H4ZM16,22H4v-6h24v1h2v-2c0-.55-.45-1-1-1H3c-.55,0-1,.45-1,1v8c0,.55.45,1,1,1h13v-2ZM29.8447,25.3754c.9845-4.3565-2.8635-8.2045-7.2201-7.2201-2.1983.4968-3.9725,2.271-4.4692,4.4692-.9845,4.3565,2.8635,8.2045,7.2201,7.2201,2.1983-.4968,3.9725-2.271,4.4692-4.4692ZM28,24c0,.7-.2,1.4-.6,2l-5.5-5.5c.6-.4,1.3-.6,2-.6,2.2,0,4.1,1.9,4.1,4.1h0ZM20,24c0-.7.2-1.4.6-2l5.5,5.5c-.6.4-1.3.6-2,.6-2.2,0-4.1-1.9-4.1-4.1h0Z" }), children);
68
213
  });
69
214
  if (process.env.NODE_ENV !== "production") DisableStep.propTypes = require_iconPropTypes.iconPropTypes;
70
- const DistributeHorizontalCenter = react.default.forwardRef(function DistributeHorizontalCenter({ children, size = 16, ...rest }, ref) {
71
- return react.default.createElement(require_Icon_js, {
215
+ const DistributeHorizontalCenter = /* @__PURE__ */ react.default.forwardRef(function DistributeHorizontalCenter({ children, size = 16, ...rest }, ref) {
216
+ return react.default.createElement(require_Icon.Icon, {
72
217
  width: size,
73
218
  height: size,
74
219
  ref,
@@ -79,8 +224,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
79
224
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10H23V2H21v8H20a2.0023,2.0023,0,0,0-2,2v8a2.0023,2.0023,0,0,0,2,2h1v8h2V22h1a2.0023,2.0023,0,0,0,2-2V12A2.0023,2.0023,0,0,0,24,10Zm0,10H20V12h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,6H11V2H9V6H8A2.0023,2.0023,0,0,0,6,8V24a2.0023,2.0023,0,0,0,2,2H9v4h2V26h1a2.0023,2.0023,0,0,0,2-2V8A2.0023,2.0023,0,0,0,12,6Zm0,18H8V8h4Z" }), children);
80
225
  });
81
226
  if (process.env.NODE_ENV !== "production") DistributeHorizontalCenter.propTypes = require_iconPropTypes.iconPropTypes;
82
- const DistributeHorizontalLeft = react.default.forwardRef(function DistributeHorizontalLeft({ children, size = 16, ...rest }, ref) {
83
- return react.default.createElement(require_Icon_js, {
227
+ const DistributeHorizontalLeft = /* @__PURE__ */ react.default.forwardRef(function DistributeHorizontalLeft({ children, size = 16, ...rest }, ref) {
228
+ return react.default.createElement(require_Icon.Icon, {
84
229
  width: size,
85
230
  height: size,
86
231
  ref,
@@ -91,8 +236,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
91
236
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,22H24a2.0021,2.0021,0,0,1-2-2V12a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,22ZM24,12v8h4V12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 2H20V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,26H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6h4a2.0021,2.0021,0,0,1,2,2V24A2.0021,2.0021,0,0,1,12,26ZM8,8V24h4V8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H4V30H2z" }), children);
92
237
  });
93
238
  if (process.env.NODE_ENV !== "production") DistributeHorizontalLeft.propTypes = require_iconPropTypes.iconPropTypes;
94
- const DistributeHorizontalRight = react.default.forwardRef(function DistributeHorizontalRight({ children, size = 16, ...rest }, ref) {
95
- return react.default.createElement(require_Icon_js, {
239
+ const DistributeHorizontalRight = /* @__PURE__ */ react.default.forwardRef(function DistributeHorizontalRight({ children, size = 16, ...rest }, ref) {
240
+ return react.default.createElement(require_Icon.Icon, {
96
241
  width: size,
97
242
  height: size,
98
243
  ref,
@@ -103,8 +248,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
103
248
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 2H30V30H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,22H20a2.0021,2.0021,0,0,1-2-2V12a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,24,22ZM20,12h-.0015L20,20h4V12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H14V30H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26H4a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,4,6H8a2.0021,2.0021,0,0,1,2,2V24A2.0021,2.0021,0,0,1,8,26ZM4,8H3.9985L4,24H8V8Z" }), children);
104
249
  });
105
250
  if (process.env.NODE_ENV !== "production") DistributeHorizontalRight.propTypes = require_iconPropTypes.iconPropTypes;
106
- const DistributeVerticalBottom = react.default.forwardRef(function DistributeVerticalBottom({ children, size = 16, ...rest }, ref) {
107
- return react.default.createElement(require_Icon_js, {
251
+ const DistributeVerticalBottom = /* @__PURE__ */ react.default.forwardRef(function DistributeVerticalBottom({ children, size = 16, ...rest }, ref) {
252
+ return react.default.createElement(require_Icon.Icon, {
108
253
  width: size,
109
254
  height: size,
110
255
  ref,
@@ -115,8 +260,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
115
260
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,26H8a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2H24a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,24,26Zm0-6.0012L8,20v4H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H30V14H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10H12a2.0021,2.0021,0,0,1-2-2V4a2.0021,2.0021,0,0,1,2-2h8a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,20,10Zm0-6.0012L12,4V8h8Z" }), children);
116
261
  });
117
262
  if (process.env.NODE_ENV !== "production") DistributeVerticalBottom.propTypes = require_iconPropTypes.iconPropTypes;
118
- const DistributeVerticalCenter = react.default.forwardRef(function DistributeVerticalCenter({ children, size = 16, ...rest }, ref) {
119
- return react.default.createElement(require_Icon_js, {
263
+ const DistributeVerticalCenter = /* @__PURE__ */ react.default.forwardRef(function DistributeVerticalCenter({ children, size = 16, ...rest }, ref) {
264
+ return react.default.createElement(require_Icon.Icon, {
120
265
  width: size,
121
266
  height: size,
122
267
  ref,
@@ -127,8 +272,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
127
272
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,21H26V20a2.0023,2.0023,0,0,0-2-2H8a2.0023,2.0023,0,0,0-2,2v1H2v2H6v1a2.0023,2.0023,0,0,0,2,2H24a2.0023,2.0023,0,0,0,2-2V23h4Zm-6,3H8V20l16-.001Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,9H22V8a2.0023,2.0023,0,0,0-2-2H12a2.0023,2.0023,0,0,0-2,2V9H2v2h8v1a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V11h8ZM20,12H12V8l8-.001Z" }), children);
128
273
  });
129
274
  if (process.env.NODE_ENV !== "production") DistributeVerticalCenter.propTypes = require_iconPropTypes.iconPropTypes;
130
- const DistributeVerticalTop = react.default.forwardRef(function DistributeVerticalTop({ children, size = 16, ...rest }, ref) {
131
- return react.default.createElement(require_Icon_js, {
275
+ const DistributeVerticalTop = /* @__PURE__ */ react.default.forwardRef(function DistributeVerticalTop({ children, size = 16, ...rest }, ref) {
276
+ return react.default.createElement(require_Icon.Icon, {
132
277
  width: size,
133
278
  height: size,
134
279
  ref,
@@ -139,8 +284,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
139
284
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30H8a2.0021,2.0021,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2H24a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,24,30ZM8,24v4H24V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H30V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,14H12a2.0021,2.0021,0,0,1-2-2V8a2.0021,2.0021,0,0,1,2-2h8a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,20,14ZM12,8v4h8V8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H30V4H2z" }), children);
140
285
  });
141
286
  if (process.env.NODE_ENV !== "production") DistributeVerticalTop.propTypes = require_iconPropTypes.iconPropTypes;
142
- const WatsonHealthDna = react.default.forwardRef(function WatsonHealthDna({ children, size = 16, ...rest }, ref) {
143
- return react.default.createElement(require_Icon_js, {
287
+ const WatsonHealthDna = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthDna({ children, size = 16, ...rest }, ref) {
288
+ return react.default.createElement(require_Icon.Icon, {
144
289
  width: size,
145
290
  height: size,
146
291
  ref,
@@ -151,8 +296,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
151
296
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,2V1H20V2a7.04,7.04,0,0,1-.08,1H12.08A7.04,7.04,0,0,1,12,2V1H10V2c0,3.7549,1.9707,5.6035,4.1008,7C11.9707,10.3965,10,12.2451,10,16s1.9707,5.6035,4.1008,7C11.9707,24.3965,10,26.2451,10,30v1h2V30a7.04,7.04,0,0,1,.08-1H19.92A7.04,7.04,0,0,1,20,30v1h2V30c0-3.7549-1.9707-5.6035-4.1008-7C20.0293,21.6035,22,19.7549,22,16s-1.9707-5.6035-4.1008-7C20.0293,7.6035,22,5.7549,22,2ZM20,16a7.04,7.04,0,0,1-.08,1H12.08a6.3212,6.3212,0,0,1,0-2H19.92A7.04,7.04,0,0,1,20,16Zm-.7559,11H12.7559A8.9078,8.9078,0,0,1,16,24.17,8.9078,8.9078,0,0,1,19.2441,27ZM16,21.83A8.9078,8.9078,0,0,1,12.7559,19h6.4882A8.9078,8.9078,0,0,1,16,21.83ZM19.2441,13H12.7559A8.9078,8.9078,0,0,1,16,10.17,8.9078,8.9078,0,0,1,19.2441,13ZM16,7.83A8.9078,8.9078,0,0,1,12.7559,5h6.4882A8.9078,8.9078,0,0,1,16,7.83Z" }), children);
152
297
  });
153
298
  if (process.env.NODE_ENV !== "production") WatsonHealthDna.propTypes = require_iconPropTypes.iconPropTypes;
154
- const DnsServices = react.default.forwardRef(function DnsServices({ children, size = 16, ...rest }, ref) {
155
- return react.default.createElement(require_Icon_js, {
299
+ const DnsServices = /* @__PURE__ */ react.default.forwardRef(function DnsServices({ children, size = 16, ...rest }, ref) {
300
+ return react.default.createElement(require_Icon.Icon, {
156
301
  width: size,
157
302
  height: size,
158
303
  ref,
@@ -163,8 +308,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
163
308
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20H30V22H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 24H26V26H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,17V16A13.9871,13.9871,0,1,0,19.23,29.625l-.46-1.9463A12.0419,12.0419,0,0,1,16,28c-.19,0-.375-.0186-.563-.0273A20.3044,20.3044,0,0,1,12.0259,17Zm-2.0415-2H21.9751A24.2838,24.2838,0,0,0,19.2014,4.4414,12.0228,12.0228,0,0,1,27.9585,15ZM16.563,4.0273A20.3044,20.3044,0,0,1,19.9741,15H12.0259A20.3044,20.3044,0,0,1,15.437,4.0273C15.625,4.0186,15.81,4,16,4S16.375,4.0186,16.563,4.0273Zm-3.7644.4141A24.2838,24.2838,0,0,0,10.0249,15H4.0415A12.0228,12.0228,0,0,1,12.7986,4.4414Zm0,23.1172A12.0228,12.0228,0,0,1,4.0415,17h5.9834A24.2838,24.2838,0,0,0,12.7986,27.5586Z" }), children);
164
309
  });
165
310
  if (process.env.NODE_ENV !== "production") DnsServices.propTypes = require_iconPropTypes.iconPropTypes;
166
- const Doc = react.default.forwardRef(function Doc({ children, size = 16, ...rest }, ref) {
167
- return react.default.createElement(require_Icon_js, {
311
+ const Doc = /* @__PURE__ */ react.default.forwardRef(function Doc({ children, size = 16, ...rest }, ref) {
312
+ return react.default.createElement(require_Icon.Icon, {
168
313
  width: size,
169
314
  height: size,
170
315
  ref,
@@ -175,8 +320,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
175
320
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23H24a2.0023,2.0023,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h6v2H24V21h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23H14a2.0023,2.0023,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h4a2.002,2.002,0,0,1,2,2V21A2.0023,2.0023,0,0,1,18,23ZM14,11V21h4V11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,23H2V9H6a4.0045,4.0045,0,0,1,4,4v6A4.0045,4.0045,0,0,1,6,23ZM4,21H6a2.002,2.002,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H4Z" }), children);
176
321
  });
177
322
  if (process.env.NODE_ENV !== "production") Doc.propTypes = require_iconPropTypes.iconPropTypes;
178
- const Document = react.default.forwardRef(function Document({ children, size = 16, ...rest }, ref) {
179
- return react.default.createElement(require_Icon_js, {
323
+ const Document = /* @__PURE__ */ react.default.forwardRef(function Document({ children, size = 16, ...rest }, ref) {
324
+ return react.default.createElement(require_Icon.Icon, {
180
325
  width: size,
181
326
  height: size,
182
327
  ref,
@@ -187,8 +332,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
187
332
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.7,9.3l-7-7C18.5,2.1,18.3,2,18,2H8C6.9,2,6,2.9,6,4v24c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V10C26,9.7,25.9,9.5,25.7,9.3 z M18,4.4l5.6,5.6H18V4.4z M24,28H8V4h8v6c0,1.1,0.9,2,2,2h6V28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 22H22V24H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 16H22V18H10z" }), children);
188
333
  });
189
334
  if (process.env.NODE_ENV !== "production") Document.propTypes = require_iconPropTypes.iconPropTypes;
190
- const DocumentAdd = react.default.forwardRef(function DocumentAdd({ children, size = 16, ...rest }, ref) {
191
- return react.default.createElement(require_Icon_js, {
335
+ const DocumentAdd = /* @__PURE__ */ react.default.forwardRef(function DocumentAdd({ children, size = 16, ...rest }, ref) {
336
+ return react.default.createElement(require_Icon.Icon, {
192
337
  width: size,
193
338
  height: size,
194
339
  ref,
@@ -199,8 +344,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
199
344
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 24 26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26 30 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v4h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" }), children);
200
345
  });
201
346
  if (process.env.NODE_ENV !== "production") DocumentAdd.propTypes = require_iconPropTypes.iconPropTypes;
202
- const DocumentAttachment = react.default.forwardRef(function DocumentAttachment({ children, size = 16, ...rest }, ref) {
203
- return react.default.createElement(require_Icon_js, {
347
+ const DocumentAttachment = /* @__PURE__ */ react.default.forwardRef(function DocumentAttachment({ children, size = 16, ...rest }, ref) {
348
+ return react.default.createElement(require_Icon.Icon, {
204
349
  width: size,
205
350
  height: size,
206
351
  ref,
@@ -211,8 +356,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
211
356
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H11a2.0023,2.0023,0,0,1-2-2V22h2v6H26V6H17V4h9a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 10H24V12H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 15H24V17H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 20H24V22H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,19a5.0055,5.0055,0,0,1-5-5V3H6V14a3,3,0,0,0,6,0V5a1,1,0,0,0-2,0V15H8V5a3,3,0,0,1,6,0v9A5.0055,5.0055,0,0,1,9,19Z" }), children);
212
357
  });
213
358
  if (process.env.NODE_ENV !== "production") DocumentAttachment.propTypes = require_iconPropTypes.iconPropTypes;
214
- const DocumentAudio = react.default.forwardRef(function DocumentAudio({ children, size = 16, ...rest }, ref) {
215
- return react.default.createElement(require_Icon_js, {
359
+ const DocumentAudio = /* @__PURE__ */ react.default.forwardRef(function DocumentAudio({ children, size = 16, ...rest }, ref) {
360
+ return react.default.createElement(require_Icon.Icon, {
216
361
  width: size,
217
362
  height: size,
218
363
  ref,
@@ -223,8 +368,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
223
368
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,31a.9987.9987,0,0,1-.6245-.2192L23.6494,27H20a1,1,0,0,1-1-1V21a1,1,0,0,1,1-1h3.6494l4.7261-3.7808A1,1,0,0,1,30,17V30a1,1,0,0,1-1,1Zm-8-6h3a1,1,0,0,1,.6245.2192L28,27.9194V19.0806l-3.3755,2.7A1,1,0,0,1,24,22H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" }), children);
224
369
  });
225
370
  if (process.env.NODE_ENV !== "production") DocumentAudio.propTypes = require_iconPropTypes.iconPropTypes;
226
- const DocumentBlank = react.default.forwardRef(function DocumentBlank({ children, size = 16, ...rest }, ref) {
227
- return react.default.createElement(require_Icon_js, {
371
+ const DocumentBlank = /* @__PURE__ */ react.default.forwardRef(function DocumentBlank({ children, size = 16, ...rest }, ref) {
372
+ return react.default.createElement(require_Icon.Icon, {
228
373
  width: size,
229
374
  height: size,
230
375
  ref,
@@ -235,8 +380,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
235
380
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.7,9.3l-7-7A.9078.9078,0,0,0,18,2H8A2.0059,2.0059,0,0,0,6,4V28a2.0059,2.0059,0,0,0,2,2H24a2.0059,2.0059,0,0,0,2-2V10A.9078.9078,0,0,0,25.7,9.3ZM18,4.4,23.6,10H18ZM24,28H8V4h8v6a2.0059,2.0059,0,0,0,2,2h6Z" }), children);
236
381
  });
237
382
  if (process.env.NODE_ENV !== "production") DocumentBlank.propTypes = require_iconPropTypes.iconPropTypes;
238
- const DocumentComment = react.default.forwardRef(function DocumentComment({ children, size = 16, ...rest }, ref) {
239
- return react.default.createElement(require_Icon_js, {
383
+ const DocumentComment = /* @__PURE__ */ react.default.forwardRef(function DocumentComment({ children, size = 16, ...rest }, ref) {
384
+ return react.default.createElement(require_Icon.Icon, {
240
385
  width: size,
241
386
  height: size,
242
387
  ref,
@@ -253,8 +398,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
253
398
  }), children);
254
399
  });
255
400
  if (process.env.NODE_ENV !== "production") DocumentComment.propTypes = require_iconPropTypes.iconPropTypes;
256
- const DocumentConfiguration = react.default.forwardRef(function DocumentConfiguration({ children, size = 16, ...rest }, ref) {
257
- return react.default.createElement(require_Icon_js, {
401
+ const DocumentConfiguration = /* @__PURE__ */ react.default.forwardRef(function DocumentConfiguration({ children, size = 16, ...rest }, ref) {
402
+ return react.default.createElement(require_Icon.Icon, {
258
403
  width: size,
259
404
  height: size,
260
405
  ref,
@@ -271,8 +416,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
271
416
  }), children);
272
417
  });
273
418
  if (process.env.NODE_ENV !== "production") DocumentConfiguration.propTypes = require_iconPropTypes.iconPropTypes;
274
- const DocumentDownload = react.default.forwardRef(function DocumentDownload({ children, size = 16, ...rest }, ref) {
275
- return react.default.createElement(require_Icon_js, {
419
+ const DocumentDownload = /* @__PURE__ */ react.default.forwardRef(function DocumentDownload({ children, size = 16, ...rest }, ref) {
420
+ return react.default.createElement(require_Icon.Icon, {
276
421
  width: size,
277
422
  height: size,
278
423
  ref,
@@ -283,8 +428,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
283
428
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 25 28.586 23.586 26 26.172 26 18 24 18 24 26.172 21.414 23.586 20 25 25 30 30 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2H18ZM18,4.4,23.6,10H18Z" }), children);
284
429
  });
285
430
  if (process.env.NODE_ENV !== "production") DocumentDownload.propTypes = require_iconPropTypes.iconPropTypes;
286
- const DocumentEpdf = react.default.forwardRef(function DocumentEpdf({ children, size = 16, ...rest }, ref) {
287
- return react.default.createElement(require_Icon_js, {
431
+ const DocumentEpdf = /* @__PURE__ */ react.default.forwardRef(function DocumentEpdf({ children, size = 16, ...rest }, ref) {
432
+ return react.default.createElement(require_Icon.Icon, {
288
433
  width: size,
289
434
  height: size,
290
435
  ref,
@@ -295,8 +440,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
295
440
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,26V22a2.0023,2.0023,0,0,0-2-2H22a2.0023,2.0023,0,0,0-2,2v6a2.0077,2.0077,0,0,0,2,2h5V28H22V26Zm-6-4h4v2H22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.707,9.293l-7-7A1,1,0,0,0,18,2H8A2.002,2.002,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2h8V28H8V4h8v6a2.002,2.002,0,0,0,2,2h6v4h2V10A1,1,0,0,0,25.707,9.293ZM18,4.4141,23.5859,10H18Z" }), children);
296
441
  });
297
442
  if (process.env.NODE_ENV !== "production") DocumentEpdf.propTypes = require_iconPropTypes.iconPropTypes;
298
- const DocumentExport = react.default.forwardRef(function DocumentExport({ children, size = 16, ...rest }, ref) {
299
- return react.default.createElement(require_Icon_js, {
443
+ const DocumentExport = /* @__PURE__ */ react.default.forwardRef(function DocumentExport({ children, size = 16, ...rest }, ref) {
444
+ return react.default.createElement(require_Icon.Icon, {
300
445
  width: size,
301
446
  height: size,
302
447
  ref,
@@ -307,8 +452,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
307
452
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 21 26.17 21 23.59 23.59 25 25 30 20 25 15 23.59 16.41 26.17 19 13 19 13 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,14V10a1,1,0,0,0-.29-.71l-7-7A1,1,0,0,0,14,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V26H20v2H4V4h8v6a2,2,0,0,0,2,2h6v2Zm-8-4V4.41L19.59,10Z" }), children);
308
453
  });
309
454
  if (process.env.NODE_ENV !== "production") DocumentExport.propTypes = require_iconPropTypes.iconPropTypes;
310
- const DocumentHorizontal = react.default.forwardRef(function DocumentHorizontal({ children, size = 16, ...rest }, ref) {
311
- return react.default.createElement(require_Icon_js, {
455
+ const DocumentHorizontal = /* @__PURE__ */ react.default.forwardRef(function DocumentHorizontal({ children, size = 16, ...rest }, ref) {
456
+ return react.default.createElement(require_Icon.Icon, {
312
457
  width: size,
313
458
  height: size,
314
459
  ref,
@@ -319,8 +464,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
319
464
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6H4A2.0023,2.0023,0,0,0,2,8V24a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V8A2.0023,2.0023,0,0,0,28,6ZM20,24H12V22a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm8,0H22V22a3,3,0,0,0-3-3H13a3,3,0,0,0-3,3v2H4V8H28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,18a4,4,0,1,0-4-4A4,4,0,0,0,16,18Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,16,12Z" }), children);
320
465
  });
321
466
  if (process.env.NODE_ENV !== "production") DocumentHorizontal.propTypes = require_iconPropTypes.iconPropTypes;
322
- const DocumentImport = react.default.forwardRef(function DocumentImport({ children, size = 16, ...rest }, ref) {
323
- return react.default.createElement(require_Icon_js, {
467
+ const DocumentImport = /* @__PURE__ */ react.default.forwardRef(function DocumentImport({ children, size = 16, ...rest }, ref) {
468
+ return react.default.createElement(require_Icon.Icon, {
324
469
  width: size,
325
470
  height: size,
326
471
  ref,
@@ -331,8 +476,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
331
476
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 19 14.83 19 17.41 16.41 16 15 11 20 16 25 17.41 23.59 14.83 21 28 21 28 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14V10a1,1,0,0,0-.29-.71l-7-7A1,1,0,0,0,16,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V26H22v2H6V4h8v6a2,2,0,0,0,2,2h6v2Zm-8-4V4.41L21.59,10Z" }), children);
332
477
  });
333
478
  if (process.env.NODE_ENV !== "production") DocumentImport.propTypes = require_iconPropTypes.iconPropTypes;
334
- const DocumentMultiple_01 = react.default.forwardRef(function DocumentMultiple_01({ children, size = 16, ...rest }, ref) {
335
- return react.default.createElement(require_Icon_js, {
479
+ const DocumentMultiple_01 = /* @__PURE__ */ react.default.forwardRef(function DocumentMultiple_01({ children, size = 16, ...rest }, ref) {
480
+ return react.default.createElement(require_Icon.Icon, {
336
481
  width: size,
337
482
  height: size,
338
483
  ref,
@@ -343,8 +488,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
343
488
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H4V26H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 4H8V28H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 22H26V24H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 16H26V18H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7,9.3l-7-7C22.5,2.1,22.3,2,22,2H12c-1.1,0-2,0.9-2,2v24c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V10 C30,9.7,29.9,9.5,29.7,9.3z M22,4.4l5.6,5.6H22V4.4z M28,28H12V4h8v6c0,1.1,0.9,2,2,2h6V28z" }), children);
344
489
  });
345
490
  if (process.env.NODE_ENV !== "production") DocumentMultiple_01.propTypes = require_iconPropTypes.iconPropTypes;
346
- const DocumentMultiple_02 = react.default.forwardRef(function DocumentMultiple_02({ children, size = 16, ...rest }, ref) {
347
- return react.default.createElement(require_Icon_js, {
491
+ const DocumentMultiple_02 = /* @__PURE__ */ react.default.forwardRef(function DocumentMultiple_02({ children, size = 16, ...rest }, ref) {
492
+ return react.default.createElement(require_Icon.Icon, {
348
493
  width: size,
349
494
  height: size,
350
495
  ref,
@@ -355,8 +500,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
355
500
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,31H6c-1.1,0-2-0.9-2-2V12h2v17h12V31z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,27H10c-1.1,0-2-0.9-2-2V8h2v17h12V27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 16H24V18H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.7,9.3l-7-7C20.5,2.1,20.3,2,20,2h-6c-1.1,0-2,0.9-2,2v17c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V10 C28,9.7,27.9,9.5,27.7,9.3z M20,4.4l5.6,5.6H20V4.4z M26,21H14V4h4v6c0,1.1,0.9,2,2,2h6V21z" }), children);
356
501
  });
357
502
  if (process.env.NODE_ENV !== "production") DocumentMultiple_02.propTypes = require_iconPropTypes.iconPropTypes;
358
- const DocumentPdf = react.default.forwardRef(function DocumentPdf({ children, size = 16, ...rest }, ref) {
359
- return react.default.createElement(require_Icon_js, {
503
+ const DocumentPdf = /* @__PURE__ */ react.default.forwardRef(function DocumentPdf({ children, size = 16, ...rest }, ref) {
504
+ return react.default.createElement(require_Icon.Icon, {
360
505
  width: size,
361
506
  height: size,
362
507
  ref,
@@ -367,8 +512,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
367
512
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 18 30 16 24 16 24 26 26 26 26 22 29 22 29 20 26 20 26 18 30 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,26H15V16h4a3.0033,3.0033,0,0,1,3,3v4A3.0033,3.0033,0,0,1,19,26Zm-2-2h2a1.0011,1.0011,0,0,0,1-1V19a1.0011,1.0011,0,0,0-1-1H17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,16H6V26H8V23h3a2.0027,2.0027,0,0,0,2-2V18A2.0023,2.0023,0,0,0,11,16ZM8,21V18h3l.001,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,14V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,14,2H4A2.0059,2.0059,0,0,0,2,4V28a2,2,0,0,0,2,2H20V28H4V4h8v6a2.0059,2.0059,0,0,0,2,2h6v2Zm-8-4V4.4L19.6,10Z" }), children);
368
513
  });
369
514
  if (process.env.NODE_ENV !== "production") DocumentPdf.propTypes = require_iconPropTypes.iconPropTypes;
370
- const DocumentPreliminary = react.default.forwardRef(function DocumentPreliminary({ children, size = 16, ...rest }, ref) {
371
- return react.default.createElement(require_Icon_js, {
515
+ const DocumentPreliminary = /* @__PURE__ */ react.default.forwardRef(function DocumentPreliminary({ children, size = 16, ...rest }, ref) {
516
+ return react.default.createElement(require_Icon.Icon, {
372
517
  width: size,
373
518
  height: size,
374
519
  ref,
@@ -379,8 +524,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
379
524
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,24,30Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,24,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 22H16V24H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H18V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H6V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2H16ZM16,4.4,21.6,10H16Z" }), children);
380
525
  });
381
526
  if (process.env.NODE_ENV !== "production") DocumentPreliminary.propTypes = require_iconPropTypes.iconPropTypes;
382
- const DocumentProcessor = react.default.forwardRef(function DocumentProcessor({ children, size = 16, ...rest }, ref) {
383
- return react.default.createElement(require_Icon_js, {
527
+ const DocumentProcessor = /* @__PURE__ */ react.default.forwardRef(function DocumentProcessor({ children, size = 16, ...rest }, ref) {
528
+ return react.default.createElement(require_Icon.Icon, {
384
529
  width: size,
385
530
  height: size,
386
531
  ref,
@@ -391,8 +536,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
391
536
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,28v2h-2c-1.1025,0-2-.8975-2-2v-2h2v2h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,26h2v2c0,1.1025-.8975,2-2,2h-2v-2h2v-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,21v-2h2c1.1025,0,2,.8975,2,2v2h-2v-2h-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,23h-2v-2c0-1.1025.8975-2,2-2h2v2h-2v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,28h-6V4h8v6c0,1.1001.8999,2,2,2h6v4h2v-6c0-.2998-.1001-.5-.3-.7002l-7-7c-.2-.1997-.3999-.2998-.7-.2998h-10c-1.1001,0-2,.8999-2,2v24c0,1.1001.8999,2,2,2h6v-2ZM18,4.3999l5.6001,5.6001h-5.6001v-5.6001Z" }), children);
392
537
  });
393
538
  if (process.env.NODE_ENV !== "production") DocumentProcessor.propTypes = require_iconPropTypes.iconPropTypes;
394
- const DocumentProtected = react.default.forwardRef(function DocumentProtected({ children, size = 16, ...rest }, ref) {
395
- return react.default.createElement(require_Icon_js, {
539
+ const DocumentProtected = /* @__PURE__ */ react.default.forwardRef(function DocumentProtected({ children, size = 16, ...rest }, ref) {
540
+ return react.default.createElement(require_Icon.Icon, {
396
541
  width: size,
397
542
  height: size,
398
543
  ref,
@@ -403,8 +548,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
403
548
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,21V18a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v5a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V23A2.0025,2.0025,0,0,0,28,21Zm-6-3a2,2,0,0,1,4,0v3H22ZM20,28V23h8v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.499,9.085,16.707,2.293A1,1,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2h8V28H6V4h8v6a2.0023,2.0023,0,0,0,2,2h6.292a1.7075,1.7075,0,0,0,1.207-2.915ZM16,10V4.4141L21.5854,10Z" }), children);
404
549
  });
405
550
  if (process.env.NODE_ENV !== "production") DocumentProtected.propTypes = require_iconPropTypes.iconPropTypes;
406
- const DocumentRequirements = react.default.forwardRef(function DocumentRequirements({ children, size = 16, ...rest }, ref) {
407
- return react.default.createElement(require_Icon_js, {
551
+ const DocumentRequirements = /* @__PURE__ */ react.default.forwardRef(function DocumentRequirements({ children, size = 16, ...rest }, ref) {
552
+ return react.default.createElement(require_Icon.Icon, {
408
553
  width: size,
409
554
  height: size,
410
555
  ref,
@@ -427,8 +572,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
427
572
  }), children);
428
573
  });
429
574
  if (process.env.NODE_ENV !== "production") DocumentRequirements.propTypes = require_iconPropTypes.iconPropTypes;
430
- const DocumentSecurity = react.default.forwardRef(function DocumentSecurity({ children, size = 16, ...rest }, ref) {
431
- return react.default.createElement(require_Icon_js, {
575
+ const DocumentSecurity = /* @__PURE__ */ react.default.forwardRef(function DocumentSecurity({ children, size = 16, ...rest }, ref) {
576
+ return react.default.createElement(require_Icon.Icon, {
432
577
  width: size,
433
578
  height: size,
434
579
  ref,
@@ -439,8 +584,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
439
584
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30l-2.1387-1.0127A5.0216,5.0216,0,0,1,18,24.4678V18H28v6.4678a5.0216,5.0216,0,0,1-2.8613,4.52ZM20,20v4.4678a3.012,3.012,0,0,0,1.7168,2.7109L23,27.7861l1.2832-.6074A3.012,3.012,0,0,0,26,24.4678V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H6V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2H16ZM16,4.4,21.6,10H16Z" }), children);
440
585
  });
441
586
  if (process.env.NODE_ENV !== "production") DocumentSecurity.propTypes = require_iconPropTypes.iconPropTypes;
442
- const DocumentSigned = react.default.forwardRef(function DocumentSigned({ children, size = 16, ...rest }, ref) {
443
- return react.default.createElement(require_Icon_js, {
587
+ const DocumentSigned = /* @__PURE__ */ react.default.forwardRef(function DocumentSigned({ children, size = 16, ...rest }, ref) {
588
+ return react.default.createElement(require_Icon.Icon, {
444
589
  width: size,
445
590
  height: size,
446
591
  ref,
@@ -455,8 +600,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
455
600
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H20V8H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 14H14V16H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 24H12V26H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2v9H22V4H6V28h6Z" }), children);
456
601
  });
457
602
  if (process.env.NODE_ENV !== "production") DocumentSigned.propTypes = require_iconPropTypes.iconPropTypes;
458
- const DocumentSketch = react.default.forwardRef(function DocumentSketch({ children, size = 16, ...rest }, ref) {
459
- return react.default.createElement(require_Icon_js, {
603
+ const DocumentSketch = /* @__PURE__ */ react.default.forwardRef(function DocumentSketch({ children, size = 16, ...rest }, ref) {
604
+ return react.default.createElement(require_Icon.Icon, {
460
605
  width: size,
461
606
  height: size,
462
607
  ref,
@@ -467,8 +612,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
467
612
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,20l1.4272,1.9028L23,26.9629l-4.4272-5.06L20,20h6m1-2H19l-3,4,7,8,7-8-3-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" }), children);
468
613
  });
469
614
  if (process.env.NODE_ENV !== "production") DocumentSketch.propTypes = require_iconPropTypes.iconPropTypes;
470
- const DocumentSubject = react.default.forwardRef(function DocumentSubject({ children, size = 16, ...rest }, ref) {
471
- return react.default.createElement(require_Icon_js, {
615
+ const DocumentSubject = /* @__PURE__ */ react.default.forwardRef(function DocumentSubject({ children, size = 16, ...rest }, ref) {
616
+ return react.default.createElement(require_Icon.Icon, {
472
617
  width: size,
473
618
  height: size,
474
619
  ref,
@@ -491,8 +636,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
491
636
  }), children);
492
637
  });
493
638
  if (process.env.NODE_ENV !== "production") DocumentSubject.propTypes = require_iconPropTypes.iconPropTypes;
494
- const DocumentSubtract = react.default.forwardRef(function DocumentSubtract({ children, size = 16, ...rest }, ref) {
495
- return react.default.createElement(require_Icon_js, {
639
+ const DocumentSubtract = /* @__PURE__ */ react.default.forwardRef(function DocumentSubtract({ children, size = 16, ...rest }, ref) {
640
+ return react.default.createElement(require_Icon.Icon, {
496
641
  width: size,
497
642
  height: size,
498
643
  ref,
@@ -503,8 +648,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
503
648
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 24H30V26H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v8h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" }), children);
504
649
  });
505
650
  if (process.env.NODE_ENV !== "production") DocumentSubtract.propTypes = require_iconPropTypes.iconPropTypes;
506
- const DocumentTasks = react.default.forwardRef(function DocumentTasks({ children, size = 16, ...rest }, ref) {
507
- return react.default.createElement(require_Icon_js, {
651
+ const DocumentTasks = /* @__PURE__ */ react.default.forwardRef(function DocumentTasks({ children, size = 16, ...rest }, ref) {
652
+ return react.default.createElement(require_Icon.Icon, {
508
653
  width: size,
509
654
  height: size,
510
655
  ref,
@@ -515,8 +660,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
515
660
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 27.18 19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v6h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h7ZM18,4.4,23.6,10H18Z" }), children);
516
661
  });
517
662
  if (process.env.NODE_ENV !== "production") DocumentTasks.propTypes = require_iconPropTypes.iconPropTypes;
518
- const DocumentUnknown = react.default.forwardRef(function DocumentUnknown({ children, size = 16, ...rest }, ref) {
519
- return react.default.createElement(require_Icon_js, {
663
+ const DocumentUnknown = /* @__PURE__ */ react.default.forwardRef(function DocumentUnknown({ children, size = 16, ...rest }, ref) {
664
+ return react.default.createElement(require_Icon.Icon, {
520
665
  width: size,
521
666
  height: size,
522
667
  ref,
@@ -531,8 +676,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
531
676
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,25H8V21h2a2,2,0,0,0,0-4H8a2.0023,2.0023,0,0,0-2,2v.5H4V19a4.0045,4.0045,0,0,1,4-4h2a4,4,0,0,1,0,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.7,9.3l-7-7A.9085.9085,0,0,0,20,2H10A2.0058,2.0058,0,0,0,8,4v8h2V4h8v6a2.0058,2.0058,0,0,0,2,2h6V28H14v2H26a2.0058,2.0058,0,0,0,2-2V10A.9092.9092,0,0,0,27.7,9.3ZM20,10V4.4L25.6,10Z" }), children);
532
677
  });
533
678
  if (process.env.NODE_ENV !== "production") DocumentUnknown.propTypes = require_iconPropTypes.iconPropTypes;
534
- const DocumentUnprotected = react.default.forwardRef(function DocumentUnprotected({ children, size = 16, ...rest }, ref) {
535
- return react.default.createElement(require_Icon_js, {
679
+ const DocumentUnprotected = /* @__PURE__ */ react.default.forwardRef(function DocumentUnprotected({ children, size = 16, ...rest }, ref) {
680
+ return react.default.createElement(require_Icon.Icon, {
536
681
  width: size,
537
682
  height: size,
538
683
  ref,
@@ -543,8 +688,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
543
688
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.499,9.085,16.707,2.293A1,1,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2h8V28H6V4h8v6a2.0023,2.0023,0,0,0,2,2h6.292a1.7075,1.7075,0,0,0,1.207-2.915ZM16,10V4.4141L21.5854,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,21H22V18a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v5a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V23A2.0025,2.0025,0,0,0,28,21Zm-8,7V23h8v5Z" }), children);
544
689
  });
545
690
  if (process.env.NODE_ENV !== "production") DocumentUnprotected.propTypes = require_iconPropTypes.iconPropTypes;
546
- const DocumentVertical = react.default.forwardRef(function DocumentVertical({ children, size = 16, ...rest }, ref) {
547
- return react.default.createElement(require_Icon_js, {
691
+ const DocumentVertical = /* @__PURE__ */ react.default.forwardRef(function DocumentVertical({ children, size = 16, ...rest }, ref) {
692
+ return react.default.createElement(require_Icon.Icon, {
548
693
  width: size,
549
694
  height: size,
550
695
  ref,
@@ -555,8 +700,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
555
700
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,14a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,16,14Zm0-6a2,2,0,1,0,2,2h0a2.0059,2.0059,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,2H8A2.0023,2.0023,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2H24a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,24,2ZM12,24V18a.9447.9447,0,0,1,1-1h6a.9447.9447,0,0,1,1,1v6H18v4H14V24Zm8,4V26a2.0058,2.0058,0,0,0,2-2V18a2.9463,2.9463,0,0,0-3-3H13a2.9463,2.9463,0,0,0-3,3v6a2.0058,2.0058,0,0,0,2,2v2H8V4H24V28Z" }), children);
556
701
  });
557
702
  if (process.env.NODE_ENV !== "production") DocumentVertical.propTypes = require_iconPropTypes.iconPropTypes;
558
- const DocumentVideo = react.default.forwardRef(function DocumentVideo({ children, size = 16, ...rest }, ref) {
559
- return react.default.createElement(require_Icon_js, {
703
+ const DocumentVideo = /* @__PURE__ */ react.default.forwardRef(function DocumentVideo({ children, size = 16, ...rest }, ref) {
704
+ return react.default.createElement(require_Icon.Icon, {
560
705
  width: size,
561
706
  height: size,
562
707
  ref,
@@ -567,8 +712,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
567
712
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,19l-4,3.2V20a2.0023,2.0023,0,0,0-2-2H16a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V23.8L30,27ZM16,26V20h8l.0015,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h4ZM18,4.4,23.6,10H18Z" }), children);
568
713
  });
569
714
  if (process.env.NODE_ENV !== "production") DocumentVideo.propTypes = require_iconPropTypes.iconPropTypes;
570
- const DocumentView = react.default.forwardRef(function DocumentView({ children, size = 16, ...rest }, ref) {
571
- return react.default.createElement(require_Icon_js, {
715
+ const DocumentView = /* @__PURE__ */ react.default.forwardRef(function DocumentView({ children, size = 16, ...rest }, ref) {
716
+ return react.default.createElement(require_Icon.Icon, {
572
717
  width: size,
573
718
  height: size,
574
719
  ref,
@@ -586,8 +731,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
586
731
  }), /* @__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: "M12,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v4h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h4ZM18,4.4,23.6,10H18Z" }), children);
587
732
  });
588
733
  if (process.env.NODE_ENV !== "production") DocumentView.propTypes = require_iconPropTypes.iconPropTypes;
589
- const DocumentWordProcessor = react.default.forwardRef(function DocumentWordProcessor({ children, size = 16, ...rest }, ref) {
590
- return react.default.createElement(require_Icon_js, {
734
+ const DocumentWordProcessor = /* @__PURE__ */ react.default.forwardRef(function DocumentWordProcessor({ children, size = 16, ...rest }, ref) {
735
+ return react.default.createElement(require_Icon.Icon, {
591
736
  width: size,
592
737
  height: size,
593
738
  ref,
@@ -598,8 +743,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
598
743
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.3 20 27.391 28.611 26 20 24 20 22.609 28.611 21.7 20 20 20 21.36 30 23.64 30 25 21.626 26.36 30 28.64 30 30 20 28.3 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.707,9.293l-7-7A1,1,0,0,0,18,2H8A2.002,2.002,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2h8V28H8V4h8v6a2.002,2.002,0,0,0,2,2h6v4h2V10A1,1,0,0,0,25.707,9.293ZM18,4.4141,23.5859,10H18Z" }), children);
599
744
  });
600
745
  if (process.env.NODE_ENV !== "production") DocumentWordProcessor.propTypes = require_iconPropTypes.iconPropTypes;
601
- const DocumentWordProcessorReference = react.default.forwardRef(function DocumentWordProcessorReference({ children, size = 16, ...rest }, ref) {
602
- return react.default.createElement(require_Icon_js, {
746
+ const DocumentWordProcessorReference = /* @__PURE__ */ react.default.forwardRef(function DocumentWordProcessorReference({ children, size = 16, ...rest }, ref) {
747
+ return react.default.createElement(require_Icon.Icon, {
603
748
  width: size,
604
749
  height: size,
605
750
  ref,
@@ -610,8 +755,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
610
755
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.3 20 27.391 28.611 26 20 24 20 22.609 28.611 21.7 20 20 20 21.36 30 23.64 30 25 21.626 26.36 30 28.64 30 30 20 28.3 20z" }), /* @__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: "M25.707,9.293l-7-7A1,1,0,0,0,18,2H8A2.002,2.002,0,0,0,6,4V16H8V4h8v6a2.002,2.002,0,0,0,2,2h6v4h2V10A1,1,0,0,0,25.707,9.293ZM18,10V4.4141L23.5859,10Z" }), children);
611
756
  });
612
757
  if (process.env.NODE_ENV !== "production") DocumentWordProcessorReference.propTypes = require_iconPropTypes.iconPropTypes;
613
- const DocumentSentiment = react.default.forwardRef(function DocumentSentiment({ children, size = 16, ...rest }, ref) {
614
- return react.default.createElement(require_Icon_js, {
758
+ const DocumentSentiment = /* @__PURE__ */ react.default.forwardRef(function DocumentSentiment({ children, size = 16, ...rest }, ref) {
759
+ return react.default.createElement(require_Icon.Icon, {
615
760
  width: size,
616
761
  height: size,
617
762
  ref,
@@ -622,8 +767,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
622
767
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.303,16a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,25l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.7,9.3l-7-7A.9078.9078,0,0,0,18,2H8A2.0059,2.0059,0,0,0,6,4V28a2.0059,2.0059,0,0,0,2,2H24a2.0059,2.0059,0,0,0,2-2V10A.9078.9078,0,0,0,25.7,9.3ZM18,4.4,23.6,10H18ZM24,28H8V4h8v6a2.0059,2.0059,0,0,0,2,2h6Z" }), children);
623
768
  });
624
769
  if (process.env.NODE_ENV !== "production") DocumentSentiment.propTypes = require_iconPropTypes.iconPropTypes;
625
- const DocumentSet = react.default.forwardRef(function DocumentSet({ children, size = 16, ...rest }, ref) {
626
- return react.default.createElement(require_Icon_js, {
770
+ const DocumentSet = /* @__PURE__ */ react.default.forwardRef(function DocumentSet({ children, size = 16, ...rest }, ref) {
771
+ return react.default.createElement(require_Icon.Icon, {
627
772
  width: size,
628
773
  height: size,
629
774
  ref,
@@ -634,8 +779,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
634
779
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4h8v6c0,1.1.9,2,2,2h6v6h2v-8c0-.3-.1-.5-.3-.7l-7-7c-.2-.2-.4-.3-.7-.3h-10c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h4v-2h-4V4ZM22,4.4l5.6,5.6h-5.6v-5.6ZM30,22l-8,8-4-4,1.4-1.4,2.6,2.6,6.6-6.6,1.4,1.4ZM4,27h-2V7h2v20ZM8,28h-2V4h2v24Z" }), children);
635
780
  });
636
781
  if (process.env.NODE_ENV !== "production") DocumentSet.propTypes = require_iconPropTypes.iconPropTypes;
637
- const Documentation = react.default.forwardRef(function Documentation({ children, size = 16, ...rest }, ref) {
638
- return react.default.createElement(require_Icon_js, {
782
+ const Documentation = /* @__PURE__ */ react.default.forwardRef(function Documentation({ children, size = 16, ...rest }, ref) {
783
+ return react.default.createElement(require_Icon.Icon, {
639
784
  width: size,
640
785
  height: size,
641
786
  ref,
@@ -646,8 +791,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
646
791
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3164,9.4912l-8.0041-6.997c-.3644-.3186-.8322-.4942-1.3163-.4942H4c-1.1046,0-2,.8954-2,2v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V10.997c0-.577-.2493-1.126-.6837-1.5058ZM28,13v15H4V4h14v7c0,1.1046.8954,2,2,2l8,.0012M6,14h4.3682c3.1294,0,5.1758,2.0088,5.1758,5.998s-2.0464,6.002-5.1758,6.002h-4.3682v-12ZM10.3682,23.9883c1.6851,0,2.7686-.998,2.7686-3.0439v-1.8887c0-2.0469-1.0835-3.0439-2.7686-3.0439h-2.0981v7.9766h2.0981ZM17,21.4941c0-2.8711,1.5991-4.6768,4.1611-4.6768,2.5796,0,4.1792,1.8057,4.1792,4.6768,0,2.8896-1.5996,4.7119-4.1792,4.7119-2.562,0-4.1611-1.8223-4.1611-4.7119ZM23.0356,22.3369v-1.668c0-1.3408-.7222-2.0811-1.8745-2.0811-1.1348,0-1.8569.7402-1.8569,2.0811v1.668c0,1.3584.7222,2.0986,1.8569,2.0986,1.1523,0,1.8745-.7402,1.8745-2.0986Z" }), children);
647
792
  });
648
793
  if (process.env.NODE_ENV !== "production") Documentation.propTypes = require_iconPropTypes.iconPropTypes;
649
- const DogWalker = react.default.forwardRef(function DogWalker({ children, size = 16, ...rest }, ref) {
650
- return react.default.createElement(require_Icon_js, {
794
+ const DogWalker = /* @__PURE__ */ react.default.forwardRef(function DogWalker({ children, size = 16, ...rest }, ref) {
795
+ return react.default.createElement(require_Icon.Icon, {
651
796
  width: size,
652
797
  height: size,
653
798
  ref,
@@ -658,8 +803,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
658
803
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20H22V30H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 23H6V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V26a1.0011,1.0011,0,0,0-1-1H11v5H9V23h4a3.0033,3.0033,0,0,1,3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5,22A3.5041,3.5041,0,0,1,4,18.5V17H2V15H6v3.5a1.5,1.5,0,0,0,3,0V15h4v2H11v1.5A3.5041,3.5041,0,0,1,7.5,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,10H21.354a2.9861,2.9861,0,0,0-2.7856,1.8857l-1.4419,3.6055-3.6079,4.51,1.562,1.249,3.7-4.625,1.645-3.9961A.9949.9949,0,0,1,21.354,12H27a1.0009,1.0009,0,0,1,1,1v7H25V30h2V22h1a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,27,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,9Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,3Z" }), children);
659
804
  });
660
805
  if (process.env.NODE_ENV !== "production") DogWalker.propTypes = require_iconPropTypes.iconPropTypes;
661
- const DotMark = react.default.forwardRef(function DotMark({ children, size = 16, ...rest }, ref) {
662
- return react.default.createElement(require_Icon_js, {
806
+ const DotMark = /* @__PURE__ */ react.default.forwardRef(function DotMark({ children, size = 16, ...rest }, ref) {
807
+ return react.default.createElement(require_Icon.Icon, {
663
808
  width: size,
664
809
  height: size,
665
810
  ref,
@@ -674,8 +819,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
674
819
  }), children);
675
820
  });
676
821
  if (process.env.NODE_ENV !== "production") DotMark.propTypes = require_iconPropTypes.iconPropTypes;
677
- const DoubleAxisChartBar = react.default.forwardRef(function DoubleAxisChartBar({ children, size = 16, ...rest }, ref) {
678
- return react.default.createElement(require_Icon_js, {
822
+ const DoubleAxisChartBar = /* @__PURE__ */ react.default.forwardRef(function DoubleAxisChartBar({ children, size = 16, ...rest }, ref) {
823
+ return react.default.createElement(require_Icon.Icon, {
679
824
  width: size,
680
825
  height: size,
681
826
  ref,
@@ -686,8 +831,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
686
831
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4v-2H4c-1.1047,0-2,.8955-2,2v24c0,1.1045.8953,2,2,2h26v-2H4v-3h22v-7H4v-4h14v-7H4v-3h26ZM24,20v3H4v-3h20ZM16,9v3H4v-3h12Z" }), children);
687
832
  });
688
833
  if (process.env.NODE_ENV !== "production") DoubleAxisChartBar.propTypes = require_iconPropTypes.iconPropTypes;
689
- const DoubleAxisChartColumn = react.default.forwardRef(function DoubleAxisChartColumn({ children, size = 16, ...rest }, ref) {
690
- return react.default.createElement(require_Icon_js, {
834
+ const DoubleAxisChartColumn = /* @__PURE__ */ react.default.forwardRef(function DoubleAxisChartColumn({ children, size = 16, ...rest }, ref) {
835
+ return react.default.createElement(require_Icon.Icon, {
691
836
  width: size,
692
837
  height: size,
693
838
  ref,
@@ -698,8 +843,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
698
843
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2v26h-3V6h-7v22h-4v-14h-7v14h-3V2h-2v26c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V2h-2ZM12,28h-3v-12h3v12ZM23,28h-3V8h3v20Z" }), children);
699
844
  });
700
845
  if (process.env.NODE_ENV !== "production") DoubleAxisChartColumn.propTypes = require_iconPropTypes.iconPropTypes;
701
- const DoubleInteger = react.default.forwardRef(function DoubleInteger({ children, size = 16, ...rest }, ref) {
702
- return react.default.createElement(require_Icon_js, {
846
+ const DoubleInteger = /* @__PURE__ */ react.default.forwardRef(function DoubleInteger({ children, size = 16, ...rest }, ref) {
847
+ return react.default.createElement(require_Icon.Icon, {
703
848
  width: size,
704
849
  height: size,
705
850
  ref,
@@ -710,8 +855,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
710
855
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,8V6H13V2H11V6H8V2H6V6H2V8H6v3H2v2H6v4H8V13h3v4h2V13h4V11H13V8Zm-6,3H8V8h3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,21V19H26V15H24v4H21V15H19v4H15v2h4v3H15v2h4v4h2V26h3v4h2V26h4V24H26V21Zm-6,3H21V21h3Z" }), children);
711
856
  });
712
857
  if (process.env.NODE_ENV !== "production") DoubleInteger.propTypes = require_iconPropTypes.iconPropTypes;
713
- const DownToBottom = react.default.forwardRef(function DownToBottom({ children, size = 16, ...rest }, ref) {
714
- return react.default.createElement(require_Icon_js, {
858
+ const DownToBottom = /* @__PURE__ */ react.default.forwardRef(function DownToBottom({ children, size = 16, ...rest }, ref) {
859
+ return react.default.createElement(require_Icon.Icon, {
715
860
  width: size,
716
861
  height: size,
717
862
  ref,
@@ -722,8 +867,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
722
867
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18 6 8 7.4 6.6 16 15.2 24.6 6.6 26 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 22H28V24H4z" }), children);
723
868
  });
724
869
  if (process.env.NODE_ENV !== "production") DownToBottom.propTypes = require_iconPropTypes.iconPropTypes;
725
- const Download = react.default.forwardRef(function Download({ children, size = 16, ...rest }, ref) {
726
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
870
+ const Download = /* @__PURE__ */ react.default.forwardRef(function Download({ children, size = 16, ...rest }, ref) {
871
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
727
872
  width: size,
728
873
  height: size,
729
874
  ref,
@@ -732,7 +877,7 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
732
877
  fill: "currentColor",
733
878
  ...rest
734
879
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 7 12.3 6.3 8.5 10.1 8.5 1 7.5 1 7.5 10.1 3.7 6.3 3 7 8 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,12v2H3v-2H2v2l0,0c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1l0,0v-2H13z" }), children);
735
- return react.default.createElement(require_Icon_js, {
880
+ return react.default.createElement(require_Icon.Icon, {
736
881
  width: size,
737
882
  height: size,
738
883
  ref,
@@ -743,8 +888,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
743
888
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,24v4H6V24H4v4H4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2h0V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 14 24.59 12.59 17 20.17 17 2 15 2 15 20.17 7.41 12.59 6 14 16 24 26 14z" }), children);
744
889
  });
745
890
  if (process.env.NODE_ENV !== "production") Download.propTypes = require_iconPropTypes.iconPropTypes;
746
- const WatsonHealthDownloadStudy = react.default.forwardRef(function WatsonHealthDownloadStudy({ children, size = 16, ...rest }, ref) {
747
- return react.default.createElement(require_Icon_js, {
891
+ const WatsonHealthDownloadStudy = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthDownloadStudy({ children, size = 16, ...rest }, ref) {
892
+ return react.default.createElement(require_Icon.Icon, {
748
893
  width: size,
749
894
  height: size,
750
895
  ref,
@@ -755,8 +900,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
755
900
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 25 28.586 23.586 26 26.172 26 18 24 18 24 26.172 21.414 23.586 20 25 25 30 30 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 14H23V16H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 10H26V12H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,18h6a3,3,0,0,1,3,3v2H16V21a1,1,0,0,0-1-1H9a1,1,0,0,0-1,1v2H6V21A3,3,0,0,1,9,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,13a4,4,0,1,0-4,4A4,4,0,0,0,16,13Zm-2,0a2,2,0,1,1-2-2A2,2,0,0,1,14,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,26H4V6H28V16h2V6a2,2,0,0,0-2-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H18Z" }), children);
756
901
  });
757
902
  if (process.env.NODE_ENV !== "production") WatsonHealthDownloadStudy.propTypes = require_iconPropTypes.iconPropTypes;
758
- const Downstream = react.default.forwardRef(function Downstream({ children, size = 16, ...rest }, ref) {
759
- return react.default.createElement(require_Icon_js, {
903
+ const Downstream = /* @__PURE__ */ react.default.forwardRef(function Downstream({ children, size = 16, ...rest }, ref) {
904
+ return react.default.createElement(require_Icon.Icon, {
760
905
  width: size,
761
906
  height: size,
762
907
  ref,
@@ -767,8 +912,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
767
912
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m5,24c-1.6567,0-3,1.3433-3,3s1.3433,3,3,3,3-1.3433,3-3-1.3433-3-3-3Zm0,4c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,24c-1.6567,0-3,1.3433-3,3s1.3433,3,3,3,3-1.3433,3-3-1.3433-3-3-3Zm0,4c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m27,24c-1.6567,0-3,1.3433-3,3s1.3433,3,3,3,3-1.3433,3-3-1.3433-3-3-3Zm0,4c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29.586,17.5859l-1.5859,1.5859v-3.1719c0-3.5542-2.6646-6.4917-6.0999-6.9355.0623-.3457.0999-.7007.0999-1.0645,0-3.3135-2.6863-6-6-6s-6,2.6865-6,6c0,.3638.0376.7188.0999,1.0645-3.4353.4438-6.0999,3.3813-6.0999,6.9355v3.1714l-1.5859-1.5854-1.4141,1.4141,4,4,4-4-1.4141-1.4141-1.5859,1.5859v-3.1719c0-2.6953,2.1479-4.8848,4.8203-4.9819.8799,1.5063,2.3945,2.5918,4.1797,2.8921v5.2617l-1.5859-1.5859-1.4141,1.4141,4,4,4-4-1.4141-1.4141-1.5859,1.5859v-5.2617c1.7852-.3003,3.2998-1.3857,4.1797-2.8921,2.6724.0972,4.8203,2.2866,4.8203,4.9819v3.1714l-1.5859-1.5854-1.4141,1.4141,4,4,4-4-1.4141-1.4141Zm-13.5859-5.5859c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z" }), children);
768
913
  });
769
914
  if (process.env.NODE_ENV !== "production") Downstream.propTypes = require_iconPropTypes.iconPropTypes;
770
- const DragHorizontal = react.default.forwardRef(function DragHorizontal({ children, size = 16, ...rest }, ref) {
771
- return react.default.createElement(require_Icon_js, {
915
+ const DragHorizontal = /* @__PURE__ */ react.default.forwardRef(function DragHorizontal({ children, size = 16, ...rest }, ref) {
916
+ return react.default.createElement(require_Icon.Icon, {
772
917
  width: size,
773
918
  height: size,
774
919
  ref,
@@ -779,8 +924,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
779
924
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 4 12 15 5.83 15 8.41 12.41 7 11 2 16 7 21 8.41 19.59 5.83 17 12 17 12 28 14 28 14 4 12 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 11 23.59 12.41 26.17 15 20 15 20 4 18 4 18 28 20 28 20 17 26.17 17 23.59 19.59 25 21 30 16 25 11z" }), children);
780
925
  });
781
926
  if (process.env.NODE_ENV !== "production") DragHorizontal.propTypes = require_iconPropTypes.iconPropTypes;
782
- const DragVertical = react.default.forwardRef(function DragVertical({ children, size = 16, ...rest }, ref) {
783
- return react.default.createElement(require_Icon_js, {
927
+ const DragVertical = /* @__PURE__ */ react.default.forwardRef(function DragVertical({ children, size = 16, ...rest }, ref) {
928
+ return react.default.createElement(require_Icon.Icon, {
784
929
  width: size,
785
930
  height: size,
786
931
  ref,
@@ -791,8 +936,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
791
936
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 15 20 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17 17 20 28 20 28 18 4 18 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 7 12.41 8.41 15 5.83 15 12 4 12 4 14 28 14 28 12 17 12 17 5.83 19.59 8.41 21 7 16 2 11 7z" }), children);
792
937
  });
793
938
  if (process.env.NODE_ENV !== "production") DragVertical.propTypes = require_iconPropTypes.iconPropTypes;
794
- const Draggable = react.default.forwardRef(function Draggable({ children, size = 16, ...rest }, ref) {
795
- return react.default.createElement(require_Icon_js, {
939
+ const Draggable = /* @__PURE__ */ react.default.forwardRef(function Draggable({ children, size = 16, ...rest }, ref) {
940
+ return react.default.createElement(require_Icon.Icon, {
796
941
  width: size,
797
942
  height: size,
798
943
  ref,
@@ -803,8 +948,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
803
948
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 6H14V10H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 6H22V10H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 14H14V18H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 14H22V18H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 22H14V26H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 22H22V26H18z" }), children);
804
949
  });
805
950
  if (process.env.NODE_ENV !== "production") Draggable.propTypes = require_iconPropTypes.iconPropTypes;
806
- const Draw = react.default.forwardRef(function Draw({ children, size = 16, ...rest }, ref) {
807
- return react.default.createElement(require_Icon_js, {
951
+ const Draw = /* @__PURE__ */ react.default.forwardRef(function Draw({ children, size = 16, ...rest }, ref) {
952
+ return react.default.createElement(require_Icon.Icon, {
808
953
  width: size,
809
954
  height: size,
810
955
  ref,
@@ -815,8 +960,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
815
960
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.14,28a3.42,3.42,0,0,1-2.42-5.85L21.86,17a1.42,1.42,0,1,0-2-2L13,21.85a3.5,3.5,0,0,1-4.85,0,3.43,3.43,0,0,1,0-4.84l8.58-8.58a1.42,1.42,0,1,0-2-2L6.41,14.7,5,13.3,13.29,5a3.43,3.43,0,0,1,4.84,4.85L9.56,18.42a1.42,1.42,0,0,0,0,2,1.45,1.45,0,0,0,2,0l6.86-6.86a3.43,3.43,0,1,1,4.85,4.84l-5.15,5.15a1.42,1.42,0,0,0,2,2l4.44-4.43L26,22.56,21.56,27A3.38,3.38,0,0,1,19.14,28Z" }), children);
816
961
  });
817
962
  if (process.env.NODE_ENV !== "production") Draw.propTypes = require_iconPropTypes.iconPropTypes;
818
- const DrillBack = react.default.forwardRef(function DrillBack({ children, size = 16, ...rest }, ref) {
819
- return react.default.createElement(require_Icon_js, {
963
+ const DrillBack = /* @__PURE__ */ react.default.forwardRef(function DrillBack({ children, size = 16, ...rest }, ref) {
964
+ return react.default.createElement(require_Icon.Icon, {
820
965
  width: size,
821
966
  height: size,
822
967
  ref,
@@ -827,8 +972,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
827
972
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 22 7.414 20.586 3.828 17 12 17 12 15 3.828 15 7.414 11.414 6 10 0 16 6 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10a5.9815,5.9815,0,0,0-4.2427,1.7573L16,16l-4.2427,4.2427A6,6,0,1,0,16,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A13.9581,13.9581,0,0,0,6.105,6.105L7.5188,7.5186a12,12,0,1,1,0,16.9628L6.105,25.895A13.9974,13.9974,0,1,0,16,2Z" }), children);
828
973
  });
829
974
  if (process.env.NODE_ENV !== "production") DrillBack.propTypes = require_iconPropTypes.iconPropTypes;
830
- const DrillDown = react.default.forwardRef(function DrillDown({ children, size = 16, ...rest }, ref) {
831
- return react.default.createElement(require_Icon_js, {
975
+ const DrillDown = /* @__PURE__ */ react.default.forwardRef(function DrillDown({ children, size = 16, ...rest }, ref) {
976
+ return react.default.createElement(require_Icon.Icon, {
832
977
  width: size,
833
978
  height: size,
834
979
  ref,
@@ -839,8 +984,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
839
984
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 6 11.414 4.586 15 8.172 15 0 17 0 17 8.172 20.586 4.586 22 6 16 12 10 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,16a5.9815,5.9815,0,0,0-1.7573-4.2427L16,16l-4.2427-4.2427A6,6,0,1,0,22,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16a13.9581,13.9581,0,0,0-4.105-9.895L24.4814,7.5188a12,12,0,1,1-16.9628,0L6.105,6.105A13.9974,13.9974,0,1,0,30,16Z" }), children);
840
985
  });
841
986
  if (process.env.NODE_ENV !== "production") DrillDown.propTypes = require_iconPropTypes.iconPropTypes;
842
- const DrillThrough = react.default.forwardRef(function DrillThrough({ children, size = 16, ...rest }, ref) {
843
- return react.default.createElement(require_Icon_js, {
987
+ const DrillThrough = /* @__PURE__ */ react.default.forwardRef(function DrillThrough({ children, size = 16, ...rest }, ref) {
988
+ return react.default.createElement(require_Icon.Icon, {
844
989
  width: size,
845
990
  height: size,
846
991
  ref,
@@ -851,8 +996,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
851
996
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12,12,0,1,0,16,4V2a14,14,0,0,1,0,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 12 4 10 8.586 10 2 3.414 3.414 2 10 8.586 10 4 12 4 12 12 4 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10v6H10a6,6,0,1,0,6-6Z" }), children);
852
997
  });
853
998
  if (process.env.NODE_ENV !== "production") DrillThrough.propTypes = require_iconPropTypes.iconPropTypes;
854
- const Drink_01 = react.default.forwardRef(function Drink_01({ children, size = 16, ...rest }, ref) {
855
- return react.default.createElement(require_Icon_js, {
999
+ const Drink_01 = /* @__PURE__ */ react.default.forwardRef(function Drink_01({ children, size = 16, ...rest }, ref) {
1000
+ return react.default.createElement(require_Icon.Icon, {
856
1001
  width: size,
857
1002
  height: size,
858
1003
  ref,
@@ -863,8 +1008,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
863
1008
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,10.4141l3-3-1.4141-1.4141-3.293,3.293c-.1875,.1875-.293,.4419-.293,.707v4h-7.0742l1.1436,16h8.8613l1.1436-16h-2.0742v-3.5859Zm-.9307,17.5859h-5.1387l-.8564-12h6.8516l-.8564,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,1h-5c-.5522,0-1,.4478-1,1v7.3706c-1.0674,.6055-3,2.1777-3,5.6294v14c0,.5527,.4478,1,1,1h5v-2h-4V15c0-3.7536,3-4.2793,3-4.2793V3h3v7h2V2c0-.5522-.4478-1-1-1Z" }), children);
864
1009
  });
865
1010
  if (process.env.NODE_ENV !== "production") Drink_01.propTypes = require_iconPropTypes.iconPropTypes;
866
- const Drink_02 = react.default.forwardRef(function Drink_02({ children, size = 16, ...rest }, ref) {
867
- return react.default.createElement(require_Icon_js, {
1011
+ const Drink_02 = /* @__PURE__ */ react.default.forwardRef(function Drink_02({ children, size = 16, ...rest }, ref) {
1012
+ return react.default.createElement(require_Icon.Icon, {
868
1013
  width: size,
869
1014
  height: size,
870
1015
  ref,
@@ -875,8 +1020,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
875
1020
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,10.4141l3-3-1.4141-1.4141-3.293,3.293c-.1875,.1875-.293,.4419-.293,.707v4h-7.0742l1.1436,16h8.8613l1.1436-16h-2.0742v-3.5859Zm-.9307,17.5859h-5.1387l-.8564-12h6.8516l-.8564,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7.0513v-3.0513c0-.5522-.4478-1-1-1h-6c-.5522,0-1,.4478-1,1v3.0513c-1.2771,1.1411-2,2.7358-2,4.4487V29c0,.5522,.4478,1,1,1h5v-2h-4V11.5c0-2.356,2-3.48,2-3.48v-3.02h4v3.02s2,1.124,2,3.48v.5h2v-.5c0-1.7129-.7229-3.3076-2-4.4487Z" }), children);
876
1021
  });
877
1022
  if (process.env.NODE_ENV !== "production") Drink_02.propTypes = require_iconPropTypes.iconPropTypes;
878
- const DriverAnalysis = react.default.forwardRef(function DriverAnalysis({ children, size = 16, ...rest }, ref) {
879
- return react.default.createElement(require_Icon_js, {
1023
+ const DriverAnalysis = /* @__PURE__ */ react.default.forwardRef(function DriverAnalysis({ children, size = 16, ...rest }, ref) {
1024
+ return react.default.createElement(require_Icon.Icon, {
880
1025
  width: size,
881
1026
  height: size,
882
1027
  ref,
@@ -891,8 +1036,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
891
1036
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15H27.91A6.0048,6.0048,0,0,0,22,10l-.022.001A9.9833,9.9833,0,0,0,4.0508,15H2v2H4.0508A9.9833,9.9833,0,0,0,21.978,21.999L22,22a6.0048,6.0048,0,0,0,5.91-5H30ZM14,8a7.9769,7.9769,0,0,1,5.7383,2.4463A6.0152,6.0152,0,0,0,16.0891,15H6.0693A8.0073,8.0073,0,0,1,14,8Zm0,16a8.0073,8.0073,0,0,1-7.9307-7h10.02a6.0152,6.0152,0,0,0,3.6492,4.5537A7.9769,7.9769,0,0,1,14,24Zm8-4a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,20Z" }), children);
892
1037
  });
893
1038
  if (process.env.NODE_ENV !== "production") DriverAnalysis.propTypes = require_iconPropTypes.iconPropTypes;
894
- const Drone = react.default.forwardRef(function Drone({ children, size = 16, ...rest }, ref) {
895
- return react.default.createElement(require_Icon_js, {
1039
+ const Drone = /* @__PURE__ */ react.default.forwardRef(function Drone({ children, size = 16, ...rest }, ref) {
1040
+ return react.default.createElement(require_Icon.Icon, {
896
1041
  width: size,
897
1042
  height: size,
898
1043
  ref,
@@ -903,8 +1048,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
903
1048
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,12a5,5,0,1,1,5-5H10a3,3,0,1,0-3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,12V10a3,3,0,1,0-3-3H20a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,30A5,5,0,0,1,7,20v2a3,3,0,1,0,3,3h2A5.0055,5.0055,0,0,1,7,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30a5.0055,5.0055,0,0,1-5-5h2a3,3,0,1,0,3-3V20a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,18.5859V13.4141L25.707,7.707a1,1,0,1,0-1.414-1.414l-4.4995,4.5a3.9729,3.9729,0,0,0-7.587,0L7.707,6.293a.9994.9994,0,0,0-1.414,0h0a.9994.9994,0,0,0,0,1.414L12,13.4141v5.1718L6.293,24.293a.9994.9994,0,0,0,0,1.414h0a.9994.9994,0,0,0,1.414,0l4.5-4.5a3.9729,3.9729,0,0,0,7.587,0l4.4995,4.5a1,1,0,0,0,1.414-1.414ZM18,20a2,2,0,0,1-4,0V12a2,2,0,0,1,4,0Z" }), children);
904
1049
  });
905
1050
  if (process.env.NODE_ENV !== "production") Drone.propTypes = require_iconPropTypes.iconPropTypes;
906
- const DroneDelivery = react.default.forwardRef(function DroneDelivery({ children, size = 16, ...rest }, ref) {
907
- return react.default.createElement(require_Icon_js, {
1051
+ const DroneDelivery = /* @__PURE__ */ react.default.forwardRef(function DroneDelivery({ children, size = 16, ...rest }, ref) {
1052
+ return react.default.createElement(require_Icon.Icon, {
908
1053
  width: size,
909
1054
  height: size,
910
1055
  ref,
@@ -915,8 +1060,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
915
1060
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H12V22h8Zm-6-2h4V24H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 11 22 11 22 13 26 13 26 16 6 16 6 13 10 13 10 11 0 11 0 13 4 13 4 18 9.132 18 6 22.697 6 27 8 27 8 23.303 11.535 18 20.465 18 24 23.303 24 27 26 27 26 22.697 22.868 18 28 18 28 13 32 13 32 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6a5.9817,5.9817,0,0,0-4.2407,1.7593l1.4136,1.4136a3.9936,3.9936,0,0,1,5.6542,0l1.4136-1.4136A5.9814,5.9814,0,0,0,16,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.9324,4.9321l1.4133,1.4136a7.9877,7.9877,0,0,1,11.3086,0l1.4136-1.4136a9.9844,9.9844,0,0,0-14.1355,0Z" }), children);
916
1061
  });
917
1062
  if (process.env.NODE_ENV !== "production") DroneDelivery.propTypes = require_iconPropTypes.iconPropTypes;
918
- const DroneFront = react.default.forwardRef(function DroneFront({ children, size = 16, ...rest }, ref) {
919
- return react.default.createElement(require_Icon_js, {
1063
+ const DroneFront = /* @__PURE__ */ react.default.forwardRef(function DroneFront({ children, size = 16, ...rest }, ref) {
1064
+ return react.default.createElement(require_Icon.Icon, {
920
1065
  width: size,
921
1066
  height: size,
922
1067
  ref,
@@ -927,8 +1072,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
927
1072
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,19V15H26v2H6V15H4v4h7v4.4116L7,25.6367V30H9V26.8125L12.26,25h7.481L23,26.8125V30h2V25.6367l-4-2.2251V19Zm-9,4H13V19h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M0 11H10V13H0z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 11H32V13H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6a5.9817,5.9817,0,0,0-4.2407,1.7593l1.4136,1.4136a3.9936,3.9936,0,0,1,5.6542,0l1.4136-1.4136A5.9814,5.9814,0,0,0,16,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.9324,4.9321l1.4133,1.4136a7.9877,7.9877,0,0,1,11.3086,0l1.4136-1.4136a9.9844,9.9844,0,0,0-14.1355,0Z" }), children);
928
1073
  });
929
1074
  if (process.env.NODE_ENV !== "production") DroneFront.propTypes = require_iconPropTypes.iconPropTypes;
930
- const DroneVideo = react.default.forwardRef(function DroneVideo({ children, size = 16, ...rest }, ref) {
931
- return react.default.createElement(require_Icon_js, {
1075
+ const DroneVideo = /* @__PURE__ */ react.default.forwardRef(function DroneVideo({ children, size = 16, ...rest }, ref) {
1076
+ return react.default.createElement(require_Icon.Icon, {
932
1077
  width: size,
933
1078
  height: size,
934
1079
  ref,
@@ -943,8 +1088,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
943
1088
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,19V15H26v2H6V15H4v4h7v4.4116L7,25.6367V30H9V26.8125L12.26,25h7.481L23,26.8125V30h2V25.6367l-4-2.2251V19Zm-9,4H13V19h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M0 11H10V13H0z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 11H32V13H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6a5.9817,5.9817,0,0,0-4.2407,1.7593l1.4136,1.4136a3.9936,3.9936,0,0,1,5.6542,0l1.4136-1.4136A5.9814,5.9814,0,0,0,16,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.9324,4.9321l1.4133,1.4136a7.9877,7.9877,0,0,1,11.3086,0l1.4136-1.4136a9.9844,9.9844,0,0,0-14.1355,0Z" }), children);
944
1089
  });
945
1090
  if (process.env.NODE_ENV !== "production") DroneVideo.propTypes = require_iconPropTypes.iconPropTypes;
946
- const DropPhoto = react.default.forwardRef(function DropPhoto({ children, size = 16, ...rest }, ref) {
947
- return react.default.createElement(require_Icon_js, {
1091
+ const DropPhoto = /* @__PURE__ */ react.default.forwardRef(function DropPhoto({ children, size = 16, ...rest }, ref) {
1092
+ return react.default.createElement(require_Icon.Icon, {
948
1093
  width: size,
949
1094
  height: size,
950
1095
  ref,
@@ -955,8 +1100,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
955
1100
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,26a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,19,26Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,19,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,29H11a2,2,0,0,1-2-2V18a2,2,0,0,1,2-2h3.2793l.5441-1.6324A2,2,0,0,1,16.7208,13h4.5584a2,2,0,0,1,1.8974,1.3676L23.7207,16H27a2,2,0,0,1,2,2v9A2,2,0,0,1,27,29ZM11,27H27V18H22.2792l-1-3H16.7207l-1,3H11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 11H29V13H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 7H29V9H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 3H29V5H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 3H25V5H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 3H21V5H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 3H17V5H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 3H13V5H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 3H9V5H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 3H5V5H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 7H5V9H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 11H5V13H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 15H5V17H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 19H5V21H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 23H5V25H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 27H5V29H3z" }), children);
956
1101
  });
957
1102
  if (process.env.NODE_ENV !== "production") DropPhoto.propTypes = require_iconPropTypes.iconPropTypes;
958
- const DropPhotoFilled = react.default.forwardRef(function DropPhotoFilled({ children, size = 16, ...rest }, ref) {
959
- return react.default.createElement(require_Icon_js, {
1103
+ const DropPhotoFilled = /* @__PURE__ */ react.default.forwardRef(function DropPhotoFilled({ children, size = 16, ...rest }, ref) {
1104
+ return react.default.createElement(require_Icon.Icon, {
960
1105
  width: size,
961
1106
  height: size,
962
1107
  ref,
@@ -975,8 +1120,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
975
1120
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 11H29V13H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 7H29V9H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 3H29V5H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 3H25V5H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 3H21V5H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 3H17V5H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 3H13V5H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 3H9V5H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 3H5V5H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 7H5V9H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 11H5V13H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 15H5V17H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 19H5V21H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 23H5V25H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 27H5V29H3z" }), children);
976
1121
  });
977
1122
  if (process.env.NODE_ENV !== "production") DropPhotoFilled.propTypes = require_iconPropTypes.iconPropTypes;
978
- const Drought = react.default.forwardRef(function Drought({ children, size = 16, ...rest }, ref) {
979
- return react.default.createElement(require_Icon_js, {
1123
+ const Drought = /* @__PURE__ */ react.default.forwardRef(function Drought({ children, size = 16, ...rest }, ref) {
1124
+ return react.default.createElement(require_Icon.Icon, {
980
1125
  width: size,
981
1126
  height: size,
982
1127
  ref,
@@ -987,8 +1132,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
987
1132
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,18h3V15a4.0045,4.0045,0,0,0-4-4H25V9.5A3.5042,3.5042,0,0,0,21.5,6a3.4556,3.4556,0,0,0-1.5.3511V5.41a3.41,3.41,0,0,0-6.5449-1.3433L11.3408,9H9a5.0059,5.0059,0,0,0-5,5v4H8a5.0059,5.0059,0,0,0,5-5V10.2051l2.293-5.35A1.41,1.41,0,0,1,18,5.41V22H14.6123L11,25.2939,7.3877,22H2v2H6.6123L11,28l4.3877-4H30V22H20V9.5a1.5,1.5,0,0,1,3,0V14A4.0045,4.0045,0,0,0,27,18Zm-2-5h1a2.0023,2.0023,0,0,1,2,2v1H27a2.0023,2.0023,0,0,1-2-2ZM11,13a3.0033,3.0033,0,0,1-3,3H6V14a3.0033,3.0033,0,0,1,3-3h2Z" }), children);
988
1133
  });
989
1134
  if (process.env.NODE_ENV !== "production") Drought.propTypes = require_iconPropTypes.iconPropTypes;
990
- const Dvr = react.default.forwardRef(function Dvr({ children, size = 16, ...rest }, ref) {
991
- return react.default.createElement(require_Icon_js, {
1135
+ const Dvr = /* @__PURE__ */ react.default.forwardRef(function Dvr({ children, size = 16, ...rest }, ref) {
1136
+ return react.default.createElement(require_Icon.Icon, {
992
1137
  width: size,
993
1138
  height: size,
994
1139
  ref,
@@ -999,8 +1144,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
999
1144
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15V11a2,2,0,0,0-2-2H22V23h2V17h1.48l2.34,6H30l-2.33-6H28A2,2,0,0,0,30,15Zm-6-4h4v4H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 9 16 22 14 9 12 9 14.52 23 17.48 23 20 9 18 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,23H2V9H6a4,4,0,0,1,4,4v6A4,4,0,0,1,6,23ZM4,21H6a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H4Z" }), children);
1000
1145
  });
1001
1146
  if (process.env.NODE_ENV !== "production") Dvr.propTypes = require_iconPropTypes.iconPropTypes;
1002
- const Earth = react.default.forwardRef(function Earth({ children, size = 16, ...rest }, ref) {
1003
- return react.default.createElement(require_Icon_js, {
1147
+ const Earth = /* @__PURE__ */ react.default.forwardRef(function Earth({ children, size = 16, ...rest }, ref) {
1148
+ return react.default.createElement(require_Icon.Icon, {
1004
1149
  width: size,
1005
1150
  height: size,
1006
1151
  ref,
@@ -1011,8 +1156,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1011
1156
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm5,3.1055a12.0136,12.0136,0,0,1,2.9158,1.8994L23.5034,8H21ZM13.3784,27.7026A11.9761,11.9761,0,0,1,8.1157,6.9761L9.4648,9h3.3423l-1.5,4H7.2793L5.8967,17.1475,8.4648,21h5l1.4319,2.1475ZM16,28c-.2034,0-.4016-.02-.6025-.03l1.3967-4.19a1.9876,1.9876,0,0,0-.2334-1.7412l-1.4319-2.1475A1.9962,1.9962,0,0,0,13.4648,19h-3.93L8.1033,16.8525,8.7207,15H11v2h2V14.1812l2.9363-7.83-1.8726-.7022L13.5571,7H10.5352L9.728,5.7891A11.7941,11.7941,0,0,1,19,4.395V8a2.0025,2.0025,0,0,0,2,2h2.5857A1.9865,1.9865,0,0,0,25,9.4141l.1406-.1407.2818-.68A11.9813,11.9813,0,0,1,27.3,12H22.5986a1.9927,1.9927,0,0,0-1.9719,1.665L20.03,17.1064a1.99,1.99,0,0,0,.991,2.086l2.1647,1.4638,1.4585,3.646A11.9577,11.9577,0,0,1,16,28Zm8.8145-8.6563L22.1,17.5088l-.1-.06L22.5986,14h5.2207a11.743,11.743,0,0,1-1.7441,8.4951Z" }), children);
1012
1157
  });
1013
1158
  if (process.env.NODE_ENV !== "production") Earth.propTypes = require_iconPropTypes.iconPropTypes;
1014
- const EarthAmericas = react.default.forwardRef(function EarthAmericas({ children, size = 16, ...rest }, ref) {
1015
- return react.default.createElement(require_Icon_js, {
1159
+ const EarthAmericas = /* @__PURE__ */ react.default.forwardRef(function EarthAmericas({ children, size = 16, ...rest }, ref) {
1160
+ return react.default.createElement(require_Icon.Icon, {
1016
1161
  width: size,
1017
1162
  height: size,
1018
1163
  ref,
@@ -1023,8 +1168,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1023
1168
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16a14.0313,14.0313,0,1,0-7.14,12.1914l.1165.0254.0249-.1113A13.9983,13.9983,0,0,0,30,16ZM4,16a11.9369,11.9369,0,0,1,.395-3H8.6382L13.63,17.16l-1.9092,2.5459a2.0088,2.0088,0,0,0,.1855,2.6142L14,24.4141v3.4052A12.0093,12.0093,0,0,1,4,16Zm9.32,4.9062L16.37,16.84,9.3618,11H5.1055A11.9619,11.9619,0,0,1,22.8838,6.1865L22.2793,8H16.5859L13.543,11.043l9.3535,8.3134L21.248,26.7749A11.9034,11.9034,0,0,1,16,28V23.5859Zm10.315,4.3443,1.2133-5.46a2.0007,2.0007,0,0,0-.6235-1.9277L16.457,10.957,17.4141,10h4.8652a1.9981,1.9981,0,0,0,1.8975-1.3677l.3532-1.06a11.9777,11.9777,0,0,1-.8947,17.6782Z" }), children);
1024
1169
  });
1025
1170
  if (process.env.NODE_ENV !== "production") EarthAmericas.propTypes = require_iconPropTypes.iconPropTypes;
1026
- const EarthAmericasFilled = react.default.forwardRef(function EarthAmericasFilled({ children, size = 16, ...rest }, ref) {
1027
- return react.default.createElement(require_Icon_js, {
1171
+ const EarthAmericasFilled = /* @__PURE__ */ react.default.forwardRef(function EarthAmericasFilled({ children, size = 16, ...rest }, ref) {
1172
+ return react.default.createElement(require_Icon.Icon, {
1028
1173
  width: size,
1029
1174
  height: size,
1030
1175
  ref,
@@ -1035,8 +1180,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1035
1180
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4,16a11.915,11.915,0,0,1,.7-4H10l5,4-2.8,3.6929A1,1,0,0,0,12.293,21L15,24v3.9492A12.01,12.01,0,0,1,4,16ZM21.4348,26.6846l2.5457-7.6992A1,1,0,0,0,23.614,18L15,11l2-2h5.2793a1,1,0,0,0,.9487-.6836L23.7234,6.83a11.9742,11.9742,0,0,1-2.2886,19.855Z" }), children);
1036
1181
  });
1037
1182
  if (process.env.NODE_ENV !== "production") EarthAmericasFilled.propTypes = require_iconPropTypes.iconPropTypes;
1038
- const EarthEuropeAfrica = react.default.forwardRef(function EarthEuropeAfrica({ children, size = 16, ...rest }, ref) {
1039
- return react.default.createElement(require_Icon_js, {
1183
+ const EarthEuropeAfrica = /* @__PURE__ */ react.default.forwardRef(function EarthEuropeAfrica({ children, size = 16, ...rest }, ref) {
1184
+ return react.default.createElement(require_Icon.Icon, {
1040
1185
  width: size,
1041
1186
  height: size,
1042
1187
  ref,
@@ -1047,8 +1192,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1047
1192
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4,16A11.96,11.96,0,0,1,8,7.0811V9a2,2,0,0,0,2,2h3.3818a2,2,0,0,0,1.7893-1.106L15.6182,9H18v4H13.2354a2,2,0,0,0-.8936.2109L9.1055,14.8291A2,2,0,0,0,8,16.6177v3.7055A2,2,0,0,0,9.2573,22.18l3.8487,1.54.6779,4.0664A12.0135,12.0135,0,0,1,4,16ZM15.8457,27.9922,14.894,22.28,10,20.3232v-3.705L13.2358,15H20V7H14.3818l-1,2H10V5.6235A11.9578,11.9578,0,0,1,27.3,12H22v4l.9224,3.8135L21,22.6973v4.1972A11.9083,11.9083,0,0,1,16,28C15.948,28,15.8977,27.9927,15.8457,27.9922ZM23,25.7266V23.3027l1.5859-2.3789a2.0027,2.0027,0,0,0,.2769-1.5957L24,15.877V14h3.8193A11.8409,11.8409,0,0,1,23,25.7266Z" }), children);
1048
1193
  });
1049
1194
  if (process.env.NODE_ENV !== "production") EarthEuropeAfrica.propTypes = require_iconPropTypes.iconPropTypes;
1050
- const EarthEuropeAfricaFilled = react.default.forwardRef(function EarthEuropeAfricaFilled({ children, size = 16, ...rest }, ref) {
1051
- return react.default.createElement(require_Icon_js, {
1195
+ const EarthEuropeAfricaFilled = /* @__PURE__ */ react.default.forwardRef(function EarthEuropeAfricaFilled({ children, size = 16, ...rest }, ref) {
1196
+ return react.default.createElement(require_Icon.Icon, {
1052
1197
  width: size,
1053
1198
  height: size,
1054
1199
  ref,
@@ -1059,8 +1204,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1059
1204
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4,16A11.9814,11.9814,0,0,1,9,6.2734V9a1,1,0,0,0,1,1h3.3821a1,1,0,0,0,.8943-.5527L15,8h4v6H13.2361a1.0006,1.0006,0,0,0-.4473.1055L9.5527,15.7236A1,1,0,0,0,9,16.6182v3.7046a1,1,0,0,0,.6287.9287L14,23l.8235,4.94A12.0152,12.0152,0,0,1,4,16ZM22,26.376V23l1.7546-2.6318a1.0012,1.0012,0,0,0,.1382-.7974L23,16V13h4.605A11.901,11.901,0,0,1,22,26.376Z" }), children);
1060
1205
  });
1061
1206
  if (process.env.NODE_ENV !== "production") EarthEuropeAfricaFilled.propTypes = require_iconPropTypes.iconPropTypes;
1062
- const EarthFilled = react.default.forwardRef(function EarthFilled({ children, size = 16, ...rest }, ref) {
1063
- return react.default.createElement(require_Icon_js, {
1207
+ const EarthFilled = /* @__PURE__ */ react.default.forwardRef(function EarthFilled({ children, size = 16, ...rest }, ref) {
1208
+ return react.default.createElement(require_Icon.Icon, {
1064
1209
  width: size,
1065
1210
  height: size,
1066
1211
  ref,
@@ -1071,8 +1216,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1071
1216
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4.02,16.394l1.3384.4458L7,19.3027v1.2831a1,1,0,0,0,.2929.7071L10,24v2.3765A11.9941,11.9941,0,0,1,4.02,16.394ZM16,28a11.9682,11.9682,0,0,1-2.5718-.2847L14,26l1.8046-4.5116a1,1,0,0,0-.0964-.9261l-1.4113-2.117A1,1,0,0,0,13.4648,18h-4.93L7.2866,16.1274,9.4141,14H11v2h2V13.2656l3.8682-6.7695-1.7364-.9922L14.2769,7H11.5352l-1.086-1.6289A11.861,11.861,0,0,1,20,4.7V8a1,1,0,0,0,1,1h1.4648a1,1,0,0,0,.8321-.4453l.8769-1.3154A12.0331,12.0331,0,0,1,26.8945,11H22.82a1,1,0,0,0-.9806.8039l-.7221,4.4708a1,1,0,0,0,.54,1.0539L25,19l.6851,4.0557A11.9793,11.9793,0,0,1,16,28Z" }), children);
1072
1217
  });
1073
1218
  if (process.env.NODE_ENV !== "production") EarthFilled.propTypes = require_iconPropTypes.iconPropTypes;
1074
- const EarthSoutheastAsia = react.default.forwardRef(function EarthSoutheastAsia({ children, size = 16, ...rest }, ref) {
1075
- return react.default.createElement(require_Icon_js, {
1219
+ const EarthSoutheastAsia = /* @__PURE__ */ react.default.forwardRef(function EarthSoutheastAsia({ children, size = 16, ...rest }, ref) {
1220
+ return react.default.createElement(require_Icon.Icon, {
1076
1221
  width: size,
1077
1222
  height: size,
1078
1223
  ref,
@@ -1083,8 +1228,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1083
1228
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 24H17V26H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 22H19V24H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 18H19V20H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm-.603,2.03,2.5073,5.0156L16.3228,13H10.271l-1.41,4.3872,2.8521,2.8521L10.7056,21.751,6.2856,19H4.395A11.9363,11.9363,0,0,1,15.397,4.03ZM5.1055,21h.6089l3.9345,2.4487A1.9912,1.9912,0,0,0,12.37,22.86l1.0078-1.5118a2.005,2.005,0,0,0-.25-2.5234l-1.9887-1.9888L11.729,15h4.5938A1.9906,1.9906,0,0,0,18.18,13.7427L19.7612,9.79a2.0019,2.0019,0,0,0-.0674-1.6382L17.6843,4.1323A11.9592,11.9592,0,0,1,26.8945,21H23a2.0023,2.0023,0,0,0-2,2v3.8945A11.9477,11.9477,0,0,1,5.1055,21ZM23,25.7266V23h2.7268A12.0762,12.0762,0,0,1,23,25.7266Z" }), children);
1084
1229
  });
1085
1230
  if (process.env.NODE_ENV !== "production") EarthSoutheastAsia.propTypes = require_iconPropTypes.iconPropTypes;
1086
- const EarthSoutheastAsiaFilled = react.default.forwardRef(function EarthSoutheastAsiaFilled({ children, size = 16, ...rest }, ref) {
1087
- return react.default.createElement(require_Icon_js, {
1231
+ const EarthSoutheastAsiaFilled = /* @__PURE__ */ react.default.forwardRef(function EarthSoutheastAsiaFilled({ children, size = 16, ...rest }, ref) {
1232
+ return react.default.createElement(require_Icon.Icon, {
1088
1233
  width: size,
1089
1234
  height: size,
1090
1235
  ref,
@@ -1095,8 +1240,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1095
1240
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 22H19V24H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 18H19V20H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 24H17V26H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4.7,20H6l4.1772,2.6a1,1,0,0,0,1.36-.2939l1.0078-1.5118a1,1,0,0,0-.125-1.2617L10,17.1118,11,14h5.323a1,1,0,0,0,.9285-.6284L18.8333,9.417a1,1,0,0,0-.034-.8189L16.5129,4.0259A11.9652,11.9652,0,0,1,26.3762,22H23a1,1,0,0,0-1,1v3.3765A11.9578,11.9578,0,0,1,4.7,20Z" }), children);
1096
1241
  });
1097
1242
  if (process.env.NODE_ENV !== "production") EarthSoutheastAsiaFilled.propTypes = require_iconPropTypes.iconPropTypes;
1098
- const Earthquake = react.default.forwardRef(function Earthquake({ children, size = 16, ...rest }, ref) {
1099
- return react.default.createElement(require_Icon_js, {
1243
+ const Earthquake = /* @__PURE__ */ react.default.forwardRef(function Earthquake({ children, size = 16, ...rest }, ref) {
1244
+ return react.default.createElement(require_Icon.Icon, {
1100
1245
  width: size,
1101
1246
  height: size,
1102
1247
  ref,
@@ -1107,8 +1252,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1107
1252
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM6,12.0615,15,5.05v7.3638l3.458,3.458-6.7344,4.8105L14.3818,26H6ZM26,26H16.6182l-2.3418-4.6826,7.2656-5.1895L17,11.5859V5.0518l9,7.02Z" }), children);
1108
1253
  });
1109
1254
  if (process.env.NODE_ENV !== "production") Earthquake.propTypes = require_iconPropTypes.iconPropTypes;
1110
- const EdgeCluster = react.default.forwardRef(function EdgeCluster({ children, size = 16, ...rest }, ref) {
1111
- return react.default.createElement(require_Icon_js, {
1255
+ const EdgeCluster = /* @__PURE__ */ react.default.forwardRef(function EdgeCluster({ children, size = 16, ...rest }, ref) {
1256
+ return react.default.createElement(require_Icon.Icon, {
1112
1257
  width: size,
1113
1258
  height: size,
1114
1259
  ref,
@@ -1119,8 +1264,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1119
1264
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,7Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,16,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,30a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,30Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,11,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,11a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,11ZM7,7A1,1,0,1,0,8,8,1.001,1.001,0,0,0,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,21,30Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,21,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,11a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,11Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,25,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,21a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,4,21Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,4,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,21a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,28,21Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,28,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,1,6-6A6.0069,6.0069,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z" }), children);
1120
1265
  });
1121
1266
  if (process.env.NODE_ENV !== "production") EdgeCluster.propTypes = require_iconPropTypes.iconPropTypes;
1122
- const EdgeDevice = react.default.forwardRef(function EdgeDevice({ children, size = 16, ...rest }, ref) {
1123
- return react.default.createElement(require_Icon_js, {
1267
+ const EdgeDevice = /* @__PURE__ */ react.default.forwardRef(function EdgeDevice({ children, size = 16, ...rest }, ref) {
1268
+ return react.default.createElement(require_Icon.Icon, {
1124
1269
  width: size,
1125
1270
  height: size,
1126
1271
  ref,
@@ -1131,8 +1276,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1131
1276
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 21H23V23H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,11,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,21,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H18.4141l2.0722-2.0723A2.04,2.04,0,0,0,21,6a2,2,0,1,0-2-2,2.0412,2.0412,0,0,0,.0723.5137L15.5859,8H4a2.0025,2.0025,0,0,0-2,2V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V10A2.0025,2.0025,0,0,0,28,8ZM4,26V10H28V26Z" }), children);
1132
1277
  });
1133
1278
  if (process.env.NODE_ENV !== "production") EdgeDevice.propTypes = require_iconPropTypes.iconPropTypes;
1134
- const WatsonHealthEdgeEnhancement = react.default.forwardRef(function WatsonHealthEdgeEnhancement({ children, size = 16, ...rest }, ref) {
1135
- return react.default.createElement(require_Icon_js, {
1279
+ const WatsonHealthEdgeEnhancement = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthEdgeEnhancement({ children, size = 16, ...rest }, ref) {
1280
+ return react.default.createElement(require_Icon.Icon, {
1136
1281
  width: size,
1137
1282
  height: size,
1138
1283
  ref,
@@ -1143,8 +1288,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1143
1288
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8164,4.7646,11.1328,2.887A13.976,13.976,0,0,0,6.9507,5.3278L8.2358,6.8593A11.9729,11.9729,0,0,1,11.8164,4.7646Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.5913,10,3.86,9a14.14,14.14,0,0,0-1.6382,4.5872l1.9677.3469A12.1519,12.1519,0,0,1,5.5913,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,26A10,10,0,0,0,16,6h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16A14,14,0,0,0,16,2V4a11.9933,11.9933,0,0,1,4.0493,23.2847c-.1682.06-.334.1294-.5044.1821-.2512.0771-.51.1362-.7683.1973-.1262.03-.25.0693-.3772.0952-.2908.0591-.5884.0976-.8862.1352-.1.0122-.1983.0342-.2988.044A12.0015,12.0015,0,0,1,5.416,21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207,13.1207,0,0,1,4.19,18l-1.9677.4131A13.9173,13.9173,0,0,0,2.7,20.2993l-.0251.0083A13.9615,13.9615,0,0,0,16,30q.7134,0,1.415-.0713c.135-.0137.2654-.042.3995-.06.3286-.0424.6574-.0839.9814-.1494.18-.0366.3533-.0908.5308-.1338.2685-.0659.5383-.125.8027-.2065.2463-.0762.4831-.1724.7234-.2612.18-.0664.3635-.1211.5412-.1953l-.0009-.0025A14.0015,14.0015,0,0,0,30,16Z" }), children);
1144
1289
  });
1145
1290
  if (process.env.NODE_ENV !== "production") WatsonHealthEdgeEnhancement.propTypes = require_iconPropTypes.iconPropTypes;
1146
- const WatsonHealthEdgeEnhancement_01 = react.default.forwardRef(function WatsonHealthEdgeEnhancement_01({ children, size = 16, ...rest }, ref) {
1147
- return react.default.createElement(require_Icon_js, {
1291
+ const WatsonHealthEdgeEnhancement_01 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthEdgeEnhancement_01({ children, size = 16, ...rest }, ref) {
1292
+ return react.default.createElement(require_Icon.Icon, {
1148
1293
  width: size,
1149
1294
  height: size,
1150
1295
  ref,
@@ -1155,8 +1300,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1155
1300
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 28 26 20 24 20 24 21 22 21 22 23 24 23 24 28 22 28 22 30 28 30 28 28 26 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16h2A14,14,0,0,0,16,2V4A12,12,0,0,1,28,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,16A10,10,0,0,0,16,6V16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28A11.96,11.96,0,0,1,5.416,21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207,13.1207,0,0,1,4.19,18l-1.9677.4131A13.9173,13.9173,0,0,0,2.7,20.2993l-.0251.0083A13.9615,13.9615,0,0,0,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.5913,10,3.86,9a14.14,14.14,0,0,0-1.6382,4.5872l1.9677.3469A12.1519,12.1519,0,0,1,5.5913,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8164,4.7646,11.1328,2.887A13.976,13.976,0,0,0,6.9507,5.3278L8.2358,6.8593A11.9729,11.9729,0,0,1,11.8164,4.7646Z" }), children);
1156
1301
  });
1157
1302
  if (process.env.NODE_ENV !== "production") WatsonHealthEdgeEnhancement_01.propTypes = require_iconPropTypes.iconPropTypes;
1158
- const WatsonHealthEdgeEnhancement_02 = react.default.forwardRef(function WatsonHealthEdgeEnhancement_02({ children, size = 16, ...rest }, ref) {
1159
- return react.default.createElement(require_Icon_js, {
1303
+ const WatsonHealthEdgeEnhancement_02 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthEdgeEnhancement_02({ children, size = 16, ...rest }, ref) {
1304
+ return react.default.createElement(require_Icon.Icon, {
1160
1305
  width: size,
1161
1306
  height: size,
1162
1307
  ref,
@@ -1167,8 +1312,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1167
1312
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H22V26a2.002,2.002,0,0,1,2-2h2V22H22V20h4a2.0023,2.0023,0,0,1,2,2v2a2.0023,2.0023,0,0,1-2,2H24v2h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16h2A14,14,0,0,0,16,2V4A12,12,0,0,1,28,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,16A10,10,0,0,0,16,6V16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28A11.96,11.96,0,0,1,5.416,21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207,13.1207,0,0,1,4.19,18l-1.9677.4131A13.9173,13.9173,0,0,0,2.7,20.2993l-.0251.0083A13.9615,13.9615,0,0,0,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.5913,10,3.86,9a14.14,14.14,0,0,0-1.6382,4.5872l1.9677.3469A12.1519,12.1519,0,0,1,5.5913,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8164,4.7646,11.1328,2.887A13.976,13.976,0,0,0,6.9507,5.3278L8.2358,6.8593A11.9729,11.9729,0,0,1,11.8164,4.7646Z" }), children);
1168
1313
  });
1169
1314
  if (process.env.NODE_ENV !== "production") WatsonHealthEdgeEnhancement_02.propTypes = require_iconPropTypes.iconPropTypes;
1170
- const WatsonHealthEdgeEnhancement_03 = react.default.forwardRef(function WatsonHealthEdgeEnhancement_03({ children, size = 16, ...rest }, ref) {
1171
- return react.default.createElement(require_Icon_js, {
1315
+ const WatsonHealthEdgeEnhancement_03 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthEdgeEnhancement_03({ children, size = 16, ...rest }, ref) {
1316
+ return react.default.createElement(require_Icon.Icon, {
1172
1317
  width: size,
1173
1318
  height: size,
1174
1319
  ref,
@@ -1179,8 +1324,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1179
1324
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,20H22v2h4v2H23v2h3v2H22v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,26,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16h2A14,14,0,0,0,16,2V4A12,12,0,0,1,28,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,16A10,10,0,0,0,16,6V16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28A11.96,11.96,0,0,1,5.416,21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207,13.1207,0,0,1,4.19,18l-1.9677.4131A13.9173,13.9173,0,0,0,2.7,20.2993l-.0251.0083A13.9615,13.9615,0,0,0,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.5913,10,3.86,9a14.14,14.14,0,0,0-1.6382,4.5872l1.9677.3469A12.1519,12.1519,0,0,1,5.5913,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8164,4.7646,11.1328,2.887A13.976,13.976,0,0,0,6.9507,5.3278L8.2358,6.8593A11.9729,11.9729,0,0,1,11.8164,4.7646Z" }), children);
1180
1325
  });
1181
1326
  if (process.env.NODE_ENV !== "production") WatsonHealthEdgeEnhancement_03.propTypes = require_iconPropTypes.iconPropTypes;
1182
- const EdgeNode = react.default.forwardRef(function EdgeNode({ children, size = 16, ...rest }, ref) {
1183
- return react.default.createElement(require_Icon_js, {
1327
+ const EdgeNode = /* @__PURE__ */ react.default.forwardRef(function EdgeNode({ children, size = 16, ...rest }, ref) {
1328
+ return react.default.createElement(require_Icon.Icon, {
1184
1329
  width: size,
1185
1330
  height: size,
1186
1331
  ref,
@@ -1207,8 +1352,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1207
1352
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,17V15H20V14a2.0023,2.0023,0,0,0-2-2H17V10H15v2H13V10H11v2H10a2.0023,2.0023,0,0,0-2,2v1H6v2H8v2H6v2H8v1a2.0023,2.0023,0,0,0,2,2h1v2h2V24h2v2h2V24h1a2.0023,2.0023,0,0,0,2-2V21h2V19H20V17Zm-4,5H10V14h8Z" }), /* @__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);
1208
1353
  });
1209
1354
  if (process.env.NODE_ENV !== "production") EdgeNode.propTypes = require_iconPropTypes.iconPropTypes;
1210
- const EdgeNodeAlt = react.default.forwardRef(function EdgeNodeAlt({ children, size = 16, ...rest }, ref) {
1211
- return react.default.createElement(require_Icon_js, {
1355
+ const EdgeNodeAlt = /* @__PURE__ */ react.default.forwardRef(function EdgeNodeAlt({ children, size = 16, ...rest }, ref) {
1356
+ return react.default.createElement(require_Icon.Icon, {
1212
1357
  width: size,
1213
1358
  height: size,
1214
1359
  ref,
@@ -1231,8 +1376,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1231
1376
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,13V5a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,5V27a2.0023,2.0023,0,0,0,2,2H20V27H4V21h8V19H4V13ZM4,5H20v6H4Z" }), children);
1232
1377
  });
1233
1378
  if (process.env.NODE_ENV !== "production") EdgeNodeAlt.propTypes = require_iconPropTypes.iconPropTypes;
1234
- const EdgeService = react.default.forwardRef(function EdgeService({ children, size = 16, ...rest }, ref) {
1235
- return react.default.createElement(require_Icon_js, {
1379
+ const EdgeService = /* @__PURE__ */ react.default.forwardRef(function EdgeService({ children, size = 16, ...rest }, ref) {
1380
+ return react.default.createElement(require_Icon.Icon, {
1236
1381
  width: size,
1237
1382
  height: size,
1238
1383
  ref,
@@ -1243,8 +1388,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1243
1388
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11H9V21H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 11H13V21H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 11H17V21H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 11H21V21H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 11H25V21H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H28a2.0023,2.0023,0,0,1,2,2V24A2.0023,2.0023,0,0,1,28,26ZM4,8V24H28V8Z" }), children);
1244
1389
  });
1245
1390
  if (process.env.NODE_ENV !== "production") EdgeService.propTypes = require_iconPropTypes.iconPropTypes;
1246
- const Edit = react.default.forwardRef(function Edit({ children, size = 16, ...rest }, ref) {
1247
- return react.default.createElement(require_Icon_js, {
1391
+ const Edit = /* @__PURE__ */ react.default.forwardRef(function Edit({ children, size = 16, ...rest }, ref) {
1392
+ return react.default.createElement(require_Icon.Icon, {
1248
1393
  width: size,
1249
1394
  height: size,
1250
1395
  ref,
@@ -1255,8 +1400,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1255
1400
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H30V28H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.4,9c0.8-0.8,0.8-2,0-2.8c0,0,0,0,0,0l-3.6-3.6c-0.8-0.8-2-0.8-2.8,0c0,0,0,0,0,0l-15,15V24h6.4L25.4,9z M20.4,4L24,7.6 l-3,3L17.4,7L20.4,4z M6,22v-3.6l10-10l3.6,3.6l-10,10H6z" }), children);
1256
1401
  });
1257
1402
  if (process.env.NODE_ENV !== "production") Edit.propTypes = require_iconPropTypes.iconPropTypes;
1258
- const EditOff = react.default.forwardRef(function EditOff({ children, size = 16, ...rest }, ref) {
1259
- return react.default.createElement(require_Icon_js, {
1403
+ const EditOff = /* @__PURE__ */ react.default.forwardRef(function EditOff({ children, size = 16, ...rest }, ref) {
1404
+ return react.default.createElement(require_Icon.Icon, {
1260
1405
  width: size,
1261
1406
  height: size,
1262
1407
  ref,
@@ -1267,8 +1412,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1267
1412
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28.6L3.4,2L2,3.4l10.1,10.1L4,21.6V28h6.4l8.1-8.1L28.6,30L30,28.6z M9.6,26H6v-3.6l7.5-7.5l3.6,3.6L9.6,26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4,6.2L29.4,6.2l-3.6-3.6c-0.8-0.8-2-0.8-2.8,0l0,0l0,0l-8,8l1.4,1.4L20,8.4l3.6,3.6L20,15.6l1.4,1.4l8-8 C30.2,8.2,30.2,7,29.4,6.2L29.4,6.2z M25,10.6L21.4,7l3-3L28,7.6L25,10.6z" }), children);
1268
1413
  });
1269
1414
  if (process.env.NODE_ENV !== "production") EditOff.propTypes = require_iconPropTypes.iconPropTypes;
1270
- const EdtLoop = react.default.forwardRef(function EdtLoop({ children, size = 16, ...rest }, ref) {
1271
- return react.default.createElement(require_Icon_js, {
1415
+ const EdtLoop = /* @__PURE__ */ react.default.forwardRef(function EdtLoop({ children, size = 16, ...rest }, ref) {
1416
+ return react.default.createElement(require_Icon.Icon, {
1272
1417
  width: size,
1273
1418
  height: size,
1274
1419
  ref,
@@ -1279,8 +1424,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1279
1424
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.625,22.5875a6.1287,6.1287,0,0,1-4.5-1.9l-3.1-3.2-3.1,3.2a6.4582,6.4582,0,0,1-9.1,0,7.028,7.028,0,0,1-1.8-4.7,6.6547,6.6547,0,0,1,1.9-4.7,6.3375,6.3375,0,0,1,9,0l3.1,3.2,3.1-3.2a6.3375,6.3375,0,0,1,9,0,6.8282,6.8282,0,0,1,0,9.4A6.5418,6.5418,0,0,1,23.625,22.5875Zm-6.2-6.6,3.1,3.3a4.4061,4.4061,0,0,0,6.2,0,4.9077,4.9077,0,0,0,0-6.6,4.4061,4.4061,0,0,0-6.2,0Zm-9-4.6a4.1582,4.1582,0,0,0-3.1,1.3,4.8385,4.8385,0,0,0,0,6.6,4.4061,4.4061,0,0,0,6.2,0l3.1-3.3-3.1-3.3A4.7706,4.7706,0,0,0,8.425,11.3875Z" }), children);
1280
1425
  });
1281
1426
  if (process.env.NODE_ENV !== "production") EdtLoop.propTypes = require_iconPropTypes.iconPropTypes;
1282
- const Education = react.default.forwardRef(function Education({ children, size = 16, ...rest }, ref) {
1283
- return react.default.createElement(require_Icon_js, {
1427
+ const Education = /* @__PURE__ */ react.default.forwardRef(function Education({ children, size = 16, ...rest }, ref) {
1428
+ return react.default.createElement(require_Icon.Icon, {
1284
1429
  width: size,
1285
1430
  height: size,
1286
1431
  ref,
@@ -1291,8 +1436,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1291
1436
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V27a5.0059,5.0059,0,0,0-5-5H13a5.0059,5.0059,0,0,0-5,5v3H6V27a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,6A1,1,0,0,0,4,7v9H6V7A1,1,0,0,0,5,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,2V4H9v7a7,7,0,0,0,14,0V4h5V2Zm7,2H21V7H11Zm5,12a5,5,0,0,1-5-5V9H21v2A5,5,0,0,1,16,16Z" }), children);
1292
1437
  });
1293
1438
  if (process.env.NODE_ENV !== "production") Education.propTypes = require_iconPropTypes.iconPropTypes;
1294
- const ElementPicker = react.default.forwardRef(function ElementPicker({ children, size = 16, ...rest }, ref) {
1295
- return react.default.createElement(require_Icon_js, {
1439
+ const ElementPicker = /* @__PURE__ */ react.default.forwardRef(function ElementPicker({ children, size = 16, ...rest }, ref) {
1440
+ return react.default.createElement(require_Icon.Icon, {
1296
1441
  width: size,
1297
1442
  height: size,
1298
1443
  ref,
@@ -1303,8 +1448,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1303
1448
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,18h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-5v-5c0-1.6543-1.3457-3-3-3h-4v-1c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-1h4c.5515,0,1,.4487,1,1v16c0,1.6543,1.3457,3,3,3h4v1c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-4c-.5515,0-1-.4487-1-1v-9h5v1c0,1.1045.8955,2,2,2ZM24,12h4v4h-4v-4ZM8,8h-4v-4h4v4Z" }), children);
1304
1449
  });
1305
1450
  if (process.env.NODE_ENV !== "production") ElementPicker.propTypes = require_iconPropTypes.iconPropTypes;
1306
- const Email = react.default.forwardRef(function Email({ children, size = 16, ...rest }, ref) {
1307
- return react.default.createElement(require_Icon_js, {
1451
+ const Email = /* @__PURE__ */ react.default.forwardRef(function Email({ children, size = 16, ...rest }, ref) {
1452
+ return react.default.createElement(require_Icon.Icon, {
1308
1453
  width: size,
1309
1454
  height: size,
1310
1455
  ref,
@@ -1315,8 +1460,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1315
1460
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM25.8,8,16,14.78,6.2,8ZM4,24V8.91l11.43,7.91a1,1,0,0,0,1.14,0L28,8.91V24Z" }), children);
1316
1461
  });
1317
1462
  if (process.env.NODE_ENV !== "production") Email.propTypes = require_iconPropTypes.iconPropTypes;
1318
- const EmailNew = react.default.forwardRef(function EmailNew({ children, size = 16, ...rest }, ref) {
1319
- return react.default.createElement(require_Icon_js, {
1463
+ const EmailNew = /* @__PURE__ */ react.default.forwardRef(function EmailNew({ children, size = 16, ...rest }, ref) {
1464
+ return react.default.createElement(require_Icon.Icon, {
1320
1465
  width: size,
1321
1466
  height: size,
1322
1467
  ref,
@@ -1331,8 +1476,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1331
1476
  }), children);
1332
1477
  });
1333
1478
  if (process.env.NODE_ENV !== "production") EmailNew.propTypes = require_iconPropTypes.iconPropTypes;
1334
- const EmissionsManagement = react.default.forwardRef(function EmissionsManagement({ children, size = 16, ...rest }, ref) {
1335
- return react.default.createElement(require_Icon_js, {
1479
+ const EmissionsManagement = /* @__PURE__ */ react.default.forwardRef(function EmissionsManagement({ children, size = 16, ...rest }, ref) {
1480
+ return react.default.createElement(require_Icon.Icon, {
1336
1481
  width: size,
1337
1482
  height: size,
1338
1483
  ref,
@@ -1343,8 +1488,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1343
1488
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,2h-2v26c0,1.1046.8954,2,2,2h11v-2H4V2ZM23,4v2h3.5859l-7.5859,7.5859-4.293-4.293c-.3905-.3905-1.0236-.3905-1.4141,0l-7.293,7.293,1.4141,1.4141,6.5859-6.5859,4.293,4.293c.3905.3904,1.0236.3904,1.4141,0l8.293-8.293v3.5859h2v-7s-7,0-7,0ZM22.48,20.863c-.682-.54-1.544-.863-2.48-.863h-3v3c0,2.206,1.794,4,4,4h1v3h2v-3h1c2.757,0,5-2.243,5-5v-4h-3c-1.933.0016-3.6925,1.116-4.52,2.863ZM22,25h-1c-1.103,0-2-.897-2-2v-1h1c1.103,0,2,.897,2,2v1ZM28,22c0,1.654-1.346,3-3,3h-1v-2c0-1.654,1.346-3,3-3h1v2Z" }), children);
1344
1489
  });
1345
1490
  if (process.env.NODE_ENV !== "production") EmissionsManagement.propTypes = require_iconPropTypes.iconPropTypes;
1346
- const EnableStep = react.default.forwardRef(function EnableStep({ children, size = 16, ...rest }, ref) {
1347
- return react.default.createElement(require_Icon_js, {
1491
+ const EnableStep = /* @__PURE__ */ react.default.forwardRef(function EnableStep({ children, size = 16, ...rest }, ref) {
1492
+ return react.default.createElement(require_Icon.Icon, {
1348
1493
  width: size,
1349
1494
  height: size,
1350
1495
  ref,
@@ -1355,8 +1500,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1355
1500
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,12H3c-.6,0-1-.4-1-1V3c0-.6.4-1,1-1h26c.6,0,1,.4,1,1v8c0,.6-.4,1-1,1ZM4,4v6h24v-6H4ZM23,27.2l-2.6-2.6-1.4,1.4,4,4,7-7-1.4-1.4-5.6,5.6ZM17,22H4v-6h24v3h2v-4c0-.6-.4-1-1-1H3c-.6,0-1,.5-1,1v8c0,.5.4,1,1,1h14v-2Z" }), children);
1356
1501
  });
1357
1502
  if (process.env.NODE_ENV !== "production") EnableStep.propTypes = require_iconPropTypes.iconPropTypes;
1358
- const Encryption = react.default.forwardRef(function Encryption({ children, size = 16, ...rest }, ref) {
1359
- return react.default.createElement(require_Icon_js, {
1503
+ const Encryption = /* @__PURE__ */ react.default.forwardRef(function Encryption({ children, size = 16, ...rest }, ref) {
1504
+ return react.default.createElement(require_Icon.Icon, {
1360
1505
  width: size,
1361
1506
  height: size,
1362
1507
  ref,
@@ -1367,8 +1512,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1367
1512
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,21.2783V19a4,4,0,0,0-8,0v2.2783A1.9935,1.9935,0,0,0,20,23v5a2.0025,2.0025,0,0,0,2,2h6a2.0025,2.0025,0,0,0,2-2V23A1.9935,1.9935,0,0,0,29,21.2783ZM25,17a2.0025,2.0025,0,0,1,2,2v2H23V19A2.0025,2.0025,0,0,1,25,17ZM22,28V23h6v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H4V6H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 2H16V6H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 2H20V6H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 8H4V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H4V26H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H16V26H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 8H8V16H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 8H20V14H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,26H8a2.0023,2.0023,0,0,1-2-2V20a2.0023,2.0023,0,0,1,2-2h2a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,10,26ZM8,20v4h2V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,16H12a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2h2a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,14,16Zm-2-6v4h2V10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,6H8A2.0023,2.0023,0,0,1,6,4V2H8V4h2V2h2V4A2.0023,2.0023,0,0,1,10,6Z" }), children);
1368
1513
  });
1369
1514
  if (process.env.NODE_ENV !== "production") Encryption.propTypes = require_iconPropTypes.iconPropTypes;
1370
- const EnergyRenewable = react.default.forwardRef(function EnergyRenewable({ children, size = 16, ...rest }, ref) {
1371
- return react.default.createElement(require_Icon_js, {
1515
+ const EnergyRenewable = /* @__PURE__ */ react.default.forwardRef(function EnergyRenewable({ children, size = 16, ...rest }, ref) {
1516
+ return react.default.createElement(require_Icon.Icon, {
1372
1517
  width: size,
1373
1518
  height: size,
1374
1519
  ref,
@@ -1379,8 +1524,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1379
1524
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,14H28V10H26v4H24V10H22v4H21a1,1,0,0,0-1,1v4a5.0079,5.0079,0,0,0,4,4.8989V27a1.0008,1.0008,0,0,1-1,1H5a1,1,0,0,1,0-2h5a3,3,0,0,0,0-6H5a1,1,0,0,1,0-2h5a3.0033,3.0033,0,0,0,3-3V11h1a4.0045,4.0045,0,0,0,4-4V4H15a3.979,3.979,0,0,0-2.7468,1.1064A6.0041,6.0041,0,0,0,7,2H4V5a6.0066,6.0066,0,0,0,6,6h1v4a1.0008,1.0008,0,0,1-1,1H5a3,3,0,0,0,0,6h5a1,1,0,0,1,0,2H5a3,3,0,0,0,0,6H23a3.0033,3.0033,0,0,0,3-3V23.8989A5.0079,5.0079,0,0,0,30,19V15A1,1,0,0,0,29,14ZM13,8a2.002,2.002,0,0,1,2-2h1V7a2.002,2.002,0,0,1-2,2H13ZM10,9A4.0045,4.0045,0,0,1,6,5V4H7a4.0045,4.0045,0,0,1,4,4V9ZM28,19a3,3,0,0,1-6,0V16h6Z" }), children);
1380
1525
  });
1381
1526
  if (process.env.NODE_ENV !== "production") EnergyRenewable.propTypes = require_iconPropTypes.iconPropTypes;
1382
- const Enterprise = react.default.forwardRef(function Enterprise({ children, size = 16, ...rest }, ref) {
1383
- return react.default.createElement(require_Icon_js, {
1527
+ const Enterprise = /* @__PURE__ */ react.default.forwardRef(function Enterprise({ children, size = 16, ...rest }, ref) {
1528
+ return react.default.createElement(require_Icon.Icon, {
1384
1529
  width: size,
1385
1530
  height: size,
1386
1531
  ref,
@@ -1391,8 +1536,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1391
1536
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 8H10V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 14H10V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 8H16V12H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 14H16V18H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 20H10V24H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 20H16V24H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,14a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30ZM4,4H20V28H4ZM22,28V14h6V28Z" }), children);
1392
1537
  });
1393
1538
  if (process.env.NODE_ENV !== "production") Enterprise.propTypes = require_iconPropTypes.iconPropTypes;
1394
- const EnumerationDefinition = react.default.forwardRef(function EnumerationDefinition({ children, size = 16, ...rest }, ref) {
1395
- return react.default.createElement(require_Icon_js, {
1539
+ const EnumerationDefinition = /* @__PURE__ */ react.default.forwardRef(function EnumerationDefinition({ children, size = 16, ...rest }, ref) {
1540
+ return react.default.createElement(require_Icon.Icon, {
1396
1541
  width: size,
1397
1542
  height: size,
1398
1543
  ref,
@@ -1412,8 +1557,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1412
1557
  }), children);
1413
1558
  });
1414
1559
  if (process.env.NODE_ENV !== "production") EnumerationDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1415
- const EnumerationUsage = react.default.forwardRef(function EnumerationUsage({ children, size = 16, ...rest }, ref) {
1416
- return react.default.createElement(require_Icon_js, {
1560
+ const EnumerationUsage = /* @__PURE__ */ react.default.forwardRef(function EnumerationUsage({ children, size = 16, ...rest }, ref) {
1561
+ return react.default.createElement(require_Icon.Icon, {
1417
1562
  width: size,
1418
1563
  height: size,
1419
1564
  ref,
@@ -1433,8 +1578,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1433
1578
  }), children);
1434
1579
  });
1435
1580
  if (process.env.NODE_ENV !== "production") EnumerationUsage.propTypes = require_iconPropTypes.iconPropTypes;
1436
- const EqualApproximately = react.default.forwardRef(function EqualApproximately({ children, size = 16, ...rest }, ref) {
1437
- return react.default.createElement(require_Icon_js, {
1581
+ const EqualApproximately = /* @__PURE__ */ react.default.forwardRef(function EqualApproximately({ children, size = 16, ...rest }, ref) {
1582
+ return react.default.createElement(require_Icon.Icon, {
1438
1583
  width: size,
1439
1584
  height: size,
1440
1585
  ref,
@@ -1445,8 +1590,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1445
1590
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20,15c-1.7771,0-3.2314-.8726-4.5144-1.6425-1.1636-.6981-2.2627-1.3575-3.4856-1.3575-1.3977,0-2.449.8629-3.2927,1.707l-1.4146-1.4141c1.0674-1.0675,2.5669-2.293,4.7073-2.293,1.7771,0,3.2314.8726,4.5144,1.6425,1.1636.6981,2.2627,1.3575,3.4856,1.3575,1.3975,0,2.4487-.8629,3.293-1.7072l1.4141,1.4143c-1.0674,1.0675-2.5671,2.2928-4.707,2.2928Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20,22c-1.7771,0-3.2314-.8726-4.5144-1.6425-1.1636-.6981-2.2627-1.3575-3.4856-1.3575-1.3977,0-2.449.8629-3.2927,1.707l-1.4146-1.4141c1.0674-1.0675,2.5669-2.293,4.7073-2.293,1.7771,0,3.2314.8726,4.5144,1.6425,1.1636.6981,2.2627,1.3575,3.4856,1.3575,1.3975,0,2.4487-.8629,3.293-1.7072l1.4141,1.4143c-1.0674,1.0675-2.5671,2.2928-4.707,2.2928Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,30c-7.7197,0-14-6.2804-14-14S8.2802,2,16,2s14,6.2804,14,14-6.2803,14-14,14Zm0-26c-6.6167,0-12,5.3832-12,12s5.3833,12,12,12,12-5.3832,12-12-5.3833-12-12-12Z" }), children);
1446
1591
  });
1447
1592
  if (process.env.NODE_ENV !== "production") EqualApproximately.propTypes = require_iconPropTypes.iconPropTypes;
1448
- const Equalizer = react.default.forwardRef(function Equalizer({ children, size = 16, ...rest }, ref) {
1449
- return react.default.createElement(require_Icon_js, {
1593
+ const Equalizer = /* @__PURE__ */ react.default.forwardRef(function Equalizer({ children, size = 16, ...rest }, ref) {
1594
+ return react.default.createElement(require_Icon.Icon, {
1450
1595
  width: size,
1451
1596
  height: size,
1452
1597
  ref,
@@ -1457,8 +1602,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1457
1602
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H10V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 24H10V26H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 28H20V30H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 24H20V26H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 20H10V22H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 20H20V22H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16H10V18H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 16H20V18H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12H20V14H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 8H20V10H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 4H20V6H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 28H30V30H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 24H30V26H22z" }), children);
1458
1603
  });
1459
1604
  if (process.env.NODE_ENV !== "production") Equalizer.propTypes = require_iconPropTypes.iconPropTypes;
1460
- const Erase = react.default.forwardRef(function Erase({ children, size = 16, ...rest }, ref) {
1461
- return react.default.createElement(require_Icon_js, {
1605
+ const Erase = /* @__PURE__ */ react.default.forwardRef(function Erase({ children, size = 16, ...rest }, ref) {
1606
+ return react.default.createElement(require_Icon.Icon, {
1462
1607
  width: size,
1463
1608
  height: size,
1464
1609
  ref,
@@ -1469,8 +1614,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1469
1614
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 27H30V29H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.38,10.51,19.45,2.59a2,2,0,0,0-2.83,0l-14,14a2,2,0,0,0,0,2.83L7.13,24h9.59L27.38,13.34A2,2,0,0,0,27.38,10.51ZM15.89,22H8L4,18l6.31-6.31,7.93,7.92Zm3.76-3.76-7.92-7.93L18,4,26,11.93Z" }), children);
1470
1615
  });
1471
1616
  if (process.env.NODE_ENV !== "production") Erase.propTypes = require_iconPropTypes.iconPropTypes;
1472
- const WatsonHealthErase_3D = react.default.forwardRef(function WatsonHealthErase_3D({ children, size = 16, ...rest }, ref) {
1473
- return react.default.createElement(require_Icon_js, {
1617
+ const WatsonHealthErase_3D = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthErase_3D({ children, size = 16, ...rest }, ref) {
1618
+ return react.default.createElement(require_Icon.Icon, {
1474
1619
  width: size,
1475
1620
  height: size,
1476
1621
  ref,
@@ -1481,8 +1626,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1481
1626
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.4148,16.5132,22.488,8.5859a2.0014,2.0014,0,0,0-2.8291,0L5.6208,22.624a2.0024,2.0024,0,0,0,0,2.8291L10.1663,30h9.5908L30.4148,19.3413A2.001,2.001,0,0,0,30.4148,16.5132ZM18.929,28H10.9949l-3.96-3.9619,6.3123-6.3118,7.9276,7.9276Zm3.76-3.76-7.9276-7.9276L21.074,10l7.9267,7.9272Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,12H8V2h3a3.0033,3.0033,0,0,1,3,3V9A3.0033,3.0033,0,0,1,11,12Zm-1-2h1a1.0009,1.0009,0,0,0,1-1V5a1.0009,1.0009,0,0,0-1-1H10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,2H0V4H4V6H1V8H4v2H0v2H4a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,4,2Z" }), children);
1482
1627
  });
1483
1628
  if (process.env.NODE_ENV !== "production") WatsonHealthErase_3D.propTypes = require_iconPropTypes.iconPropTypes;
1484
- const Error = react.default.forwardRef(function Error({ children, size = 16, ...rest }, ref) {
1485
- return react.default.createElement(require_Icon_js, {
1629
+ const Error = /* @__PURE__ */ react.default.forwardRef(function Error({ children, size = 16, ...rest }, ref) {
1630
+ return react.default.createElement(require_Icon.Icon, {
1486
1631
  width: size,
1487
1632
  height: size,
1488
1633
  ref,
@@ -1493,8 +1638,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1493
1638
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,16H2A14,14,0,1,0,16,2,14,14,0,0,0,2,16Zm23.15,7.75L8.25,6.85a12,12,0,0,1,16.9,16.9ZM8.24,25.16A12,12,0,0,1,6.84,8.27L23.73,25.16a12,12,0,0,1-15.49,0Z" }), children);
1494
1639
  });
1495
1640
  if (process.env.NODE_ENV !== "production") Error.propTypes = require_iconPropTypes.iconPropTypes;
1496
- const ErrorFilled = react.default.forwardRef(function ErrorFilled({ children, size = 16, ...rest }, ref) {
1497
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1641
+ const ErrorFilled = /* @__PURE__ */ react.default.forwardRef(function ErrorFilled({ children, size = 16, ...rest }, ref) {
1642
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1498
1643
  width: size,
1499
1644
  height: size,
1500
1645
  ref,
@@ -1508,7 +1653,7 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1508
1653
  "data-icon-path": "inner-path",
1509
1654
  opacity: "0"
1510
1655
  }), children);
1511
- if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon_js, {
1656
+ if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon.Icon, {
1512
1657
  width: size,
1513
1658
  height: size,
1514
1659
  ref,
@@ -1521,7 +1666,7 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1521
1666
  "data-icon-path": "inner-path",
1522
1667
  opacity: "0"
1523
1668
  }), children);
1524
- if (size === 24 || size === "24" || size === "24px") return react.default.createElement(require_Icon_js, {
1669
+ if (size === 24 || size === "24" || size === "24px") return react.default.createElement(require_Icon.Icon, {
1525
1670
  width: size,
1526
1671
  height: size,
1527
1672
  ref,
@@ -1535,7 +1680,7 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1535
1680
  "data-icon-path": "inner-path",
1536
1681
  opacity: "0"
1537
1682
  }), children);
1538
- return react.default.createElement(require_Icon_js, {
1683
+ return react.default.createElement(require_Icon.Icon, {
1539
1684
  width: size,
1540
1685
  height: size,
1541
1686
  ref,
@@ -1551,8 +1696,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1551
1696
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A13.914,13.914,0,0,0,2,16,13.914,13.914,0,0,0,16,30,13.914,13.914,0,0,0,30,16,13.914,13.914,0,0,0,16,2Zm5.4449,21L9,10.5557,10.5557,9,23,21.4448Z" }), children);
1552
1697
  });
1553
1698
  if (process.env.NODE_ENV !== "production") ErrorFilled.propTypes = require_iconPropTypes.iconPropTypes;
1554
- const ErrorOutline = react.default.forwardRef(function ErrorOutline({ children, size = 16, ...rest }, ref) {
1555
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1699
+ const ErrorOutline = /* @__PURE__ */ react.default.forwardRef(function ErrorOutline({ children, size = 16, ...rest }, ref) {
1700
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1556
1701
  width: size,
1557
1702
  height: size,
1558
1703
  ref,
@@ -1564,7 +1709,7 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1564
1709
  d: "M7.4 3.6H8.5V12.4H7.4z",
1565
1710
  transform: "rotate(-45 8 8)"
1566
1711
  }), children);
1567
- return react.default.createElement(require_Icon_js, {
1712
+ return react.default.createElement(require_Icon.Icon, {
1568
1713
  width: size,
1569
1714
  height: size,
1570
1715
  ref,
@@ -1578,8 +1723,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1578
1723
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A13.9138,13.9138,0,0,0,2,16,13.9138,13.9138,0,0,0,16,30,13.9138,13.9138,0,0,0,30,16,13.9138,13.9138,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12.0353,12.0353,0,0,1,16,28Z" }), children);
1579
1724
  });
1580
1725
  if (process.env.NODE_ENV !== "production") ErrorOutline.propTypes = require_iconPropTypes.iconPropTypes;
1581
- const Event = react.default.forwardRef(function Event({ children, size = 16, ...rest }, ref) {
1582
- return react.default.createElement(require_Icon_js, {
1726
+ const Event = /* @__PURE__ */ react.default.forwardRef(function Event({ children, size = 16, ...rest }, ref) {
1727
+ return react.default.createElement(require_Icon.Icon, {
1583
1728
  width: size,
1584
1729
  height: size,
1585
1730
  ref,
@@ -1590,8 +1735,8 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1590
1735
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 15 23.549 19.938 29 20.729 25 24.573 26 30 21 27.438 16 30 17 24.573 13 20.729 18.6 19.938 21 15z" }), children);
1591
1736
  });
1592
1737
  if (process.env.NODE_ENV !== "production") Event.propTypes = require_iconPropTypes.iconPropTypes;
1593
- const EventChange = react.default.forwardRef(function EventChange({ children, size = 16, ...rest }, ref) {
1594
- return react.default.createElement(require_Icon_js, {
1738
+ const EventChange = /* @__PURE__ */ react.default.forwardRef(function EventChange({ children, size = 16, ...rest }, ref) {
1739
+ return react.default.createElement(require_Icon.Icon, {
1595
1740
  width: size,
1596
1741
  height: size,
1597
1742
  ref,
@@ -1609,137 +1754,16 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1609
1754
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10.8945,8.4473l-1.7891-.8945,2.5-5c.1694-.3387.532-.5527.8945-.5527s.7251.214.8945.5527l2,4-1.7891.8945-1.1055-2.2112-1.6055,3.2112Z" }), children);
1610
1755
  });
1611
1756
  if (process.env.NODE_ENV !== "production") EventChange.propTypes = require_iconPropTypes.iconPropTypes;
1612
- const EventIncident = react.default.forwardRef(function EventIncident({ children, size = 16, ...rest }, ref) {
1613
- return react.default.createElement(require_Icon_js, {
1614
- width: size,
1615
- height: size,
1616
- ref,
1617
- xmlns: "http://www.w3.org/2000/svg",
1618
- viewBox: "0 0 32 32",
1619
- fill: "currentColor",
1620
- ...rest
1621
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.0176 26.7217 22.016 28.4541 24.9938 26.7322 24.9938 30 26.9907 30 26.9907 26.7316 30.0016 28.4727 31 26.7402 27.9898 24.9996 30.9902 23.2646 29.9918 21.5322 26.9907 23.2677 26.9907 20 24.9938 20 24.9938 23.2672 21.9984 21.5352 21 23.2676 23.9954 24.9996 21.0176 26.7217z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,23c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V21H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18,30H3c-.3494,0-.6736-.1824-.8547-.4811-.1814-.2986-.1936-.6703-.0325-.9802L15.1128,3.5387c.1721-.3311.5297-.5387.8872-.5387s.7151.2076.8872.5387l6.76,13-1.7744.9226-5.8728-11.2938L4.6472,28h13.3528v2Z" }), children);
1622
- });
1623
- if (process.env.NODE_ENV !== "production") EventIncident.propTypes = require_iconPropTypes.iconPropTypes;
1624
- const EventSchedule = react.default.forwardRef(function EventSchedule({ children, size = 16, ...rest }, ref) {
1625
- return react.default.createElement(require_Icon_js, {
1626
- width: size,
1627
- height: size,
1628
- ref,
1629
- xmlns: "http://www.w3.org/2000/svg",
1630
- viewBox: "0 0 32 32",
1631
- fill: "currentColor",
1632
- ...rest
1633
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a8,8,0,1,1,8-8A8,8,0,0,1,21,30Zm0-14a6,6,0,1,0,6,6A6,6,0,0,0,21,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.59 25 20 22.41 20 18 22 18 22 21.59 24 23.59 22.59 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" }), children);
1634
- });
1635
- if (process.env.NODE_ENV !== "production") EventSchedule.propTypes = require_iconPropTypes.iconPropTypes;
1636
- const EventWarning = react.default.forwardRef(function EventWarning({ children, size = 16, ...rest }, ref) {
1637
- return react.default.createElement(require_Icon_js, {
1638
- width: size,
1639
- height: size,
1640
- ref,
1641
- xmlns: "http://www.w3.org/2000/svg",
1642
- viewBox: "0 0 32 32",
1643
- fill: "currentColor",
1644
- ...rest
1645
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m27.3803,28h-6.7625l3.3822-6.7642,3.3803,6.7642Zm-3.3803-10c-.3915,0-.7305.2251-.8947.5527l-5,10c-.0674.1348-.1053.2866-.1053.4473,0,.5522.4477,1,1,1h10c.5523,0,1-.4478,1-1,0-.1382-.028-.2695-.0786-.3892l-5.0269-10.0581c-.1641-.3276-.5031-.5527-.8946-.5527h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,23c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V21H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15,30H3c-.3494,0-.6736-.1824-.8547-.4811-.1814-.2986-.1936-.6703-.0325-.9802L15.1128,3.5387c.1721-.3311.5297-.5387.8872-.5387s.7151.2076.8872.5387l6,11.5385-1.7744.9226-5.1128-9.8322L4.6472,28h10.3528v2Z" }), children);
1646
- });
1647
- if (process.env.NODE_ENV !== "production") EventWarning.propTypes = require_iconPropTypes.iconPropTypes;
1648
- const Events = react.default.forwardRef(function Events({ children, size = 16, ...rest }, ref) {
1649
- return react.default.createElement(require_Icon_js, {
1650
- width: size,
1651
- height: size,
1652
- ref,
1653
- xmlns: "http://www.w3.org/2000/svg",
1654
- viewBox: "0 0 32 32",
1655
- fill: "currentColor",
1656
- ...rest
1657
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14H24v2h2a3.0033,3.0033,0,0,1,3,3v4h2V19A5.0058,5.0058,0,0,0,26,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,4a3,3,0,1,1-3,3,3,3,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,24,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30H21V28a3.0033,3.0033,0,0,0-3-3H14a3.0033,3.0033,0,0,0-3,3v2H9V28a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,13a3,3,0,1,1-3,3,3,3,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,16,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,14H6a5.0059,5.0059,0,0,0-5,5v4H3V19a3.0033,3.0033,0,0,1,3-3H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,4A3,3,0,1,1,5,7,3,3,0,0,1,8,4M8,2a5,5,0,1,0,5,5A5,5,0,0,0,8,2Z" }), children);
1658
- });
1659
- if (process.env.NODE_ENV !== "production") Events.propTypes = require_iconPropTypes.iconPropTypes;
1660
- const EventsAlt = react.default.forwardRef(function EventsAlt({ children, size = 16, ...rest }, ref) {
1661
- return react.default.createElement(require_Icon_js, {
1662
- width: size,
1663
- height: size,
1664
- ref,
1665
- xmlns: "http://www.w3.org/2000/svg",
1666
- viewBox: "0 0 32 32",
1667
- fill: "currentColor",
1668
- ...rest
1669
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,31h2V29a1.0006,1.0006,0,0,1,1-1h6a1.0006,1.0006,0,0,1,1,1v2h2V29a3.0033,3.0033,0,0,0-3-3H21a3.0033,3.0033,0,0,0-3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,25a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,24,25Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,24,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,31H4V29a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v2h2V29a3.0033,3.0033,0,0,0-3-3H5a3.0033,3.0033,0,0,0-3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,25a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,8,25Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,8,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,16h2V14a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v2h2V14a3.0033,3.0033,0,0,0-3-3H21a3.0033,3.0033,0,0,0-3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,24,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,16H4V14a1.0013,1.0013,0,0,1,1-1h6a1.0013,1.0013,0,0,1,1,1v2h2V14a3.0033,3.0033,0,0,0-3-3H5a3.0033,3.0033,0,0,0-3,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,8,10ZM8,4a2,2,0,1,0,2,2A2.002,2.002,0,0,0,8,4Z" }), children);
1670
- });
1671
- if (process.env.NODE_ENV !== "production") EventsAlt.propTypes = require_iconPropTypes.iconPropTypes;
1672
- const ExamMode = react.default.forwardRef(function ExamMode({ children, size = 16, ...rest }, ref) {
1673
- return react.default.createElement(require_Icon_js, {
1674
- width: size,
1675
- height: size,
1676
- ref,
1677
- xmlns: "http://www.w3.org/2000/svg",
1678
- viewBox: "0 0 32 32",
1679
- fill: "currentColor",
1680
- ...rest
1681
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23v3H7V16.83l3.59,3.58L12,19,6,13,0,19l1.41,1.41L5,16.83V26a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,7v9.17l3.59-3.58L32,14l-6,6-6-6,1.41-1.41L25,16.17V7H13V5H25A2,2,0,0,1,27,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10H4A2,2,0,0,1,2,8V4A2,2,0,0,1,4,2H8a2,2,0,0,1,2,2V8A2,2,0,0,1,8,10ZM4,4V8H8V4Z" }), children);
1682
- });
1683
- if (process.env.NODE_ENV !== "production") ExamMode.propTypes = require_iconPropTypes.iconPropTypes;
1684
- const ExecutableProgram = react.default.forwardRef(function ExecutableProgram({ children, size = 16, ...rest }, ref) {
1685
- return react.default.createElement(require_Icon_js, {
1686
- width: size,
1687
- height: size,
1688
- ref,
1689
- xmlns: "http://www.w3.org/2000/svg",
1690
- viewBox: "0 0 32 32",
1691
- fill: "currentColor",
1692
- ...rest
1693
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1694
- fillRule: "evenodd",
1695
- d: "M25 21 32 26 25 31 25 21z"
1696
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.17 19 17.58 21.59 19 23 23 19 19 15 17.58 16.41 20.17 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.83 19 14.42 16.41 13 15 9 19 13 23 14.42 21.59 11.83 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1697
- cx: "9",
1698
- cy: "8",
1699
- r: "1"
1700
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1701
- cx: "6",
1702
- cy: "8",
1703
- r: "1"
1704
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4V12H28v7h2V6c0-1.1025-.8972-2-2-2H4c-1.1028,0-2,.8975-2,2V26c0,1.1025,.8972,2,2,2H21v-2ZM4,6H28v4H4V6Z" }), children);
1705
- });
1706
- if (process.env.NODE_ENV !== "production") ExecutableProgram.propTypes = require_iconPropTypes.iconPropTypes;
1707
- const ExecutionHistory = react.default.forwardRef(function ExecutionHistory({ children, size = 16, ...rest }, ref) {
1708
- return react.default.createElement(require_Icon_js, {
1709
- width: size,
1710
- height: size,
1711
- ref,
1712
- xmlns: "http://www.w3.org/2000/svg",
1713
- viewBox: "0 0 32 32",
1714
- fill: "currentColor",
1715
- ...rest
1716
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,22c0,3.8599-3.1401,7-7,7v-2c2.7568,0,5-2.2432,5-5s-2.2432-5-5-5c-2.045,0-3.8025,1.2373-4.5762,3h2.5762v2H3v-6h2v2.4131c1.2245-2.0405,3.4521-3.4131,6-3.4131,3.8599,0,7,3.1401,7,7ZM28,5v22c0,1.103-.8975,2-2,2h-6v-2h6v-4h-6v-2h6v-4h-6v-2h6v-4H4v-6c0-1.103.8975-2,2-2h20c1.1025,0,2,.897,2,2ZM26,5H6v4h20v-4Z" }), children);
1717
- });
1718
- if (process.env.NODE_ENV !== "production") ExecutionHistory.propTypes = require_iconPropTypes.iconPropTypes;
1719
- const Exit = react.default.forwardRef(function Exit({ children, size = 16, ...rest }, ref) {
1720
- return react.default.createElement(require_Icon_js, {
1721
- width: size,
1722
- height: size,
1723
- ref,
1724
- xmlns: "http://www.w3.org/2000/svg",
1725
- viewBox: "0 0 32 32",
1726
- fill: "currentColor",
1727
- ...rest
1728
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 4H28V28H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.414 20.586 7.828 17 22 17 22 15 7.828 15 11.414 11.414 10 10 4 16 10 22 11.414 20.586z" }), children);
1729
- });
1730
- if (process.env.NODE_ENV !== "production") Exit.propTypes = require_iconPropTypes.iconPropTypes;
1731
- const ExpandAll = react.default.forwardRef(function ExpandAll({ children, size = 16, ...rest }, ref) {
1732
- return react.default.createElement(require_Icon_js, {
1733
- width: size,
1734
- height: size,
1735
- ref,
1736
- xmlns: "http://www.w3.org/2000/svg",
1737
- viewBox: "0 0 32 32",
1738
- fill: "currentColor",
1739
- ...rest
1740
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,10H26a2.0025,2.0025,0,0,0,2-2V4a2.0025,2.0025,0,0,0-2-2H12a2.0025,2.0025,0,0,0-2,2V5H6V2H4V25a2.0025,2.0025,0,0,0,2,2h4v1a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V24a2.0025,2.0025,0,0,0-2-2H12a2.0025,2.0025,0,0,0-2,2v1H6V17h4v1a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V14a2.0025,2.0025,0,0,0-2-2H12a2.0025,2.0025,0,0,0-2,2v1H6V7h4V8A2.0025,2.0025,0,0,0,12,10Zm0-6H26l.0012,4H12Zm0,20H26l.0012,4H12Zm0-10H26l.0012,4H12Z" }), children);
1741
- });
1742
- if (process.env.NODE_ENV !== "production") ExpandAll.propTypes = require_iconPropTypes.iconPropTypes;
1757
+ exports.DirectionRotaryRightFilled = DirectionRotaryRightFilled;
1758
+ exports.DirectionRotaryStraight = DirectionRotaryStraight;
1759
+ exports.DirectionRotaryStraightFilled = DirectionRotaryStraightFilled;
1760
+ exports.DirectionSharpTurn = DirectionSharpTurn;
1761
+ exports.DirectionSharpTurnFilled = DirectionSharpTurnFilled;
1762
+ exports.DirectionStraight = DirectionStraight;
1763
+ exports.DirectionStraightFilled = DirectionStraightFilled;
1764
+ exports.DirectionStraightRight = DirectionStraightRight;
1765
+ exports.DirectionStraightRightFilled = DirectionStraightRightFilled;
1766
+ exports.DirectionUTurn = DirectionUTurn;
1743
1767
  exports.DirectionUTurnFilled = DirectionUTurnFilled;
1744
1768
  exports.DirectoryDomain = DirectoryDomain;
1745
1769
  exports.DisableStep = DisableStep;
@@ -1848,16 +1872,6 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1848
1872
  exports.ErrorOutline = ErrorOutline;
1849
1873
  exports.Event = Event;
1850
1874
  exports.EventChange = EventChange;
1851
- exports.EventIncident = EventIncident;
1852
- exports.EventSchedule = EventSchedule;
1853
- exports.EventWarning = EventWarning;
1854
- exports.Events = Events;
1855
- exports.EventsAlt = EventsAlt;
1856
- exports.ExamMode = ExamMode;
1857
- exports.ExecutableProgram = ExecutableProgram;
1858
- exports.ExecutionHistory = ExecutionHistory;
1859
- exports.Exit = Exit;
1860
- exports.ExpandAll = ExpandAll;
1861
1875
  exports.WatsonHealthDna = WatsonHealthDna;
1862
1876
  exports.WatsonHealthDownloadStudy = WatsonHealthDownloadStudy;
1863
1877
  exports.WatsonHealthEdgeEnhancement = WatsonHealthEdgeEnhancement;
@@ -1866,11 +1880,10 @@ var require_bucket_6 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1866
1880
  exports.WatsonHealthEdgeEnhancement_03 = WatsonHealthEdgeEnhancement_03;
1867
1881
  exports.WatsonHealthErase_3D = WatsonHealthErase_3D;
1868
1882
  }));
1869
-
1870
1883
  //#endregion
1871
- Object.defineProperty(exports, 'default', {
1872
- enumerable: true,
1873
- get: function () {
1874
- return require_bucket_6();
1875
- }
1876
- });
1884
+ Object.defineProperty(exports, "default", {
1885
+ enumerable: true,
1886
+ get: function() {
1887
+ return require_bucket_6();
1888
+ }
1889
+ });