@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-17.js
14
12
  var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,384 @@ var require_bucket_17 = /* @__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 Snowflake = react.default.forwardRef(function Snowflake({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const SkipBack = /* @__PURE__ */ react.default.forwardRef(function SkipBack({ children, size = 16, ...rest }, ref) {
28
+ return react.default.createElement(require_Icon.Icon, {
29
+ width: size,
30
+ height: size,
31
+ ref,
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ viewBox: "0 0 32 32",
34
+ fill: "currentColor",
35
+ ...rest
36
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,28a1,1,0,0,1-.5-.13l-19-11a1,1,0,0,1,0-1.74l19-11a1,1,0,0,1,1,0A1,1,0,0,1,28,5V27a1,1,0,0,1-1,1ZM10,16l16,9.27V6.73Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 4H4V28H2z" }), children);
37
+ });
38
+ if (process.env.NODE_ENV !== "production") SkipBack.propTypes = require_iconPropTypes.iconPropTypes;
39
+ const SkipBackFilled = /* @__PURE__ */ react.default.forwardRef(function SkipBackFilled({ children, size = 16, ...rest }, ref) {
40
+ return react.default.createElement(require_Icon.Icon, {
41
+ width: size,
42
+ height: size,
43
+ ref,
44
+ xmlns: "http://www.w3.org/2000/svg",
45
+ viewBox: "0 0 32 32",
46
+ fill: "currentColor",
47
+ ...rest
48
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,28a.9975.9975,0,0,1-.501-.1348l-19-11a1,1,0,0,1,0-1.73l19-11A1,1,0,0,1,28,5V27a1,1,0,0,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 4H4V28H2z" }), children);
49
+ });
50
+ if (process.env.NODE_ENV !== "production") SkipBackFilled.propTypes = require_iconPropTypes.iconPropTypes;
51
+ const SkipBackOutline = /* @__PURE__ */ react.default.forwardRef(function SkipBackOutline({ children, size = 16, ...rest }, ref) {
52
+ return react.default.createElement(require_Icon.Icon, {
53
+ width: size,
54
+ height: size,
55
+ ref,
56
+ xmlns: "http://www.w3.org/2000/svg",
57
+ viewBox: "0 0 32 32",
58
+ fill: "currentColor",
59
+ ...rest
60
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7485l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Zm-6.9409-6L22,19.3006V12.7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
61
+ d: "M9 10H11V22H9z",
62
+ transform: "matrix(-1 0 0 -1 20 32)"
63
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z" }), children);
64
+ });
65
+ if (process.env.NODE_ENV !== "production") SkipBackOutline.propTypes = require_iconPropTypes.iconPropTypes;
66
+ const SkipBackOutlineFilled = /* @__PURE__ */ react.default.forwardRef(function SkipBackOutlineFilled({ children, size = 16, ...rest }, ref) {
67
+ return react.default.createElement(require_Icon.Icon, {
68
+ width: size,
69
+ height: size,
70
+ ref,
71
+ xmlns: "http://www.w3.org/2000/svg",
72
+ viewBox: "0 0 32 32",
73
+ fill: "currentColor",
74
+ ...rest
75
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM10,22H8V10h2Zm14-1a1,1,0,0,1-1.4858.874l-9-5a1,1,0,0,1,0-1.748l9-5A1,1,0,0,1,24,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 19.301 22 12.699 16.059 16 22 19.301z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
76
+ fill: "none",
77
+ d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7486l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Zm-6.9409-6L22,19.3005V12.7Z"
78
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
79
+ fill: "none",
80
+ d: "M8 10H10V22H8z",
81
+ transform: "matrix(-1 0 0 -1 18 32)"
82
+ }), children);
83
+ });
84
+ if (process.env.NODE_ENV !== "production") SkipBackOutlineFilled.propTypes = require_iconPropTypes.iconPropTypes;
85
+ const SkipBackOutlineSolid = /* @__PURE__ */ react.default.forwardRef(function SkipBackOutlineSolid({ children, size = 16, ...rest }, ref) {
86
+ return react.default.createElement(require_Icon.Icon, {
87
+ width: size,
88
+ height: size,
89
+ ref,
90
+ xmlns: "http://www.w3.org/2000/svg",
91
+ viewBox: "0 0 32 32",
92
+ fill: "currentColor",
93
+ ...rest
94
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7485l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
95
+ d: "M9 10H11V22H9z",
96
+ transform: "matrix(-1 0 0 -1 20 32)"
97
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z" }), children);
98
+ });
99
+ if (process.env.NODE_ENV !== "production") SkipBackOutlineSolid.propTypes = require_iconPropTypes.iconPropTypes;
100
+ const SkipBackSolidFilled = /* @__PURE__ */ react.default.forwardRef(function SkipBackSolidFilled({ children, size = 16, ...rest }, ref) {
101
+ return react.default.createElement(require_Icon.Icon, {
102
+ width: size,
103
+ height: size,
104
+ ref,
105
+ xmlns: "http://www.w3.org/2000/svg",
106
+ viewBox: "0 0 32 32",
107
+ fill: "currentColor",
108
+ ...rest
109
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM10,22H8V10h2Zm14-1a1,1,0,0,1-1.4858.874l-9-5a1,1,0,0,1,0-1.748l9-5A1,1,0,0,1,24,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
110
+ fill: "none",
111
+ d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7486l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Z"
112
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
113
+ fill: "none",
114
+ d: "M8 10H10V22H8z",
115
+ transform: "matrix(-1 0 0 -1 18 32)"
116
+ }), children);
117
+ });
118
+ if (process.env.NODE_ENV !== "production") SkipBackSolidFilled.propTypes = require_iconPropTypes.iconPropTypes;
119
+ const SkipForward = /* @__PURE__ */ react.default.forwardRef(function SkipForward({ 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: "M5,28a1,1,0,0,1-1-1V5a1,1,0,0,1,.5-.87,1,1,0,0,1,1,0l19,11a1,1,0,0,1,0,1.74l-19,11A1,1,0,0,1,5,28ZM6,6.73V25.27L22,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 4H30V28H28z" }), children);
129
+ });
130
+ if (process.env.NODE_ENV !== "production") SkipForward.propTypes = require_iconPropTypes.iconPropTypes;
131
+ const SkipForwardFilled = /* @__PURE__ */ react.default.forwardRef(function SkipForwardFilled({ children, size = 16, ...rest }, ref) {
132
+ return react.default.createElement(require_Icon.Icon, {
133
+ width: size,
134
+ height: size,
135
+ ref,
136
+ xmlns: "http://www.w3.org/2000/svg",
137
+ viewBox: "0 0 32 32",
138
+ fill: "currentColor",
139
+ ...rest
140
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 4H30V28H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.501-.8652l19,11a1,1,0,0,1,0,1.73l-19,11A.9975.9975,0,0,1,5,28Z" }), children);
141
+ });
142
+ if (process.env.NODE_ENV !== "production") SkipForwardFilled.propTypes = require_iconPropTypes.iconPropTypes;
143
+ const SkipForwardOutline = /* @__PURE__ */ react.default.forwardRef(function SkipForwardOutline({ children, size = 16, ...rest }, ref) {
144
+ return react.default.createElement(require_Icon.Icon, {
145
+ width: size,
146
+ height: size,
147
+ ref,
148
+ xmlns: "http://www.w3.org/2000/svg",
149
+ viewBox: "0 0 32 32",
150
+ fill: "currentColor",
151
+ ...rest
152
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 10H23V22H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.4927,21.8618A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.8742l9,5a1,1,0,0,1,0,1.7485l-9,5a1.0009,1.0009,0,0,1-.9931-.0125ZM10,12.7v6.6011L15.9409,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z" }), children);
153
+ });
154
+ if (process.env.NODE_ENV !== "production") SkipForwardOutline.propTypes = require_iconPropTypes.iconPropTypes;
155
+ const SkipForwardOutlineFilled = /* @__PURE__ */ react.default.forwardRef(function SkipForwardOutlineFilled({ children, size = 16, ...rest }, ref) {
156
+ return react.default.createElement(require_Icon.Icon, {
157
+ width: size,
158
+ height: size,
159
+ ref,
160
+ xmlns: "http://www.w3.org/2000/svg",
161
+ viewBox: "0 0 32 32",
162
+ fill: "currentColor",
163
+ ...rest
164
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 19.301 15.941 16 10 12.699 10 19.301z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm2.4858,14.874-9,5A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.874l9,5a1,1,0,0,1,0,1.748ZM24,22H22V10h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
165
+ fill: "none",
166
+ d: "M22 10H24V22H22z"
167
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
168
+ fill: "none",
169
+ d: "M8.4927,21.8618A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.8743l9,5a1,1,0,0,1,0,1.7486l-9,5a1.0009,1.0009,0,0,1-.9931-.0125ZM10,12.7v6.601L15.9409,16Z"
170
+ }), children);
171
+ });
172
+ if (process.env.NODE_ENV !== "production") SkipForwardOutlineFilled.propTypes = require_iconPropTypes.iconPropTypes;
173
+ const SkipForwardOutlineSolid = /* @__PURE__ */ react.default.forwardRef(function SkipForwardOutlineSolid({ children, size = 16, ...rest }, ref) {
174
+ return react.default.createElement(require_Icon.Icon, {
175
+ width: size,
176
+ height: size,
177
+ ref,
178
+ xmlns: "http://www.w3.org/2000/svg",
179
+ viewBox: "0 0 32 32",
180
+ fill: "currentColor",
181
+ ...rest
182
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 10H23V22H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.4927,21.8618A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.8742l9,5a1,1,0,0,1,0,1.7485l-9,5a1.0009,1.0009,0,0,1-.9931-.0125Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z" }), children);
183
+ });
184
+ if (process.env.NODE_ENV !== "production") SkipForwardOutlineSolid.propTypes = require_iconPropTypes.iconPropTypes;
185
+ const SkipForwardSolidFilled = /* @__PURE__ */ react.default.forwardRef(function SkipForwardSolidFilled({ children, size = 16, ...rest }, ref) {
186
+ return react.default.createElement(require_Icon.Icon, {
187
+ width: size,
188
+ height: size,
189
+ ref,
190
+ xmlns: "http://www.w3.org/2000/svg",
191
+ viewBox: "0 0 32 32",
192
+ fill: "currentColor",
193
+ ...rest
194
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm2.4858,14.874-9,5A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.874l9,5a1,1,0,0,1,0,1.748ZM24,22H22V10h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
195
+ fill: "none",
196
+ d: "M22 10H24V22H22z"
197
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
198
+ fill: "none",
199
+ d: "M8.4927,21.8618A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.8743l9,5a1,1,0,0,1,0,1.7486l-9,5a1.0009,1.0009,0,0,1-.9931-.0125Z"
200
+ }), children);
201
+ });
202
+ if (process.env.NODE_ENV !== "production") SkipForwardSolidFilled.propTypes = require_iconPropTypes.iconPropTypes;
203
+ const Sleet = /* @__PURE__ */ react.default.forwardRef(function Sleet({ children, size = 16, ...rest }, ref) {
204
+ return react.default.createElement(require_Icon.Icon, {
205
+ width: size,
206
+ height: size,
207
+ ref,
208
+ xmlns: "http://www.w3.org/2000/svg",
209
+ viewBox: "0 0 32 32",
210
+ fill: "currentColor",
211
+ ...rest
212
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H8V26H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 26H10V28H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 28H12V30H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 24H12V26H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 28H8V30H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,21,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4973,6.4973,0,0,0,8.5,22h8.8818L16.106,24.5527a1,1,0,1,0,1.7885.8946L19.6177,22H23.5A6.4974,6.4974,0,0,0,24.8008,9.1362ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z" }), children);
213
+ });
214
+ if (process.env.NODE_ENV !== "production") Sleet.propTypes = require_iconPropTypes.iconPropTypes;
215
+ const Slisor = /* @__PURE__ */ react.default.forwardRef(function Slisor({ children, size = 16, ...rest }, ref) {
216
+ return react.default.createElement(require_Icon.Icon, {
217
+ width: size,
218
+ height: size,
219
+ ref,
220
+ xmlns: "http://www.w3.org/2000/svg",
221
+ viewBox: "0 0 32 32",
222
+ fill: "currentColor",
223
+ ...rest
224
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
225
+ cx: "7",
226
+ cy: "25",
227
+ r: "1"
228
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a1.0005,1.0005,0,0,1-.4473-.1055l-10-5,.8946-1.789L16,19.8821l9.5527-4.7766.8946,1.789-10,5A1.0005,1.0005,0,0,1,16,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,16a1.0005,1.0005,0,0,1-.4473-.1055l-10-5a1,1,0,0,1,0-1.789l10-5a1.0008,1.0008,0,0,1,.8946,0l10,5a1,1,0,0,1,0,1.789l-10,5A1.0005,1.0005,0,0,1,16,16ZM8.2358,10,16,13.8821,23.7642,10,16,6.1179Z" }), children);
229
+ });
230
+ if (process.env.NODE_ENV !== "production") Slisor.propTypes = require_iconPropTypes.iconPropTypes;
231
+ const Slm = /* @__PURE__ */ react.default.forwardRef(function Slm({ children, size = 16, ...rest }, ref) {
232
+ return react.default.createElement(require_Icon.Icon, {
233
+ width: size,
234
+ height: size,
235
+ ref,
236
+ xmlns: "http://www.w3.org/2000/svg",
237
+ viewBox: "0 0 32 32",
238
+ fill: "currentColor",
239
+ ...rest
240
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 9 26.5 14 26 16 25.5 14 24 9 22 9 22 23 24 23 24 15 23.8 13 24.4 15 26 19.6 27.6 15 28.2 13 28 15 28 23 30 23 30 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 21 14 9 12 9 12 23 20 23 20 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,23H2v-2h6v-4H4c-1.1,0-2-0.9-2-2v-4c0-1.1,0.9-2,2-2h6v2H4v4h4c1.1,0,2,0.9,2,2v4C10,22.1,9.1,23,8,23z" }), children);
241
+ });
242
+ if (process.env.NODE_ENV !== "production") Slm.propTypes = require_iconPropTypes.iconPropTypes;
243
+ const Smell = /* @__PURE__ */ react.default.forwardRef(function Smell({ children, size = 16, ...rest }, ref) {
244
+ return react.default.createElement(require_Icon.Icon, {
245
+ width: size,
246
+ height: size,
247
+ ref,
248
+ xmlns: "http://www.w3.org/2000/svg",
249
+ viewBox: "0 0 32 32",
250
+ fill: "currentColor",
251
+ ...rest
252
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,15V10H20v7h2a3,3,0,0,1,0,6H21V21H19v2a3,3,0,0,1-6,0V21H11v2H10a3,3,0,0,1,0-6h2V9a3,3,0,0,1,3-3h1V4H15a5,5,0,0,0-5,5v6a5,5,0,0,0,0,10h1.42a5,5,0,0,0,9.16,0H22a5,5,0,0,0,0-10Z" }), children);
253
+ });
254
+ if (process.env.NODE_ENV !== "production") Smell.propTypes = require_iconPropTypes.iconPropTypes;
255
+ const Smoke = /* @__PURE__ */ react.default.forwardRef(function Smoke({ children, size = 16, ...rest }, ref) {
256
+ return react.default.createElement(require_Icon.Icon, {
257
+ width: size,
258
+ height: size,
259
+ ref,
260
+ xmlns: "http://www.w3.org/2000/svg",
261
+ viewBox: "0 0 32 32",
262
+ fill: "currentColor",
263
+ ...rest
264
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.001,28a.998.998,0,0,1-.8008-.4l-.8145-1.086a8.9976,8.9976,0,0,1-1.6005-7.2856l1.4736-6.8762a6.9956,6.9956,0,0,0-1.2446-5.6668L23.2,5.6a1,1,0,1,1,1.6-1.2l.8145,1.0857a8.9976,8.9976,0,0,1,1.6005,7.2856l-1.4736,6.8762a6.9956,6.9956,0,0,0,1.2446,5.6668L27.8,26.4A1,1,0,0,1,27.001,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.001,28a.998.998,0,0,1-.8008-.4l-.8145-1.086a8.9976,8.9976,0,0,1-1.6005-7.2856l1.4736-6.8762a6.9956,6.9956,0,0,0-1.2446-5.6668L18.2,5.6a1,1,0,1,1,1.6-1.2l.8145,1.0857a8.9976,8.9976,0,0,1,1.6005,7.2856l-1.4736,6.8762a6.9956,6.9956,0,0,0,1.2446,5.6668L22.8,26.4A1,1,0,0,1,22.001,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.001,28a.998.998,0,0,1-.8008-.4l-.8145-1.086a8.9976,8.9976,0,0,1-1.6005-7.2856l1.4736-6.8762a6.9956,6.9956,0,0,0-1.2446-5.6668L13.2,5.6a1,1,0,1,1,1.6-1.2l.8145,1.0857a8.9976,8.9976,0,0,1,1.6005,7.2856l-1.4736,6.8762a6.9956,6.9956,0,0,0,1.2446,5.6668L17.8,26.4A1,1,0,0,1,17.001,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.001,28a.998.998,0,0,1-.8008-.4l-.8145-1.086a8.9976,8.9976,0,0,1-1.6005-7.2856l1.4736-6.8762A6.9956,6.9956,0,0,0,9.0142,6.6855L8.2,5.6A1,1,0,1,1,9.8,4.4l.8145,1.0857a8.9976,8.9976,0,0,1,1.6005,7.2856l-1.4736,6.8762a6.9956,6.9956,0,0,0,1.2446,5.6668L12.8,26.4A1,1,0,0,1,12.001,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.001,28A.998.998,0,0,1,6.2,27.6l-.8145-1.086a8.9976,8.9976,0,0,1-1.6-7.2856l1.4736-6.8762A6.9956,6.9956,0,0,0,4.0142,6.6855L3.2,5.6A1,1,0,1,1,4.8,4.4l.8145,1.0857a8.9976,8.9976,0,0,1,1.6005,7.2856L5.7412,19.6474a6.9956,6.9956,0,0,0,1.2446,5.6668L7.8,26.4A1,1,0,0,1,7.001,28Z" }), children);
265
+ });
266
+ if (process.env.NODE_ENV !== "production") Smoke.propTypes = require_iconPropTypes.iconPropTypes;
267
+ const WatsonHealthSmoothing = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSmoothing({ children, size = 16, ...rest }, ref) {
268
+ return react.default.createElement(require_Icon.Icon, {
269
+ width: size,
270
+ height: size,
271
+ ref,
272
+ xmlns: "http://www.w3.org/2000/svg",
273
+ viewBox: "0 0 32 32",
274
+ fill: "currentColor",
275
+ ...rest
276
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
277
+ cx: "16",
278
+ cy: "16",
279
+ r: "5"
280
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.7,4.7a14.7029,14.7029,0,0,0-3,3.1L6.3,9A13.2634,13.2634,0,0,1,8.9,6.3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.6,12.3l-1.9-.6A12.5111,12.5111,0,0,0,2,16H4A11.4756,11.4756,0,0,1,4.6,12.3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.7,20.4a14.4029,14.4029,0,0,0,2,3.9l1.6-1.2a12.8867,12.8867,0,0,1-1.7-3.3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.8,27.3a14.4029,14.4029,0,0,0,3.9,2l.6-1.9A12.8867,12.8867,0,0,1,9,25.7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.7,2.7l.6,1.9A11.4756,11.4756,0,0,1,16,4V2A12.5111,12.5111,0,0,0,11.7,2.7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.2,27.3a15.18,15.18,0,0,0,3.1-3.1L25.7,23A11.526,11.526,0,0,1,23,25.7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.4,19.7l1.9.6A15.4747,15.4747,0,0,0,30,16H28A11.4756,11.4756,0,0,1,27.4,19.7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.2,11.6a14.4029,14.4029,0,0,0-2-3.9L25.6,8.9a12.8867,12.8867,0,0,1,1.7,3.3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.1,4.6a14.4029,14.4029,0,0,0-3.9-2l-.6,1.9a12.8867,12.8867,0,0,1,3.3,1.7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.3,29.3l-.6-1.9A11.4756,11.4756,0,0,1,16,28v2A21.4206,21.4206,0,0,0,20.3,29.3Z" }), children);
281
+ });
282
+ if (process.env.NODE_ENV !== "production") WatsonHealthSmoothing.propTypes = require_iconPropTypes.iconPropTypes;
283
+ const WatsonHealthSmoothingCursor = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSmoothingCursor({ children, size = 16, ...rest }, ref) {
284
+ return react.default.createElement(require_Icon.Icon, {
285
+ width: size,
286
+ height: size,
287
+ ref,
288
+ xmlns: "http://www.w3.org/2000/svg",
289
+ viewBox: "0 0 32 32",
290
+ fill: "currentColor",
291
+ ...rest
292
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
293
+ cx: "18",
294
+ cy: "18",
295
+ r: "4"
296
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a11.8932,11.8932,0,0,1-4.1035-.72L14.58,27.4A9.9725,9.9725,0,0,0,18,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.1484,29.2637l-.6914-1.877a9.9556,9.9556,0,0,0,2.9973-1.748l1.2916,1.5268A11.9525,11.9525,0,0,1,22.1484,29.2637Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.2893,27.1951A12.0141,12.0141,0,0,1,7.61,24.0078l1.73-1.0029a10.0236,10.0236,0,0,0,2.2347,2.6584Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.4133,23.967l-1.7343-.9956a9.9159,9.9159,0,0,0,1.176-3.2641l1.9712.3388A11.8956,11.8956,0,0,1,28.4133,23.967Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.1821,20.0925A12.1282,12.1282,0,0,1,6.1777,15.93l1.9707.3423a10.1214,10.1214,0,0,0,.0035,3.4738Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.8447,16.2339a9.9019,9.9019,0,0,0-1.1953-3.2564l1.7285-1.0063a11.9029,11.9029,0,0,1,1.4361,3.9121Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.3313,13.0107l-1.7324-.999a12.01,12.01,0,0,1,2.6738-3.1931l1.2886,1.53A10.01,10.01,0,0,0,9.3313,13.0107Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.4094,10.3237a9.96,9.96,0,0,0-3.0088-1.7309l.68-1.8809a11.9491,11.9491,0,0,1,3.6118,2.0772Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.562,8.6064l-.6875-1.8779A12.1031,12.1031,0,0,1,18,6V8A10.0875,10.0875,0,0,0,14.562,8.6064Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2 2 2 2 11 4 11 4 4 11 4 11 2z" }), children);
297
+ });
298
+ if (process.env.NODE_ENV !== "production") WatsonHealthSmoothingCursor.propTypes = require_iconPropTypes.iconPropTypes;
299
+ const Snooze = /* @__PURE__ */ react.default.forwardRef(function Snooze({ children, size = 16, ...rest }, ref) {
300
+ return react.default.createElement(require_Icon.Icon, {
301
+ width: size,
302
+ height: size,
303
+ ref,
304
+ xmlns: "http://www.w3.org/2000/svg",
305
+ viewBox: "0 0 32 32",
306
+ fill: "currentColor",
307
+ ...rest
308
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 14 20 12 12 12 12 14 17.5 14 12 20 12 22 20 22 20 20 14.507 20 20 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
309
+ d: "M24.5 3.965H26.499V9.036999999999999H24.5z",
310
+ transform: "rotate(-44.945 25.5 6.5)"
311
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28A11,11,0,1,1,27,17,11.0125,11.0125,0,0,1,16,28ZM16,8a9,9,0,1,0,9,9A9.01,9.01,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
312
+ d: "M3.965 5.501H9.036999999999999V7.5H3.965z",
313
+ transform: "rotate(-45.055 6.5 6.5)"
314
+ }), children);
315
+ });
316
+ if (process.env.NODE_ENV !== "production") Snooze.propTypes = require_iconPropTypes.iconPropTypes;
317
+ const Snow = /* @__PURE__ */ react.default.forwardRef(function Snow({ children, size = 16, ...rest }, ref) {
318
+ return react.default.createElement(require_Icon.Icon, {
319
+ width: size,
320
+ height: size,
321
+ ref,
322
+ xmlns: "http://www.w3.org/2000/svg",
323
+ viewBox: "0 0 32 32",
324
+ fill: "currentColor",
325
+ ...rest
326
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,22H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22ZM16,4a7,7,0,0,0-6.94,6.14L9,11,8.14,11a4.5,4.5,0,0,0,.36,9h15a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82A7,7,0,0,0,16,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 25.05 10.95 24 9.5 25.45 8.05 24 7 25.05 8.45 26.5 7 27.95 8.05 29 9.5 27.55 10.95 29 12 27.95 10.55 26.5 12 25.05z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 25.05 24.95 24 23.5 25.45 22.05 24 21 25.05 22.45 26.5 21 27.95 22.05 29 23.5 27.55 24.95 29 26 27.95 24.55 26.5 26 25.05z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 27.05 17.95 26 16.5 27.45 15.05 26 14 27.05 15.45 28.5 14 29.95 15.05 31 16.5 29.55 17.95 31 19 29.95 17.55 28.5 19 27.05z" }), children);
327
+ });
328
+ if (process.env.NODE_ENV !== "production") Snow.propTypes = require_iconPropTypes.iconPropTypes;
329
+ const SnowBlizzard = /* @__PURE__ */ react.default.forwardRef(function SnowBlizzard({ children, size = 16, ...rest }, ref) {
330
+ return react.default.createElement(require_Icon.Icon, {
331
+ width: size,
332
+ height: size,
333
+ ref,
334
+ xmlns: "http://www.w3.org/2000/svg",
335
+ viewBox: "0 0 32 32",
336
+ fill: "currentColor",
337
+ ...rest
338
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 10H15V12H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V14H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 14H19V16H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 10H19V12H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 14H15V16H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 26H5V28H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 28H7V30H5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 30H9V32H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 26H9V28H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 30H5V32H3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 26H25V28H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 28H27V30H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 30H29V32H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 26H29V28H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 30H25V32H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H10V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 20H12V22H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 22H14V24H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 18H14V20H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 22H10V24H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 18H20V20H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20H22V22H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 22H24V24H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 18H24V20H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 22H20V24H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 26H15V28H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 28H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 30H19V32H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 26H19V28H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 30H15V32H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4957,6.4957,0,0,0,6,21.4985v-2.26A4.4943,4.4943,0,0,1,8.144,11.019l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4944,4.4944,0,0,1,26,19.2383v2.26A6.4958,6.4958,0,0,0,24.8008,9.1362Z" }), children);
339
+ });
340
+ if (process.env.NODE_ENV !== "production") SnowBlizzard.propTypes = require_iconPropTypes.iconPropTypes;
341
+ const SnowHeavy = /* @__PURE__ */ react.default.forwardRef(function SnowHeavy({ children, size = 16, ...rest }, ref) {
342
+ return react.default.createElement(require_Icon.Icon, {
343
+ width: size,
344
+ height: size,
345
+ ref,
346
+ xmlns: "http://www.w3.org/2000/svg",
347
+ viewBox: "0 0 32 32",
348
+ fill: "currentColor",
349
+ ...rest
350
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H6V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 28H8V30H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 30H10V32H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 26H10V28H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 30H6V32H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H10V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 20H12V22H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 22H14V24H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 18H14V20H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 22H10V24H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 18H20V20H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20H22V22H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 22H24V24H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 18H24V20H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 22H20V24H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 26H16V28H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28H18V30H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 30H20V32H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 26H20V28H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 30H16V32H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4957,6.4957,0,0,0,6,21.4985v-2.26A4.4943,4.4943,0,0,1,8.144,11.019l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4944,4.4944,0,0,1,26,19.2383v2.26A6.4958,6.4958,0,0,0,24.8008,9.1362Z" }), children);
351
+ });
352
+ if (process.env.NODE_ENV !== "production") SnowHeavy.propTypes = require_iconPropTypes.iconPropTypes;
353
+ const SnowScattered = /* @__PURE__ */ react.default.forwardRef(function SnowScattered({ children, size = 16, ...rest }, ref) {
354
+ return react.default.createElement(require_Icon.Icon, {
355
+ width: size,
356
+ height: size,
357
+ ref,
358
+ xmlns: "http://www.w3.org/2000/svg",
359
+ viewBox: "0 0 32 32",
360
+ fill: "currentColor",
361
+ ...rest
362
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H4V28H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 28H6V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 30H8V32H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 26H8V28H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 30H4V32H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 26H22V28H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 28H24V30H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 30H26V32H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 26H26V28H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 30H22V32H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 26H13V28H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 28H15V30H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 30H17V32H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 30H13V32H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 0H22V3H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 10.001H32V12.001H29z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
363
+ d: "M26.732 3.768H29.732V5.768H26.732z",
364
+ transform: "rotate(-45 28.232 4.768)"
365
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
366
+ d: "M26.732 16.233H29.732V18.233H26.732z",
367
+ transform: "rotate(225 28.232 17.233)"
368
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
369
+ d: "M12.268 3.768H15.268V5.768H12.268z",
370
+ transform: "rotate(225 13.768 4.768)"
371
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11A5.9852,5.9852,0,0,0,16.1431,7.5083,7.3737,7.3737,0,0,0,13.5,7a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,24H19a5.9672,5.9672,0,0,0,5.5667-8.2A5.9722,5.9722,0,0,0,27,11ZM19,22H8a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,22Zm4.5222-7.9131a5.9592,5.9592,0,0,0-2.8728-1.8428,7.5212,7.5212,0,0,0-2.7224-3.78,3.9869,3.9869,0,1,1,5.5952,5.6225Z" }), children);
372
+ });
373
+ if (process.env.NODE_ENV !== "production") SnowScattered.propTypes = require_iconPropTypes.iconPropTypes;
374
+ const SnowScatteredNight = /* @__PURE__ */ react.default.forwardRef(function SnowScatteredNight({ children, size = 16, ...rest }, ref) {
375
+ return react.default.createElement(require_Icon.Icon, {
376
+ width: size,
377
+ height: size,
378
+ ref,
379
+ xmlns: "http://www.w3.org/2000/svg",
380
+ viewBox: "0 0 32 32",
381
+ fill: "currentColor",
382
+ ...rest
383
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H4V28H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 28H6V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 30H8V32H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 26H8V28H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 30H4V32H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 26H22V28H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 28H24V30H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 30H26V32H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 26H26V28H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 30H22V32H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 26H13V28H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 28H15V30H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 30H17V32H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 30H13V32H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.8439,13.0347a1.517,1.517,0,0,0-1.23-.8658,5.3552,5.3552,0,0,1-3.4095-1.7158,6.4655,6.4655,0,0,1-1.286-6.3926,1.6025,1.6025,0,0,0-.2989-1.5459,1.4543,1.4543,0,0,0-1.36-.4931l-.0191.0039a7.7685,7.7685,0,0,0-5.8847,5.5737A7.3706,7.3706,0,0,0,13.5,7a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,24H19a6.0066,6.0066,0,0,0,6-6c0-.0571-.0123-.1113-.0139-.1685a7.5076,7.5076,0,0,0,4.7611-3.2768A1.5369,1.5369,0,0,0,29.8439,13.0347ZM19,22H8a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,22Zm5.5974-6.1289a5.9661,5.9661,0,0,0-3.948-3.627,7.49,7.49,0,0,0-2.489-3.58,5.9018,5.9018,0,0,1,3.6381-4.4473,8.4577,8.4577,0,0,0,1.94,7.5967A7.4007,7.4007,0,0,0,27.64,14.041,5.4487,5.4487,0,0,1,24.5974,15.8711Z" }), children);
384
+ });
385
+ if (process.env.NODE_ENV !== "production") SnowScatteredNight.propTypes = require_iconPropTypes.iconPropTypes;
386
+ const SnowDensity = /* @__PURE__ */ react.default.forwardRef(function SnowDensity({ children, size = 16, ...rest }, ref) {
387
+ return react.default.createElement(require_Icon.Icon, {
388
+ width: size,
389
+ height: size,
390
+ ref,
391
+ xmlns: "http://www.w3.org/2000/svg",
392
+ viewBox: "0 0 32 32",
393
+ fill: "currentColor",
394
+ ...rest
395
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28a9.0114,9.0114,0,0,1-9-9,9.9843,9.9843,0,0,1,1.4941-4.9554L15.1528,3.4367a1.04,1.04,0,0,1,1.6944,0l6.6289,10.5564A10.0633,10.0633,0,0,1,25,19,9.0114,9.0114,0,0,1,16,28ZM16,5.8483l-5.7817,9.2079A7.9771,7.9771,0,0,0,9,19a7,7,0,0,0,14,0,8.0615,8.0615,0,0,0-1.248-3.9953Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.6 16.8 19.4 15.2 17 17 17 14 15 14 15 17 12.6 15.2 11.4 16.8 14.333 19 11.4 21.2 12.6 22.8 15 21 15 24 17 24 17 21 19.4 22.8 20.6 21.2 17.667 19 20.6 16.8z" }), children);
396
+ });
397
+ if (process.env.NODE_ENV !== "production") SnowDensity.propTypes = require_iconPropTypes.iconPropTypes;
398
+ const Snowflake = /* @__PURE__ */ react.default.forwardRef(function Snowflake({ children, size = 16, ...rest }, ref) {
399
+ return react.default.createElement(require_Icon.Icon, {
32
400
  width: size,
33
401
  height: size,
34
402
  ref,
@@ -39,8 +407,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
39
407
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.4148,12H28V10H23.4148l4.5857-4.5854L26.5864,4,22,8.5869V4H20v6.5869L18.5867,12H17V8H15v4H13.4133L12,10.5869V4H10V8.5869L5.4136,4,4,5.4146,8.5852,10H4v2h6.5852L12,13.415V15H8v2h4v1.5869L10.5867,20H4v2H8.5867L4,26.5864l1.4141,1.4141L10,23.415V28h2V21.415L13.4148,20H15v4h2V20h1.5852L20,21.415V28h2V23.415l4.5854,4.5855L28,26.5864,23.4133,22H28V20H21.4133L20,18.5869V17h4V15H20V13.415ZM18,18H14V14h4Z" }), children);
40
408
  });
41
409
  if (process.env.NODE_ENV !== "production") Snowflake.propTypes = require_iconPropTypes.iconPropTypes;
42
- const Soccer = react.default.forwardRef(function Soccer({ children, size = 16, ...rest }, ref) {
43
- return react.default.createElement(require_Icon_js, {
410
+ const Soccer = /* @__PURE__ */ react.default.forwardRef(function Soccer({ children, size = 16, ...rest }, ref) {
411
+ return react.default.createElement(require_Icon.Icon, {
44
412
  width: size,
45
413
  height: size,
46
414
  ref,
@@ -58,8 +426,20 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
58
426
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16.584,19.4143,8H6v2H18.5857l3,3L6,28.5859,7.4141,30,23,14.415,26.584,18,23,21.5859,24.4141,23,28,19.416A2.0044,2.0044,0,0,0,28,16.584Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.5,9A3.5,3.5,0,1,1,28,5.5,3.504,3.504,0,0,1,24.5,9Zm0-5A1.5,1.5,0,1,0,26,5.5,1.5017,1.5017,0,0,0,24.5,4Z" }), children);
59
427
  });
60
428
  if (process.env.NODE_ENV !== "production") Soccer.propTypes = require_iconPropTypes.iconPropTypes;
61
- const SoftwareResource = react.default.forwardRef(function SoftwareResource({ children, size = 16, ...rest }, ref) {
62
- return react.default.createElement(require_Icon_js, {
429
+ const Socket = /* @__PURE__ */ react.default.forwardRef(function Socket({ children, size = 16, ...rest }, ref) {
430
+ return react.default.createElement(require_Icon.Icon, {
431
+ width: size,
432
+ height: size,
433
+ ref,
434
+ xmlns: "http://www.w3.org/2000/svg",
435
+ viewBox: "0 0 32 32",
436
+ fill: "currentColor",
437
+ ...rest
438
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,30H3c-.5522,0-1-.4473-1-1V3c0-.5522.4478-1,1-1h26c.5527,0,1,.4478,1,1v26c0,.5527-.4473,1-1,1ZM4,28h24V4H4v24ZM16,26c-5.5142,0-10-4.4863-10-10s4.4858-10,10-10,10,4.4858,10,10-4.4863,10-10,10ZM16,8c-4.4111,0-8,3.5889-8,8s3.5889,8,8,8,8-3.5889,8-8-3.5889-8-8-8ZM13.5,16c0-.8284-.6716-1.5-1.5-1.5s-1.5.6716-1.5,1.5.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5ZM21.5,16c0-.8284-.6716-1.5-1.5-1.5s-1.5.6716-1.5,1.5.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5Z" }), children);
439
+ });
440
+ if (process.env.NODE_ENV !== "production") Socket.propTypes = require_iconPropTypes.iconPropTypes;
441
+ const SoftwareResource = /* @__PURE__ */ react.default.forwardRef(function SoftwareResource({ children, size = 16, ...rest }, ref) {
442
+ return react.default.createElement(require_Icon.Icon, {
63
443
  width: size,
64
444
  height: size,
65
445
  ref,
@@ -70,8 +450,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
70
450
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" }), children);
71
451
  });
72
452
  if (process.env.NODE_ENV !== "production") SoftwareResource.propTypes = require_iconPropTypes.iconPropTypes;
73
- const SoftwareResourceCluster = react.default.forwardRef(function SoftwareResourceCluster({ children, size = 16, ...rest }, ref) {
74
- return react.default.createElement(require_Icon_js, {
453
+ const SoftwareResourceCluster = /* @__PURE__ */ react.default.forwardRef(function SoftwareResourceCluster({ children, size = 16, ...rest }, ref) {
454
+ return react.default.createElement(require_Icon.Icon, {
75
455
  width: size,
76
456
  height: size,
77
457
  ref,
@@ -82,8 +462,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
82
462
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,21c-0.5,0-1-0.2-1.4-0.6l-3-3C19.2,17,19,16.5,19,16s0.2-1,0.6-1.4l3-3C23,11.2,23.5,11,24,11c0.5,0,1,0.2,1.4,0.6l3,3 C28.8,15,29,15.5,29,16c0,0.5-0.2,1-0.6,1.4l-3,3C25,20.8,24.5,21,24,21z M24,13l-3,3l3,3l3-3L24,13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,13c-0.5,0-1-0.2-1.4-0.6l-3-3C11.2,9,11,8.5,11,8s0.2-1,0.6-1.4l3-3C15,3.2,15.5,3,16,3c0.5,0,1,0.2,1.4,0.6l3,3 C20.8,7,21,7.5,21,8c0,0.5-0.2,1-0.6,1.4l-3,3C17,12.8,16.5,13,16,13z M16,5l-3,3l3,3l3-3L16,5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,29c-0.5,0-1-0.2-1.4-0.6l-3-3C11.2,25,11,24.5,11,24s0.2-1,0.6-1.4l3-3C15,19.2,15.5,19,16,19c0.5,0,1,0.2,1.4,0.6l3,3 C20.8,23,21,23.5,21,24c0,0.5-0.2,1-0.6,1.4l-3,3C17,28.8,16.5,29,16,29z M16,21l-3,3l3,3l3-3L16,21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,21c-0.5,0-1-0.2-1.4-0.6l-3-3C3.2,17,3,16.5,3,16s0.2-1,0.6-1.4l3-3C7,11.2,7.5,11,8,11c0.5,0,1,0.2,1.4,0.6l3,3 C12.8,15,13,15.5,13,16c0,0.5-0.2,1-0.6,1.4l-3,3C9,20.8,8.5,21,8,21z M8,13l-3,3l3,3l3-3L8,13z" }), children);
83
463
  });
84
464
  if (process.env.NODE_ENV !== "production") SoftwareResourceCluster.propTypes = require_iconPropTypes.iconPropTypes;
85
- const SoftwareResourceResource = react.default.forwardRef(function SoftwareResourceResource({ children, size = 16, ...rest }, ref) {
86
- return react.default.createElement(require_Icon_js, {
465
+ const SoftwareResourceResource = /* @__PURE__ */ react.default.forwardRef(function SoftwareResourceResource({ children, size = 16, ...rest }, ref) {
466
+ return react.default.createElement(require_Icon.Icon, {
87
467
  width: size,
88
468
  height: size,
89
469
  ref,
@@ -106,8 +486,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
106
486
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2c-0.5,0-1,0.2-1.4,0.6l-2.3,2.3l1.4,1.4L16,4l2.3,2.3l1.4-1.4l-2.3-2.3C17,2.2,16.5,2,16,2z" }), children);
107
487
  });
108
488
  if (process.env.NODE_ENV !== "production") SoftwareResourceResource.propTypes = require_iconPropTypes.iconPropTypes;
109
- const SoilMoisture = react.default.forwardRef(function SoilMoisture({ children, size = 16, ...rest }, ref) {
110
- return react.default.createElement(require_Icon_js, {
489
+ const SoilMoisture = /* @__PURE__ */ react.default.forwardRef(function SoilMoisture({ children, size = 16, ...rest }, ref) {
490
+ return react.default.createElement(require_Icon.Icon, {
111
491
  width: size,
112
492
  height: size,
113
493
  ref,
@@ -150,8 +530,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
150
530
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H30V8H2z" }), children);
151
531
  });
152
532
  if (process.env.NODE_ENV !== "production") SoilMoisture.propTypes = require_iconPropTypes.iconPropTypes;
153
- const SoilMoistureField = react.default.forwardRef(function SoilMoistureField({ children, size = 16, ...rest }, ref) {
154
- return react.default.createElement(require_Icon_js, {
533
+ const SoilMoistureField = /* @__PURE__ */ react.default.forwardRef(function SoilMoistureField({ children, size = 16, ...rest }, ref) {
534
+ return react.default.createElement(require_Icon.Icon, {
155
535
  width: size,
156
536
  height: size,
157
537
  ref,
@@ -162,8 +542,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
162
542
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.5,30a5.202,5.202,0,0,1-4.626-8.08L23.49,16.5382a1.217,1.217,0,0,1,2.02,0L29.06,21.8154A5.4921,5.4921,0,0,1,30,24.751,5.385,5.385,0,0,1,24.5,30Zm0-11.38-2.9356,4.3672A3.2079,3.2079,0,0,0,24.5,28,3.3855,3.3855,0,0,0,28,24.751a3.4354,3.4354,0,0,0-.63-1.867Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,16V11h1a4.0045,4.0045,0,0,0,4-4V4H13a3.9779,3.9779,0,0,0-2.7468,1.1067A6.0034,6.0034,0,0,0,5,2H2V5a6.0066,6.0066,0,0,0,6,6H9v5H2v2H16V16ZM13,6h1V7a2.002,2.002,0,0,1-2,2H11V8A2.002,2.002,0,0,1,13,6ZM8,9A4.0045,4.0045,0,0,1,4,5V4H5A4.0045,4.0045,0,0,1,9,8V9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 21H16V23H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H16V28H2z" }), children);
163
543
  });
164
544
  if (process.env.NODE_ENV !== "production") SoilMoistureField.propTypes = require_iconPropTypes.iconPropTypes;
165
- const SoilMoistureGlobal = react.default.forwardRef(function SoilMoistureGlobal({ children, size = 16, ...rest }, ref) {
166
- return react.default.createElement(require_Icon_js, {
545
+ const SoilMoistureGlobal = /* @__PURE__ */ react.default.forwardRef(function SoilMoistureGlobal({ children, size = 16, ...rest }, ref) {
546
+ return react.default.createElement(require_Icon.Icon, {
167
547
  width: size,
168
548
  height: size,
169
549
  ref,
@@ -174,8 +554,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
174
554
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30a4.7347,4.7347,0,0,1-4.2075-7.35l3.3687-5.1942a1,1,0,0,1,1.6779,0l3.3152,5.11A4.9753,4.9753,0,0,1,30,25.2231,4.8979,4.8979,0,0,1,25,30Zm0-10.1629-2.5078,3.8662A2.9264,2.9264,0,1,0,28,25.2231a2.96,2.96,0,0,0-.5444-1.6028Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,24H9A17.0192,17.0192,0,0,1,26,7h4V9H26A15.017,15.017,0,0,0,11,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24H14A12.0137,12.0137,0,0,1,26,12h4v2H26A10.0113,10.0113,0,0,0,16,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2A21.8625,21.8625,0,0,0,13.9993,5.5757,21.856,21.856,0,0,0,2,2V4A19.8735,19.8735,0,0,1,12.2622,6.835,22.1514,22.1514,0,0,0,9.9475,8.979,17.001,17.001,0,0,0,2,7V9a15.0142,15.0142,0,0,1,6.6191,1.5366,22.0768,22.0768,0,0,0-1.7016,2.5371A12.0319,12.0319,0,0,0,2,12v2a9.8838,9.8838,0,0,1,4.0007.8506A21.861,21.861,0,0,0,4,24H6A20.0226,20.0226,0,0,1,26,4h4V2Z" }), children);
175
555
  });
176
556
  if (process.env.NODE_ENV !== "production") SoilMoistureGlobal.propTypes = require_iconPropTypes.iconPropTypes;
177
- const SoilTemperature = react.default.forwardRef(function SoilTemperature({ children, size = 16, ...rest }, ref) {
178
- return react.default.createElement(require_Icon_js, {
557
+ const SoilTemperature = /* @__PURE__ */ react.default.forwardRef(function SoilTemperature({ children, size = 16, ...rest }, ref) {
558
+ return react.default.createElement(require_Icon.Icon, {
179
559
  width: size,
180
560
  height: size,
181
561
  ref,
@@ -214,8 +594,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
214
594
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30a4.9863,4.9863,0,0,1-3-8.98V15a3,3,0,0,1,6,0v6.02A4.9863,4.9863,0,0,1,25,30Zm0-16a1.0011,1.0011,0,0,0-1,1v7.13l-.4971.2893A2.9676,2.9676,0,0,0,22,25a3,3,0,0,0,6,0,2.9676,2.9676,0,0,0-1.5029-2.5811L26,22.13V15A1.0011,1.0011,0,0,0,25,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H30V8H2z" }), children);
215
595
  });
216
596
  if (process.env.NODE_ENV !== "production") SoilTemperature.propTypes = require_iconPropTypes.iconPropTypes;
217
- const SoilTemperatureField = react.default.forwardRef(function SoilTemperatureField({ children, size = 16, ...rest }, ref) {
218
- return react.default.createElement(require_Icon_js, {
597
+ const SoilTemperatureField = /* @__PURE__ */ react.default.forwardRef(function SoilTemperatureField({ children, size = 16, ...rest }, ref) {
598
+ return react.default.createElement(require_Icon.Icon, {
219
599
  width: size,
220
600
  height: size,
221
601
  ref,
@@ -226,8 +606,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
226
606
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,16V11h1a4.0045,4.0045,0,0,0,4-4V4H13a3.9779,3.9779,0,0,0-2.7468,1.1067A6.0034,6.0034,0,0,0,5,2H2V5a6.0066,6.0066,0,0,0,6,6H9v5H2v2H16V16ZM13,6h1V7a2.002,2.002,0,0,1-2,2H11V8A2.002,2.002,0,0,1,13,6ZM8,9A4.0045,4.0045,0,0,1,4,5V4H5A4.0045,4.0045,0,0,1,9,8V9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 21H16V23H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H16V28H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30a4.9863,4.9863,0,0,1-3-8.98V15a3,3,0,0,1,6,0v6.02A4.9863,4.9863,0,0,1,25,30Zm0-16a1.0011,1.0011,0,0,0-1,1v7.13l-.4971.2893A2.9676,2.9676,0,0,0,22,25a3,3,0,0,0,6,0,2.9676,2.9676,0,0,0-1.5029-2.5811L26,22.13V15A1.0011,1.0011,0,0,0,25,14Z" }), children);
227
607
  });
228
608
  if (process.env.NODE_ENV !== "production") SoilTemperatureField.propTypes = require_iconPropTypes.iconPropTypes;
229
- const SoilTemperatureGlobal = react.default.forwardRef(function SoilTemperatureGlobal({ children, size = 16, ...rest }, ref) {
230
- return react.default.createElement(require_Icon_js, {
609
+ const SoilTemperatureGlobal = /* @__PURE__ */ react.default.forwardRef(function SoilTemperatureGlobal({ children, size = 16, ...rest }, ref) {
610
+ return react.default.createElement(require_Icon.Icon, {
231
611
  width: size,
232
612
  height: size,
233
613
  ref,
@@ -238,8 +618,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
238
618
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30a4.9863,4.9863,0,0,1-3-8.98V15a3,3,0,0,1,6,0v6.02A4.9863,4.9863,0,0,1,25,30Zm0-16a1.0011,1.0011,0,0,0-1,1v7.13l-.4971.2893A2.9676,2.9676,0,0,0,22,25a3,3,0,0,0,6,0,2.9676,2.9676,0,0,0-1.5029-2.5811L26,22.13V15A1.0011,1.0011,0,0,0,25,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24H14a11.89,11.89,0,0,1,3.7642-8.7271l1.373,1.4542A9.909,9.909,0,0,0,16,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,24H9A17.0192,17.0192,0,0,1,26,7h4V9H26A15.017,15.017,0,0,0,11,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2A21.8625,21.8625,0,0,0,13.9993,5.5757,21.856,21.856,0,0,0,2,2V4A19.8735,19.8735,0,0,1,12.2622,6.835,22.1514,22.1514,0,0,0,9.9475,8.979,17.001,17.001,0,0,0,2,7V9a15.0142,15.0142,0,0,1,6.6191,1.5366,22.0768,22.0768,0,0,0-1.7016,2.5371A12.0319,12.0319,0,0,0,2,12v2a9.8838,9.8838,0,0,1,4.0007.8506A21.861,21.861,0,0,0,4,24H6A20.0226,20.0226,0,0,1,26,4h4V2Z" }), children);
239
619
  });
240
620
  if (process.env.NODE_ENV !== "production") SoilTemperatureGlobal.propTypes = require_iconPropTypes.iconPropTypes;
241
- const SolarPanel = react.default.forwardRef(function SolarPanel({ children, size = 16, ...rest }, ref) {
242
- return react.default.createElement(require_Icon_js, {
621
+ const SolarPanel = /* @__PURE__ */ react.default.forwardRef(function SolarPanel({ children, size = 16, ...rest }, ref) {
622
+ return react.default.createElement(require_Icon.Icon, {
243
623
  width: size,
244
624
  height: size,
245
625
  ref,
@@ -256,8 +636,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
256
636
  }), children);
257
637
  });
258
638
  if (process.env.NODE_ENV !== "production") SolarPanel.propTypes = require_iconPropTypes.iconPropTypes;
259
- const SortAscending = react.default.forwardRef(function SortAscending({ children, size = 16, ...rest }, ref) {
260
- return react.default.createElement(require_Icon_js, {
639
+ const SortAscending = /* @__PURE__ */ react.default.forwardRef(function SortAscending({ children, size = 16, ...rest }, ref) {
640
+ return react.default.createElement(require_Icon.Icon, {
261
641
  width: size,
262
642
  height: size,
263
643
  ref,
@@ -268,8 +648,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
268
648
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 22 19.414 20.586 23 24.172 23 4 25 4 25 24.172 28.586 20.586 30 22 24 28 18 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H16V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H16V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 6H16V8H10z" }), children);
269
649
  });
270
650
  if (process.env.NODE_ENV !== "production") SortAscending.propTypes = require_iconPropTypes.iconPropTypes;
271
- const SortDescending = react.default.forwardRef(function SortDescending({ children, size = 16, ...rest }, ref) {
272
- return react.default.createElement(require_Icon_js, {
651
+ const SortDescending = /* @__PURE__ */ react.default.forwardRef(function SortDescending({ children, size = 16, ...rest }, ref) {
652
+ return react.default.createElement(require_Icon.Icon, {
273
653
  width: size,
274
654
  height: size,
275
655
  ref,
@@ -280,8 +660,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
280
660
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 22 19.414 20.586 23 24.172 23 4 25 4 25 24.172 28.586 20.586 30 22 24 28 18 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H16V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H16V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H16V20H10z" }), children);
281
661
  });
282
662
  if (process.env.NODE_ENV !== "production") SortDescending.propTypes = require_iconPropTypes.iconPropTypes;
283
- const SortRemove = react.default.forwardRef(function SortRemove({ children, size = 16, ...rest }, ref) {
284
- return react.default.createElement(require_Icon_js, {
663
+ const SortRemove = /* @__PURE__ */ react.default.forwardRef(function SortRemove({ children, size = 16, ...rest }, ref) {
664
+ return react.default.createElement(require_Icon.Icon, {
285
665
  width: size,
286
666
  height: size,
287
667
  ref,
@@ -292,8 +672,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
292
672
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 19.415 28.586 18 25 21.587 21.414 18 20 19.415 23.586 23 20 26.586 21.414 28 25 24.414 28.586 28 30 26.586 26.414 23 30 19.415z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H16V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H16V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H16V14H6z" }), children);
293
673
  });
294
674
  if (process.env.NODE_ENV !== "production") SortRemove.propTypes = require_iconPropTypes.iconPropTypes;
295
- const SortingAToZ = react.default.forwardRef(function SortingAToZ({ children, size = 16, ...rest }, ref) {
296
- return react.default.createElement(require_Icon_js, {
675
+ const SortingAToZ = /* @__PURE__ */ react.default.forwardRef(function SortingAToZ({ children, size = 16, ...rest }, ref) {
676
+ return react.default.createElement(require_Icon.Icon, {
297
677
  width: size,
298
678
  height: size,
299
679
  ref,
@@ -304,8 +684,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
304
684
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,13c0-1.103-.8975-2-2-2h-5v2h5v2h-4c-1.1046,0-2,.8954-2,2v2c0,1.1046.8954,2,2,2h6v-8ZM9,19h-4v-2h4v2ZM16,2l-5,6h10l-5-6ZM16,30l5-6h-10l5,6ZM29,11h-8v2h5.5l-5.5,6v2h8v-2h-5.4927l5.4927-6v-2ZM19,17v-2h-6v2h6Z" }), children);
305
685
  });
306
686
  if (process.env.NODE_ENV !== "production") SortingAToZ.propTypes = require_iconPropTypes.iconPropTypes;
307
- const SortingHighestToLowestNumber = react.default.forwardRef(function SortingHighestToLowestNumber({ children, size = 16, ...rest }, ref) {
308
- return react.default.createElement(require_Icon_js, {
687
+ const SortingHighestToLowestNumber = /* @__PURE__ */ react.default.forwardRef(function SortingHighestToLowestNumber({ children, size = 16, ...rest }, ref) {
688
+ return react.default.createElement(require_Icon.Icon, {
309
689
  width: size,
310
690
  height: size,
311
691
  ref,
@@ -316,8 +696,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
316
696
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.9756,2l-5,6h10l-5-6ZM15.9756,30l5-6h-10l5,6ZM24.9756,19v-8h-2v1h-2v2h2v5h-2v2h6v-2h-2ZM10.9756,19h-4v-2h2c1.1025,0,2-.897,2-2v-2c0-1.103-.8975-2-2-2h-4v2h4v2h-2c-1.103,0-2,.897-2,2v4h6v-2ZM18.9756,17v-2h-6v2h6Z" }), children);
317
697
  });
318
698
  if (process.env.NODE_ENV !== "production") SortingHighestToLowestNumber.propTypes = require_iconPropTypes.iconPropTypes;
319
- const SortingLowestToHighestNumber = react.default.forwardRef(function SortingLowestToHighestNumber({ children, size = 16, ...rest }, ref) {
320
- return react.default.createElement(require_Icon_js, {
699
+ const SortingLowestToHighestNumber = /* @__PURE__ */ react.default.forwardRef(function SortingLowestToHighestNumber({ children, size = 16, ...rest }, ref) {
700
+ return react.default.createElement(require_Icon.Icon, {
321
701
  width: size,
322
702
  height: size,
323
703
  ref,
@@ -328,8 +708,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
328
708
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.9756,2l-5,6h10l-5-6ZM15.9756,30l5-6h-10l5,6ZM10.9756,19h-2v-8h-2v1h-2v2h2v5h-2v2h6v-2ZM24.9756,17c1.1025,0,2-.897,2-2v-2c0-1.103-.8975-2-2-2h-4v2h4v2h-2c-1.103,0-2,.897-2,2v4h6v-2h-4v-2h2ZM18.9756,17v-2h-6v2h6Z" }), children);
329
709
  });
330
710
  if (process.env.NODE_ENV !== "production") SortingLowestToHighestNumber.propTypes = require_iconPropTypes.iconPropTypes;
331
- const SortingZToA = react.default.forwardRef(function SortingZToA({ children, size = 16, ...rest }, ref) {
332
- return react.default.createElement(require_Icon_js, {
711
+ const SortingZToA = /* @__PURE__ */ react.default.forwardRef(function SortingZToA({ children, size = 16, ...rest }, ref) {
712
+ return react.default.createElement(require_Icon.Icon, {
333
713
  width: size,
334
714
  height: size,
335
715
  ref,
@@ -340,8 +720,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
340
720
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11h-5v2h5v2h-4c-1.1046,0-2,.8954-2,2v2c0,1.1046.8954,2,2,2h6v-8c0-1.103-.8975-2-2-2ZM27,19h-4v-2h4v2ZM16,2l-5,6h10l-5-6ZM16,30l5-6h-10l5,6ZM11,19h-5.4927l5.4927-6v-2H3v2h5.5l-5.5,6v2h8v-2ZM19,17v-2h-6v2h6Z" }), children);
341
721
  });
342
722
  if (process.env.NODE_ENV !== "production") SortingZToA.propTypes = require_iconPropTypes.iconPropTypes;
343
- const SourceControl = react.default.forwardRef(function SourceControl({ children, size = 16, ...rest }, ref) {
344
- return react.default.createElement(require_Icon_js, {
723
+ const SourceControl = /* @__PURE__ */ react.default.forwardRef(function SourceControl({ children, size = 16, ...rest }, ref) {
724
+ return react.default.createElement(require_Icon.Icon, {
345
725
  width: size,
346
726
  height: size,
347
727
  ref,
@@ -352,8 +732,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
352
732
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.0002,12.0001c0-2.2056-1.7939-4-4-4s-4,1.7944-4,4c0,1.8584,1.2795,3.4109,3,3.858v1.142c0,.5513-.4482,1-1,1h-10c-.3523,0-.6857.0723-1,.1843v-8.3263c1.7205-.4471,3-1.9996,3-3.858,0-2.2056-1.7939-4-4-4s-4,1.7944-4,4c0,1.8584,1.2795,3.4109,3,3.858v12.2839c-1.7205.4471-3,1.9996-3,3.858,0,2.2056,1.7939,4,4,4s4-1.7944,4-4c0-1.8584-1.2795-3.4109-3-3.858v-1.142c0-.5513.4482-1,1-1h10c1.6543,0,3-1.3457,3-3v-1.142c1.7205-.4471,3-1.9996,3-3.858ZM11.0002,26.0001c0,1.103-.8975,2-2,2s-2-.897-2-2,.8975-2,2-2,2,.897,2,2ZM7.0002,6.0001c0-1.103.8975-2,2-2s2,.897,2,2-.8975,2-2,2-2-.897-2-2ZM23.0002,14.0001c-1.1025,0-2-.897-2-2s.8975-2,2-2,2,.897,2,2-.8975,2-2,2Z" }), children);
353
733
  });
354
734
  if (process.env.NODE_ENV !== "production") SourceControl.propTypes = require_iconPropTypes.iconPropTypes;
355
- const SpellCheck = react.default.forwardRef(function SpellCheck({ children, size = 16, ...rest }, ref) {
356
- return react.default.createElement(require_Icon_js, {
735
+ const SpellCheck = /* @__PURE__ */ react.default.forwardRef(function SpellCheck({ children, size = 16, ...rest }, ref) {
736
+ return react.default.createElement(require_Icon.Icon, {
357
737
  width: size,
358
738
  height: size,
359
739
  ref,
@@ -364,8 +744,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
364
744
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,22h2L17,10H15L10,22h2l1.24-3h5.53Zm-5.93-5,1.82-4.42h.25L18,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H6a2,2,0,0,1-2-2V6A2,2,0,0,1,6,4H26a2,2,0,0,1,2,2V17H26V6H6V26h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 27.18 20.41 24.59 19 26 23 30 30 23 28.59 21.59 23 27.18z" }), children);
365
745
  });
366
746
  if (process.env.NODE_ENV !== "production") SpellCheck.propTypes = require_iconPropTypes.iconPropTypes;
367
- const WatsonHealthSpineLabel = react.default.forwardRef(function WatsonHealthSpineLabel({ children, size = 16, ...rest }, ref) {
368
- return react.default.createElement(require_Icon_js, {
747
+ const WatsonHealthSpineLabel = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSpineLabel({ children, size = 16, ...rest }, ref) {
748
+ return react.default.createElement(require_Icon.Icon, {
369
749
  width: size,
370
750
  height: size,
371
751
  ref,
@@ -376,8 +756,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
376
756
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 11 3 13 8.59 13 2.29 19.29 3.71 20.71 10 14.41 10 20 12 20 12 11 3 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,13H23V12H21v1H18a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h3v1h2V19h3a2,2,0,0,0,2-2V15A2,2,0,0,0,26,13Zm-8,4V15h8v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,23H23V22H21v1H18a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h3v1h2V29h3a2,2,0,0,0,2-2V25A2,2,0,0,0,26,23Zm-8,4V25h8v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,3H23V2H21V3H18a2,2,0,0,0-2,2V7a2,2,0,0,0,2,2h3v1h2V9h3a2,2,0,0,0,2-2V5A2,2,0,0,0,26,3ZM18,7V5h8V7Z" }), children);
377
757
  });
378
758
  if (process.env.NODE_ENV !== "production") WatsonHealthSpineLabel.propTypes = require_iconPropTypes.iconPropTypes;
379
- const Split = react.default.forwardRef(function Split({ children, size = 16, ...rest }, ref) {
380
- return react.default.createElement(require_Icon_js, {
759
+ const Split = /* @__PURE__ */ react.default.forwardRef(function Split({ children, size = 16, ...rest }, ref) {
760
+ return react.default.createElement(require_Icon.Icon, {
381
761
  width: size,
382
762
  height: size,
383
763
  ref,
@@ -388,8 +768,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
388
768
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 20H17V24H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 14H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 8H17V12H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16A12.01,12.01,0,0,0,17,4.0508V2H15V4.0508a11.99,11.99,0,0,0,0,23.8984V30h2V27.9492A12.01,12.01,0,0,0,28,16ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" }), children);
389
769
  });
390
770
  if (process.env.NODE_ENV !== "production") Split.propTypes = require_iconPropTypes.iconPropTypes;
391
- const WatsonHealthSplitDiscard = react.default.forwardRef(function WatsonHealthSplitDiscard({ children, size = 16, ...rest }, ref) {
392
- return react.default.createElement(require_Icon_js, {
771
+ const WatsonHealthSplitDiscard = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSplitDiscard({ children, size = 16, ...rest }, ref) {
772
+ return react.default.createElement(require_Icon.Icon, {
393
773
  width: size,
394
774
  height: size,
395
775
  ref,
@@ -400,8 +780,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
400
780
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16A12.01,12.01,0,0,0,17,4.0508V2H15V4.0508a11.99,11.99,0,0,0,0,23.8984V30h2V27.9492A12.01,12.01,0,0,0,28,16ZM16,26V6a10,10,0,0,1,0,20Z" }), children);
401
781
  });
402
782
  if (process.env.NODE_ENV !== "production") WatsonHealthSplitDiscard.propTypes = require_iconPropTypes.iconPropTypes;
403
- const SplitScreen = react.default.forwardRef(function SplitScreen({ children, size = 16, ...rest }, ref) {
404
- return react.default.createElement(require_Icon_js, {
783
+ const SplitScreen = /* @__PURE__ */ react.default.forwardRef(function SplitScreen({ children, size = 16, ...rest }, ref) {
784
+ return react.default.createElement(require_Icon.Icon, {
405
785
  width: size,
406
786
  height: size,
407
787
  ref,
@@ -412,8 +792,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
412
792
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 4H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,7V25H4V7h6m0-2H4A2,2,0,0,0,2,7V25a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V7a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,7V25H22V7h6m0-2H22a2,2,0,0,0-2,2V25a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V7a2,2,0,0,0-2-2Z" }), children);
413
793
  });
414
794
  if (process.env.NODE_ENV !== "production") SplitScreen.propTypes = require_iconPropTypes.iconPropTypes;
415
- const SprayPaint = react.default.forwardRef(function SprayPaint({ children, size = 16, ...rest }, ref) {
416
- return react.default.createElement(require_Icon_js, {
795
+ const SprayPaint = /* @__PURE__ */ react.default.forwardRef(function SprayPaint({ children, size = 16, ...rest }, ref) {
796
+ return react.default.createElement(require_Icon.Icon, {
417
797
  width: size,
418
798
  height: size,
419
799
  ref,
@@ -424,8 +804,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
424
804
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,23A4.5,4.5,0,1,1,27,18.5,4.505,4.505,0,0,1,22.5,23Zm0-7A2.5,2.5,0,1,0,25,18.5,2.5026,2.5026,0,0,0,22.5,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H26V3H19V8H17a2.002,2.002,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0027,2.0027,0,0,0,2-2V10A2.0023,2.0023,0,0,0,28,8ZM21,5h3V8H21ZM17,28V10H28l.002,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 14H5V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 9H10V12H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 9H5V12H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 4H15V7H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 4H10V7H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 4H5V7H2z" }), children);
425
805
  });
426
806
  if (process.env.NODE_ENV !== "production") SprayPaint.propTypes = require_iconPropTypes.iconPropTypes;
427
- const Sprout = react.default.forwardRef(function Sprout({ children, size = 16, ...rest }, ref) {
428
- return react.default.createElement(require_Icon_js, {
807
+ const Sprout = /* @__PURE__ */ react.default.forwardRef(function Sprout({ children, size = 16, ...rest }, ref) {
808
+ return react.default.createElement(require_Icon.Icon, {
429
809
  width: size,
430
810
  height: size,
431
811
  ref,
@@ -436,8 +816,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
436
816
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,2A11.01,11.01,0,0,0,14.7549,9.0244,6.9939,6.9939,0,0,0,9,6H6V9a7.0078,7.0078,0,0,0,7,7h1v9.0493a9.9229,9.9229,0,0,0-6.071,2.8794l1.414,1.4141a8,8,0,0,1,12.3086,1.2134l1.6616-1.1128A9.98,9.98,0,0,0,16,25.062V16h1A11.0125,11.0125,0,0,0,28,5V2ZM13,14A5.0057,5.0057,0,0,1,8,9V8H9a5.0054,5.0054,0,0,1,5,5v1ZM26,5a9.01,9.01,0,0,1-9,9H16V13a9.01,9.01,0,0,1,9-9h1Z" }), children);
437
817
  });
438
818
  if (process.env.NODE_ENV !== "production") Sprout.propTypes = require_iconPropTypes.iconPropTypes;
439
- const SpyreAccelerator = react.default.forwardRef(function SpyreAccelerator({ children, size = 16, ...rest }, ref) {
440
- return react.default.createElement(require_Icon_js, {
819
+ const SpyreAccelerator = /* @__PURE__ */ react.default.forwardRef(function SpyreAccelerator({ children, size = 16, ...rest }, ref) {
820
+ return react.default.createElement(require_Icon.Icon, {
441
821
  width: size,
442
822
  height: size,
443
823
  ref,
@@ -448,8 +828,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
448
828
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,17c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM7,13c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM13,17c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM13,13c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM25,17c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM25,13c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM2,7v17h6v-3h3v4h16v-4h3V7H2ZM25,23h-12v-2h12v2ZM28,19H6v3h-2v-13h24v10ZM22,11h-6v6h6v-6ZM20,15h-2v-2h2v2Z" }), children);
449
829
  });
450
830
  if (process.env.NODE_ENV !== "production") SpyreAccelerator.propTypes = require_iconPropTypes.iconPropTypes;
451
- const Sql = react.default.forwardRef(function Sql({ children, size = 16, ...rest }, ref) {
452
- return react.default.createElement(require_Icon_js, {
831
+ const Sql = /* @__PURE__ */ react.default.forwardRef(function Sql({ children, size = 16, ...rest }, ref) {
832
+ return react.default.createElement(require_Icon.Icon, {
453
833
  width: size,
454
834
  height: size,
455
835
  ref,
@@ -460,8 +840,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
460
840
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 21 24 9 22 9 22 23 30 23 30 21 24 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,9H14a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h1v2a2,2,0,0,0,2,2h2V25H17V23h1a2,2,0,0,0,2-2V11A2,2,0,0,0,18,9ZM14,21V11h4V21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,23H2V21H8V17H4a2,2,0,0,1-2-2V11A2,2,0,0,1,4,9h6v2H4v4H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,23Z" }), children);
461
841
  });
462
842
  if (process.env.NODE_ENV !== "production") Sql.propTypes = require_iconPropTypes.iconPropTypes;
463
- const SquareOutline = react.default.forwardRef(function SquareOutline({ children, size = 16, ...rest }, ref) {
464
- return react.default.createElement(require_Icon_js, {
843
+ const SquareOutline = /* @__PURE__ */ react.default.forwardRef(function SquareOutline({ children, size = 16, ...rest }, ref) {
844
+ return react.default.createElement(require_Icon.Icon, {
465
845
  width: size,
466
846
  height: size,
467
847
  ref,
@@ -475,8 +855,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
475
855
  }), children);
476
856
  });
477
857
  if (process.env.NODE_ENV !== "production") SquareOutline.propTypes = require_iconPropTypes.iconPropTypes;
478
- const SquareSolid = react.default.forwardRef(function SquareSolid({ children, size = 16, ...rest }, ref) {
479
- return react.default.createElement(require_Icon_js, {
858
+ const SquareSlash = /* @__PURE__ */ react.default.forwardRef(function SquareSlash({ children, size = 16, ...rest }, ref) {
859
+ return react.default.createElement(require_Icon.Icon, {
480
860
  width: size,
481
861
  height: size,
482
862
  ref,
@@ -484,14 +864,33 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
484
864
  viewBox: "0 0 32 32",
485
865
  fill: "currentColor",
486
866
  ...rest
487
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
867
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28H6c-1.103,0-2-.8975-2-2V6c0-1.103.897-2,2-2h20c1.1025,0,2,.897,2,2v20c0,1.1025-.8975,2-2,2ZM6,6v20h20.002l-.002-20H6ZM12.8682,23.4961l-1.7363-.9922,8-14,1.7363.9922-8,14Z" }), children);
868
+ });
869
+ if (process.env.NODE_ENV !== "production") SquareSlash.propTypes = require_iconPropTypes.iconPropTypes;
870
+ const SquareSolid = /* @__PURE__ */ react.default.forwardRef(function SquareSolid({ children, size = 16, ...rest }, ref) {
871
+ return react.default.createElement(require_Icon.Icon, {
872
+ width: size,
873
+ height: size,
874
+ ref,
875
+ xmlns: "http://www.w3.org/2000/svg",
876
+ viewBox: "0 0 32 32",
877
+ fill: "currentColor",
878
+ ...rest
879
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
880
+ width: "24",
881
+ height: "24",
882
+ x: "4",
883
+ y: "4",
884
+ rx: "2",
885
+ ry: "2"
886
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
488
887
  fill: "none",
489
888
  d: "M0 32V0h32v32z"
490
889
  }), children);
491
890
  });
492
891
  if (process.env.NODE_ENV !== "production") SquareSolid.propTypes = require_iconPropTypes.iconPropTypes;
493
- const SquareFill = react.default.forwardRef(function SquareFill({ children, size = 16, ...rest }, ref) {
494
- if (size === "glyph" || size === "glyph" || size === "glyphpx") return react.default.createElement(require_Icon_js, {
892
+ const SquareFill = /* @__PURE__ */ react.default.forwardRef(function SquareFill({ children, size = 16, ...rest }, ref) {
893
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") return react.default.createElement(require_Icon.Icon, {
495
894
  width: size,
496
895
  height: size,
497
896
  ref,
@@ -500,7 +899,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
500
899
  fill: "currentColor",
501
900
  ...rest
502
901
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 3H13V13H3z" }), children);
503
- return react.default.createElement(require_Icon_js, {
902
+ return react.default.createElement(require_Icon.Icon, {
504
903
  width: size,
505
904
  height: size,
506
905
  ref,
@@ -511,8 +910,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
511
910
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 3H13V13H3z" }), children);
512
911
  });
513
912
  if (process.env.NODE_ENV !== "production") SquareFill.propTypes = require_iconPropTypes.iconPropTypes;
514
- const StackLimitation = react.default.forwardRef(function StackLimitation({ children, size = 16, ...rest }, ref) {
515
- return react.default.createElement(require_Icon_js, {
913
+ const StackLimitation = /* @__PURE__ */ react.default.forwardRef(function StackLimitation({ children, size = 16, ...rest }, ref) {
914
+ return react.default.createElement(require_Icon.Icon, {
516
915
  width: size,
517
916
  height: size,
518
917
  ref,
@@ -523,8 +922,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
523
922
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 22H16V30H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,12H20v2h4v2H21v2h3v2H20v2h4a2.0027,2.0027,0,0,0,2-2V14A2.0023,2.0023,0,0,0,24,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,20H8V12h8Zm-6-2h4V14H10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 3.41 14.59 2 12 4.59 9.41 2 8 3.41 10.59 6 8 8.59 9.41 10 12 7.41 14.59 10 16 8.59 13.41 6 16 3.41z" }), children);
524
923
  });
525
924
  if (process.env.NODE_ENV !== "production") StackLimitation.propTypes = require_iconPropTypes.iconPropTypes;
526
- const WatsonHealthStackedMove = react.default.forwardRef(function WatsonHealthStackedMove({ children, size = 16, ...rest }, ref) {
527
- return react.default.createElement(require_Icon_js, {
925
+ const WatsonHealthStackedMove = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStackedMove({ children, size = 16, ...rest }, ref) {
926
+ return react.default.createElement(require_Icon.Icon, {
528
927
  width: size,
529
928
  height: size,
530
929
  ref,
@@ -535,8 +934,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
535
934
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,28H4a2,2,0,0,1-2-2V11A2,2,0,0,1,4,9H15a2,2,0,0,1,2,2V26A2,2,0,0,1,15,28ZM4,11V26H15V11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6,24.59,7.41,27,10H22V6a2,2,0,0,0-2-2H10V6H20V20h2V12h5l-2.41,2.59L26,16l5-5Z" }), children);
536
935
  });
537
936
  if (process.env.NODE_ENV !== "production") WatsonHealthStackedMove.propTypes = require_iconPropTypes.iconPropTypes;
538
- const WatsonHealthStackedScrolling_1 = react.default.forwardRef(function WatsonHealthStackedScrolling_1({ children, size = 16, ...rest }, ref) {
539
- return react.default.createElement(require_Icon_js, {
937
+ const WatsonHealthStackedScrolling_1 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStackedScrolling_1({ children, size = 16, ...rest }, ref) {
938
+ return react.default.createElement(require_Icon.Icon, {
540
939
  width: size,
541
940
  height: size,
542
941
  ref,
@@ -547,8 +946,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
547
946
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30H4a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H18a2,2,0,0,1,2,2V28A2,2,0,0,1,18,30ZM4,14V28H18V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23H23V9H9V7H23a2,2,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16H28V4H16V2H28a2,2,0,0,1,2,2Z" }), children);
548
947
  });
549
948
  if (process.env.NODE_ENV !== "production") WatsonHealthStackedScrolling_1.propTypes = require_iconPropTypes.iconPropTypes;
550
- const WatsonHealthStackedScrolling_2 = react.default.forwardRef(function WatsonHealthStackedScrolling_2({ children, size = 16, ...rest }, ref) {
551
- return react.default.createElement(require_Icon_js, {
949
+ const WatsonHealthStackedScrolling_2 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStackedScrolling_2({ children, size = 16, ...rest }, ref) {
950
+ return react.default.createElement(require_Icon.Icon, {
552
951
  width: size,
553
952
  height: size,
554
953
  ref,
@@ -559,8 +958,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
559
958
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H2a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2V28A2,2,0,0,1,8,30ZM2,14V28H8V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H14a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h6a2,2,0,0,1,2,2V28A2,2,0,0,1,20,30ZM14,14V28h6V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,21H25V9H17V7h8a2,2,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32,16H30V4H22V2h8a2,2,0,0,1,2,2Z" }), children);
560
959
  });
561
960
  if (process.env.NODE_ENV !== "production") WatsonHealthStackedScrolling_2.propTypes = require_iconPropTypes.iconPropTypes;
562
- const Stamp = react.default.forwardRef(function Stamp({ children, size = 16, ...rest }, ref) {
563
- return react.default.createElement(require_Icon_js, {
961
+ const Stamp = /* @__PURE__ */ react.default.forwardRef(function Stamp({ children, size = 16, ...rest }, ref) {
962
+ return react.default.createElement(require_Icon.Icon, {
564
963
  width: size,
565
964
  height: size,
566
965
  ref,
@@ -571,8 +970,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
571
970
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18H20V14.8982a7.4938,7.4938,0,0,1,1.1587-3.8542,5.9751,5.9751,0,0,0-1.3735-7.7006,5.9968,5.9968,0,0,0-9.6829,3.54,5.91,5.91,0,0,0,.7478,4.175A7.2573,7.2573,0,0,1,12,14.7942V18H6a2.002,2.002,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2v2a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V26a2.0025,2.0025,0,0,0,2-2V20A2.002,2.002,0,0,0,26,18ZM12.07,7.244a3.9994,3.9994,0,1,1,7.3728,2.7731A9.76,9.76,0,0,0,18.0664,14H13.94a9.5433,9.5433,0,0,0-1.376-3.9736A3.9366,3.9366,0,0,1,12.07,7.244ZM18,16v2H14V16Zm6,12H8V26H24ZM6,24V20H26v4Z" }), children);
572
971
  });
573
972
  if (process.env.NODE_ENV !== "production") Stamp.propTypes = require_iconPropTypes.iconPropTypes;
574
- const Star = react.default.forwardRef(function Star({ children, size = 16, ...rest }, ref) {
575
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
973
+ const Star = /* @__PURE__ */ react.default.forwardRef(function Star({ children, size = 16, ...rest }, ref) {
974
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
576
975
  width: size,
577
976
  height: size,
578
977
  ref,
@@ -581,7 +980,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
581
980
  fill: "currentColor",
582
981
  ...rest
583
982
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,3.3l1.4,2.8l0.2,0.5l0.5,0.1l3.1,0.4L11,9.2l-0.4,0.4l0.1,0.5l0.5,3.1l-2.8-1.4L8,11.5l-0.5,0.2l-2.8,1.4l0.5-3.1 l0.1-0.5L5,9.2L2.8,7l3.1-0.4l0.5-0.1L6.6,6L8,3.3 M8,1L5.7,5.6L0.6,6.3l3.7,3.6L3.5,15L8,12.6l4.6,2.4l-0.9-5.1l3.7-3.6l-5.1-0.7 L8,1z" }), children);
584
- return react.default.createElement(require_Icon_js, {
983
+ return react.default.createElement(require_Icon.Icon, {
585
984
  width: size,
586
985
  height: size,
587
986
  ref,
@@ -592,8 +991,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
592
991
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6.52l2.76,5.58.46,1,1,.15,6.16.89L22,18.44l-.75.73.18,1,1.05,6.13-5.51-2.89L16,23l-.93.49L9.56,26.34l1-6.13.18-1L10,18.44,5.58,14.09l6.16-.89,1-.15.46-1L16,6.52M16,2l-4.55,9.22L1.28,12.69l7.36,7.18L6.9,30,16,25.22,25.1,30,23.36,19.87l7.36-7.17L20.55,11.22Z" }), children);
593
992
  });
594
993
  if (process.env.NODE_ENV !== "production") Star.propTypes = require_iconPropTypes.iconPropTypes;
595
- const StarFilled = react.default.forwardRef(function StarFilled({ children, size = 16, ...rest }, ref) {
596
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
994
+ const StarFilled = /* @__PURE__ */ react.default.forwardRef(function StarFilled({ children, size = 16, ...rest }, ref) {
995
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
597
996
  width: size,
598
997
  height: size,
599
998
  ref,
@@ -602,7 +1001,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
602
1001
  fill: "currentColor",
603
1002
  ...rest
604
1003
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1L5.7,5.6L0.6,6.3l3.7,3.6L3.5,15L8,12.6l4.6,2.4l-0.9-5.1l3.7-3.6l-5.1-0.7L8,1z" }), children);
605
- return react.default.createElement(require_Icon_js, {
1004
+ return react.default.createElement(require_Icon.Icon, {
606
1005
  width: size,
607
1006
  height: size,
608
1007
  ref,
@@ -613,8 +1012,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
613
1012
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2l-4.55,9.22L1.28,12.69l7.36,7.18L6.9,30,16,25.22,25.1,30,23.36,19.87l7.36-7.17L20.55,11.22Z" }), children);
614
1013
  });
615
1014
  if (process.env.NODE_ENV !== "production") StarFilled.propTypes = require_iconPropTypes.iconPropTypes;
616
- const StarHalf = react.default.forwardRef(function StarHalf({ children, size = 16, ...rest }, ref) {
617
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1015
+ const StarHalf = /* @__PURE__ */ react.default.forwardRef(function StarHalf({ children, size = 16, ...rest }, ref) {
1016
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
618
1017
  width: size,
619
1018
  height: size,
620
1019
  ref,
@@ -623,7 +1022,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
623
1022
  fill: "currentColor",
624
1023
  ...rest
625
1024
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.7 5.6.6 6.3 4.3 9.9 3.5 15 8 12.6 8 1z" }), children);
626
- return react.default.createElement(require_Icon_js, {
1025
+ return react.default.createElement(require_Icon.Icon, {
627
1026
  width: size,
628
1027
  height: size,
629
1028
  ref,
@@ -634,8 +1033,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
634
1033
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.45 11.22 1.28 12.7 8.64 19.87 6.9 30 16 25.22 16 2 11.45 11.22z" }), children);
635
1034
  });
636
1035
  if (process.env.NODE_ENV !== "production") StarHalf.propTypes = require_iconPropTypes.iconPropTypes;
637
- const StarReview = react.default.forwardRef(function StarReview({ children, size = 16, ...rest }, ref) {
638
- return react.default.createElement(require_Icon_js, {
1036
+ const StarReview = /* @__PURE__ */ react.default.forwardRef(function StarReview({ children, size = 16, ...rest }, ref) {
1037
+ return react.default.createElement(require_Icon.Icon, {
639
1038
  width: size,
640
1039
  height: size,
641
1040
  ref,
@@ -646,8 +1045,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
646
1045
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 26H26V28H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 22H30V24H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 18H30V20H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.549 11.217 16 2 11.451 11.217 1.28 12.695 8.64 19.87 6.902 30 14 26.269 14 24.009 9.559 26.344 10.611 20.208 10.789 19.171 10.036 18.438 5.578 14.091 11.739 13.196 12.779 13.045 13.245 12.102 16 6.519 18.755 12.102 19.221 13.045 20.261 13.196 27.715 14.281 28 12.3 20.549 11.217z" }), children);
647
1046
  });
648
1047
  if (process.env.NODE_ENV !== "production") StarReview.propTypes = require_iconPropTypes.iconPropTypes;
649
- const WatsonHealthStatusAcknowledge = react.default.forwardRef(function WatsonHealthStatusAcknowledge({ children, size = 16, ...rest }, ref) {
650
- return react.default.createElement(require_Icon_js, {
1048
+ const WatsonHealthStatusAcknowledge = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStatusAcknowledge({ children, size = 16, ...rest }, ref) {
1049
+ return react.default.createElement(require_Icon.Icon, {
651
1050
  width: size,
652
1051
  height: size,
653
1052
  ref,
@@ -658,8 +1057,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
658
1057
  }, /* @__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: "M12 15.59 9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z" }), children);
659
1058
  });
660
1059
  if (process.env.NODE_ENV !== "production") WatsonHealthStatusAcknowledge.propTypes = require_iconPropTypes.iconPropTypes;
661
- const WatsonHealthStatusChange = react.default.forwardRef(function WatsonHealthStatusChange({ children, size = 16, ...rest }, ref) {
662
- return react.default.createElement(require_Icon_js, {
1060
+ const WatsonHealthStatusChange = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStatusChange({ children, size = 16, ...rest }, ref) {
1061
+ return react.default.createElement(require_Icon.Icon, {
663
1062
  width: size,
664
1063
  height: size,
665
1064
  ref,
@@ -670,8 +1069,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
670
1069
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,30a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,7,30Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,23,30Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,23,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,7v7l3.5859-3.4141L29,12l-6,6-6-6,1.4141-1.4141L22,14V7a1.0009,1.0009,0,0,0-1-1H9A1.0006,1.0006,0,0,0,8,7V18H6V7A3.0033,3.0033,0,0,1,9,4H21A3.0033,3.0033,0,0,1,24,7Z" }), children);
671
1070
  });
672
1071
  if (process.env.NODE_ENV !== "production") WatsonHealthStatusChange.propTypes = require_iconPropTypes.iconPropTypes;
673
- const WatsonHealthStatusPartialFail = react.default.forwardRef(function WatsonHealthStatusPartialFail({ children, size = 16, ...rest }, ref) {
674
- return react.default.createElement(require_Icon_js, {
1072
+ const WatsonHealthStatusPartialFail = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStatusPartialFail({ children, size = 16, ...rest }, ref) {
1073
+ return react.default.createElement(require_Icon.Icon, {
675
1074
  width: size,
676
1075
  height: size,
677
1076
  ref,
@@ -682,8 +1081,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
682
1081
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.1407,23.7642l1.5315,1.2851a13.976,13.976,0,0,0,2.4408-4.1821l-1.8776-.6836A11.9729,11.9729,0,0,1,25.1407,23.7642Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,27.81l.4128,1.9677A13.8888,13.8888,0,0,0,22.9543,28.14L22,26.4087A12.52,12.52,0,0,1,18,27.81Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,26.4087,9,28.14a14.14,14.14,0,0,0,4.5872,1.6382l.3469-1.9677A12.1519,12.1519,0,0,1,10,26.4087Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.7646,20.1836l-1.8776.6836a13.976,13.976,0,0,0,2.4408,4.1821l1.5315-1.2851A11.9729,11.9729,0,0,1,4.7646,20.1836Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 8H17V19H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16H28A12,12,0,0,0,4,16H2a14,14,0,0,1,28,0Z" }), children);
683
1082
  });
684
1083
  if (process.env.NODE_ENV !== "production") WatsonHealthStatusPartialFail.propTypes = require_iconPropTypes.iconPropTypes;
685
- const WatsonHealthStatusResolved = react.default.forwardRef(function WatsonHealthStatusResolved({ children, size = 16, ...rest }, ref) {
686
- return react.default.createElement(require_Icon_js, {
1084
+ const WatsonHealthStatusResolved = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStatusResolved({ children, size = 16, ...rest }, ref) {
1085
+ return react.default.createElement(require_Icon.Icon, {
687
1086
  width: size,
688
1087
  height: size,
689
1088
  ref,
@@ -694,8 +1093,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
694
1093
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 28.414 16 23.413 17.413 22 21 25.586 28.585 18 30 19.415 21 28.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 15.59 9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8193,25.8022a11.992,11.992,0,1,1,13.9829-9.6215l-1.9668-.3614A10.001,10.001,0,1,0,12.1807,23.835Z" }), children);
695
1094
  });
696
1095
  if (process.env.NODE_ENV !== "production") WatsonHealthStatusResolved.propTypes = require_iconPropTypes.iconPropTypes;
697
- const StayInside = react.default.forwardRef(function StayInside({ children, size = 16, ...rest }, ref) {
698
- return react.default.createElement(require_Icon_js, {
1096
+ const StayInside = /* @__PURE__ */ react.default.forwardRef(function StayInside({ children, size = 16, ...rest }, ref) {
1097
+ return react.default.createElement(require_Icon.Icon, {
699
1098
  width: size,
700
1099
  height: size,
701
1100
  ref,
@@ -706,8 +1105,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
706
1105
  }, /* @__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: "M30,30H28V14.4639L16,4.31,4,14.4639V30H2V14a1,1,0,0,1,.354-.7634l13-11a1,1,0,0,1,1.292,0l13,11A1,1,0,0,1,30,14Z" }), children);
707
1106
  });
708
1107
  if (process.env.NODE_ENV !== "production") StayInside.propTypes = require_iconPropTypes.iconPropTypes;
709
- const StemLeafPlot = react.default.forwardRef(function StemLeafPlot({ children, size = 16, ...rest }, ref) {
710
- return react.default.createElement(require_Icon_js, {
1108
+ const StemLeafPlot = /* @__PURE__ */ react.default.forwardRef(function StemLeafPlot({ children, size = 16, ...rest }, ref) {
1109
+ return react.default.createElement(require_Icon.Icon, {
711
1110
  width: size,
712
1111
  height: size,
713
1112
  ref,
@@ -718,8 +1117,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
718
1117
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,10a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,19,10Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,19,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,19a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,19,19Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,19,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,19a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,27,19Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,27,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,28a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,19,28Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,19,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H14V30H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,28a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,28Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,7,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,19a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,19Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,7,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,10a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,10ZM7,6A1,1,0,1,0,8,7,1.0011,1.0011,0,0,0,7,6Z" }), children);
719
1118
  });
720
1119
  if (process.env.NODE_ENV !== "production") StemLeafPlot.propTypes = require_iconPropTypes.iconPropTypes;
721
- const Stethoscope = react.default.forwardRef(function Stethoscope({ children, size = 16, ...rest }, ref) {
722
- return react.default.createElement(require_Icon_js, {
1120
+ const Stethoscope = /* @__PURE__ */ react.default.forwardRef(function Stethoscope({ children, size = 16, ...rest }, ref) {
1121
+ return react.default.createElement(require_Icon.Icon, {
723
1122
  width: size,
724
1123
  height: size,
725
1124
  ref,
@@ -730,8 +1129,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
730
1129
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,2V4h2v6a4,4,0,0,1-8,0V4h2V2H16v8a6.0051,6.0051,0,0,0,5,5.91V22A6,6,0,0,1,9,22V15.8579a4,4,0,1,0-2,0V22a8,8,0,0,0,16,0V15.91A6.0051,6.0051,0,0,0,28,10V2ZM6,12a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,6,12Z" }), children);
731
1130
  });
732
1131
  if (process.env.NODE_ENV !== "production") Stethoscope.propTypes = require_iconPropTypes.iconPropTypes;
733
- const Stickies = react.default.forwardRef(function Stickies({ children, size = 16, ...rest }, ref) {
734
- return react.default.createElement(require_Icon_js, {
1132
+ const Stickies = /* @__PURE__ */ react.default.forwardRef(function Stickies({ children, size = 16, ...rest }, ref) {
1133
+ return react.default.createElement(require_Icon.Icon, {
735
1134
  width: size,
736
1135
  height: size,
737
1136
  ref,
@@ -742,8 +1141,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
742
1141
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,22v-12c0-1.1-.9-2-2-2H12c-1.1,0-2,.9-2,2v18c0,1.1.9,2,2,2h10c.3,0,.5-.1.7-.3l7-7c.2-.2.3-.4.3-.7ZM22,22h5.6s-5.6,5.6-5.6,5.6v-5.6ZM28,20h-6c-1.1,0-2,.9-2,2v6h-8V10h16v10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,22V4h16v2h2v-2c0-1.1001-.8999-2-2-2H4c-1.1001,0-2,.8999-2,2v18c0,1.1001.8999,2,2,2h4v-2H4Z" }), children);
743
1142
  });
744
1143
  if (process.env.NODE_ENV !== "production") Stickies.propTypes = require_iconPropTypes.iconPropTypes;
745
- const Stop = react.default.forwardRef(function Stop({ children, size = 16, ...rest }, ref) {
746
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1144
+ const Stop = /* @__PURE__ */ react.default.forwardRef(function Stop({ children, size = 16, ...rest }, ref) {
1145
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
747
1146
  width: size,
748
1147
  height: size,
749
1148
  ref,
@@ -752,7 +1151,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
752
1151
  fill: "currentColor",
753
1152
  ...rest
754
1153
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4v8H4V4H12 M12,3H4C3.4,3,3,3.4,3,4v8c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1V4C13,3.4,12.6,3,12,3z" }), children);
755
- return react.default.createElement(require_Icon_js, {
1154
+ return react.default.createElement(require_Icon.Icon, {
756
1155
  width: size,
757
1156
  height: size,
758
1157
  ref,
@@ -763,8 +1162,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
763
1162
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,8V24H8V8H24m0-2H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z" }), children);
764
1163
  });
765
1164
  if (process.env.NODE_ENV !== "production") Stop.propTypes = require_iconPropTypes.iconPropTypes;
766
- const StopFilled = react.default.forwardRef(function StopFilled({ children, size = 16, ...rest }, ref) {
767
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1165
+ const StopFilled = /* @__PURE__ */ react.default.forwardRef(function StopFilled({ children, size = 16, ...rest }, ref) {
1166
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
768
1167
  width: size,
769
1168
  height: size,
770
1169
  ref,
@@ -773,7 +1172,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
773
1172
  fill: "currentColor",
774
1173
  ...rest
775
1174
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11,10c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1V6c0-0.6,0.4-1,1-1h4 c0.6,0,1,0.4,1,1V10z" }), children);
776
- return react.default.createElement(require_Icon_js, {
1175
+ return react.default.createElement(require_Icon.Icon, {
777
1176
  width: size,
778
1177
  height: size,
779
1178
  ref,
@@ -784,8 +1183,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
784
1183
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm6,18a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V12a2,2,0,0,1,2-2h8a2,2,0,0,1,2,2Z" }), children);
785
1184
  });
786
1185
  if (process.env.NODE_ENV !== "production") StopFilled.propTypes = require_iconPropTypes.iconPropTypes;
787
- const StopFilledAlt = react.default.forwardRef(function StopFilledAlt({ children, size = 16, ...rest }, ref) {
788
- return react.default.createElement(require_Icon_js, {
1186
+ const StopFilledAlt = /* @__PURE__ */ react.default.forwardRef(function StopFilledAlt({ children, size = 16, ...rest }, ref) {
1187
+ return react.default.createElement(require_Icon.Icon, {
789
1188
  width: size,
790
1189
  height: size,
791
1190
  ref,
@@ -796,8 +1195,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
796
1195
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,6H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z" }), children);
797
1196
  });
798
1197
  if (process.env.NODE_ENV !== "production") StopFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
799
- const StopOutline = react.default.forwardRef(function StopOutline({ children, size = 16, ...rest }, ref) {
800
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1198
+ const StopOutline = /* @__PURE__ */ react.default.forwardRef(function StopOutline({ children, size = 16, ...rest }, ref) {
1199
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
801
1200
  width: size,
802
1201
  height: size,
803
1202
  ref,
@@ -806,7 +1205,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
806
1205
  fill: "currentColor",
807
1206
  ...rest
808
1207
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,6v4H6V6H10 M10,5H6C5.4,5,5,5.4,5,6v4c0,0.6,0.4,1,1,1h4c0.6,0,1-0.4,1-1V6C11,5.4,10.6,5,10,5z" }), children);
809
- return react.default.createElement(require_Icon_js, {
1208
+ return react.default.createElement(require_Icon.Icon, {
810
1209
  width: size,
811
1210
  height: size,
812
1211
  ref,
@@ -817,8 +1216,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
817
1216
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,12v8H12V12h8m0-2H12a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V12a2,2,0,0,0-2-2Z" }), children);
818
1217
  });
819
1218
  if (process.env.NODE_ENV !== "production") StopOutline.propTypes = require_iconPropTypes.iconPropTypes;
820
- const StopOutlineFilled = react.default.forwardRef(function StopOutlineFilled({ children, size = 16, ...rest }, ref) {
821
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1219
+ const StopOutlineFilled = /* @__PURE__ */ react.default.forwardRef(function StopOutlineFilled({ children, size = 16, ...rest }, ref) {
1220
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
822
1221
  width: size,
823
1222
  height: size,
824
1223
  ref,
@@ -827,7 +1226,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
827
1226
  fill: "currentColor",
828
1227
  ...rest
829
1228
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11,10c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1V6c0-0.6,0.4-1,1-1h4 c0.6,0,1,0.4,1,1V10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H10V10H6z" }), children);
830
- return react.default.createElement(require_Icon_js, {
1229
+ return react.default.createElement(require_Icon.Icon, {
831
1230
  width: size,
832
1231
  height: size,
833
1232
  ref,
@@ -838,8 +1237,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
838
1237
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm6,18a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V12a2,2,0,0,1,2-2h8a2,2,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12H20V20H12z" }), children);
839
1238
  });
840
1239
  if (process.env.NODE_ENV !== "production") StopOutlineFilled.propTypes = require_iconPropTypes.iconPropTypes;
841
- const StopSign = react.default.forwardRef(function StopSign({ children, size = 16, ...rest }, ref) {
842
- return react.default.createElement(require_Icon_js, {
1240
+ const StopSign = /* @__PURE__ */ react.default.forwardRef(function StopSign({ children, size = 16, ...rest }, ref) {
1241
+ return react.default.createElement(require_Icon.Icon, {
843
1242
  width: size,
844
1243
  height: size,
845
1244
  ref,
@@ -850,8 +1249,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
850
1249
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.5857,29H11.4143A1.9865,1.9865,0,0,1,10,28.4141L3.5859,22A1.9865,1.9865,0,0,1,3,20.5857V11.4143A1.9865,1.9865,0,0,1,3.5859,10L10,3.5859A1.9865,1.9865,0,0,1,11.4143,3h9.1714A1.9865,1.9865,0,0,1,22,3.5859L28.4141,10A1.9865,1.9865,0,0,1,29,11.4143v9.1714A1.9865,1.9865,0,0,1,28.4141,22L22,28.4141A1.9865,1.9865,0,0,1,20.5857,29ZM11.4141,5,5,11.4141v9.1716L11.4141,27h9.1716L27,20.5859V11.4143L20.5859,5H11.4141Z" }), children);
851
1250
  });
852
1251
  if (process.env.NODE_ENV !== "production") StopSign.propTypes = require_iconPropTypes.iconPropTypes;
853
- const StopSignFilled = react.default.forwardRef(function StopSignFilled({ children, size = 16, ...rest }, ref) {
854
- return react.default.createElement(require_Icon_js, {
1252
+ const StopSignFilled = /* @__PURE__ */ react.default.forwardRef(function StopSignFilled({ children, size = 16, ...rest }, ref) {
1253
+ return react.default.createElement(require_Icon.Icon, {
855
1254
  width: size,
856
1255
  height: size,
857
1256
  ref,
@@ -862,8 +1261,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
862
1261
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.5857,29H11.4143A1.9865,1.9865,0,0,1,10,28.4141L3.5859,22A1.9865,1.9865,0,0,1,3,20.5857V11.4143A1.9865,1.9865,0,0,1,3.5859,10L10,3.5859A1.9865,1.9865,0,0,1,11.4143,3h9.1714A1.9865,1.9865,0,0,1,22,3.5859L28.4141,10A1.9865,1.9865,0,0,1,29,11.4143v9.1714A1.9865,1.9865,0,0,1,28.4141,22L22,28.4141A1.9865,1.9865,0,0,1,20.5857,29Z" }), children);
863
1262
  });
864
1263
  if (process.env.NODE_ENV !== "production") StopSignFilled.propTypes = require_iconPropTypes.iconPropTypes;
865
- const StoragePool = react.default.forwardRef(function StoragePool({ children, size = 16, ...rest }, ref) {
866
- return react.default.createElement(require_Icon_js, {
1264
+ const StoragePool = /* @__PURE__ */ react.default.forwardRef(function StoragePool({ children, size = 16, ...rest }, ref) {
1265
+ return react.default.createElement(require_Icon.Icon, {
867
1266
  width: size,
868
1267
  height: size,
869
1268
  ref,
@@ -874,8 +1273,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
874
1273
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.5,13A3.5,3.5,0,1,1,21,9.5,3.5041,3.5041,0,0,1,17.5,13Zm0-5A1.5,1.5,0,1,0,19,9.5,1.5017,1.5017,0,0,0,17.5,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.5,26A3.5,3.5,0,1,1,18,22.5,3.5041,3.5041,0,0,1,14.5,26Zm0-5A1.5,1.5,0,1,0,16,22.5,1.5017,1.5017,0,0,0,14.5,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.5,18A3.5,3.5,0,1,1,13,14.5,3.5041,3.5041,0,0,1,9.5,18Zm0-5A1.5,1.5,0,1,0,11,14.5,1.5017,1.5017,0,0,0,9.5,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,21A3.5,3.5,0,1,1,26,17.5,3.5041,3.5041,0,0,1,22.5,21Zm0-5A1.5,1.5,0,1,0,24,17.5,1.5017,1.5017,0,0,0,22.5,16Z" }), children);
875
1274
  });
876
1275
  if (process.env.NODE_ENV !== "production") StoragePool.propTypes = require_iconPropTypes.iconPropTypes;
877
- const StorageRequest = react.default.forwardRef(function StorageRequest({ children, size = 16, ...rest }, ref) {
878
- return react.default.createElement(require_Icon_js, {
1276
+ const StorageRequest = /* @__PURE__ */ react.default.forwardRef(function StorageRequest({ children, size = 16, ...rest }, ref) {
1277
+ return react.default.createElement(require_Icon.Icon, {
879
1278
  width: size,
880
1279
  height: size,
881
1280
  ref,
@@ -894,8 +1293,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
894
1293
  }), children);
895
1294
  });
896
1295
  if (process.env.NODE_ENV !== "production") StorageRequest.propTypes = require_iconPropTypes.iconPropTypes;
897
- const Store = react.default.forwardRef(function Store({ children, size = 16, ...rest }, ref) {
898
- return react.default.createElement(require_Icon_js, {
1296
+ const Store = /* @__PURE__ */ react.default.forwardRef(function Store({ children, size = 16, ...rest }, ref) {
1297
+ return react.default.createElement(require_Icon.Icon, {
899
1298
  width: size,
900
1299
  height: size,
901
1300
  ref,
@@ -906,8 +1305,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
906
1305
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,10.68l-2-6A1,1,0,0,0,27,4H5a1,1,0,0,0-1,.68l-2,6A1.19,1.19,0,0,0,2,11v6a1,1,0,0,0,1,1H4V28H6V18h6V28H28V18h1a1,1,0,0,0,1-1V11A1.19,1.19,0,0,0,30,10.68ZM26,26H14V18H26Zm2-10H24V12H22v4H17V12H15v4H10V12H8v4H4V11.16L5.72,6H26.28L28,11.16Z" }), children);
907
1306
  });
908
1307
  if (process.env.NODE_ENV !== "production") Store.propTypes = require_iconPropTypes.iconPropTypes;
909
- const StormTracker = react.default.forwardRef(function StormTracker({ children, size = 16, ...rest }, ref) {
910
- return react.default.createElement(require_Icon_js, {
1308
+ const Storm = /* @__PURE__ */ react.default.forwardRef(function Storm({ children, size = 16, ...rest }, ref) {
1309
+ return react.default.createElement(require_Icon.Icon, {
911
1310
  width: size,
912
1311
  height: size,
913
1312
  ref,
@@ -915,11 +1314,23 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
915
1314
  viewBox: "0 0 32 32",
916
1315
  fill: "currentColor",
917
1316
  ...rest
918
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2a1,1,0,0,0-.9736.771l-1.7229,7.3223a10.0653,10.0653,0,1,0,8.6032,8.603l7.3223-1.7227A1,1,0,0,0,30,16,14.0158,14.0158,0,0,0,16,2ZM11.293,20.707A1,1,0,0,0,12,21a1.013,1.013,0,0,0,.229-.0264l3.7622-.8852a3.996,3.996,0,1,1-4.08-4.08l-.8852,3.7622A1,1,0,0,0,11.293,20.707Zm2.05-2.0508,2.271-9.65a7.5018,7.5018,0,0,1,7.38,7.38ZM20,20a8,8,0,1,1-8-8,8.1017,8.1017,0,0,1,.8438.0469L12.38,14.019C12.2532,14.0107,12.127,14,12,14a6,6,0,1,0,6,6c0-.127-.011-.2534-.019-.38l1.9721-.4643A8.1048,8.1048,0,0,1,20,20Zm4.9707-4.0791a9.4981,9.4981,0,0,0-8.8914-8.8916l.7068-3.0039A12.0193,12.0193,0,0,1,27.9746,15.2139Z" }), children);
1317
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,20c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM28,23.25v-4.5c0-.9648-.8281-1.75-1.8457-1.75H5.8462c-1.0181,0-1.8462.7852-1.8462,1.75v4.5c0,.9648.8281,1.75,1.8462,1.75h20.3081c1.0176,0,1.8457-.7852,1.8457-1.75ZM6,19h20v4H6v-4ZM9,13h-3v-4h3v-2h-3c-1.103,0-2,.897-2,2v4c0,1.103.897,2,2,2h3v-2ZM28,13v-4c0-1.103-.8975-2-2-2h-3v2h3v4h-3v2h3c1.1025,0,2-.897,2-2ZM15,7h-4v2h4v-2ZM15,13h-4v2h4v-2ZM21,7h-4v2h4v-2ZM21,13h-4v2h4v-2Z" }), children);
919
1318
  });
920
- if (process.env.NODE_ENV !== "production") StormTracker.propTypes = require_iconPropTypes.iconPropTypes;
921
- const StrategyPlay = react.default.forwardRef(function StrategyPlay({ children, size = 16, ...rest }, ref) {
922
- return react.default.createElement(require_Icon_js, {
1319
+ if (process.env.NODE_ENV !== "production") Storm.propTypes = require_iconPropTypes.iconPropTypes;
1320
+ const StormTracker = /* @__PURE__ */ react.default.forwardRef(function StormTracker({ children, size = 16, ...rest }, ref) {
1321
+ return react.default.createElement(require_Icon.Icon, {
1322
+ width: size,
1323
+ height: size,
1324
+ ref,
1325
+ xmlns: "http://www.w3.org/2000/svg",
1326
+ viewBox: "0 0 32 32",
1327
+ fill: "currentColor",
1328
+ ...rest
1329
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2a1,1,0,0,0-.9736.771l-1.7229,7.3223a10.0653,10.0653,0,1,0,8.6032,8.603l7.3223-1.7227A1,1,0,0,0,30,16,14.0158,14.0158,0,0,0,16,2ZM11.293,20.707A1,1,0,0,0,12,21a1.013,1.013,0,0,0,.229-.0264l3.7622-.8852a3.996,3.996,0,1,1-4.08-4.08l-.8852,3.7622A1,1,0,0,0,11.293,20.707Zm2.05-2.0508,2.271-9.65a7.5018,7.5018,0,0,1,7.38,7.38ZM20,20a8,8,0,1,1-8-8,8.1017,8.1017,0,0,1,.8438.0469L12.38,14.019C12.2532,14.0107,12.127,14,12,14a6,6,0,1,0,6,6c0-.127-.011-.2534-.019-.38l1.9721-.4643A8.1048,8.1048,0,0,1,20,20Zm4.9707-4.0791a9.4981,9.4981,0,0,0-8.8914-8.8916l.7068-3.0039A12.0193,12.0193,0,0,1,27.9746,15.2139Z" }), children);
1330
+ });
1331
+ if (process.env.NODE_ENV !== "production") StormTracker.propTypes = require_iconPropTypes.iconPropTypes;
1332
+ const StrategyPlay = /* @__PURE__ */ react.default.forwardRef(function StrategyPlay({ children, size = 16, ...rest }, ref) {
1333
+ return react.default.createElement(require_Icon.Icon, {
923
1334
  width: size,
924
1335
  height: size,
925
1336
  ref,
@@ -939,8 +1350,20 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
939
1350
  }), children);
940
1351
  });
941
1352
  if (process.env.NODE_ENV !== "production") StrategyPlay.propTypes = require_iconPropTypes.iconPropTypes;
942
- const Strawberry = react.default.forwardRef(function Strawberry({ children, size = 16, ...rest }, ref) {
943
- return react.default.createElement(require_Icon_js, {
1353
+ const Stratus = /* @__PURE__ */ react.default.forwardRef(function Stratus({ children, size = 16, ...rest }, ref) {
1354
+ return react.default.createElement(require_Icon.Icon, {
1355
+ width: size,
1356
+ height: size,
1357
+ ref,
1358
+ xmlns: "http://www.w3.org/2000/svg",
1359
+ viewBox: "0 0 32 32",
1360
+ fill: "currentColor",
1361
+ ...rest
1362
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,25c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,6c0,.5523.4477,1,1,1s1-.4477,1-1-.4477-1-1-1-1,.4477-1,1ZM8,16c0,.5523.4477,1,1,1s1-.4477,1-1-.4477-1-1-1-1,.4477-1,1ZM16,19h10c.5523,0,1-.4477,1-1v-4c0-.5523-.4477-1-1-1h-10M28,18v-4c0-1.103-.8975-2-2-2h-10v2h10v4h-10v2h10c1.1025,0,2-.8975,2-2ZM22,9h4c.5523,0,1-.4477,1-1V4c0-.5523-.4477-1-1-1h-4M28,8v-4c0-1.103-.8975-2-2-2h-4v2h4v4h-4v2h4c1.1025,0,2-.897,2-2ZM16,18H6v-4h10v-2H6c-1.103,0-2,.897-2,2v4c0,1.1025.897,2,2,2h10v-2ZM22,8H6v-4h16v-2H6c-1.103,0-2,.897-2,2v4c0,1.103.897,2,2,2h16v-2ZM18,28H6v-4h12v-2H6c-1.103,0-2,.8975-2,2v4c0,1.1025.897,2,2,2h12v-2ZM18,29h8c.5523,0,1-.4477,1-1v-4c0-.5523-.4477-1-1-1h-8M28,28v-4c0-1.1025-.8975-2-2-2h-8v2h8v4h-8v2h8c1.1025,0,2-.8975,2-2Z" }), children);
1363
+ });
1364
+ if (process.env.NODE_ENV !== "production") Stratus.propTypes = require_iconPropTypes.iconPropTypes;
1365
+ const Strawberry = /* @__PURE__ */ react.default.forwardRef(function Strawberry({ children, size = 16, ...rest }, ref) {
1366
+ return react.default.createElement(require_Icon.Icon, {
944
1367
  width: size,
945
1368
  height: size,
946
1369
  ref,
@@ -951,8 +1374,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
951
1374
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 10H11V12H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 14H11V16H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 12H15V14H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,28a5.169,5.169,0,0,1-.7441-.054A5.0935,5.0935,0,0,1,4,22.8669V11.1985a7.1615,7.1615,0,0,1,6.31-7.1653,6.9607,6.9607,0,0,1,4.4643,1.0706l7.9688,4.9807a6.98,6.98,0,0,1-.6885,12.19l-10.88,5.2285A4.9765,4.9765,0,0,1,9,28ZM11.002,6q-.2484,0-.5005.0241A5.1463,5.1463,0,0,0,6,11.1985V22.8669a3.0839,3.0839,0,0,0,2.5435,3.1,3.0266,3.0266,0,0,0,1.7622-.2649l10.8828-5.23a4.9807,4.9807,0,0,0,.4887-8.6958L13.7046,6.7935A4.9687,4.9687,0,0,0,11.002,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,7H22a4.0045,4.0045,0,0,1-4-4V2h2V3a2.0021,2.0021,0,0,0,2,2h4Z" }), children);
952
1375
  });
953
1376
  if (process.env.NODE_ENV !== "production") Strawberry.propTypes = require_iconPropTypes.iconPropTypes;
954
- const WatsonHealthStressBreathEditor = react.default.forwardRef(function WatsonHealthStressBreathEditor({ children, size = 16, ...rest }, ref) {
955
- return react.default.createElement(require_Icon_js, {
1377
+ const WatsonHealthStressBreathEditor = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStressBreathEditor({ children, size = 16, ...rest }, ref) {
1378
+ return react.default.createElement(require_Icon.Icon, {
956
1379
  width: size,
957
1380
  height: size,
958
1381
  ref,
@@ -963,8 +1386,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
963
1386
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,4a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,20,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H28V25a5,5,0,0,0-5-5H17a5,5,0,0,0-5,5v5H10V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,8H5A3,3,0,0,1,2,5V3H4V5A1,1,0,0,0,5,6h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,15H2V13a3,3,0,0,1,3-3h6v2H5a1,1,0,0,0-1,1Z" }), children);
964
1387
  });
965
1388
  if (process.env.NODE_ENV !== "production") WatsonHealthStressBreathEditor.propTypes = require_iconPropTypes.iconPropTypes;
966
- const StringInteger = react.default.forwardRef(function StringInteger({ children, size = 16, ...rest }, ref) {
967
- return react.default.createElement(require_Icon_js, {
1389
+ const StringInteger = /* @__PURE__ */ react.default.forwardRef(function StringInteger({ children, size = 16, ...rest }, ref) {
1390
+ return react.default.createElement(require_Icon.Icon, {
968
1391
  width: size,
969
1392
  height: size,
970
1393
  ref,
@@ -975,8 +1398,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
975
1398
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,12H22v2h4v2H23v2h3v2H22v2h4a2.0027,2.0027,0,0,0,2-2V14A2.0023,2.0023,0,0,0,26,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,22H13V18a2.002,2.002,0,0,1,2-2h2V14H13V12h4a2.0023,2.0023,0,0,1,2,2v2a2.0023,2.0023,0,0,1-2,2H15v2h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 20 8 12 6 12 6 13 4 13 4 15 6 15 6 20 4 20 4 22 10 22 10 20 8 20z" }), children);
976
1399
  });
977
1400
  if (process.env.NODE_ENV !== "production") StringInteger.propTypes = require_iconPropTypes.iconPropTypes;
978
- const StringText = react.default.forwardRef(function StringText({ children, size = 16, ...rest }, ref) {
979
- return react.default.createElement(require_Icon_js, {
1401
+ const StringText = /* @__PURE__ */ react.default.forwardRef(function StringText({ children, size = 16, ...rest }, ref) {
1402
+ return react.default.createElement(require_Icon.Icon, {
980
1403
  width: size,
981
1404
  height: size,
982
1405
  ref,
@@ -987,8 +1410,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
987
1410
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,22H24a2.0027,2.0027,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2h5v2H24v6h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,12H14V8H12V22h6a2.0027,2.0027,0,0,0,2-2V14A2.0023,2.0023,0,0,0,18,12Zm-4,8V14h4v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,12H3v2H8v2H4a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V14A2.0023,2.0023,0,0,0,8,12Zm0,8H4V18H8Z" }), children);
988
1411
  });
989
1412
  if (process.env.NODE_ENV !== "production") StringText.propTypes = require_iconPropTypes.iconPropTypes;
990
- const WatsonHealthStudyNext = react.default.forwardRef(function WatsonHealthStudyNext({ children, size = 16, ...rest }, ref) {
991
- return react.default.createElement(require_Icon_js, {
1413
+ const WatsonHealthStudyNext = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudyNext({ children, size = 16, ...rest }, ref) {
1414
+ return react.default.createElement(require_Icon.Icon, {
992
1415
  width: size,
993
1416
  height: size,
994
1417
  ref,
@@ -999,8 +1422,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
999
1422
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.93 21 30 15 23.93 9 22.5 10.41 27.14 15 22.5 19.59 23.93 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), children);
1000
1423
  });
1001
1424
  if (process.env.NODE_ENV !== "production") WatsonHealthStudyNext.propTypes = require_iconPropTypes.iconPropTypes;
1002
- const WatsonHealthStudyPrevious = react.default.forwardRef(function WatsonHealthStudyPrevious({ children, size = 16, ...rest }, ref) {
1003
- return react.default.createElement(require_Icon_js, {
1425
+ const WatsonHealthStudyPrevious = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudyPrevious({ children, size = 16, ...rest }, ref) {
1426
+ return react.default.createElement(require_Icon.Icon, {
1004
1427
  width: size,
1005
1428
  height: size,
1006
1429
  ref,
@@ -1011,8 +1434,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1011
1434
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.07 21 2 15 8.07 9 9.5 10.41 4.86 15 9.5 19.59 8.07 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,4a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,20,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H28V25a5,5,0,0,0-5-5H17a5,5,0,0,0-5,5v5H10V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), children);
1012
1435
  });
1013
1436
  if (process.env.NODE_ENV !== "production") WatsonHealthStudyPrevious.propTypes = require_iconPropTypes.iconPropTypes;
1014
- const WatsonHealthStudyRead = react.default.forwardRef(function WatsonHealthStudyRead({ children, size = 16, ...rest }, ref) {
1015
- return react.default.createElement(require_Icon_js, {
1437
+ const WatsonHealthStudyRead = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudyRead({ children, size = 16, ...rest }, ref) {
1438
+ return react.default.createElement(require_Icon.Icon, {
1016
1439
  width: size,
1017
1440
  height: size,
1018
1441
  ref,
@@ -1023,8 +1446,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1023
1446
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 29.414 16 24.413 17.413 23 21 26.586 28.585 19 30 20.415 21 29.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 14 20 12 15 12 15 10 18 10 18 8 15 8 15 6 13 6 13 8 10 8 10 10 13 10 13 12 8 12 8 14 13 14 13 16 8 16 8 18 13 18 13 20 10 20 10 22 15 22 15 18 18 18 18 16 15 16 15 14 20 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,24H4V4H24V16h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2h9Z" }), children);
1024
1447
  });
1025
1448
  if (process.env.NODE_ENV !== "production") WatsonHealthStudyRead.propTypes = require_iconPropTypes.iconPropTypes;
1026
- const WatsonHealthStudySkip = react.default.forwardRef(function WatsonHealthStudySkip({ children, size = 16, ...rest }, ref) {
1027
- return react.default.createElement(require_Icon_js, {
1449
+ const WatsonHealthStudySkip = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudySkip({ children, size = 16, ...rest }, ref) {
1450
+ return react.default.createElement(require_Icon.Icon, {
1028
1451
  width: size,
1029
1452
  height: size,
1030
1453
  ref,
@@ -1035,8 +1458,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1035
1458
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,9h5.2A11,11,0,0,0,7,15H5A13,13,0,0,1,28,6.7V3h2v8H22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,12a3,3,0,1,1-3,3,2.95,2.95,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,16,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30H21V27a3,3,0,0,0-3-3H14a3,3,0,0,0-3,3v3H9V27a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z" }), children);
1036
1459
  });
1037
1460
  if (process.env.NODE_ENV !== "production") WatsonHealthStudySkip.propTypes = require_iconPropTypes.iconPropTypes;
1038
- const WatsonHealthStudyTransfer = react.default.forwardRef(function WatsonHealthStudyTransfer({ children, size = 16, ...rest }, ref) {
1039
- return react.default.createElement(require_Icon_js, {
1461
+ const WatsonHealthStudyTransfer = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudyTransfer({ children, size = 16, ...rest }, ref) {
1462
+ return react.default.createElement(require_Icon.Icon, {
1040
1463
  width: size,
1041
1464
  height: size,
1042
1465
  ref,
@@ -1047,8 +1470,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1047
1470
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.586 19.414 13.165 24 8.586 28.586 10 30 16 24 10 18 8.586 19.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.586 19.414 7.165 24 2.586 28.586 4 30 10 24 4 18 2.586 19.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 14 12 12 17 12 17 10 14 10 14 8 17 8 17 6 19 6 19 8 22 8 22 10 19 10 19 12 24 12 24 14 19 14 19 16 24 16 24 18 19 18 19 20 22 20 22 22 17 22 17 18 14 18 14 16 17 16 17 14 12 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,24h9V4H8V16H6V4A2,2,0,0,1,8,2H28a2,2,0,0,1,2,2V24a2,2,0,0,1-2,2H19Z" }), children);
1048
1471
  });
1049
1472
  if (process.env.NODE_ENV !== "production") WatsonHealthStudyTransfer.propTypes = require_iconPropTypes.iconPropTypes;
1050
- const WatsonHealthStudyUnread = react.default.forwardRef(function WatsonHealthStudyUnread({ children, size = 16, ...rest }, ref) {
1051
- return react.default.createElement(require_Icon_js, {
1473
+ const WatsonHealthStudyUnread = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudyUnread({ children, size = 16, ...rest }, ref) {
1474
+ return react.default.createElement(require_Icon.Icon, {
1052
1475
  width: size,
1053
1476
  height: size,
1054
1477
  ref,
@@ -1059,8 +1482,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1059
1482
  }, /* @__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: "M20 14 20 12 15 12 15 10 18 10 18 8 15 8 15 6 13 6 13 8 10 8 10 10 13 10 13 12 8 12 8 14 13 14 13 16 8 16 8 18 13 18 13 20 10 20 10 22 17 22 17 20 15 20 15 18 18 18 18 16 15 16 15 14 20 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,24H4V4H24V15h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2H15Z" }), children);
1060
1483
  });
1061
1484
  if (process.env.NODE_ENV !== "production") WatsonHealthStudyUnread.propTypes = require_iconPropTypes.iconPropTypes;
1062
- const WatsonHealthStudyView = react.default.forwardRef(function WatsonHealthStudyView({ children, size = 16, ...rest }, ref) {
1063
- return react.default.createElement(require_Icon_js, {
1485
+ const WatsonHealthStudyView = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthStudyView({ children, size = 16, ...rest }, ref) {
1486
+ return react.default.createElement(require_Icon.Icon, {
1064
1487
  width: size,
1065
1488
  height: size,
1066
1489
  ref,
@@ -1071,8 +1494,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1071
1494
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H25V18h3V4H14V7H12V4a2.002,2.002,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V18A2.0027,2.0027,0,0,1,28,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 22 17 20 13 20 13 18 16 18 16 16 13 16 13 14 11 14 11 16 8 16 8 18 11 18 11 20 7 20 7 22 11 22 11 24 8 24 8 26 16 26 16 24 13 24 13 22 17 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H4a2.0021,2.0021,0,0,1-2-2V12a2.0021,2.0021,0,0,1,2-2H20a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,20,30ZM4,12V28H20V12Z" }), children);
1072
1495
  });
1073
1496
  if (process.env.NODE_ENV !== "production") WatsonHealthStudyView.propTypes = require_iconPropTypes.iconPropTypes;
1074
- const WatsonHealthSubVolume = react.default.forwardRef(function WatsonHealthSubVolume({ children, size = 16, ...rest }, ref) {
1075
- return react.default.createElement(require_Icon_js, {
1497
+ const WatsonHealthSubVolume = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSubVolume({ children, size = 16, ...rest }, ref) {
1498
+ return react.default.createElement(require_Icon.Icon, {
1076
1499
  width: size,
1077
1500
  height: size,
1078
1501
  ref,
@@ -1083,8 +1506,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1083
1506
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4741,19.12,23.6807,16l5.7934-3.12a1,1,0,0,0,0-1.7607l-13-7a.9982.9982,0,0,0-.9482,0l-13,7a1,1,0,0,0,0,1.7607L8.3193,16,2.5259,19.12a1,1,0,0,0,0,1.7607l13,7a.9995.9995,0,0,0,.9482,0l13-7a1,1,0,0,0,0-1.7607ZM16,6.1359,26.8906,12,16,17.8643,5.1094,12Zm0,19.7284L5.1094,20l5.3193-2.8642L15.5259,19.88a.9995.9995,0,0,0,.9482,0l5.0972-2.7446L26.8906,20Z" }), children);
1084
1507
  });
1085
1508
  if (process.env.NODE_ENV !== "production") WatsonHealthSubVolume.propTypes = require_iconPropTypes.iconPropTypes;
1086
- const Subclassification = react.default.forwardRef(function Subclassification({ children, size = 16, ...rest }, ref) {
1087
- return react.default.createElement(require_Icon_js, {
1509
+ const Subclassification = /* @__PURE__ */ react.default.forwardRef(function Subclassification({ children, size = 16, ...rest }, ref) {
1510
+ return react.default.createElement(require_Icon.Icon, {
1088
1511
  width: size,
1089
1512
  height: size,
1090
1513
  ref,
@@ -1098,8 +1521,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1098
1521
  }), children);
1099
1522
  });
1100
1523
  if (process.env.NODE_ENV !== "production") Subclassification.propTypes = require_iconPropTypes.iconPropTypes;
1101
- const Subdirectory = react.default.forwardRef(function Subdirectory({ children, size = 16, ...rest }, ref) {
1102
- return react.default.createElement(require_Icon_js, {
1524
+ const Subdirectory = /* @__PURE__ */ react.default.forwardRef(function Subdirectory({ children, size = 16, ...rest }, ref) {
1525
+ return react.default.createElement(require_Icon.Icon, {
1103
1526
  width: size,
1104
1527
  height: size,
1105
1528
  ref,
@@ -1110,8 +1533,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1110
1533
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9,20l1.4141,1.4141-2.5859,2.5859h18.1719s0-20,0-20h2v20c0,1.1025-.897,2-2,2H7.8281s2.5859,2.5859,2.5859,2.5859l-1.4141,1.4141-5-5,5-5Z" }), children);
1111
1534
  });
1112
1535
  if (process.env.NODE_ENV !== "production") Subdirectory.propTypes = require_iconPropTypes.iconPropTypes;
1113
- const Subflow = react.default.forwardRef(function Subflow({ children, size = 16, ...rest }, ref) {
1114
- return react.default.createElement(require_Icon_js, {
1536
+ const Subflow = /* @__PURE__ */ react.default.forwardRef(function Subflow({ children, size = 16, ...rest }, ref) {
1537
+ return react.default.createElement(require_Icon.Icon, {
1115
1538
  width: size,
1116
1539
  height: size,
1117
1540
  ref,
@@ -1122,8 +1545,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1122
1545
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12.0025,12.0025,0,0,0,22.4609,26.1143l1.0782,1.684A13.9511,13.9511,0,0,1,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,17l-1.4141,1.4141L26.1719,20H15.8157a2.9874,2.9874,0,0,0-.2742-.5762l4.481-5.601A2.9676,2.9676,0,0,0,21,14a3,3,0,1,0-2.8157-4H13.8157a2.982,2.982,0,0,0-5.6314,0H2v2H8.1843a2.982,2.982,0,0,0,5.6314,0h4.3686a2.9874,2.9874,0,0,0,.2742.5762l-4.481,5.601A2.9676,2.9676,0,0,0,13,18a3,3,0,1,0,2.8157,4H26.1719l-1.586,1.5859L26,25l4-4Zm-5-7a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,10ZM11,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,12Zm2,10a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,13,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16H28A12.0025,12.0025,0,0,0,9.5391,5.8857L8.4609,4.2017A14.0019,14.0019,0,0,1,30,16Z" }), children);
1123
1546
  });
1124
1547
  if (process.env.NODE_ENV !== "production") Subflow.propTypes = require_iconPropTypes.iconPropTypes;
1125
- const SubflowLocal = react.default.forwardRef(function SubflowLocal({ children, size = 16, ...rest }, ref) {
1126
- return react.default.createElement(require_Icon_js, {
1548
+ const SubflowLocal = /* @__PURE__ */ react.default.forwardRef(function SubflowLocal({ children, size = 16, ...rest }, ref) {
1549
+ return react.default.createElement(require_Icon.Icon, {
1127
1550
  width: size,
1128
1551
  height: size,
1129
1552
  ref,
@@ -1134,8 +1557,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1134
1557
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.3472,29.9851a13.9282,13.9282,0,0,1-4.2051-.8516l.6943-1.8754a11.929,11.929,0,0,0,3.6026.729Zm4.2651-.4558-.5146-1.9326a11.915,11.915,0,0,0,3.3632-1.4827l1.0782,1.6846A13.915,13.915,0,0,1,19.6123,29.5293ZM7.395,27.0439a14.0632,14.0632,0,0,1-2.94-3.1218l1.6484-1.1333a12.0521,12.0521,0,0,0,2.522,2.6785ZM2.5967,20.0544A14.0512,14.0512,0,0,1,2.0005,16H4a12.0412,12.0412,0,0,0,.5117,3.4763Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,17l-1.4141,1.4141L26.1719,20H15.8157a2.9874,2.9874,0,0,0-.2742-.5762l4.481-5.601A2.9676,2.9676,0,0,0,21,14a3,3,0,1,0-2.8157-4H13.8157a2.982,2.982,0,0,0-5.6314,0H2v2H8.1843a2.982,2.982,0,0,0,5.6314,0h4.3686a2.9874,2.9874,0,0,0,.2742.5762l-4.481,5.601A2.9676,2.9676,0,0,0,13,18a3,3,0,1,0,2.8157,4H26.1719l-1.586,1.5859L26,25l4-4Zm-5-7a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,10ZM11,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,12Zm2,10a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,13,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,16a12.0412,12.0412,0,0,0-.5117-3.4763l1.915-.5781A14.0551,14.0551,0,0,1,30,16ZM25.8965,9.2112a12.0521,12.0521,0,0,0-2.522-2.6785l1.23-1.5766a14.0632,14.0632,0,0,1,2.94,3.1218ZM9.5391,5.886,8.4609,4.2014a13.915,13.915,0,0,1,3.9268-1.7307l.5146,1.9326A11.915,11.915,0,0,0,9.5391,5.886ZM20.1636,4.7419a11.929,11.929,0,0,0-3.6026-.729l.0918-1.998a13.9282,13.9282,0,0,1,4.2051.8516Z" }), children);
1135
1558
  });
1136
1559
  if (process.env.NODE_ENV !== "production") SubflowLocal.propTypes = require_iconPropTypes.iconPropTypes;
1137
- const SubjectDefinition = react.default.forwardRef(function SubjectDefinition({ children, size = 16, ...rest }, ref) {
1138
- return react.default.createElement(require_Icon_js, {
1560
+ const SubjectDefinition = /* @__PURE__ */ react.default.forwardRef(function SubjectDefinition({ children, size = 16, ...rest }, ref) {
1561
+ return react.default.createElement(require_Icon.Icon, {
1139
1562
  width: size,
1140
1563
  height: size,
1141
1564
  ref,
@@ -1155,8 +1578,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1155
1578
  }), children);
1156
1579
  });
1157
1580
  if (process.env.NODE_ENV !== "production") SubjectDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1158
- const SubjectUsage = react.default.forwardRef(function SubjectUsage({ children, size = 16, ...rest }, ref) {
1159
- return react.default.createElement(require_Icon_js, {
1581
+ const SubjectUsage = /* @__PURE__ */ react.default.forwardRef(function SubjectUsage({ children, size = 16, ...rest }, ref) {
1582
+ return react.default.createElement(require_Icon.Icon, {
1160
1583
  width: size,
1161
1584
  height: size,
1162
1585
  ref,
@@ -1176,8 +1599,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1176
1599
  }), children);
1177
1600
  });
1178
1601
  if (process.env.NODE_ENV !== "production") SubjectUsage.propTypes = require_iconPropTypes.iconPropTypes;
1179
- const SubnetAclRules = react.default.forwardRef(function SubnetAclRules({ children, size = 16, ...rest }, ref) {
1180
- return react.default.createElement(require_Icon_js, {
1602
+ const SubnetAclRules = /* @__PURE__ */ react.default.forwardRef(function SubnetAclRules({ children, size = 16, ...rest }, ref) {
1603
+ return react.default.createElement(require_Icon.Icon, {
1181
1604
  width: size,
1182
1605
  height: size,
1183
1606
  ref,
@@ -1188,8 +1611,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1188
1611
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 14H30V16H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 19H26V21H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 9H30V11H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24v4H6V16h8V14H10V8a4.0008,4.0008,0,0,1,7.6675-1.6L19.5005,5.6A6.001,6.001,0,0,0,8,8v6H6a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V24Z" }), children);
1189
1612
  });
1190
1613
  if (process.env.NODE_ENV !== "production") SubnetAclRules.propTypes = require_iconPropTypes.iconPropTypes;
1191
- const Subsetting = react.default.forwardRef(function Subsetting({ children, size = 16, ...rest }, ref) {
1192
- return react.default.createElement(require_Icon_js, {
1614
+ const Subsetting = /* @__PURE__ */ react.default.forwardRef(function Subsetting({ children, size = 16, ...rest }, ref) {
1615
+ return react.default.createElement(require_Icon.Icon, {
1193
1616
  width: size,
1194
1617
  height: size,
1195
1618
  ref,
@@ -1200,8 +1623,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1200
1623
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8682,16.5039L16.8682,2.5039c-.356-.623-1.3804-.623-1.7363,0l-8,14c-.177.3096-.1758.6895.0032.998.179.3081.5085.498.865.498h7v12h2v-12h7c.3564,0,.686-.1899.865-.498.179-.3086.1802-.6885.0032-.998ZM9.7231,16l6.2769-10.9844,6.2769,10.9844h-12.5537Z" }), children);
1201
1624
  });
1202
1625
  if (process.env.NODE_ENV !== "production") Subsetting.propTypes = require_iconPropTypes.iconPropTypes;
1203
- const Subtract = react.default.forwardRef(function Subtract({ children, size = 16, ...rest }, ref) {
1204
- return react.default.createElement(require_Icon_js, {
1626
+ const Subtract = /* @__PURE__ */ react.default.forwardRef(function Subtract({ children, size = 16, ...rest }, ref) {
1627
+ return react.default.createElement(require_Icon.Icon, {
1205
1628
  width: size,
1206
1629
  height: size,
1207
1630
  ref,
@@ -1212,8 +1635,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1212
1635
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 15H24V17H8z" }), children);
1213
1636
  });
1214
1637
  if (process.env.NODE_ENV !== "production") Subtract.propTypes = require_iconPropTypes.iconPropTypes;
1215
- const SubtractAlt = react.default.forwardRef(function SubtractAlt({ children, size = 16, ...rest }, ref) {
1216
- return react.default.createElement(require_Icon_js, {
1638
+ const SubtractAlt = /* @__PURE__ */ react.default.forwardRef(function SubtractAlt({ children, size = 16, ...rest }, ref) {
1639
+ return react.default.createElement(require_Icon.Icon, {
1217
1640
  width: size,
1218
1641
  height: size,
1219
1642
  ref,
@@ -1224,8 +1647,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1224
1647
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4c6.6,0,12,5.4,12,12s-5.4,12-12,12S4,22.6,4,16S9.4,4,16,4 M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14 S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 15H24V17H8z" }), children);
1225
1648
  });
1226
1649
  if (process.env.NODE_ENV !== "production") SubtractAlt.propTypes = require_iconPropTypes.iconPropTypes;
1227
- const SubtractFilled = react.default.forwardRef(function SubtractFilled({ children, size = 16, ...rest }, ref) {
1228
- return react.default.createElement(require_Icon_js, {
1650
+ const SubtractFilled = /* @__PURE__ */ react.default.forwardRef(function SubtractFilled({ children, size = 16, ...rest }, ref) {
1651
+ return react.default.createElement(require_Icon.Icon, {
1229
1652
  width: size,
1230
1653
  height: size,
1231
1654
  ref,
@@ -1239,8 +1662,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1239
1662
  }), children);
1240
1663
  });
1241
1664
  if (process.env.NODE_ENV !== "production") SubtractFilled.propTypes = require_iconPropTypes.iconPropTypes;
1242
- const SubtractLarge = react.default.forwardRef(function SubtractLarge({ children, size = 16, ...rest }, ref) {
1243
- return react.default.createElement(require_Icon_js, {
1665
+ const SubtractLarge = /* @__PURE__ */ react.default.forwardRef(function SubtractLarge({ children, size = 16, ...rest }, ref) {
1666
+ return react.default.createElement(require_Icon.Icon, {
1244
1667
  width: size,
1245
1668
  height: size,
1246
1669
  ref,
@@ -1251,8 +1674,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1251
1674
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 15 5 17 27 17 27 15 5 15z" }), children);
1252
1675
  });
1253
1676
  if (process.env.NODE_ENV !== "production") SubtractLarge.propTypes = require_iconPropTypes.iconPropTypes;
1254
- const Succession = react.default.forwardRef(function Succession({ children, size = 16, ...rest }, ref) {
1255
- return react.default.createElement(require_Icon_js, {
1677
+ const Succession = /* @__PURE__ */ react.default.forwardRef(function Succession({ children, size = 16, ...rest }, ref) {
1678
+ return react.default.createElement(require_Icon.Icon, {
1256
1679
  width: size,
1257
1680
  height: size,
1258
1681
  ref,
@@ -1283,8 +1706,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1283
1706
  }), children);
1284
1707
  });
1285
1708
  if (process.env.NODE_ENV !== "production") Succession.propTypes = require_iconPropTypes.iconPropTypes;
1286
- const SuccessionFlowConnection = react.default.forwardRef(function SuccessionFlowConnection({ children, size = 16, ...rest }, ref) {
1287
- return react.default.createElement(require_Icon_js, {
1709
+ const SuccessionFlowConnection = /* @__PURE__ */ react.default.forwardRef(function SuccessionFlowConnection({ children, size = 16, ...rest }, ref) {
1710
+ return react.default.createElement(require_Icon.Icon, {
1288
1711
  width: size,
1289
1712
  height: size,
1290
1713
  ref,
@@ -1295,8 +1718,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1295
1718
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,3v2s-5,0-5,0v-2s5,0,5,0ZM13,16h2s0-5,0-5h-2s0,5,0,5ZM15,5c0-1.1028-.8972-2-2-2h-4v2h4v4h2v-4ZM19,22h-4v-4h-2v4c0,1.1028.8972,2,2,2h4v-2ZM30.6001,22.2002l-8-6c-.303-.2275-.7083-.2642-1.0474-.0947-.3386.1694-.5527.5156-.5527.8945v12c0,.3789.2141.7251.5527.8945.1416.0708.2947.1055.447.1055.2126,0,.4238-.0674.6003-.2002l8-6c.2517-.1885.3999-.4849.3999-.7998s-.1482-.6113-.3999-.7998Z" }), children);
1296
1719
  });
1297
1720
  if (process.env.NODE_ENV !== "production") SuccessionFlowConnection.propTypes = require_iconPropTypes.iconPropTypes;
1298
- const SummaryKpi = react.default.forwardRef(function SummaryKpi({ children, size = 16, ...rest }, ref) {
1299
- return react.default.createElement(require_Icon_js, {
1721
+ const SummaryKpi = /* @__PURE__ */ react.default.forwardRef(function SummaryKpi({ children, size = 16, ...rest }, ref) {
1722
+ return react.default.createElement(require_Icon.Icon, {
1300
1723
  width: size,
1301
1724
  height: size,
1302
1725
  ref,
@@ -1307,8 +1730,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1307
1730
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.6667,27.5027,2,22.4484l1.3311-1.4927,5.6411,5.0316,7.6906-7.4449a1.9282,1.9282,0,0,1,2.6736-.0084L22.96,21.9983l5.5791-5.9735L30,17.3905l-5.5812,5.9758a1.996,1.996,0,0,1-2.8379.08l-3.5765-3.4191-7.666,7.4206A1.9629,1.9629,0,0,1,7.6667,27.5027Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11 26 11 28 8 30 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,4H18V6h4V8H19v2h3v2H18v2h4a2.0027,2.0027,0,0,0,2-2V6A2.0023,2.0023,0,0,0,22,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,14H10V10a2.002,2.002,0,0,1,2-2h2V6H10V4h4a2.0023,2.0023,0,0,1,2,2V8a2.0023,2.0023,0,0,1-2,2H12v2h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12 6 4 4 4 4 5 2 5 2 7 4 7 4 12 2 12 2 14 8 14 8 12 6 12z" }), children);
1308
1731
  });
1309
1732
  if (process.env.NODE_ENV !== "production") SummaryKpi.propTypes = require_iconPropTypes.iconPropTypes;
1310
- const SummaryKpiMirror = react.default.forwardRef(function SummaryKpiMirror({ children, size = 16, ...rest }, ref) {
1311
- return react.default.createElement(require_Icon_js, {
1733
+ const SummaryKpiMirror = /* @__PURE__ */ react.default.forwardRef(function SummaryKpiMirror({ children, size = 16, ...rest }, ref) {
1734
+ return react.default.createElement(require_Icon.Icon, {
1312
1735
  width: size,
1313
1736
  height: size,
1314
1737
  ref,
@@ -1319,8 +1742,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1319
1742
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.3,27.5l5.7-5.1L28.7,21L23,26l-7.7-7.4c-0.7-0.7-1.9-0.7-2.7,0L9,22l-5.6-6L2,17.4l5.6,6c0.8,0.8,2,0.8,2.8,0.1L14,20 l7.7,7.4C22.4,28.2,23.6,28.2,24.3,27.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 12 28 4 26 4 26 5 24 5 24 7 26 7 26 12 24 12 24 14 30 14 30 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,14h-6v-4c0-1.1,0.9-2,2-2h2V6h-4V4h4c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-2v2h4V14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4H8v2h4v2H9v2h3v2H8v2h4c1.1,0,2-0.9,2-2V6C14,4.9,13.1,4,12,4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 11 2 11 4 8z" }), children);
1320
1743
  });
1321
1744
  if (process.env.NODE_ENV !== "production") SummaryKpiMirror.propTypes = require_iconPropTypes.iconPropTypes;
1322
- const Sun = react.default.forwardRef(function Sun({ children, size = 16, ...rest }, ref) {
1323
- return react.default.createElement(require_Icon_js, {
1745
+ const Sun = /* @__PURE__ */ react.default.forwardRef(function Sun({ children, size = 16, ...rest }, ref) {
1746
+ return react.default.createElement(require_Icon.Icon, {
1324
1747
  width: size,
1325
1748
  height: size,
1326
1749
  ref,
@@ -1346,8 +1769,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1346
1769
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2.005H17V7.005H15z" }), children);
1347
1770
  });
1348
1771
  if (process.env.NODE_ENV !== "production") Sun.propTypes = require_iconPropTypes.iconPropTypes;
1349
- const Sunrise = react.default.forwardRef(function Sunrise({ children, size = 16, ...rest }, ref) {
1350
- return react.default.createElement(require_Icon_js, {
1772
+ const Sunrise = /* @__PURE__ */ react.default.forwardRef(function Sunrise({ children, size = 16, ...rest }, ref) {
1773
+ return react.default.createElement(require_Icon.Icon, {
1351
1774
  width: size,
1352
1775
  height: size,
1353
1776
  ref,
@@ -1364,8 +1787,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1364
1787
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 22H7V24H2z" }), children);
1365
1788
  });
1366
1789
  if (process.env.NODE_ENV !== "production") Sunrise.propTypes = require_iconPropTypes.iconPropTypes;
1367
- const Sunset = react.default.forwardRef(function Sunset({ children, size = 16, ...rest }, ref) {
1368
- return react.default.createElement(require_Icon_js, {
1790
+ const Sunset = /* @__PURE__ */ react.default.forwardRef(function Sunset({ children, size = 16, ...rest }, ref) {
1791
+ return react.default.createElement(require_Icon.Icon, {
1369
1792
  width: size,
1370
1793
  height: size,
1371
1794
  ref,
@@ -1385,8 +1808,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1385
1808
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 22.005H7V24.005H2z" }), children);
1386
1809
  });
1387
1810
  if (process.env.NODE_ENV !== "production") Sunset.propTypes = require_iconPropTypes.iconPropTypes;
1388
- const SupportVectorMachine = react.default.forwardRef(function SupportVectorMachine({ children, size = 16, ...rest }, ref) {
1389
- return react.default.createElement(require_Icon_js, {
1811
+ const SupportVectorMachine = /* @__PURE__ */ react.default.forwardRef(function SupportVectorMachine({ children, size = 16, ...rest }, ref) {
1812
+ return react.default.createElement(require_Icon.Icon, {
1390
1813
  width: size,
1391
1814
  height: size,
1392
1815
  ref,
@@ -1408,8 +1831,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1408
1831
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m14,10c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Zm0-6c-1.1028,0-2,.8972-2,2s.8972,2,2,2,2-.8972,2-2-.8972-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m6,18c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Zm0-6c-1.1028,0-2,.8972-2,2s.8972,2,2,2,2-.8972,2-2-.8972-2-2-2Z" }), children);
1409
1832
  });
1410
1833
  if (process.env.NODE_ENV !== "production") SupportVectorMachine.propTypes = require_iconPropTypes.iconPropTypes;
1411
- const SurrogateKeyDatabase = react.default.forwardRef(function SurrogateKeyDatabase({ children, size = 16, ...rest }, ref) {
1412
- return react.default.createElement(require_Icon_js, {
1834
+ const SurrogateKeyDatabase = /* @__PURE__ */ react.default.forwardRef(function SurrogateKeyDatabase({ children, size = 16, ...rest }, ref) {
1835
+ return react.default.createElement(require_Icon.Icon, {
1413
1836
  width: size,
1414
1837
  height: size,
1415
1838
  ref,
@@ -1420,8 +1843,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1420
1843
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,15c-2.8,0-5,2.2-5,5,0,.2,0,.4,0,.6l-5,5v4.4h4.4s5-5,5-5c.2,0,.4,0,.6,0,2.8,0,5-2.2,5-5s-2.2-5-5-5ZM28,20.7c-.4,1.6-2,2.6-3.7,2.2h-.5c0-.1-5.2,5.1-5.2,5.1h-1.6v-1.6l5.2-5.2v-.5c-.2-.5-.2-.9-.1-1.4.4-1.6,2-2.6,3.7-2.2,1.6.4,2.6,2,2.2,3.7ZM26,19.9c0,.6-.4,1-1,1s-1-.4-1-1,.4-1,1-1,1,.4,1,1ZM6,13h18V5c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h7v-2h-7v-6h7v-2h-7v-6ZM6,5h16v6H6v-6Z" }), children);
1421
1844
  });
1422
1845
  if (process.env.NODE_ENV !== "production") SurrogateKeyDatabase.propTypes = require_iconPropTypes.iconPropTypes;
1423
- const SurrogateKeyFlatFile = react.default.forwardRef(function SurrogateKeyFlatFile({ children, size = 16, ...rest }, ref) {
1424
- return react.default.createElement(require_Icon_js, {
1846
+ const SurrogateKeyFlatFile = /* @__PURE__ */ react.default.forwardRef(function SurrogateKeyFlatFile({ children, size = 16, ...rest }, ref) {
1847
+ return react.default.createElement(require_Icon.Icon, {
1425
1848
  width: size,
1426
1849
  height: size,
1427
1850
  ref,
@@ -1432,417 +1855,33 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1432
1855
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.9969,14.9969c-2.7614.0017-4.9986,2.2417-4.9969,5.0031.0002.1845.0114.3688.0337.552l-5.0337,5.0337v4.4143h4.4141l5.0337-5.0337c.1844.0205.3698.0307.5553.0306,2.7614-.0017,4.9986-2.2417,4.9969-5.0031s-2.2417-4.9986-5.0031-4.9969ZM27.9874,20.6685c-.3885,1.6306-2.0253,2.6375-3.6559,2.249l-.5395-.1238-5.2061,5.2063h-1.5859v-1.5857l5.2061-5.2063-.1236-.5393c-.1103-.4625-.1103-.9445,0-1.407.3884-1.6306,2.0253-2.6376,3.6558-2.2491,1.6306.3885,2.6376,2.0253,2.2491,3.6559ZM25.9646,20c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4478-1,1-1,1,.4477,1,1ZM22.2918,12.0002c.6929,0,1.312-.4136,1.5771-1.0537.2656-.6406.1201-1.3711-.3701-1.8613l-6.792-6.792c-.1875-.1875-.4419-.293-.707-.293H5.9998c-1.1001,0-2,.8999-2,2v24c0,1.1001.8999,2,2,2h7.011v-2h-7.011V4.0002h8v6c0,1.1025.897,2,2,2h6.292ZM15.9998,4.4142l5.5854,5.5859h-5.5854v-5.5859Z" }), children);
1433
1856
  });
1434
1857
  if (process.env.NODE_ENV !== "production") SurrogateKeyFlatFile.propTypes = require_iconPropTypes.iconPropTypes;
1435
- const Sustainability = react.default.forwardRef(function Sustainability({ children, size = 16, ...rest }, ref) {
1436
- return react.default.createElement(require_Icon_js, {
1437
- width: size,
1438
- height: size,
1439
- ref,
1440
- xmlns: "http://www.w3.org/2000/svg",
1441
- viewBox: "0 0 32 32",
1442
- fill: "currentColor",
1443
- ...rest
1444
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21.5708,27.7495c-1.7468.8296-3.6211,1.2505-5.5708,1.2505-7.1682,0-13-5.832-13-13,0-3.0752,1.0571-5.979,3-8.3076v2.3076h2v-6H2v2h2.8416c-2.4753,2.7539-3.8416,6.2622-3.8416,10,0,8.271,6.729,15,15,15,2.249,0,4.4119-.4858,6.4292-1.4438l-.8584-1.8066Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21,9c-3.1602,0-5.7515,2.457-5.9778,5.5605-1.0654-.9658-2.4739-1.5605-4.0222-1.5605h-4v4c0,3.3086,2.6917,6,6,6h2v4h2v-8.0005l2,.0005c3.3083,0,6-2.6914,6-6v-4h-4Zm-8,12c-2.2056,0-4-1.7944-4-4v-2h2c2.2056,0,4,1.7944,4,4v.5859l-2.293-2.293-1.4141,1.4141,2.293,2.293h-.5859Zm10-8c0,2.2056-1.7944,4-4,4h-.5859l2.293-2.293-1.4141-1.4141-2.293,2.293v-.5859c0-2.2056,1.7944-4,4-4h2v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m31,16c0-8.271-6.729-15-15-15-2.249,0-4.4119.4858-6.4292,1.4438l.8584,1.8066c1.7468-.8296,3.6211-1.2505,5.5708-1.2505,7.1682,0,13,5.832,13,13,0,3.0752-1.0571,5.979-3,8.3076v-2.3076h-2v6h6v-2h-2.8416c2.4753-2.7539,3.8416-6.2622,3.8416-10Z" }), children);
1445
- });
1446
- if (process.env.NODE_ENV !== "production") Sustainability.propTypes = require_iconPropTypes.iconPropTypes;
1447
- const Svg = react.default.forwardRef(function Svg({ children, size = 16, ...rest }, ref) {
1448
- return react.default.createElement(require_Icon_js, {
1449
- width: size,
1450
- height: size,
1451
- ref,
1452
- xmlns: "http://www.w3.org/2000/svg",
1453
- viewBox: "0 0 32 32",
1454
- fill: "currentColor",
1455
- ...rest
1456
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H24V21h4V17H26V15h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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: "M8,23H2V21H8V17H4a2,2,0,0,1-2-2V11A2,2,0,0,1,4,9h6v2H4v4H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,23Z" }), children);
1457
- });
1458
- if (process.env.NODE_ENV !== "production") Svg.propTypes = require_iconPropTypes.iconPropTypes;
1459
- const Swim = react.default.forwardRef(function Swim({ children, size = 16, ...rest }, ref) {
1460
- return react.default.createElement(require_Icon_js, {
1461
- width: size,
1462
- height: size,
1463
- ref,
1464
- xmlns: "http://www.w3.org/2000/svg",
1465
- viewBox: "0 0 32 32",
1466
- fill: "currentColor",
1467
- ...rest
1468
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,26H28a4.9316,4.9316,0,0,1-4-1.9873,5.0192,5.0192,0,0,1-8,0,5.0192,5.0192,0,0,1-8,0A4.9316,4.9316,0,0,1,4,26H2V24H4a3.44,3.44,0,0,0,3.0532-2.3215A.9712.9712,0,0,1,8,21a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,12,24a3.44,3.44,0,0,0,3.0532-2.3215A.99.99,0,0,1,16,21a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,20,24a3.44,3.44,0,0,0,3.0532-2.3215,1,1,0,0,1,1.8955.0053A3.4381,3.4381,0,0,0,28,24h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17.5859l-8.707-8.707A2.9791,2.9791,0,0,0,12.1714,8H4v2h8.1714a.9933.9933,0,0,1,.7075.293L15.5859,13,10,18.5859,11.4141,20,17,14.4141,21.5859,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,20,10Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,22,10Z" }), children);
1469
- });
1470
- if (process.env.NODE_ENV !== "production") Swim.propTypes = require_iconPropTypes.iconPropTypes;
1471
- const SwimlaneDVertical = react.default.forwardRef(function SwimlaneDVertical({ children, size = 16, ...rest }, ref) {
1472
- return react.default.createElement(require_Icon_js, {
1473
- width: size,
1474
- height: size,
1475
- ref,
1476
- xmlns: "http://www.w3.org/2000/svg",
1477
- viewBox: "0 0 32 32",
1478
- fill: "currentColor",
1479
- ...rest
1480
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,26h2v4h-4v-2h2v-2ZM17,30h4v-2h-4v2ZM7,26h-2v4h4v-2h-2v-2ZM7,19.9995h-2v4.0005h2v-4.0005ZM7,14h-2v4h2v-4ZM5,8v3.9995h2v-1.9995h2v-2h-4ZM5,6h2v-2h2v-2h-4v4ZM17,4h4v-2h-4v2ZM11,4h4v-2h-4v2ZM23,2v2h2v2h2V2h-4ZM25,24h2v-3.9995h-2v3.9995ZM25,18h2v-4h-2v4ZM17,10h4v-2h-4v2ZM11,10h4v-2h-4v2ZM23,8v2h2v2h2v-4h-4ZM11,30h4v-2h-4v2Z" }), children);
1481
- });
1482
- if (process.env.NODE_ENV !== "production") SwimlaneDVertical.propTypes = require_iconPropTypes.iconPropTypes;
1483
- const Switch = react.default.forwardRef(function Switch({ children, size = 16, ...rest }, ref) {
1484
- return react.default.createElement(require_Icon_js, {
1485
- width: size,
1486
- height: size,
1487
- ref,
1488
- xmlns: "http://www.w3.org/2000/svg",
1489
- viewBox: "0 0 32 32",
1490
- fill: "currentColor",
1491
- ...rest
1492
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.6,23.6l1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6v-4.2H6v5h-2V10.8c-1.2-.4-2-1.5-2-2.8s.8-2.4,2-2.8v-3.2h2v3.2c.8.3,1.5,1,1.8,1.8h19.2v6.2l2.6-2.6,1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6v-4.2H7.8c-.3.8-1,1.5-1.8,1.8v9.2h21v6.2l2.6-2.6h0Z" }), children);
1493
- });
1494
- if (process.env.NODE_ENV !== "production") Switch.propTypes = require_iconPropTypes.iconPropTypes;
1495
- const SwitchLayer_2 = react.default.forwardRef(function SwitchLayer_2({ children, size = 16, ...rest }, ref) {
1496
- return react.default.createElement(require_Icon_js, {
1497
- width: size,
1498
- height: size,
1499
- ref,
1500
- xmlns: "http://www.w3.org/2000/svg",
1501
- viewBox: "0 0 32 32",
1502
- fill: "currentColor",
1503
- ...rest
1504
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 26 16 24 5.83 24 8.41 21.41 7 20 2 25 7 30 8.41 28.59 5.83 26 16 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 14 16 12 5.83 12 8.41 9.41 7 8 2 13 7 18 8.41 16.59 5.83 14 16 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 6 16 8 26.17 8 23.59 10.59 25 12 30 7 25 2 23.59 3.41 26.17 6 16 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18 16 20 26.17 20 23.59 22.59 25 24 30 19 25 14 23.59 15.41 26.17 18 16 18z" }), children);
1505
- });
1506
- if (process.env.NODE_ENV !== "production") SwitchLayer_2.propTypes = require_iconPropTypes.iconPropTypes;
1507
- const SwitchLayer_3 = react.default.forwardRef(function SwitchLayer_3({ children, size = 16, ...rest }, ref) {
1508
- return react.default.createElement(require_Icon_js, {
1509
- width: size,
1510
- height: size,
1511
- ref,
1512
- xmlns: "http://www.w3.org/2000/svg",
1513
- viewBox: "0 0 32 32",
1514
- fill: "currentColor",
1515
- ...rest
1516
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 4 22 6 24.586 6 19.586 11 21 12.414 26 7.414 26 10 28 10 28 4 22 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4 10 6 7.414 6 12.414 11 11 12.414 6 7.414 6 10 4 10 4 4 10 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 5 16 1 12 5 13.414 6.414 15 4.829 15 11 17 11 17 4.829 18.586 6.414 20 5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 28 22 26 24.586 26 19.586 21 21 19.586 26 24.586 26 22 28 22 28 28 22 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 28 10 26 7.414 26 12.414 21 11 19.586 6 24.586 6 22 4 22 4 28 10 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 27 16 31 12 27 13.414 25.586 15 27.171 15 21 17 21 17 27.171 18.586 25.586 20 27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12 1 16 5 20 6.414 18.586 4.829 17 11 17 11 15 4.829 15 6.414 13.414 5 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 12 31 16 27 20 25.586 18.586 27.171 17 21 17 21 15 27.171 15 25.586 13.414 27 12z" }), children);
1517
- });
1518
- if (process.env.NODE_ENV !== "production") SwitchLayer_3.propTypes = require_iconPropTypes.iconPropTypes;
1519
- const Switcher = react.default.forwardRef(function Switcher({ children, size = 16, ...rest }, ref) {
1520
- return react.default.createElement(require_Icon_js, {
1521
- width: size,
1522
- height: size,
1523
- ref,
1524
- xmlns: "http://www.w3.org/2000/svg",
1525
- viewBox: "0 0 32 32",
1526
- fill: "currentColor",
1527
- ...rest
1528
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 4H18V8H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 4H8V8H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 4H28V8H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 14H18V18H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 14H8V18H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 14H28V18H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 24H18V28H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 24H8V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 24H28V28H24z" }), children);
1529
- });
1530
- if (process.env.NODE_ENV !== "production") Switcher.propTypes = require_iconPropTypes.iconPropTypes;
1531
- const SyncSettings = react.default.forwardRef(function SyncSettings({ children, size = 16, ...rest }, ref) {
1532
- return react.default.createElement(require_Icon_js, {
1533
- width: size,
1534
- height: size,
1535
- ref,
1536
- xmlns: "http://www.w3.org/2000/svg",
1537
- viewBox: "0 0 32 32",
1538
- fill: "currentColor",
1539
- ...rest
1540
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1541
- strokeWidth: "0",
1542
- d: "M15 24 15 22 11.4 22 22 11.4 22 15 24 15 24 8 17 8 17 10 20.6 10 10 20.6 10 17 8 17 8 24 15 24z"
1543
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1544
- strokeWidth: "0",
1545
- d: "m25,20v2h3c1.1,0,2-.9,2-2v-3h-2v3h-3Z"
1546
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1547
- strokeWidth: "0",
1548
- d: "M28 10H30V14H28z"
1549
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1550
- strokeWidth: "0",
1551
- d: "m25,2v2h3v3h2v-3c0-1.1-.9-2-2-2h-3Z"
1552
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1553
- strokeWidth: "0",
1554
- d: "M18 2H22V4H18z"
1555
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1556
- strokeWidth: "0",
1557
- d: "m10,4v3h2v-3h3V2h-3c-1.1,0-2,.9-2,2Z"
1558
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1559
- strokeWidth: "0",
1560
- d: "m12,10H4c-1.1,0-2,.9-2,2v16c0,1.1.9,2,2,2h16c1.1,0,2-.9,2-2v-8h-2v8H4V12h8v-2Z"
1561
- }), children);
1562
- });
1563
- if (process.env.NODE_ENV !== "production") SyncSettings.propTypes = require_iconPropTypes.iconPropTypes;
1564
- const SysProvision = react.default.forwardRef(function SysProvision({ children, size = 16, ...rest }, ref) {
1565
- return react.default.createElement(require_Icon_js, {
1566
- width: size,
1567
- height: size,
1568
- ref,
1569
- xmlns: "http://www.w3.org/2000/svg",
1570
- viewBox: "0 0 32 32",
1571
- fill: "currentColor",
1572
- ...rest
1573
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 20 21 30 30 25 21 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1574
- cx: "14",
1575
- cy: "14",
1576
- r: "2"
1577
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,20a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,14,20Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,14,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.9512,12.91l-.0064,0A12.05,12.05,0,1,0,17,25.605V23.5386a9.9813,9.9813,0,1,1,6.6235-6.81l1.9248.544A12.0341,12.0341,0,0,0,26,14Q26,13.4492,25.9512,12.91Z" }), children);
1578
- });
1579
- if (process.env.NODE_ENV !== "production") SysProvision.propTypes = require_iconPropTypes.iconPropTypes;
1580
- const SysplexDistributor = react.default.forwardRef(function SysplexDistributor({ children, size = 16, ...rest }, ref) {
1581
- return react.default.createElement(require_Icon_js, {
1582
- width: size,
1583
- height: size,
1584
- ref,
1585
- xmlns: "http://www.w3.org/2000/svg",
1586
- viewBox: "0 0 32 32",
1587
- fill: "currentColor",
1588
- ...rest
1589
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1590
- strokeWidth: "0",
1591
- d: "M4 26H8V30H4z"
1592
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1593
- strokeWidth: "0",
1594
- d: "M14 26H18V30H14z"
1595
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1596
- strokeWidth: "0",
1597
- d: "M24 26H28V30H24z"
1598
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1599
- strokeWidth: "0",
1600
- d: "m25,18h-8v-2h-2v2H7c-1.1028,0-2,.8975-2,2v4h2v-4h8v4h2v-4h8v4h2v-4c0-1.1025-.8972-2-2-2Z"
1601
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1602
- strokeWidth: "0",
1603
- d: "m20,2h-8c-1.1028,0-2,.8975-2,2v8c0,1.1025.8972,2,2,2h8c1.1028,0,2-.8975,2-2V4c0-1.1025-.8972-2-2-2Zm-1.4141,2l-6.5859,6.5859v-6.5859h6.5859Zm-5.1719,8l6.5862-6.5859.001,6.5859h-6.5872Z"
1604
- }), children);
1605
- });
1606
- if (process.env.NODE_ENV !== "production") SysplexDistributor.propTypes = require_iconPropTypes.iconPropTypes;
1607
- const QT = react.default.forwardRef(function QT({ children, size = 16, ...rest }, ref) {
1608
- return react.default.createElement(require_Icon_js, {
1609
- width: size,
1610
- height: size,
1611
- ref,
1612
- xmlns: "http://www.w3.org/2000/svg",
1613
- viewBox: "0 0 32 32",
1614
- fill: "currentColor",
1615
- ...rest
1616
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 11 15 11 15 23 17 23 17 11 20 11 20 9 12 9 12 11z" }), children);
1617
- });
1618
- if (process.env.NODE_ENV !== "production") QT.propTypes = require_iconPropTypes.iconPropTypes;
1619
- const QTAlt = react.default.forwardRef(function QTAlt({ children, size = 16, ...rest }, ref) {
1620
- return react.default.createElement(require_Icon_js, {
1621
- width: size,
1622
- height: size,
1623
- ref,
1624
- xmlns: "http://www.w3.org/2000/svg",
1625
- viewBox: "0 0 32 32",
1626
- fill: "currentColor",
1627
- ...rest
1628
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 11 11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 9 22 9 22 7 20 7 20 9 18 9 18 11 20 11 20 17 21 18 22 17 22 11 24 11 24 9z" }), children);
1629
- });
1630
- if (process.env.NODE_ENV !== "production") QTAlt.propTypes = require_iconPropTypes.iconPropTypes;
1631
- const Table = react.default.forwardRef(function Table({ children, size = 16, ...rest }, ref) {
1632
- return react.default.createElement(require_Icon_js, {
1633
- width: size,
1634
- height: size,
1635
- ref,
1636
- xmlns: "http://www.w3.org/2000/svg",
1637
- viewBox: "0 0 32 32",
1638
- fill: "currentColor",
1639
- ...rest
1640
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2ZM27,5V9H5V5Zm0,22H5V23H27Zm0-6H5V17H27Zm0-6H5V11H27Z" }), children);
1641
- });
1642
- if (process.env.NODE_ENV !== "production") Table.propTypes = require_iconPropTypes.iconPropTypes;
1643
- const TableAdd = react.default.forwardRef(function TableAdd({ children, size = 16, ...rest }, ref) {
1644
- return react.default.createElement(require_Icon_js, {
1645
- width: size,
1646
- height: size,
1647
- ref,
1648
- xmlns: "http://www.w3.org/2000/svg",
1649
- viewBox: "0 0 32 32",
1650
- fill: "currentColor",
1651
- ...rest
1652
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5c-1.1,0-2,.9-2,2v12h2v-6h10v18h2V11h10v7h-10v2h10v7h-10v2h10c1.1,0,2-.9,2-2V5c0-1.1-.9-2-2-2ZM27,9H5v-4h22v4ZM12,26h-4v4h-2v-4H2v-2h4v-4h2v4h4v2Z" }), children);
1653
- });
1654
- if (process.env.NODE_ENV !== "production") TableAdd.propTypes = require_iconPropTypes.iconPropTypes;
1655
- const TableAlias = react.default.forwardRef(function TableAlias({ children, size = 16, ...rest }, ref) {
1656
- return react.default.createElement(require_Icon_js, {
1657
- width: size,
1658
- height: size,
1659
- ref,
1660
- xmlns: "http://www.w3.org/2000/svg",
1661
- viewBox: "0 0 32 32",
1662
- fill: "currentColor",
1663
- ...rest
1664
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,29H5a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2h7a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,12,29ZM5,20v7h7V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V15H5V11H15v4h2V11H27v7H17v2H27v7H17v2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,6H5V5H27Z" }), children);
1665
- });
1666
- if (process.env.NODE_ENV !== "production") TableAlias.propTypes = require_iconPropTypes.iconPropTypes;
1667
- const TableBuilt = react.default.forwardRef(function TableBuilt({ children, size = 16, ...rest }, ref) {
1668
- return react.default.createElement(require_Icon_js, {
1669
- width: size,
1670
- height: size,
1671
- ref,
1672
- xmlns: "http://www.w3.org/2000/svg",
1673
- viewBox: "0 0 32 32",
1674
- fill: "currentColor",
1675
- ...rest
1676
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H24V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V22a2.0025,2.0025,0,0,0,2,2H8v4a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V10A2.0025,2.0025,0,0,0,28,8ZM22,22H14V17h8Zm0-7H14V10h8ZM12,15H4V10h8ZM22,4V8H4V4ZM4,22V17h8v5Zm24,6H10V24H22a2.0025,2.0025,0,0,0,2-2V10h4Z" }), children);
1677
- });
1678
- if (process.env.NODE_ENV !== "production") TableBuilt.propTypes = require_iconPropTypes.iconPropTypes;
1679
- const TableShortcut = react.default.forwardRef(function TableShortcut({ children, size = 16, ...rest }, ref) {
1680
- return react.default.createElement(require_Icon_js, {
1681
- width: size,
1682
- height: size,
1683
- ref,
1684
- xmlns: "http://www.w3.org/2000/svg",
1685
- viewBox: "0 0 32 32",
1686
- fill: "currentColor",
1687
- ...rest
1688
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 18 5 20 10.586 20 3 27.586 4.414 29 12 21.414 12 27 14 27 14 18 5 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V15H5V11H15v4h2V11H27v7H17v2H27v7H17v2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,6H5V5H27Z" }), children);
1689
- });
1690
- if (process.env.NODE_ENV !== "production") TableShortcut.propTypes = require_iconPropTypes.iconPropTypes;
1691
- const TableSplit = react.default.forwardRef(function TableSplit({ children, size = 16, ...rest }, ref) {
1692
- return react.default.createElement(require_Icon_js, {
1693
- width: size,
1694
- height: size,
1695
- ref,
1696
- xmlns: "http://www.w3.org/2000/svg",
1697
- viewBox: "0 0 32 32",
1698
- fill: "currentColor",
1699
- ...rest
1700
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,2V9H5V5ZM17,11H27v7H17Zm-2,7H5V11H15ZM5,20H15v7H5Zm12,7V20H27v7Z" }), children);
1701
- });
1702
- if (process.env.NODE_ENV !== "production") TableSplit.propTypes = require_iconPropTypes.iconPropTypes;
1703
- const TableOfContents = react.default.forwardRef(function TableOfContents({ children, size = 16, ...rest }, ref) {
1704
- return react.default.createElement(require_Icon_js, {
1705
- width: size,
1706
- height: size,
1707
- ref,
1708
- xmlns: "http://www.w3.org/2000/svg",
1709
- viewBox: "0 0 32 32",
1710
- fill: "currentColor",
1711
- ...rest
1712
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 6H22V8H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 12H22V14H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 18H22V20H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 24H22V26H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 6H28V8H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 12H28V14H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 18H28V20H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 24H28V26H26z" }), children);
1713
- });
1714
- if (process.env.NODE_ENV !== "production") TableOfContents.propTypes = require_iconPropTypes.iconPropTypes;
1715
- const Tablet = react.default.forwardRef(function Tablet({ children, size = 16, ...rest }, ref) {
1716
- return react.default.createElement(require_Icon_js, {
1717
- width: size,
1718
- height: size,
1719
- ref,
1720
- xmlns: "http://www.w3.org/2000/svg",
1721
- viewBox: "0 0 32 32",
1722
- fill: "currentColor",
1723
- ...rest
1724
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1725
- d: "M15 22H17V28H15z",
1726
- transform: "rotate(90 16 25)"
1727
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30H7a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,7,2H25a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,25,30ZM7,4V28H25V4Z" }), children);
1728
- });
1729
- if (process.env.NODE_ENV !== "production") Tablet.propTypes = require_iconPropTypes.iconPropTypes;
1730
- const TabletLandscape = react.default.forwardRef(function TabletLandscape({ children, size = 16, ...rest }, ref) {
1731
- return react.default.createElement(require_Icon_js, {
1732
- width: size,
1733
- height: size,
1734
- ref,
1735
- xmlns: "http://www.w3.org/2000/svg",
1736
- viewBox: "0 0 32 32",
1737
- fill: "currentColor",
1738
- ...rest
1739
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 13H26V19H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,7V25a2.0023,2.0023,0,0,1-2,2H4a2.002,2.002,0,0,1-2-2V7A2.0023,2.0023,0,0,1,4,5H28A2.0027,2.0027,0,0,1,30,7ZM4,25H28V7H4Z" }), children);
1740
- });
1741
- if (process.env.NODE_ENV !== "production") TabletLandscape.propTypes = require_iconPropTypes.iconPropTypes;
1742
- const Tag = react.default.forwardRef(function Tag({ children, size = 16, ...rest }, ref) {
1743
- return react.default.createElement(require_Icon_js, {
1744
- width: size,
1745
- height: size,
1746
- ref,
1747
- xmlns: "http://www.w3.org/2000/svg",
1748
- viewBox: "0 0 32 32",
1749
- fill: "currentColor",
1750
- ...rest
1751
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.6436,29.4145,2.5858,15.3555A2,2,0,0,1,2,13.9414V4A2,2,0,0,1,4,2h9.9413a2,2,0,0,1,1.4142.5858L29.4144,16.6436a2.0005,2.0005,0,0,1,0,2.8285l-9.9424,9.9425a2.0008,2.0008,0,0,1-2.8285,0ZM4,4v9.9417L18.0578,28,28,18.0579,13.9416,4Z" }), children);
1752
- });
1753
- if (process.env.NODE_ENV !== "production") Tag.propTypes = require_iconPropTypes.iconPropTypes;
1754
- const TagEdit = react.default.forwardRef(function TagEdit({ children, size = 16, ...rest }, ref) {
1755
- return react.default.createElement(require_Icon_js, {
1756
- width: size,
1757
- height: size,
1758
- ref,
1759
- xmlns: "http://www.w3.org/2000/svg",
1760
- viewBox: "0 0 32 32",
1761
- fill: "currentColor",
1762
- ...rest
1763
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.707,7.293l-3-3a.9994.9994,0,0,0-1.414,0L16,13.5859V18h4.4141L29.707,8.707A.9994.9994,0,0,0,29.707,7.293ZM19.5859,16H18V14.4141l5-5L24.5859,11ZM26,9.5859,24.4141,8,26,6.4141,27.5859,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.0059,14.2354l-1.4141,1.414L28,18.0576,18.0579,28,4,13.9414V4h9.9417l4.4067,4.4067,1.4141-1.4145-4.407-4.4063A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l9.9424-9.9424a2.001,2.001,0,0,0,0-2.8286Z" }), children);
1764
- });
1765
- if (process.env.NODE_ENV !== "production") TagEdit.propTypes = require_iconPropTypes.iconPropTypes;
1766
- const TagExport = react.default.forwardRef(function TagExport({ children, size = 16, ...rest }, ref) {
1767
- return react.default.createElement(require_Icon_js, {
1768
- width: size,
1769
- height: size,
1770
- ref,
1771
- xmlns: "http://www.w3.org/2000/svg",
1772
- viewBox: "0 0 32 32",
1773
- fill: "currentColor",
1774
- ...rest
1775
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 18 25 12 23.586 13.414 27.172 17 17 17 17 19 27.172 19 23.586 22.586 25 24 31 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.0593,25l-3.0014,3L4,13.9414V4h9.9417l7,7,1.4143-1.414-7.001-7A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l3.0014-3Z" }), children);
1776
- });
1777
- if (process.env.NODE_ENV !== "production") TagExport.propTypes = require_iconPropTypes.iconPropTypes;
1778
- const TagGroup = react.default.forwardRef(function TagGroup({ children, size = 16, ...rest }, ref) {
1779
- return react.default.createElement(require_Icon_js, {
1780
- width: size,
1781
- height: size,
1782
- ref,
1783
- xmlns: "http://www.w3.org/2000/svg",
1784
- viewBox: "0 0 32 32",
1785
- fill: "currentColor",
1786
- ...rest
1787
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1788
- cx: "10",
1789
- cy: "14",
1790
- r: "2"
1791
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30a1,1,0,0,1-.71-.29L4.59,19A2,2,0,0,1,4,17.59V10A2,2,0,0,1,6,8h7.59A2,2,0,0,1,15,8.59l10.71,10.7a1,1,0,0,1,0,1.42l-9,9A1,1,0,0,1,16,30ZM6,10v7.59l10,10L23.59,20l-10-10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.71,13.29,17,2.59A2,2,0,0,0,15.59,2H8A2,2,0,0,0,6,4V6H8V4h7.59l10,10-1.3,1.29,1.42,1.42,2-2A1,1,0,0,0,27.71,13.29Z" }), children);
1792
- });
1793
- if (process.env.NODE_ENV !== "production") TagGroup.propTypes = require_iconPropTypes.iconPropTypes;
1794
- const TagImport = react.default.forwardRef(function TagImport({ children, size = 16, ...rest }, ref) {
1795
- return react.default.createElement(require_Icon_js, {
1796
- width: size,
1797
- height: size,
1798
- ref,
1799
- xmlns: "http://www.w3.org/2000/svg",
1800
- viewBox: "0 0 32 32",
1801
- fill: "currentColor",
1802
- ...rest
1803
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18 22 12 23.414 13.414 19.828 17 30 17 30 19 19.828 19 23.414 22.586 22 24 16 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.0586,26l-2.0007,2L4,13.9414V4h9.9417l6,6,1.4143-1.414-6.001-6A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l2.0006-2.0007Z" }), children);
1804
- });
1805
- if (process.env.NODE_ENV !== "production") TagImport.propTypes = require_iconPropTypes.iconPropTypes;
1806
- const TagNone = react.default.forwardRef(function TagNone({ children, size = 16, ...rest }, ref) {
1807
- return react.default.createElement(require_Icon_js, {
1808
- width: size,
1809
- height: size,
1810
- ref,
1811
- xmlns: "http://www.w3.org/2000/svg",
1812
- viewBox: "0 0 32 32",
1813
- fill: "currentColor",
1814
- ...rest
1815
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.092,10.3218,30,3.4141,28.5859,2,2,28.5859,3.4141,30l6.9077-6.9077,6.3218,6.3223a2.001,2.001,0,0,0,2.8286,0l9.9424-9.9424a2.001,2.001,0,0,0,0-2.8286ZM18.0579,28l-6.3218-6.3223,9.9419-9.9419L28,18.0576Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.4927,20.2627l1.414-1.4141L4,13.9414V4h9.9417l4.9069,4.9067,1.4141-1.414L15.3555,2.5859A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141Z" }), children);
1816
- });
1817
- if (process.env.NODE_ENV !== "production") TagNone.propTypes = require_iconPropTypes.iconPropTypes;
1818
- const Tank = react.default.forwardRef(function Tank({ children, size = 16, ...rest }, ref) {
1819
- return react.default.createElement(require_Icon_js, {
1820
- width: size,
1821
- height: size,
1822
- ref,
1823
- xmlns: "http://www.w3.org/2000/svg",
1824
- viewBox: "0 0 32 32",
1825
- fill: "currentColor",
1826
- ...rest
1827
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,13V11H18.6182l-.7237-1.4473A1,1,0,0,0,17,9H9a1,1,0,0,0-1,1v5H4v2H22.6379l3.6,3H3a1,1,0,0,0-1,1v2a5.0057,5.0057,0,0,0,5,5H25a5.0057,5.0057,0,0,0,5-5V21a1.0011,1.0011,0,0,0-.36-.7686l-6-5A1.0015,1.0015,0,0,0,23,15H20.6182l-1-2ZM28,23a3.0033,3.0033,0,0,1-3,3H7a3.0033,3.0033,0,0,1-3-3V22H28ZM10,15V11h6.3821l2,4Z" }), children);
1828
- });
1829
- if (process.env.NODE_ENV !== "production") Tank.propTypes = require_iconPropTypes.iconPropTypes;
1830
- const Task = react.default.forwardRef(function Task({ children, size = 16, ...rest }, ref) {
1831
- return react.default.createElement(require_Icon_js, {
1832
- width: size,
1833
- height: size,
1834
- ref,
1835
- xmlns: "http://www.w3.org/2000/svg",
1836
- viewBox: "0 0 32 32",
1837
- fill: "currentColor",
1838
- ...rest
1839
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 20.18 10.41 16.59 9 18 14 23 23 14 21.59 12.58 14 20.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" }), children);
1840
- });
1841
- if (process.env.NODE_ENV !== "production") Task.propTypes = require_iconPropTypes.iconPropTypes;
1842
- exports.QT = QT;
1843
- exports.QTAlt = QTAlt;
1858
+ exports.SkipBack = SkipBack;
1859
+ exports.SkipBackFilled = SkipBackFilled;
1860
+ exports.SkipBackOutline = SkipBackOutline;
1861
+ exports.SkipBackOutlineFilled = SkipBackOutlineFilled;
1862
+ exports.SkipBackOutlineSolid = SkipBackOutlineSolid;
1863
+ exports.SkipBackSolidFilled = SkipBackSolidFilled;
1864
+ exports.SkipForward = SkipForward;
1865
+ exports.SkipForwardFilled = SkipForwardFilled;
1866
+ exports.SkipForwardOutline = SkipForwardOutline;
1867
+ exports.SkipForwardOutlineFilled = SkipForwardOutlineFilled;
1868
+ exports.SkipForwardOutlineSolid = SkipForwardOutlineSolid;
1869
+ exports.SkipForwardSolidFilled = SkipForwardSolidFilled;
1870
+ exports.Sleet = Sleet;
1871
+ exports.Slisor = Slisor;
1872
+ exports.Slm = Slm;
1873
+ exports.Smell = Smell;
1874
+ exports.Smoke = Smoke;
1875
+ exports.Snooze = Snooze;
1876
+ exports.Snow = Snow;
1877
+ exports.SnowBlizzard = SnowBlizzard;
1878
+ exports.SnowDensity = SnowDensity;
1879
+ exports.SnowHeavy = SnowHeavy;
1880
+ exports.SnowScattered = SnowScattered;
1881
+ exports.SnowScatteredNight = SnowScatteredNight;
1844
1882
  exports.Snowflake = Snowflake;
1845
1883
  exports.Soccer = Soccer;
1884
+ exports.Socket = Socket;
1846
1885
  exports.SoftwareResource = SoftwareResource;
1847
1886
  exports.SoftwareResourceCluster = SoftwareResourceCluster;
1848
1887
  exports.SoftwareResourceResource = SoftwareResourceResource;
@@ -1870,6 +1909,7 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1870
1909
  exports.Sql = Sql;
1871
1910
  exports.SquareFill = SquareFill;
1872
1911
  exports.SquareOutline = SquareOutline;
1912
+ exports.SquareSlash = SquareSlash;
1873
1913
  exports.SquareSolid = SquareSolid;
1874
1914
  exports.StackLimitation = StackLimitation;
1875
1915
  exports.Stamp = Stamp;
@@ -1891,8 +1931,10 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1891
1931
  exports.StoragePool = StoragePool;
1892
1932
  exports.StorageRequest = StorageRequest;
1893
1933
  exports.Store = Store;
1934
+ exports.Storm = Storm;
1894
1935
  exports.StormTracker = StormTracker;
1895
1936
  exports.StrategyPlay = StrategyPlay;
1937
+ exports.Stratus = Stratus;
1896
1938
  exports.Strawberry = Strawberry;
1897
1939
  exports.StringInteger = StringInteger;
1898
1940
  exports.StringText = StringText;
@@ -1918,34 +1960,8 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1918
1960
  exports.SupportVectorMachine = SupportVectorMachine;
1919
1961
  exports.SurrogateKeyDatabase = SurrogateKeyDatabase;
1920
1962
  exports.SurrogateKeyFlatFile = SurrogateKeyFlatFile;
1921
- exports.Sustainability = Sustainability;
1922
- exports.Svg = Svg;
1923
- exports.Swim = Swim;
1924
- exports.SwimlaneDVertical = SwimlaneDVertical;
1925
- exports.Switch = Switch;
1926
- exports.SwitchLayer_2 = SwitchLayer_2;
1927
- exports.SwitchLayer_3 = SwitchLayer_3;
1928
- exports.Switcher = Switcher;
1929
- exports.SyncSettings = SyncSettings;
1930
- exports.SysProvision = SysProvision;
1931
- exports.SysplexDistributor = SysplexDistributor;
1932
- exports.Table = Table;
1933
- exports.TableAdd = TableAdd;
1934
- exports.TableAlias = TableAlias;
1935
- exports.TableBuilt = TableBuilt;
1936
- exports.TableOfContents = TableOfContents;
1937
- exports.TableShortcut = TableShortcut;
1938
- exports.TableSplit = TableSplit;
1939
- exports.Tablet = Tablet;
1940
- exports.TabletLandscape = TabletLandscape;
1941
- exports.Tag = Tag;
1942
- exports.TagEdit = TagEdit;
1943
- exports.TagExport = TagExport;
1944
- exports.TagGroup = TagGroup;
1945
- exports.TagImport = TagImport;
1946
- exports.TagNone = TagNone;
1947
- exports.Tank = Tank;
1948
- exports.Task = Task;
1963
+ exports.WatsonHealthSmoothing = WatsonHealthSmoothing;
1964
+ exports.WatsonHealthSmoothingCursor = WatsonHealthSmoothingCursor;
1949
1965
  exports.WatsonHealthSpineLabel = WatsonHealthSpineLabel;
1950
1966
  exports.WatsonHealthSplitDiscard = WatsonHealthSplitDiscard;
1951
1967
  exports.WatsonHealthStackedMove = WatsonHealthStackedMove;
@@ -1965,11 +1981,10 @@ var require_bucket_17 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1965
1981
  exports.WatsonHealthStudyView = WatsonHealthStudyView;
1966
1982
  exports.WatsonHealthSubVolume = WatsonHealthSubVolume;
1967
1983
  }));
1968
-
1969
1984
  //#endregion
1970
- Object.defineProperty(exports, 'default', {
1971
- enumerable: true,
1972
- get: function () {
1973
- return require_bucket_17();
1974
- }
1975
- });
1985
+ Object.defineProperty(exports, "default", {
1986
+ enumerable: true,
1987
+ get: function() {
1988
+ return require_bucket_17();
1989
+ }
1990
+ });