@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-16.js
14
12
  var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,307 @@ var require_bucket_16 = /* @__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 Satellite = react.default.forwardRef(function Satellite({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const Rule = /* @__PURE__ */ react.default.forwardRef(function Rule({ 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: "M10 16H22V18H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 10H22V12H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30,9.8242,26.7071A10.9815,10.9815,0,0,1,4,17V4A2.0022,2.0022,0,0,1,6,2H26a2.0022,2.0022,0,0,1,2,2V17a10.9815,10.9815,0,0,1-5.8242,9.7069ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z" }), children);
37
+ });
38
+ if (process.env.NODE_ENV !== "production") Rule.propTypes = require_iconPropTypes.iconPropTypes;
39
+ const RuleCancelled = /* @__PURE__ */ react.default.forwardRef(function RuleCancelled({ 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: "M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H18V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24l0,11h2L26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z" }), children);
49
+ });
50
+ if (process.env.NODE_ENV !== "production") RuleCancelled.propTypes = require_iconPropTypes.iconPropTypes;
51
+ const RuleDataQuality = /* @__PURE__ */ react.default.forwardRef(function RuleDataQuality({ 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.jsxs)("switch", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("foreignObject", {
61
+ width: "1",
62
+ height: "1",
63
+ x: "0",
64
+ y: "0",
65
+ requiredExtensions: "http://ns.adobe.com/AdobeIllustrator/10.0/"
66
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", { children: [
67
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28.6l-2.8-2.8C27.7,25,28,24,28,23c0-2.8-2.2-5-5-5s-5,2.2-5,5s2.2,5,5,5c1,0,2-0.3,2.8-0.8l2.8,2.8 L30,28.6z M20,23c0-1.7,1.3-3,3-3s3,1.3,3,3s-1.3,3-3,3S20,24.7,20,23z" }),
68
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H18V18H8z" }),
69
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }),
70
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,27.7l-5.2-2.8C5.8,23.4,4,20.3,4,17V4h20v11h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7L14,30 V27.7z" })
71
+ ] })] }), children);
72
+ });
73
+ if (process.env.NODE_ENV !== "production") RuleDataQuality.propTypes = require_iconPropTypes.iconPropTypes;
74
+ const RuleDraft = /* @__PURE__ */ react.default.forwardRef(function RuleDraft({ children, size = 16, ...rest }, ref) {
75
+ return react.default.createElement(require_Icon.Icon, {
76
+ width: size,
77
+ height: size,
78
+ ref,
79
+ xmlns: "http://www.w3.org/2000/svg",
80
+ viewBox: "0 0 32 32",
81
+ fill: "currentColor",
82
+ ...rest
83
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H18V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L13,29.4668V27.2L8.7656,24.9424A8.9858,8.9858,0,0,1,4,17V4H24v9h2Z" }), children);
84
+ });
85
+ if (process.env.NODE_ENV !== "production") RuleDraft.propTypes = require_iconPropTypes.iconPropTypes;
86
+ const RuleFilled = /* @__PURE__ */ react.default.forwardRef(function RuleFilled({ children, size = 16, ...rest }, ref) {
87
+ return react.default.createElement(require_Icon.Icon, {
88
+ width: size,
89
+ height: size,
90
+ ref,
91
+ xmlns: "http://www.w3.org/2000/svg",
92
+ viewBox: "0 0 32 32",
93
+ fill: "currentColor",
94
+ ...rest
95
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
96
+ fill: "none",
97
+ d: "M9 16H23V18H9z",
98
+ "data-icon-path": "inner-path"
99
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
100
+ fill: "none",
101
+ d: "M9 10H23V12H9z"
102
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2H6A2.0023,2.0023,0,0,0,4,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L16,30l6.1758-3.293A10.9814,10.9814,0,0,0,28,17V4A2.0023,2.0023,0,0,0,26,2ZM23,18H9V16H23Zm0-6H9V10H23Z" }), children);
103
+ });
104
+ if (process.env.NODE_ENV !== "production") RuleFilled.propTypes = require_iconPropTypes.iconPropTypes;
105
+ const RuleLocked = /* @__PURE__ */ react.default.forwardRef(function RuleLocked({ children, size = 16, ...rest }, ref) {
106
+ return react.default.createElement(require_Icon.Icon, {
107
+ width: size,
108
+ height: size,
109
+ ref,
110
+ xmlns: "http://www.w3.org/2000/svg",
111
+ viewBox: "0 0 32 32",
112
+ fill: "currentColor",
113
+ ...rest
114
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,22v-3c0-2.2-1.8-4-4-4s-4,1.8-4,4v3c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-5C30,22.9,29.1,22,28,22z M22,19c0-1.1,0.9-2,2-2s2,0.9,2,2v3h-4V19z M20,29v-5h8v5H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H14V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7l5.2,2.8v-2.3l-4.2-2.3C5.8,23.4,4,20.3,4,17V4h20v8h2V4z" }), children);
115
+ });
116
+ if (process.env.NODE_ENV !== "production") RuleLocked.propTypes = require_iconPropTypes.iconPropTypes;
117
+ const RulePartial = /* @__PURE__ */ react.default.forwardRef(function RulePartial({ children, size = 16, ...rest }, ref) {
118
+ return react.default.createElement(require_Icon.Icon, {
119
+ width: size,
120
+ height: size,
121
+ ref,
122
+ xmlns: "http://www.w3.org/2000/svg",
123
+ viewBox: "0 0 32 32",
124
+ fill: "currentColor",
125
+ ...rest
126
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,16c-3.9,0-7,3.1-7,7s3.1,7,7,7s7-3.1,7-7S26.9,16,23,16z M23,28V18c2.8,0,5,2.2,5,5S25.8,28,23,28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H14V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7l5.2,2.8v-2.3l-4.2-2.3C5.8,23.4,4,20.3,4,17V4h20v9h2V4z" }), children);
127
+ });
128
+ if (process.env.NODE_ENV !== "production") RulePartial.propTypes = require_iconPropTypes.iconPropTypes;
129
+ const RuleTest = /* @__PURE__ */ react.default.forwardRef(function RuleTest({ children, size = 16, ...rest }, ref) {
130
+ return react.default.createElement(require_Icon.Icon, {
131
+ width: size,
132
+ height: size,
133
+ ref,
134
+ xmlns: "http://www.w3.org/2000/svg",
135
+ viewBox: "0 0 32 32",
136
+ fill: "currentColor",
137
+ ...rest
138
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,23,30Zm0-12a5,5,0,1,0,5,5A5.0055,5.0055,0,0,0,23,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 24.586 24 22.586 24 20 22 20 22 23.414 24.586 26 26 24.586z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H14V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L13,29.4668V27.2L8.7656,24.9424A8.9858,8.9858,0,0,1,4,17V4H24v9h2Z" }), children);
139
+ });
140
+ if (process.env.NODE_ENV !== "production") RuleTest.propTypes = require_iconPropTypes.iconPropTypes;
141
+ const RuleGroupingDataQuality = /* @__PURE__ */ react.default.forwardRef(function RuleGroupingDataQuality({ children, size = 16, ...rest }, ref) {
142
+ return react.default.createElement(require_Icon.Icon, {
143
+ width: size,
144
+ height: size,
145
+ ref,
146
+ xmlns: "http://www.w3.org/2000/svg",
147
+ viewBox: "0 0 32 32",
148
+ fill: "currentColor",
149
+ ...rest
150
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,29.5829l-2.8325-2.8306c.5237-.7905.8325-1.7354.8325-2.7524,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0171,0,1.9619-.3086,2.7524-.8325l2.8306,2.8325,1.417-1.417ZM21,23.9999c0-1.6543,1.3457-3,3-3s3,1.3457,3,3-1.3457,3-3,3-3-1.3457-3-3ZM28.42,6.9999H10.58c-.87,0-1.58.7-1.58,1.57v12.2201c0,3.19.27,6.12,3.11,7.62l4.89,2.59v-2.26l-3.95-2.09c-2.19-1.16-2.05-3.41-2.05-5.86v-11.7901h17v8.0001h2v-8.4301c0-.87-.71-1.57-1.58-1.57ZM21.42.9999H3.58c-.87,0-1.58.7-1.58,1.57v12.22c0,3.19.27,6.12,3.11,7.62l1.89,1v-2.2599l-.95-.5c-2.19-1.16-2.05-3.41-2.05-5.86V2.9999h17v2h2v-2.43c0-.87-.71-1.57-1.58-1.57ZM24,13h-11v-2h11v2ZM22,17h-9v-2h9v2Z" }), children);
151
+ });
152
+ if (process.env.NODE_ENV !== "production") RuleGroupingDataQuality.propTypes = require_iconPropTypes.iconPropTypes;
153
+ const Ruler = /* @__PURE__ */ react.default.forwardRef(function Ruler({ children, size = 16, ...rest }, ref) {
154
+ return react.default.createElement(require_Icon.Icon, {
155
+ width: size,
156
+ height: size,
157
+ ref,
158
+ xmlns: "http://www.w3.org/2000/svg",
159
+ viewBox: "0 0 32 32",
160
+ fill: "currentColor",
161
+ ...rest
162
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,10H3a1,1,0,0,0-1,1V21a1,1,0,0,0,1,1H29a1,1,0,0,0,1-1V11A1,1,0,0,0,29,10ZM28,20H4V12H8v4h2V12h5v4h2V12h5v4h2V12h4Z" }), children);
163
+ });
164
+ if (process.env.NODE_ENV !== "production") Ruler.propTypes = require_iconPropTypes.iconPropTypes;
165
+ const RulerAlt = /* @__PURE__ */ react.default.forwardRef(function RulerAlt({ children, size = 16, ...rest }, ref) {
166
+ return react.default.createElement(require_Icon.Icon, {
167
+ width: size,
168
+ height: size,
169
+ ref,
170
+ xmlns: "http://www.w3.org/2000/svg",
171
+ viewBox: "0 0 32 32",
172
+ fill: "currentColor",
173
+ ...rest
174
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.41,21.67,10.34,2.58a2,2,0,0,0-2.83,0L2.59,7.51a2,2,0,0,0,0,2.82L21.66,29.42a2,2,0,0,0,1.42.58,2,2,0,0,0,1.41-.58l4.92-4.93A2,2,0,0,0,29.41,21.67ZM23.08,28,4,8.92,8.92,4l3.79,3.79L10.46,10l1.41,1.41L14.12,9.2l4.13,4.13L16,15.58,17.42,17l2.25-2.25,4.13,4.13-2.25,2.25L23,22.54l2.25-2.25L28,23.08Z" }), children);
175
+ });
176
+ if (process.env.NODE_ENV !== "production") RulerAlt.propTypes = require_iconPropTypes.iconPropTypes;
177
+ const Run = /* @__PURE__ */ react.default.forwardRef(function Run({ children, size = 16, ...rest }, ref) {
178
+ return react.default.createElement(require_Icon.Icon, {
179
+ width: size,
180
+ height: size,
181
+ ref,
182
+ xmlns: "http://www.w3.org/2000/svg",
183
+ viewBox: "0 0 32 32",
184
+ fill: "currentColor",
185
+ ...rest
186
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,16a6,6,0,1,1-6,6,6,6,0,0,1,6-6m0-2a8,8,0,1,0,8,8,8,8,0,0,0-8-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V12H28V6A2,2,0,0,0,26,4ZM6,10V6H26v4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 19 19 25 24 22 19 19z" }), children);
187
+ });
188
+ if (process.env.NODE_ENV !== "production") Run.propTypes = require_iconPropTypes.iconPropTypes;
189
+ const RunMirror = /* @__PURE__ */ react.default.forwardRef(function RunMirror({ children, size = 16, ...rest }, ref) {
190
+ return react.default.createElement(require_Icon.Icon, {
191
+ width: size,
192
+ height: size,
193
+ ref,
194
+ xmlns: "http://www.w3.org/2000/svg",
195
+ viewBox: "0 0 32 32",
196
+ fill: "currentColor",
197
+ ...rest
198
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 19 9 25 14 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,16c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S7.7,16,11,16 M11,14c-4.4,0-8,3.6-8,8s3.6,8,8,8s8-3.6,8-8S15.4,14,11,14 L11,14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,6v6h22v14h-4v2h4c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H6C4.9,4,4,4.9,4,6z M6,10V6h20v4H6z" }), children);
199
+ });
200
+ if (process.env.NODE_ENV !== "production") RunMirror.propTypes = require_iconPropTypes.iconPropTypes;
201
+ const RunViewIcon = /* @__PURE__ */ react.default.forwardRef(function RunViewIcon({ children, size = 16, ...rest }, ref) {
202
+ return react.default.createElement(require_Icon.Icon, {
203
+ width: size,
204
+ height: size,
205
+ ref,
206
+ xmlns: "http://www.w3.org/2000/svg",
207
+ viewBox: "0 0 32 32",
208
+ fill: "currentColor",
209
+ ...rest
210
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.48,14.1201L8.48,3.1201c-.1499-.0801-.3101-.1201-.48-.1201-.55,0-1,.4502-1,1v11h2V5.6899l16.9199,9.3101-7.04,3.8799,1.4702,1.4702,8.1299-4.4702c.1699-.0996.3-.23.3999-.3999.2603-.48.0901-1.0898-.3999-1.3599ZM13.9748,26.0001h2.0254v-2h-2v-1.5c0-.0276-.0037-.0542-.0042-.0818l2.7112-2.7112-1.4141-1.4141-1.8374,1.8374c-.8876-1.8481-2.7725-3.1304-4.9556-3.1304s-4.068,1.2822-4.9556,3.1304l-1.8374-1.8374-1.4141,1.4141,2.7112,2.7112c-.0005.0276-.0042.0542-.0042.0818v1.5H1.0002v2h2.0254c.0398.4397.1337.8632.2712,1.2671l-2.8513,1.9009,1.1094,1.6641,2.7219-1.8147c1.0098,1.2104,2.5278,1.9827,4.2234,1.9827s3.2136-.7722,4.2234-1.9827l2.7219,1.8147,1.1094-1.6641-2.8513-1.9009c.1376-.4039.2314-.8274.2712-1.2671ZM8.5002,19.0001c1.3909,0,2.585.8218,3.1489,2h-6.2979c.564-1.1782,1.7581-2,3.1489-2ZM8.5002,29.0001c-1.9297,0-3.5-1.5703-3.5-3.5v-2.5h7v2.5c0,1.9297-1.5703,3.5-3.5,3.5Z" }), children);
211
+ });
212
+ if (process.env.NODE_ENV !== "production") RunViewIcon.propTypes = require_iconPropTypes.iconPropTypes;
213
+ const Running = /* @__PURE__ */ react.default.forwardRef(function Running({ children, size = 16, ...rest }, ref) {
214
+ return react.default.createElement(require_Icon.Icon, {
215
+ width: size,
216
+ height: size,
217
+ ref,
218
+ xmlns: "http://www.w3.org/2000/svg",
219
+ viewBox: "0 0 32 32",
220
+ fill: "currentColor",
221
+ ...rest
222
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21.707,20.293l-5-5c-.1951-.1953-.451-.293-.707-.293s-.512.0977-.707.293L2,28.5859l1.4143,1.4141,12.5857-12.5859,3.5857,3.5859-5.5857,5.5859,1.4143,1.4141,2.292-2.292,4.0007-4.001c.1953-.1953.293-.4512.293-.707s-.0977-.5117-.293-.707Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28.5859,9l-5.5859,5.5859-6.0012-6.0015c-.392-.3918-.9073-.5865-1.422-.5845-.5096.002-1.0185.1968-1.4063.5845l-6.1704,6.1753,1.4143,1.4141,6.1704-6.1748,6.7083,6.708c.1951.1953.4512.293.707.293s.512-.0977.707-.293l6.293-6.293-1.4141-1.4141Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.5,9c-1.9299,0-3.5-1.5701-3.5-3.5s1.5701-3.5,3.5-3.5,3.5,1.5701,3.5,3.5-1.5701,3.5-3.5,3.5Zm0-5c-.8271,0-1.5.6729-1.5,1.5s.6729,1.5,1.5,1.5,1.5-.6729,1.5-1.5-.6729-1.5-1.5-1.5Z" }), children);
223
+ });
224
+ if (process.env.NODE_ENV !== "production") Running.propTypes = require_iconPropTypes.iconPropTypes;
225
+ const QS = /* @__PURE__ */ react.default.forwardRef(function QS({ children, size = 16, ...rest }, ref) {
226
+ return react.default.createElement(require_Icon.Icon, {
227
+ width: size,
228
+ height: size,
229
+ ref,
230
+ xmlns: "http://www.w3.org/2000/svg",
231
+ viewBox: "0 0 32 32",
232
+ fill: "currentColor",
233
+ ...rest
234
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23H12V21h6V17H14a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H14v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,23Z" }), children);
235
+ });
236
+ if (process.env.NODE_ENV !== "production") QS.propTypes = require_iconPropTypes.iconPropTypes;
237
+ const QSAlt = /* @__PURE__ */ react.default.forwardRef(function QSAlt({ children, size = 16, ...rest }, ref) {
238
+ return react.default.createElement(require_Icon.Icon, {
239
+ width: size,
240
+ height: size,
241
+ ref,
242
+ xmlns: "http://www.w3.org/2000/svg",
243
+ viewBox: "0 0 32 32",
244
+ fill: "currentColor",
245
+ ...rest
246
+ }, /* @__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 22 17 22 11 24 11 24 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,23H8V21h6V17H10a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H10v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,14,23Z" }), children);
247
+ });
248
+ if (process.env.NODE_ENV !== "production") QSAlt.propTypes = require_iconPropTypes.iconPropTypes;
249
+ const SailboatCoastal = /* @__PURE__ */ react.default.forwardRef(function SailboatCoastal({ children, size = 16, ...rest }, ref) {
250
+ return react.default.createElement(require_Icon.Icon, {
251
+ width: size,
252
+ height: size,
253
+ ref,
254
+ xmlns: "http://www.w3.org/2000/svg",
255
+ viewBox: "0 0 32 32",
256
+ fill: "currentColor",
257
+ ...rest
258
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.7808,26,25.97,21.2422A1,1,0,0,0,25,20H20V17h5a1,1,0,0,0,.9082-1.4189l-6-13a1.0006,1.0006,0,0,0-1.7021-.19L8.2075,15.3906A1,1,0,0,0,9,17h9v3H7a1,1,0,0,0-.97,1.2422L7.2192,26H2v2H30V26ZM20,7.5527,23.437,15H20ZM11.0308,15,18,5.94V15ZM22.7192,26H9.2808l-1-4H23.7192Z" }), children);
259
+ });
260
+ if (process.env.NODE_ENV !== "production") SailboatCoastal.propTypes = require_iconPropTypes.iconPropTypes;
261
+ const SailboatOffshore = /* @__PURE__ */ react.default.forwardRef(function SailboatOffshore({ children, size = 16, ...rest }, ref) {
262
+ return react.default.createElement(require_Icon.Icon, {
263
+ width: size,
264
+ height: size,
265
+ ref,
266
+ xmlns: "http://www.w3.org/2000/svg",
267
+ viewBox: "0 0 32 32",
268
+ fill: "currentColor",
269
+ ...rest
270
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.9692,25H9.0308l-.75-3H23.7192l-.75,3h2.0616l.9394-3.7578A1,1,0,0,0,25,20H20V17h5a1,1,0,0,0,.9082-1.4189l-6-13a1.0006,1.0006,0,0,0-1.7021-.19L8.2075,15.3906A1,1,0,0,0,9,17h9v3H7a1,1,0,0,0-.97,1.2422ZM20,7.5527,23.437,15H20ZM11.0308,15,18,5.94V15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.9058,25.751A2.998,2.998,0,0,1,24,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,20,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,16,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,12,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,8,28a2.998,2.998,0,0,1-2.9058-2.249l-1.9365.498A4.9965,4.9965,0,0,0,8,30a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,24,30a4.9965,4.9965,0,0,0,4.8423-3.751Z" }), children);
271
+ });
272
+ if (process.env.NODE_ENV !== "production") SailboatOffshore.propTypes = require_iconPropTypes.iconPropTypes;
273
+ const SalesOps = /* @__PURE__ */ react.default.forwardRef(function SalesOps({ children, size = 16, ...rest }, ref) {
274
+ return react.default.createElement(require_Icon.Icon, {
275
+ width: size,
276
+ height: size,
277
+ ref,
278
+ xmlns: "http://www.w3.org/2000/svg",
279
+ viewBox: "0 0 32 32",
280
+ fill: "currentColor",
281
+ ...rest
282
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,6v-2h-3v-2h-2v2h-1c-1.1028,0-2,.8975-2,2v2c0,1.1025.8972,2,2,2h4v2h-6v2h3v2h2v-2h1c1.1028,0,2-.8975,2-2v-2c0-1.1025-.8972-2-2-2h-4v-2h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,20v2h2.5859l-3.5857,3.5859-2.2917-2.293c-.1875-.1875-.4419-.293-.707-.293h-.0015c-.2651,0-.5183.1055-.7058.293l-5.2942,5.293,1.4143,1.4141,4.5867-4.5859,2.2917,2.293c.1875.1875.4419.293.7073.293.2651,0,.5195-.1055.707-.293l4.293-4.293v2.5859h2v-6h-6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m4,30h-2v-5c0-3.8599,3.1401-7,7-7h6c1.9885,0,3.8901.8502,5.217,2.3328l-1.4902,1.334c-.948-1.0592-2.3064-1.6667-3.7268-1.6667h-6c-2.7571,0-5,2.243-5,5v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,16c3.866,0,7-3.134,7-7s-3.134-7-7-7-7,3.134-7,7,3.134,7,7,7Zm0-12c2.7615,0,5,2.2385,5,5s-2.2385,5-5,5-5-2.2385-5-5c.0032-2.7601,2.2399-4.9968,5-5Z" }), children);
283
+ });
284
+ if (process.env.NODE_ENV !== "production") SalesOps.propTypes = require_iconPropTypes.iconPropTypes;
285
+ const SankeyDiagram = /* @__PURE__ */ react.default.forwardRef(function SankeyDiagram({ children, size = 16, ...rest }, ref) {
286
+ return react.default.createElement(require_Icon.Icon, {
287
+ width: size,
288
+ height: size,
289
+ ref,
290
+ xmlns: "http://www.w3.org/2000/svg",
291
+ viewBox: "0 0 32 32",
292
+ fill: "currentColor",
293
+ ...rest
294
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2V8.0439c-1.9634.1968-6.3162,1.2325-10.5637,6.2764-.198-.2768-.3982-.5464-.5882-.8506C11.9736,5.6714,6.3191,4.2759,4,4.042V2H2V30H4V26.0464a14.8661,14.8661,0,0,0,9.9185-3.96C18.47,27.46,25.2363,28.0381,27.9341,28.0381c.0244,0,.0422-.001.0659-.001V30h2V2Zm0,8.0552v9.99a12.8834,12.8834,0,0,1-9.2756-4.1328C22.5032,11.2666,26.2915,10.26,28,10.0552ZM15.1519,14.53c.3242.5185.663.9907,1.0078,1.4409-.3384.4741-.6753.9707-1.0078,1.5029a16.1346,16.1346,0,0,1-1.0313,1.4531c-.0825-.1372-.1675-.27-.2466-.4126C9.3279,10.3315,5.7871,8.4438,4,8.0684V6.0508C5.9932,6.2905,10.8228,7.6035,15.1519,14.53ZM4,24.0488V10.1406c1.3254.4644,4.2034,2.2847,8.126,9.3448.1894.3413.396.6523.6.9667A12.8784,12.8784,0,0,1,4,24.0488Zm11.3179-3.4209a18.0563,18.0563,0,0,0,1.53-2.0937c.2212-.354.4454-.67.6687-.9951A14.8686,14.8686,0,0,0,28,22.0425v3.9863C25.67,26.019,19.374,25.5088,15.3179,20.6279Z" }), children);
295
+ });
296
+ if (process.env.NODE_ENV !== "production") SankeyDiagram.propTypes = require_iconPropTypes.iconPropTypes;
297
+ const SankeyDiagramAlt = /* @__PURE__ */ react.default.forwardRef(function SankeyDiagramAlt({ children, size = 16, ...rest }, ref) {
298
+ return react.default.createElement(require_Icon.Icon, {
299
+ width: size,
300
+ height: size,
301
+ ref,
302
+ xmlns: "http://www.w3.org/2000/svg",
303
+ viewBox: "0 0 32 32",
304
+ fill: "currentColor",
305
+ ...rest
306
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,2H2V16H8.1113a7.0359,7.0359,0,0,1,3.13.7393L15.7637,19l-4.522,2.2607A7.0359,7.0359,0,0,1,8.1113,22H2v8H9.2231a9.0446,9.0446,0,0,0,4.0249-.95L21.87,24.7393A7.0359,7.0359,0,0,1,25,24h5V14H25a7.0359,7.0359,0,0,1-3.13-.7393L15.3481,10H30ZM8,4H24V8H8ZM4,4H6V14H4ZM4,24H6v4H4Zm16.9751-1.05-8.6216,4.3105A7.0359,7.0359,0,0,1,9.2231,28H8V24h.1113a9.0446,9.0446,0,0,0,4.0249-.95L18,20.1182l1.8638.9316a9.0446,9.0446,0,0,0,4.0249.95H24v.0586A9.0515,9.0515,0,0,0,20.9751,22.95ZM28,22H26V16h2ZM12.3535,10.7393l8.6216,4.31A9.0515,9.0515,0,0,0,24,15.9414V20h-.1113a7.0359,7.0359,0,0,1-3.13-.7393l-8.6221-4.31A9.0446,9.0446,0,0,0,8.1113,14H8V10H9.2231A7.0359,7.0359,0,0,1,12.3535,10.7393ZM28,8H26V4h2Z" }), children);
307
+ });
308
+ if (process.env.NODE_ENV !== "production") SankeyDiagramAlt.propTypes = require_iconPropTypes.iconPropTypes;
309
+ const Sap = /* @__PURE__ */ react.default.forwardRef(function Sap({ children, size = 16, ...rest }, ref) {
310
+ return react.default.createElement(require_Icon.Icon, {
311
+ width: size,
312
+ height: size,
313
+ ref,
314
+ xmlns: "http://www.w3.org/2000/svg",
315
+ viewBox: "0 0 32 32",
316
+ fill: "currentColor",
317
+ ...rest
318
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,8h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157,2H4c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h1.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h4.1843c.2653,0,.5197-.1054.7073-.293l14-14c.6299-.6299.1836-1.707-.7073-1.707ZM20,8c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1ZM8,24c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1ZM14.5857,22h-3.77c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157,2h-1.1843v-12h13.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h3.77s-12,12-12,12Z" }), children);
319
+ });
320
+ if (process.env.NODE_ENV !== "production") Sap.propTypes = require_iconPropTypes.iconPropTypes;
321
+ const Satellite = /* @__PURE__ */ react.default.forwardRef(function Satellite({ children, size = 16, ...rest }, ref) {
322
+ return react.default.createElement(require_Icon.Icon, {
32
323
  width: size,
33
324
  height: size,
34
325
  ref,
@@ -39,8 +330,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
39
330
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.9141,16.5l2.7929-2.793a.9994.9994,0,0,0,0-1.414L23.4141,10,25.5,7.9141,28.5859,11,30,9.5859,22.4141,2,21,3.4141,24.0859,6.5,22,8.5859,19.707,6.293a.9994.9994,0,0,0-1.414,0L15.5,9.0859,8.707,2.293a.9994.9994,0,0,0-1.414,0l-5,5a.9994.9994,0,0,0,0,1.414L9.0859,15.5,6.293,18.293a.9994.9994,0,0,0,0,1.414L8.5859,22,6.5,24.0859,3.4141,21,2,22.4141,9.5859,30,11,28.5859,7.9141,25.5,10,23.4141l2.293,2.2929a.9995.9995,0,0,0,1.414,0L16.5,22.9141l6.793,6.7929a.9995.9995,0,0,0,1.414,0l5-5a.9994.9994,0,0,0,0-1.414ZM4.4141,8,8,4.4141,10.0859,6.5,6.5,10.0859Zm3.5,3.5L11.5,7.9141,14.0859,10.5,10.5,14.0859ZM13,23.5859,8.4141,19,19,8.4141,23.5859,13ZM17.9141,21.5,21.5,17.9141,24.0859,20.5,20.5,24.0859ZM24,27.5859,21.9141,25.5,25.5,21.9141,27.5859,24Z" }), children);
40
331
  });
41
332
  if (process.env.NODE_ENV !== "production") Satellite.propTypes = require_iconPropTypes.iconPropTypes;
42
- const SatelliteRadar = react.default.forwardRef(function SatelliteRadar({ children, size = 16, ...rest }, ref) {
43
- return react.default.createElement(require_Icon_js, {
333
+ const SatelliteRadar = /* @__PURE__ */ react.default.forwardRef(function SatelliteRadar({ children, size = 16, ...rest }, ref) {
334
+ return react.default.createElement(require_Icon.Icon, {
44
335
  width: size,
45
336
  height: size,
46
337
  ref,
@@ -51,8 +342,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
51
342
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,14H28A10.0113,10.0113,0,0,0,18,4V2A12.0137,12.0137,0,0,1,30,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14H24a6.0067,6.0067,0,0,0-6-6V6A8.0092,8.0092,0,0,1,26,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28V24.96a9.9124,9.9124,0,0,0,7.3179-2.208,1.8482,1.8482,0,0,0,.6777-1.3344,1.8,1.8,0,0,0-.5239-1.36L18.4141,15,21,12.4141,19.5859,11,17,13.5859,11.9419,8.5273a1.8145,1.8145,0,0,0-1.36-.5229,1.845,1.845,0,0,0-1.3339.6782,9.9566,9.9566,0,0,0-.5127,11.95L6.2793,28H2v2H30V28ZM10.68,10.0938,21.9058,21.32A8.0011,8.0011,0,0,1,10.68,10.0938ZM14,28H8.3875l1.8757-5.627A9.9894,9.9894,0,0,0,14,24.5435Z" }), children);
52
343
  });
53
344
  if (process.env.NODE_ENV !== "production") SatelliteRadar.propTypes = require_iconPropTypes.iconPropTypes;
54
- const SatelliteWeather = react.default.forwardRef(function SatelliteWeather({ children, size = 16, ...rest }, ref) {
55
- return react.default.createElement(require_Icon_js, {
345
+ const SatelliteWeather = /* @__PURE__ */ react.default.forwardRef(function SatelliteWeather({ children, size = 16, ...rest }, ref) {
346
+ return react.default.createElement(require_Icon.Icon, {
56
347
  width: size,
57
348
  height: size,
58
349
  ref,
@@ -63,8 +354,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
63
354
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.5,12H19a4,4,0,0,1,0-8h.0835A4.7864,4.7864,0,0,1,23,2a4.9816,4.9816,0,0,1,4.6543,3.2034A3.4667,3.4667,0,0,1,30,8.5,3.5041,3.5041,0,0,1,26.5,12ZM19,6a2,2,0,0,0,0,4h7.5A1.5017,1.5017,0,0,0,28,8.5a1.4855,1.4855,0,0,0-1.2778-1.4739L26.061,6.927l-.1616-.6487a2.9568,2.9568,0,0,0-5.4873-.7121L20.1143,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,28V24.8882a7.9363,7.9363,0,0,0,4.707-2.2818.9995.9995,0,0,0,0-1.414L13.4644,16.95,16,14.4141,14.5859,13,12.05,15.5356,7.8076,11.293a.9994.9994,0,0,0-1.414,0,7.9993,7.9993,0,0,0,0,11.3134c.1621.1622.3327.3125.5058.459L4.4321,28H2v2H30V28Zm-2,0H6.6685L8.59,24.1567A7.8927,7.8927,0,0,0,11,24.873ZM7.8076,21.1924a6.0036,6.0036,0,0,1-.6489-7.72l8.3686,8.3681a6.0026,6.0026,0,0,1-7.72-.6484Z" }), children);
64
355
  });
65
356
  if (process.env.NODE_ENV !== "production") SatelliteWeather.propTypes = require_iconPropTypes.iconPropTypes;
66
- const SatisfyDefinition = react.default.forwardRef(function SatisfyDefinition({ children, size = 16, ...rest }, ref) {
67
- return react.default.createElement(require_Icon_js, {
357
+ const SatisfyDefinition = /* @__PURE__ */ react.default.forwardRef(function SatisfyDefinition({ children, size = 16, ...rest }, ref) {
358
+ return react.default.createElement(require_Icon.Icon, {
68
359
  width: size,
69
360
  height: size,
70
361
  ref,
@@ -84,8 +375,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
84
375
  }), children);
85
376
  });
86
377
  if (process.env.NODE_ENV !== "production") SatisfyDefinition.propTypes = require_iconPropTypes.iconPropTypes;
87
- const SatisfyUsage = react.default.forwardRef(function SatisfyUsage({ children, size = 16, ...rest }, ref) {
88
- return react.default.createElement(require_Icon_js, {
378
+ const SatisfyUsage = /* @__PURE__ */ react.default.forwardRef(function SatisfyUsage({ children, size = 16, ...rest }, ref) {
379
+ return react.default.createElement(require_Icon.Icon, {
89
380
  width: size,
90
381
  height: size,
91
382
  ref,
@@ -105,8 +396,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
105
396
  }), children);
106
397
  });
107
398
  if (process.env.NODE_ENV !== "production") SatisfyUsage.propTypes = require_iconPropTypes.iconPropTypes;
108
- const Save = react.default.forwardRef(function Save({ children, size = 16, ...rest }, ref) {
109
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
399
+ const Save = /* @__PURE__ */ react.default.forwardRef(function Save({ children, size = 16, ...rest }, ref) {
400
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
110
401
  width: size,
111
402
  height: size,
112
403
  ref,
@@ -115,7 +406,7 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
115
406
  fill: "currentColor",
116
407
  ...rest
117
408
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.9,4.6l-2.5-2.5C11.3,2.1,11.1,2,11,2H3C2.4,2,2,2.4,2,3v10c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1V5 C14,4.9,13.9,4.7,13.9,4.6z M6,3h4v2H6V3z M10,13H6V9h4V13z M11,13V9c0-0.6-0.4-1-1-1H6C5.4,8,5,8.4,5,9v4H3V3h2v2c0,0.6,0.4,1,1,1 h4c0.6,0,1-0.4,1-1V3.2l2,2V13H11z" }), children);
118
- if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon_js, {
409
+ if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon.Icon, {
119
410
  width: size,
120
411
  height: size,
121
412
  ref,
@@ -124,7 +415,7 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
124
415
  fill: "currentColor",
125
416
  ...rest
126
417
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.8,5.5l-3.3-3.3C14.3,2.1,14.2,2,14,2H3.3C2.6,2,2,2.6,2,3.3v13.3C2,17.4,2.6,18,3.3,18h13.3c0.7,0,1.4-0.5,1.4-1.2V6.1 C18,5.7,17.9,5.7,17.8,5.5z M7.3,3.3h5.3v3.3H7.3V3.3z M12.7,16.7H7.3v-5.3h5.3L12.7,16.7L12.7,16.7z M14,16.7v-5.3 c0-0.7-0.6-1.3-1.3-1.3H7.3C6.6,10,6,10.6,6,11.3v5.3H3.3V3.3H6v3.3C6,7.4,6.6,8,7.3,8h5.3C13.4,8,14,7.4,14,6.7v-3l2.7,2.7v10.4 L14,16.7L14,16.7z" }), children);
127
- if (size === 24 || size === "24" || size === "24px") return react.default.createElement(require_Icon_js, {
418
+ if (size === 24 || size === "24" || size === "24px") return react.default.createElement(require_Icon.Icon, {
128
419
  width: size,
129
420
  height: size,
130
421
  ref,
@@ -133,7 +424,7 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
133
424
  fill: "currentColor",
134
425
  ...rest
135
426
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.8,7L17,3.2C16.9,3.1,16.7,3,16.5,3h-12C3.7,3,3,3.7,3,4.5v15C3,20.3,3.7,21,4.5,21h15c0.8,0,1.5-0.7,1.5-1.5v-12 C21,7.3,20.9,7.1,20.8,7z M9,4.5h6v3H9V4.5z M15,19.5H9v-6h6V19.5z M16.5,19.5v-6c0-0.8-0.7-1.5-1.5-1.5H9c-0.8,0-1.5,0.7-1.5,1.5v6 h-3v-15h3v3C7.5,8.3,8.2,9,9,9h6c0.8,0,1.5-0.7,1.5-1.5V4.8l3,3v11.7H16.5z" }), children);
136
- return react.default.createElement(require_Icon_js, {
427
+ return react.default.createElement(require_Icon.Icon, {
137
428
  width: size,
138
429
  height: size,
139
430
  ref,
@@ -144,8 +435,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
144
435
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.71,9.29l-5-5A1,1,0,0,0,22,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V10A1,1,0,0,0,27.71,9.29ZM12,6h8v4H12Zm8,20H12V18h8Zm2,0V18a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2v8H6V6h4v4a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V6.41l4,4V26Z" }), children);
145
436
  });
146
437
  if (process.env.NODE_ENV !== "production") Save.propTypes = require_iconPropTypes.iconPropTypes;
147
- const WatsonHealthSaveAnnotation = react.default.forwardRef(function WatsonHealthSaveAnnotation({ children, size = 16, ...rest }, ref) {
148
- return react.default.createElement(require_Icon_js, {
438
+ const WatsonHealthSaveAnnotation = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSaveAnnotation({ children, size = 16, ...rest }, ref) {
439
+ return react.default.createElement(require_Icon.Icon, {
149
440
  width: size,
150
441
  height: size,
151
442
  ref,
@@ -156,8 +447,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
156
447
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.56,15.1l-3.48-4.35A2,2,0,0,0,16.52,10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16.35A2,2,0,0,0,21.56,15.1ZM9,12h6v3H9Zm6,16H9V22h6Zm2,0V22a2,2,0,0,0-2-2H9a2,2,0,0,0-2,2v6H4V12H7v3a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12.6l3,3.75V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H25V18h3V4H8V7H6V4A2,2,0,0,1,8,2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 6H26V8H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 10H26V12H22z" }), children);
157
448
  });
158
449
  if (process.env.NODE_ENV !== "production") WatsonHealthSaveAnnotation.propTypes = require_iconPropTypes.iconPropTypes;
159
- const WatsonHealthSaveImage = react.default.forwardRef(function WatsonHealthSaveImage({ children, size = 16, ...rest }, ref) {
160
- return react.default.createElement(require_Icon_js, {
450
+ const WatsonHealthSaveImage = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSaveImage({ children, size = 16, ...rest }, ref) {
451
+ return react.default.createElement(require_Icon.Icon, {
161
452
  width: size,
162
453
  height: size,
163
454
  ref,
@@ -168,8 +459,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
168
459
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.56,15.1l-3.48-4.35A2,2,0,0,0,16.52,10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16.35A2,2,0,0,0,21.56,15.1ZM9,12h6v3H9Zm6,16H9V22h6Zm2,0V22a2,2,0,0,0-2-2H9a2,2,0,0,0-2,2v6H4V12H7v3a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12.6l3,3.75V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H25V18h3V4H14V7H12V4a2,2,0,0,1,2-2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20Z" }), children);
169
460
  });
170
461
  if (process.env.NODE_ENV !== "production") WatsonHealthSaveImage.propTypes = require_iconPropTypes.iconPropTypes;
171
- const SaveModel = react.default.forwardRef(function SaveModel({ children, size = 16, ...rest }, ref) {
172
- return react.default.createElement(require_Icon_js, {
462
+ const SaveModel = /* @__PURE__ */ react.default.forwardRef(function SaveModel({ children, size = 16, ...rest }, ref) {
463
+ return react.default.createElement(require_Icon.Icon, {
173
464
  width: size,
174
465
  height: size,
175
466
  ref,
@@ -180,8 +471,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
180
471
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,20l1.4272,1.9028L23,26.9629l-4.4272-5.06L20,20h6m1-2H19l-3,4,7,8,7-8-3-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,26H12V18h2V16H12a2,2,0,0,0-2,2v8H6V6h4v4a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V6.41l4,4V16h2V10a1,1,0,0,0-.29-.71l-5-5A.9989.9989,0,0,0,22,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16ZM12,6h8v4H12Z" }), children);
181
472
  });
182
473
  if (process.env.NODE_ENV !== "production") SaveModel.propTypes = require_iconPropTypes.iconPropTypes;
183
- const WatsonHealthSaveSeries = react.default.forwardRef(function WatsonHealthSaveSeries({ children, size = 16, ...rest }, ref) {
184
- return react.default.createElement(require_Icon_js, {
474
+ const WatsonHealthSaveSeries = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthSaveSeries({ children, size = 16, ...rest }, ref) {
475
+ return react.default.createElement(require_Icon.Icon, {
185
476
  width: size,
186
477
  height: size,
187
478
  ref,
@@ -192,8 +483,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
192
483
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.56,15.1l-3.48-4.35A2,2,0,0,0,16.52,10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16.35A2,2,0,0,0,21.56,15.1ZM9,12h6v3H9Zm6,16H9V22h6Zm2,0V22a2,2,0,0,0-2-2H9a2,2,0,0,0-2,2v6H4V12H7v3a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12.6l3,3.75V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,21H25V7H11V5H25a2,2,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32,14H30V2H18V0H30a2,2,0,0,1,2,2Z" }), children);
193
484
  });
194
485
  if (process.env.NODE_ENV !== "production") WatsonHealthSaveSeries.propTypes = require_iconPropTypes.iconPropTypes;
195
- const Scale = react.default.forwardRef(function Scale({ children, size = 16, ...rest }, ref) {
196
- return react.default.createElement(require_Icon_js, {
486
+ const Scale = /* @__PURE__ */ react.default.forwardRef(function Scale({ children, size = 16, ...rest }, ref) {
487
+ return react.default.createElement(require_Icon.Icon, {
197
488
  width: size,
198
489
  height: size,
199
490
  ref,
@@ -204,8 +495,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
204
495
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,17H7a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V19A2,2,0,0,0,13,17ZM7,25V19h6v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,21v2h6a2,2,0,0,0,2-2V7a2,2,0,0,0-2-2H11A2,2,0,0,0,9,7v6h2V7H25V21" }), children);
205
496
  });
206
497
  if (process.env.NODE_ENV !== "production") Scale.propTypes = require_iconPropTypes.iconPropTypes;
207
- const Scales = react.default.forwardRef(function Scales({ children, size = 16, ...rest }, ref) {
208
- return react.default.createElement(require_Icon_js, {
498
+ const Scales = /* @__PURE__ */ react.default.forwardRef(function Scales({ children, size = 16, ...rest }, ref) {
499
+ return react.default.createElement(require_Icon.Icon, {
209
500
  width: size,
210
501
  height: size,
211
502
  ref,
@@ -216,8 +507,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
216
507
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,16a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473L25.896,7.5562a.8913.8913,0,0,0-.0454-.0816A1,1,0,0,0,25,7H18.8218A3.0155,3.0155,0,0,0,17,5.1841V2H15V5.1841A3.0155,3.0155,0,0,0,13.1782,7H7a1,1,0,0,0-.8945.5527l-4,8A1,1,0,0,0,2,16a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473L8.6182,9h4.56A3.0147,3.0147,0,0,0,15,10.8154V28H6v2H26V28H17V10.8159A3.0155,3.0155,0,0,0,18.8218,9h4.56l-3.2763,6.5527A1,1,0,0,0,20,16ZM7,19a2.9958,2.9958,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,7,19Zm2.3821-4H4.6179L7,10.2363ZM16,9a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,9Zm9,10a2.9958,2.9958,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,25,19Zm0-8.7637L27.3821,15H22.6179Z" }), children);
217
508
  });
218
509
  if (process.env.NODE_ENV !== "production") Scales.propTypes = require_iconPropTypes.iconPropTypes;
219
- const ScalesTipped = react.default.forwardRef(function ScalesTipped({ children, size = 16, ...rest }, ref) {
220
- return react.default.createElement(require_Icon_js, {
510
+ const ScalesTipped = /* @__PURE__ */ react.default.forwardRef(function ScalesTipped({ children, size = 16, ...rest }, ref) {
511
+ return react.default.createElement(require_Icon.Icon, {
221
512
  width: size,
222
513
  height: size,
223
514
  ref,
@@ -228,8 +519,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
228
519
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,13a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473l-4-8a1,1,0,0,0-1.2109-.5014l-6.3308,2.11A3.0322,3.0322,0,0,0,17,5.1841V2H15V5.1841a2.9949,2.9949,0,0,0-1.9956,2.76l-6.3208,2.107a1,1,0,0,0-.5781.5014l-4,8A1,1,0,0,0,2,19a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473L8.41,11.584l5.237-1.7456A3.0285,3.0285,0,0,0,15,10.8154V28H6v2H26V28H17V10.8159a2.9951,2.9951,0,0,0,1.9956-2.76l4.03-1.3438-2.92,5.8408A1,1,0,0,0,20,13ZM7,22a2.9956,2.9956,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,7,22Zm2.3821-4H4.6179L7,13.2363ZM16,9a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,9Zm9,7a2.9958,2.9958,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,25,16Zm0-8.7637L27.3821,12H22.6179Z" }), children);
229
520
  });
230
521
  if (process.env.NODE_ENV !== "production") ScalesTipped.propTypes = require_iconPropTypes.iconPropTypes;
231
- const Scalpel = react.default.forwardRef(function Scalpel({ children, size = 16, ...rest }, ref) {
232
- return react.default.createElement(require_Icon_js, {
522
+ const Scalpel = /* @__PURE__ */ react.default.forwardRef(function Scalpel({ children, size = 16, ...rest }, ref) {
523
+ return react.default.createElement(require_Icon.Icon, {
233
524
  width: size,
234
525
  height: size,
235
526
  ref,
@@ -240,8 +531,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
240
531
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.83,5.17a4.1,4.1,0,0,0-5.66,0L.34,28H9.59a5,5,0,0,0,3.53-1.46L28.83,10.83a4,4,0,0,0,0-5.66ZM12.29,18.88l2.09-2.09,2.83,2.83-2.09,2.09Zm-.58,6.24A3,3,0,0,1,9.59,26H5.17l5.71-5.71,2.83,2.83ZM27.41,9.41l-8.79,8.8-2.83-2.83,8.8-8.79a2,2,0,0,1,2.82,0,2,2,0,0,1,0,2.82Z" }), children);
241
532
  });
242
533
  if (process.env.NODE_ENV !== "production") Scalpel.propTypes = require_iconPropTypes.iconPropTypes;
243
- const WatsonHealthScalpelCursor = react.default.forwardRef(function WatsonHealthScalpelCursor({ children, size = 16, ...rest }, ref) {
244
- return react.default.createElement(require_Icon_js, {
534
+ const WatsonHealthScalpelCursor = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthScalpelCursor({ children, size = 16, ...rest }, ref) {
535
+ return react.default.createElement(require_Icon.Icon, {
245
536
  width: size,
246
537
  height: size,
247
538
  ref,
@@ -252,8 +543,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
252
543
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.8281,7.1338a4.0941,4.0941,0,0,0-5.6562,0L.3433,29.9619H9.5889a4.9682,4.9682,0,0,0,3.5356-1.4648L28.8281,12.79a3.9984,3.9984,0,0,0,0-5.6562ZM12.2928,20.8406l2.086-2.0858,2.8293,2.8293L15.1224,23.67ZM11.71,27.083a2.9824,2.9824,0,0,1-2.1215.8789H5.1714l5.7073-5.7072,2.83,2.83ZM27.4141,11.376,18.6221,20.17l-2.8293-2.8292,8.7931-8.7928a2.0471,2.0471,0,0,1,2.8282,0,1.9993,1.9993,0,0,1,0,2.8281Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 4 4 4 4 13 6 13 6 6 13 6 13 4z" }), children);
253
544
  });
254
545
  if (process.env.NODE_ENV !== "production") WatsonHealthScalpelCursor.propTypes = require_iconPropTypes.iconPropTypes;
255
- const WatsonHealthScalpelLasso = react.default.forwardRef(function WatsonHealthScalpelLasso({ children, size = 16, ...rest }, ref) {
256
- return react.default.createElement(require_Icon_js, {
546
+ const WatsonHealthScalpelLasso = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthScalpelLasso({ children, size = 16, ...rest }, ref) {
547
+ return react.default.createElement(require_Icon.Icon, {
257
548
  width: size,
258
549
  height: size,
259
550
  ref,
@@ -264,8 +555,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
264
555
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.8281,7.1338a4.0941,4.0941,0,0,0-5.6562,0L.3433,29.9619H9.5889a4.9682,4.9682,0,0,0,3.5356-1.4648L28.8281,12.79a3.9984,3.9984,0,0,0,0-5.6562ZM12.2928,20.8406l2.086-2.0858,2.8293,2.8293L15.1224,23.67ZM11.71,27.083a2.9824,2.9824,0,0,1-2.1215.8789H5.1714l5.7073-5.7072,2.83,2.83ZM27.4141,11.376,18.6221,20.17l-2.8293-2.8292,8.7931-8.7928a2.0471,2.0471,0,0,1,2.8282,0,1.9993,1.9993,0,0,1,0,2.8281Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,2H7a4.9843,4.9843,0,0,0-3.8633,8.1528A2.9586,2.9586,0,0,0,3,11a2.9945,2.9945,0,0,0,2,2.8154V14a2.0025,2.0025,0,0,1-2,2H2v2H3a4.0045,4.0045,0,0,0,4-4v-.1841A2.9959,2.9959,0,0,0,8.8157,12H11A5,5,0,0,0,11,2ZM6,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,12Zm5-2H8.8157A2.974,2.974,0,0,0,4.394,8.4746,2.9908,2.9908,0,0,1,7,4h4a3,3,0,0,1,0,6Z" }), children);
265
556
  });
266
557
  if (process.env.NODE_ENV !== "production") WatsonHealthScalpelLasso.propTypes = require_iconPropTypes.iconPropTypes;
267
- const WatsonHealthScalpelSelect = react.default.forwardRef(function WatsonHealthScalpelSelect({ children, size = 16, ...rest }, ref) {
268
- return react.default.createElement(require_Icon_js, {
558
+ const WatsonHealthScalpelSelect = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthScalpelSelect({ children, size = 16, ...rest }, ref) {
559
+ return react.default.createElement(require_Icon.Icon, {
269
560
  width: size,
270
561
  height: size,
271
562
  ref,
@@ -276,8 +567,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
276
567
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.8281,7.1719a4.0941,4.0941,0,0,0-5.6562,0L.3433,30H9.5889a4.9682,4.9682,0,0,0,3.5356-1.4648L28.8281,12.8281a3.9984,3.9984,0,0,0,0-5.6562ZM12.2928,20.8787l2.086-2.0859,2.8293,2.8294-2.0857,2.0862ZM11.71,27.1211A2.9824,2.9824,0,0,1,9.5889,28H5.1714l5.7073-5.7072,2.83,2.83Zm15.7037-15.707-8.792,8.7939-2.8293-2.8292,8.7931-8.7929a2.0473,2.0473,0,0,1,2.8282,0,1.9995,1.9995,0,0,1,0,2.8282Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,2a2.9948,2.9948,0,0,0-2.8157,2H7.8156A2.9925,2.9925,0,1,0,4,7.8154v4.3687a3,3,0,1,0,2,0V7.8159A2.9959,2.9959,0,0,0,7.8156,6h4.3686A2.9947,2.9947,0,1,0,15,2ZM5,16a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,5,16ZM5,6A1,1,0,1,1,6,5,1.0008,1.0008,0,0,1,5,6ZM15,6a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,15,6Z" }), children);
277
568
  });
278
569
  if (process.env.NODE_ENV !== "production") WatsonHealthScalpelSelect.propTypes = require_iconPropTypes.iconPropTypes;
279
- const Scan = react.default.forwardRef(function Scan({ children, size = 16, ...rest }, ref) {
280
- return react.default.createElement(require_Icon_js, {
570
+ const Scan = /* @__PURE__ */ react.default.forwardRef(function Scan({ children, size = 16, ...rest }, ref) {
571
+ return react.default.createElement(require_Icon.Icon, {
281
572
  width: size,
282
573
  height: size,
283
574
  ref,
@@ -288,8 +579,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
288
579
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,29H5a2,2,0,0,1-2-2V5A2,2,0,0,1,5,3H21V5H5V27H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 9H17V23H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 9H29V23H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 9H23V23H21z" }), children);
289
580
  });
290
581
  if (process.env.NODE_ENV !== "production") Scan.propTypes = require_iconPropTypes.iconPropTypes;
291
- const ScanAlt = react.default.forwardRef(function ScanAlt({ children, size = 16, ...rest }, ref) {
292
- return react.default.createElement(require_Icon_js, {
582
+ const ScanAlt = /* @__PURE__ */ react.default.forwardRef(function ScanAlt({ children, size = 16, ...rest }, ref) {
583
+ return react.default.createElement(require_Icon.Icon, {
293
584
  width: size,
294
585
  height: size,
295
586
  ref,
@@ -300,8 +591,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
300
591
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24H10a2,2,0,0,1-2-2V19h2v3H22V19h2v3A2,2,0,0,1,22,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H30V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,13H22V10H10v3H8V10a2,2,0,0,1,2-2H22a2,2,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 10 28 10 28 4 22 4 22 2 30 2 30 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 10 2 10 2 2 10 2 10 4 4 4 4 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 30 2 30 2 22 4 22 4 28 10 28 10 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 30 22 30 22 28 28 28 28 22 30 22 30 30z" }), children);
301
592
  });
302
593
  if (process.env.NODE_ENV !== "production") ScanAlt.propTypes = require_iconPropTypes.iconPropTypes;
303
- const ScanDisabled = react.default.forwardRef(function ScanDisabled({ children, size = 16, ...rest }, ref) {
304
- return react.default.createElement(require_Icon_js, {
594
+ const ScanDisabled = /* @__PURE__ */ react.default.forwardRef(function ScanDisabled({ children, size = 16, ...rest }, ref) {
595
+ return react.default.createElement(require_Icon.Icon, {
305
596
  width: size,
306
597
  height: size,
307
598
  ref,
@@ -312,8 +603,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
312
603
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3826,2.0762a.9993.9993,0,0,0-1.09.2168l-26,26A1,1,0,0,0,3,30h8V28H5.4143l4-4H22a2.0021,2.0021,0,0,0,2-2V9.4146l4-4V11h2V3A1,1,0,0,0,29.3826,2.0762ZM22,22H11.4143L22,11.4146Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,17.7554V10h7.7554l2-2H10a2.0025,2.0025,0,0,0-2,2v9.7554Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2 2 2 2 11 4 11 4 4 11 4 11 2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 30 30 30 30 21 28 21 28 28 21 28 21 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 23.755 4 21 2 21 2 25.754 4 23.755z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.755 2 21 2 21 4 23.755 4 25.755 2z" }), children);
313
604
  });
314
605
  if (process.env.NODE_ENV !== "production") ScanDisabled.propTypes = require_iconPropTypes.iconPropTypes;
315
- const ScatterMatrix = react.default.forwardRef(function ScatterMatrix({ children, size = 16, ...rest }, ref) {
316
- return react.default.createElement(require_Icon_js, {
606
+ const ScatterMatrix = /* @__PURE__ */ react.default.forwardRef(function ScatterMatrix({ children, size = 16, ...rest }, ref) {
607
+ return react.default.createElement(require_Icon.Icon, {
317
608
  width: size,
318
609
  height: size,
319
610
  ref,
@@ -336,8 +627,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
336
627
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H4A2.0023,2.0023,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,13H17V4H28ZM15,4V15H4V4ZM4,17H15V28H4ZM17,28V17H28V28Z" }), children);
337
628
  });
338
629
  if (process.env.NODE_ENV !== "production") ScatterMatrix.propTypes = require_iconPropTypes.iconPropTypes;
339
- const Schematics = react.default.forwardRef(function Schematics({ children, size = 16, ...rest }, ref) {
340
- return react.default.createElement(require_Icon_js, {
630
+ const Schematics = /* @__PURE__ */ react.default.forwardRef(function Schematics({ children, size = 16, ...rest }, ref) {
631
+ return react.default.createElement(require_Icon.Icon, {
341
632
  width: size,
342
633
  height: size,
343
634
  ref,
@@ -348,8 +639,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
348
639
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,19.001A4.0056,4.0056,0,0,0,22.9991,15H9.0011A2.0031,2.0031,0,0,1,7,12.9991V9.858A3.9949,3.9949,0,0,0,9.8581,7h12.284a4,4,0,1,0,0-2H9.8581A3.9916,3.9916,0,1,0,5,9.858v3.1411A4.0057,4.0057,0,0,0,9.0011,17h13.998A2.003,2.003,0,0,1,25,19.001V22H22v3H9.8581a4,4,0,1,0,0,2H22v3h8V22H27ZM26,4a2,2,0,1,1-2,2A2.0019,2.0019,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2.0019,2.0019,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.002,2.002,0,0,1,6,28Zm22-4v4H24V24Z" }), children);
349
640
  });
350
641
  if (process.env.NODE_ENV !== "production") Schematics.propTypes = require_iconPropTypes.iconPropTypes;
351
- const ScisControlTower = react.default.forwardRef(function ScisControlTower({ children, size = 16, ...rest }, ref) {
352
- return react.default.createElement(require_Icon_js, {
642
+ const ScisControlTower = /* @__PURE__ */ react.default.forwardRef(function ScisControlTower({ children, size = 16, ...rest }, ref) {
643
+ return react.default.createElement(require_Icon.Icon, {
353
644
  width: size,
354
645
  height: size,
355
646
  ref,
@@ -360,8 +651,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
360
651
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,19c-0.3,0-0.7,0.1-1,0.2L20.4,12c1-1.1,1.6-2.5,1.6-4c0-3.3-2.7-6-6-6s-6,2.7-6,6c0,1.6,0.6,3,1.6,4L6,19.2 C5.7,19.1,5.3,19,5,19c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3c0-0.6-0.2-1.1-0.5-1.6l5.6-7.1c0.6,0.3,1.2,0.5,1.9,0.6v10.3 c-1.2,0.4-2,1.5-2,2.8c0,1.7,1.3,3,3,3s3-1.3,3-3c0-1.3-0.8-2.4-2-2.8V13.9c0.7-0.1,1.3-0.3,1.9-0.6l5.6,7.1c-0.3,0.5-0.5,1-0.5,1.6 c0,1.7,1.3,3,3,3s3-1.3,3-3S28.7,19,27,19z M16,4c2.2,0,4,1.8,4,4s-1.8,4-4,4s-4-1.8-4-4S13.8,4,16,4z M5,23c-0.6,0-1-0.4-1-1 s0.4-1,1-1s1,0.4,1,1S5.6,23,5,23z M16,28c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S16.6,28,16,28z M27,23c-0.6,0-1-0.4-1-1s0.4-1,1-1 s1,0.4,1,1S27.6,23,27,23z" }), children);
361
652
  });
362
653
  if (process.env.NODE_ENV !== "production") ScisControlTower.propTypes = require_iconPropTypes.iconPropTypes;
363
- const ScisTransparentSupply = react.default.forwardRef(function ScisTransparentSupply({ children, size = 16, ...rest }, ref) {
364
- return react.default.createElement(require_Icon_js, {
654
+ const ScisTransparentSupply = /* @__PURE__ */ react.default.forwardRef(function ScisTransparentSupply({ children, size = 16, ...rest }, ref) {
655
+ return react.default.createElement(require_Icon.Icon, {
365
656
  width: size,
366
657
  height: size,
367
658
  ref,
@@ -372,8 +663,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
372
663
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,23v3H8.5a4.5,4.5,0,0,1,0-9H9V15H8.5a6.5,6.5,0,0,0,0,13H23v3h8V23Zm6,6H25V25h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,22H19V19H13v3H11V19a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,16a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,16Zm0-4a1,1,0,1,0,1,1A1.0013,1.0013,0,0,0,16,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,4H9V1H1V9H9V6H23.5a4.5,4.5,0,0,1,0,9H23v2h.5a6.5,6.5,0,0,0,0-13ZM7,7H3V3H7Z" }), children);
373
664
  });
374
665
  if (process.env.NODE_ENV !== "production") ScisTransparentSupply.propTypes = require_iconPropTypes.iconPropTypes;
375
- const Scooter = react.default.forwardRef(function Scooter({ children, size = 16, ...rest }, ref) {
376
- return react.default.createElement(require_Icon_js, {
666
+ const Scooter = /* @__PURE__ */ react.default.forwardRef(function Scooter({ children, size = 16, ...rest }, ref) {
667
+ return react.default.createElement(require_Icon.Icon, {
377
668
  width: size,
378
669
  height: size,
379
670
  ref,
@@ -384,8 +675,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
384
675
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,26,28Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,26,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,8H18v2h6a1,1,0,0,1,0,2H21a1,1,0,0,0-.98,1.1963l.9241,4.6211L18.4338,22h-2.69l-2.5723-8.5752A1.988,1.988,0,0,0,11.2559,12H6v2h5.2561l.6,2H7a5.0057,5.0057,0,0,0-5,5v2a1,1,0,0,0,1,1H4a4,4,0,0,0,8,0h7a1,1,0,0,0,.8574-.4854l3-5a1,1,0,0,0,.1231-.7109L22.22,14H24a3,3,0,0,0,0-6ZM8,26a2.0025,2.0025,0,0,1-2-2h4A2.0025,2.0025,0,0,1,8,26ZM4,22V21a3.0033,3.0033,0,0,1,3-3h5.4561l1.2,4Z" }), children);
385
676
  });
386
677
  if (process.env.NODE_ENV !== "production") Scooter.propTypes = require_iconPropTypes.iconPropTypes;
387
- const ScooterFront = react.default.forwardRef(function ScooterFront({ children, size = 16, ...rest }, ref) {
388
- return react.default.createElement(require_Icon_js, {
678
+ const ScooterFront = /* @__PURE__ */ react.default.forwardRef(function ScooterFront({ children, size = 16, ...rest }, ref) {
679
+ return react.default.createElement(require_Icon.Icon, {
389
680
  width: size,
390
681
  height: size,
391
682
  ref,
@@ -396,8 +687,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
396
687
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 19H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,10V8H20a2.0025,2.0025,0,0,0-2-2H14a2.0025,2.0025,0,0,0-2,2H9v2h3v4.1841A2.9957,2.9957,0,0,0,10,17v7h2V17a1.0008,1.0008,0,0,1,1-1h6a1.0008,1.0008,0,0,1,1,1v7h2V17a2.9957,2.9957,0,0,0-2-2.8159V10ZM18,8v6H14V8Z" }), children);
397
688
  });
398
689
  if (process.env.NODE_ENV !== "production") ScooterFront.propTypes = require_iconPropTypes.iconPropTypes;
399
- const Screen = react.default.forwardRef(function Screen({ children, size = 16, ...rest }, ref) {
400
- return react.default.createElement(require_Icon_js, {
690
+ const Screen = /* @__PURE__ */ react.default.forwardRef(function Screen({ children, size = 16, ...rest }, ref) {
691
+ return react.default.createElement(require_Icon.Icon, {
401
692
  width: size,
402
693
  height: size,
403
694
  ref,
@@ -408,8 +699,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
408
699
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM18,28H14V24h4Zm10-6H4V6H28Z" }), children);
409
700
  });
410
701
  if (process.env.NODE_ENV !== "production") Screen.propTypes = require_iconPropTypes.iconPropTypes;
411
- const ScreenOff = react.default.forwardRef(function ScreenOff({ children, size = 16, ...rest }, ref) {
412
- return react.default.createElement(require_Icon_js, {
702
+ const ScreenOff = /* @__PURE__ */ react.default.forwardRef(function ScreenOff({ children, size = 16, ...rest }, ref) {
703
+ return react.default.createElement(require_Icon.Icon, {
413
704
  width: size,
414
705
  height: size,
415
706
  ref,
@@ -420,8 +711,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
420
711
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,22H11.41L30,3.41,28.59,2l-2,2H4A2,2,0,0,0,2,6V22H4V6H24.59L2,28.59,3.41,30l6-6H12v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V9H28ZM18,28H14V24h4Z" }), children);
421
712
  });
422
713
  if (process.env.NODE_ENV !== "production") ScreenOff.propTypes = require_iconPropTypes.iconPropTypes;
423
- const ScreenMap = react.default.forwardRef(function ScreenMap({ children, size = 16, ...rest }, ref) {
424
- return react.default.createElement(require_Icon_js, {
714
+ const ScreenMap = /* @__PURE__ */ react.default.forwardRef(function ScreenMap({ children, size = 16, ...rest }, ref) {
715
+ return react.default.createElement(require_Icon.Icon, {
425
716
  width: size,
426
717
  height: size,
427
718
  ref,
@@ -432,8 +723,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
432
723
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 25H30V27H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 21H30V23H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.4141 11 23 11 23 9 15 9 15 17 17 17 17 12.4141 23.5859 19 25 17.5859 18.4141 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,3H4c-1.1028,0-2,.8975-2,2V21c0,1.1025,.8972,2,2,2H12v4h-4v2h12v-8H4V5H28v14h2V5c0-1.1025-.8972-2-2-2Zm-10,24h-4v-4h4v4Z" }), children);
433
724
  });
434
725
  if (process.env.NODE_ENV !== "production") ScreenMap.propTypes = require_iconPropTypes.iconPropTypes;
435
- const ScreenMapSet = react.default.forwardRef(function ScreenMapSet({ children, size = 16, ...rest }, ref) {
436
- return react.default.createElement(require_Icon_js, {
726
+ const ScreenMapSet = /* @__PURE__ */ react.default.forwardRef(function ScreenMapSet({ children, size = 16, ...rest }, ref) {
727
+ return react.default.createElement(require_Icon.Icon, {
437
728
  width: size,
438
729
  height: size,
439
730
  ref,
@@ -444,8 +735,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
444
735
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 26H31V28H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 22H31V24H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.4141 12 25 12 25 10 17 10 17 18 19 18 19 13.4141 25.5859 20 27 18.5859 20.4141 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,7H29v12h2V7c0-1.1025-.8972-2-2-2H7c-1.1028,0-2,.8975-2,2v15c0,1.1025,.8972,2,2,2h7v4h-4v2h12v-8H7V7Zm13,21h-4v-4h4v4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,3V1H3C1.8972,1,1,1.8965,1,3v15H3V3H26Z" }), children);
445
736
  });
446
737
  if (process.env.NODE_ENV !== "production") ScreenMapSet.propTypes = require_iconPropTypes.iconPropTypes;
447
- const Script = react.default.forwardRef(function Script({ children, size = 16, ...rest }, ref) {
448
- return react.default.createElement(require_Icon_js, {
738
+ const Script = /* @__PURE__ */ react.default.forwardRef(function Script({ children, size = 16, ...rest }, ref) {
739
+ return react.default.createElement(require_Icon.Icon, {
449
740
  width: size,
450
741
  height: size,
451
742
  ref,
@@ -456,8 +747,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
456
747
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.83 26 21.41 23.42 20 22 16 26 20 30 21.42 28.59 18.83 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.17 26 24.59 28.58 26 30 30 26 26 22 24.58 23.41 27.17 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v6h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h6ZM18,4.4,23.6,10H18Z" }), children);
457
748
  });
458
749
  if (process.env.NODE_ENV !== "production") Script.propTypes = require_iconPropTypes.iconPropTypes;
459
- const ScriptReference = react.default.forwardRef(function ScriptReference({ children, size = 16, ...rest }, ref) {
460
- return react.default.createElement(require_Icon_js, {
750
+ const ScriptReference = /* @__PURE__ */ react.default.forwardRef(function ScriptReference({ children, size = 16, ...rest }, ref) {
751
+ return react.default.createElement(require_Icon.Icon, {
461
752
  width: size,
462
753
  height: size,
463
754
  ref,
@@ -468,8 +759,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
468
759
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.17 26 24.59 28.58 26 30 30 26 26 22 24.58 23.41 27.17 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.83 26 21.41 23.42 20 22 16 26 20 30 21.42 28.59 18.83 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.7,9.3l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V16H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v6h2V10A.9092.9092,0,0,0,25.7,9.3ZM18,10V4.4L23.6,10Z" }), children);
469
760
  });
470
761
  if (process.env.NODE_ENV !== "production") ScriptReference.propTypes = require_iconPropTypes.iconPropTypes;
471
- const Sdk = react.default.forwardRef(function Sdk({ children, size = 16, ...rest }, ref) {
472
- return react.default.createElement(require_Icon_js, {
762
+ const Sdk = /* @__PURE__ */ react.default.forwardRef(function Sdk({ children, size = 16, ...rest }, ref) {
763
+ return react.default.createElement(require_Icon.Icon, {
473
764
  width: size,
474
765
  height: size,
475
766
  ref,
@@ -480,8 +771,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
480
771
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 9 27.9 9 24 15.6 24 9 22 9 22 23 24 23 24 18.7 24.9 17.2 27.9 23 30 23 26.1 15.4 30 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23H12V9h4a4.0118,4.0118,0,0,1,4,4v6A4.0118,4.0118,0,0,1,16,23Zm-2-2h2a2.0059,2.0059,0,0,0,2-2V13a2.0059,2.0059,0,0,0-2-2H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,23H2V21H8V17H4a2.0059,2.0059,0,0,1-2-2V11A2.0059,2.0059,0,0,1,4,9h6v2H4v4H8a2.0059,2.0059,0,0,1,2,2v4A2.0059,2.0059,0,0,1,8,23Z" }), children);
481
772
  });
482
773
  if (process.env.NODE_ENV !== "production") Sdk.propTypes = require_iconPropTypes.iconPropTypes;
483
- const Search = react.default.forwardRef(function Search({ children, size = 16, ...rest }, ref) {
484
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
774
+ const Search = /* @__PURE__ */ react.default.forwardRef(function Search({ children, size = 16, ...rest }, ref) {
775
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
485
776
  width: size,
486
777
  height: size,
487
778
  ref,
@@ -490,7 +781,7 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
490
781
  fill: "currentColor",
491
782
  ...rest
492
783
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,14.3L10.7,10c1.9-2.3,1.6-5.8-0.7-7.7S4.2,0.7,2.3,3S0.7,8.8,3,10.7c2,1.7,5,1.7,7,0l4.3,4.3L15,14.3z M2,6.5 C2,4,4,2,6.5,2S11,4,11,6.5S9,11,6.5,11S2,9,2,6.5z" }), children);
493
- return react.default.createElement(require_Icon_js, {
784
+ return react.default.createElement(require_Icon.Icon, {
494
785
  width: size,
495
786
  height: size,
496
787
  ref,
@@ -501,8 +792,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
501
792
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z" }), children);
502
793
  });
503
794
  if (process.env.NODE_ENV !== "production") Search.propTypes = require_iconPropTypes.iconPropTypes;
504
- const SearchAdvanced = react.default.forwardRef(function SearchAdvanced({ children, size = 16, ...rest }, ref) {
505
- return react.default.createElement(require_Icon_js, {
795
+ const SearchAdvanced = /* @__PURE__ */ react.default.forwardRef(function SearchAdvanced({ children, size = 16, ...rest }, ref) {
796
+ return react.default.createElement(require_Icon.Icon, {
506
797
  width: size,
507
798
  height: size,
508
799
  ref,
@@ -513,8 +804,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
513
804
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 6 26 6 26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,28.5859l-5.9751-5.9751a9.0234,9.0234,0,1,0-1.4141,1.4141L22.5859,30ZM4,17a7,7,0,1,1,7,7A7.0078,7.0078,0,0,1,4,17Z" }), children);
514
805
  });
515
806
  if (process.env.NODE_ENV !== "production") SearchAdvanced.propTypes = require_iconPropTypes.iconPropTypes;
516
- const SearchLocate = react.default.forwardRef(function SearchLocate({ children, size = 16, ...rest }, ref) {
517
- return react.default.createElement(require_Icon_js, {
807
+ const SearchLocate = /* @__PURE__ */ react.default.forwardRef(function SearchLocate({ children, size = 16, ...rest }, ref) {
808
+ return react.default.createElement(require_Icon.Icon, {
518
809
  width: size,
519
810
  height: size,
520
811
  ref,
@@ -525,8 +816,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
525
816
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28.5859l-4.6885-4.6884a8.028,8.028,0,1,0-1.414,1.414L28.5859,30ZM19,25a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,19,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H10V14H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H18V4H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 7H18V9H2z" }), children);
526
817
  });
527
818
  if (process.env.NODE_ENV !== "production") SearchLocate.propTypes = require_iconPropTypes.iconPropTypes;
528
- const SearchLocateMirror = react.default.forwardRef(function SearchLocateMirror({ children, size = 16, ...rest }, ref) {
529
- return react.default.createElement(require_Icon_js, {
819
+ const SearchLocateMirror = /* @__PURE__ */ react.default.forwardRef(function SearchLocateMirror({ children, size = 16, ...rest }, ref) {
820
+ return react.default.createElement(require_Icon.Icon, {
530
821
  width: size,
531
822
  height: size,
532
823
  ref,
@@ -537,8 +828,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
537
828
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,28.6l-4.7-4.7c1.1-1.4,1.7-3.1,1.7-4.9c0-4.4-3.6-8-8-8s-8,3.6-8,8s3.6,8,8,8c1.8,0,3.5-0.6,4.9-1.7l4.7,4.7L21,28.6z M10,25c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S13.3,25,10,25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 12H30V14H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 7H30V9H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 2H30V4H14z" }), children);
538
829
  });
539
830
  if (process.env.NODE_ENV !== "production") SearchLocateMirror.propTypes = require_iconPropTypes.iconPropTypes;
540
- const Security = react.default.forwardRef(function Security({ children, size = 16, ...rest }, ref) {
541
- return react.default.createElement(require_Icon_js, {
831
+ const Security = /* @__PURE__ */ react.default.forwardRef(function Security({ children, size = 16, ...rest }, ref) {
832
+ return react.default.createElement(require_Icon.Icon, {
542
833
  width: size,
543
834
  height: size,
544
835
  ref,
@@ -549,8 +840,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
549
840
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 16.59 11.41 14 10 15.41 14 19.41 22 11.41 20.59 10 14 16.59z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30,9.8242,26.7071A10.9818,10.9818,0,0,1,4,17V4A2.0021,2.0021,0,0,1,6,2H26a2.0021,2.0021,0,0,1,2,2V17a10.9818,10.9818,0,0,1-5.8242,9.7071ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z" }), children);
550
841
  });
551
842
  if (process.env.NODE_ENV !== "production") Security.propTypes = require_iconPropTypes.iconPropTypes;
552
- const SecurityServices = react.default.forwardRef(function SecurityServices({ children, size = 16, ...rest }, ref) {
553
- return react.default.createElement(require_Icon_js, {
843
+ const SecurityServices = /* @__PURE__ */ react.default.forwardRef(function SecurityServices({ children, size = 16, ...rest }, ref) {
844
+ return react.default.createElement(require_Icon.Icon, {
554
845
  width: size,
555
846
  height: size,
556
847
  ref,
@@ -561,8 +852,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
561
852
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,26.667l-3.2344-1.7246A8.9858,8.9858,0,0,1,6,17V4H26V14h2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,28.9336Z" }), children);
562
853
  });
563
854
  if (process.env.NODE_ENV !== "production") SecurityServices.propTypes = require_iconPropTypes.iconPropTypes;
564
- const Select_01 = react.default.forwardRef(function Select_01({ children, size = 16, ...rest }, ref) {
565
- return react.default.createElement(require_Icon_js, {
855
+ const Select_01 = /* @__PURE__ */ react.default.forwardRef(function Select_01({ children, size = 16, ...rest }, ref) {
856
+ return react.default.createElement(require_Icon.Icon, {
566
857
  width: size,
567
858
  height: size,
568
859
  ref,
@@ -573,8 +864,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
573
864
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6 8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 6H20V8H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,6V8h4v4h2V8a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 16H8V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,28V24H6v4a2,2,0,0,0,2,2h4V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 16H30V20H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28H20V30H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,24v4H24v2h4a2,2,0,0,0,2-2V24Z" }), children);
574
865
  });
575
866
  if (process.env.NODE_ENV !== "production") Select_01.propTypes = require_iconPropTypes.iconPropTypes;
576
- const Select_02 = react.default.forwardRef(function Select_02({ children, size = 16, ...rest }, ref) {
577
- return react.default.createElement(require_Icon_js, {
867
+ const Select_02 = /* @__PURE__ */ react.default.forwardRef(function Select_02({ children, size = 16, ...rest }, ref) {
868
+ return react.default.createElement(require_Icon.Icon, {
578
869
  width: size,
579
870
  height: size,
580
871
  ref,
@@ -585,8 +876,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
585
876
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6 8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,10V4H24V6H16V8h8v2h2V24H24v2H10V24H8V16H6v8H4v6h6V28H24v2h6V24H28V10ZM8,28H6V26H8Zm20,0H26V26h2ZM26,6h2V8H26Z" }), children);
586
877
  });
587
878
  if (process.env.NODE_ENV !== "production") Select_02.propTypes = require_iconPropTypes.iconPropTypes;
588
- const SelectWindow = react.default.forwardRef(function SelectWindow({ children, size = 16, ...rest }, ref) {
589
- return react.default.createElement(require_Icon_js, {
879
+ const SelectWindow = /* @__PURE__ */ react.default.forwardRef(function SelectWindow({ children, size = 16, ...rest }, ref) {
880
+ return react.default.createElement(require_Icon.Icon, {
590
881
  width: size,
591
882
  height: size,
592
883
  ref,
@@ -597,8 +888,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
597
888
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26H4a2.0021,2.0021,0,0,1-2-2V20H4v4H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H4V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,8H24V4H20V2h4a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H16V4H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,8H2V4A2.0021,2.0021,0,0,1,4,2H8V4H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,32a.9967.9967,0,0,1-.707-.293l-6.1377-6.1377L16.832,30.5547a1,1,0,0,1-1.79-.2676l-6-20A1,1,0,0,1,10.2871,9.042l20,6a1,1,0,0,1,.2676,1.79l-4.9854,3.3233L31.707,26.293a.9994.9994,0,0,1,0,1.414l-4,4A.9967.9967,0,0,1,27,32Zm0-2.4141L29.5859,27,22.431,19.845l5.2458-3.4978L11.4917,11.4917l4.8555,16.1851L19.845,22.431Z" }), children);
598
889
  });
599
890
  if (process.env.NODE_ENV !== "production") SelectWindow.propTypes = require_iconPropTypes.iconPropTypes;
600
- const Send = react.default.forwardRef(function Send({ children, size = 16, ...rest }, ref) {
601
- return react.default.createElement(require_Icon_js, {
891
+ const Send = /* @__PURE__ */ react.default.forwardRef(function Send({ children, size = 16, ...rest }, ref) {
892
+ return react.default.createElement(require_Icon.Icon, {
602
893
  width: size,
603
894
  height: size,
604
895
  ref,
@@ -609,8 +900,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
609
900
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.45,15.11l-22-11a1,1,0,0,0-1.08.12,1,1,0,0,0-.33,1L7,16,4,26.74A1,1,0,0,0,5,28a1,1,0,0,0,.45-.11l22-11a1,1,0,0,0,0-1.78Zm-20.9,10L8.76,17H18V15H8.76L6.55,6.89,24.76,16Z" }), children);
610
901
  });
611
902
  if (process.env.NODE_ENV !== "production") Send.propTypes = require_iconPropTypes.iconPropTypes;
612
- const SendAlt = react.default.forwardRef(function SendAlt({ children, size = 16, ...rest }, ref) {
613
- return react.default.createElement(require_Icon_js, {
903
+ const SendAlt = /* @__PURE__ */ react.default.forwardRef(function SendAlt({ children, size = 16, ...rest }, ref) {
904
+ return react.default.createElement(require_Icon.Icon, {
614
905
  width: size,
615
906
  height: size,
616
907
  ref,
@@ -621,8 +912,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
621
912
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.71,4.29a1,1,0,0,0-1.05-.23l-22,8a1,1,0,0,0,0,1.87l9.6,3.84,3.84,9.6A1,1,0,0,0,19,28h0a1,1,0,0,0,.92-.66l8-22A1,1,0,0,0,27.71,4.29ZM19,24.2l-2.79-7L21,12.41,19.59,11l-4.83,4.83L7.8,13,25.33,6.67Z" }), children);
622
913
  });
623
914
  if (process.env.NODE_ENV !== "production") SendAlt.propTypes = require_iconPropTypes.iconPropTypes;
624
- const SendAltFilled = react.default.forwardRef(function SendAltFilled({ children, size = 16, ...rest }, ref) {
625
- return react.default.createElement(require_Icon_js, {
915
+ const SendAltFilled = /* @__PURE__ */ react.default.forwardRef(function SendAltFilled({ children, size = 16, ...rest }, ref) {
916
+ return react.default.createElement(require_Icon.Icon, {
626
917
  width: size,
627
918
  height: size,
628
919
  ref,
@@ -633,8 +924,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
633
924
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.71,4.29a1,1,0,0,0-1.05-.23l-22,8a1,1,0,0,0,0,1.87l8.59,3.43L19.59,11,21,12.41l-6.37,6.37,3.44,8.59A1,1,0,0,0,19,28h0a1,1,0,0,0,.92-.66l8-22A1,1,0,0,0,27.71,4.29Z" }), children);
634
925
  });
635
926
  if (process.env.NODE_ENV !== "production") SendAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
636
- const SendFilled = react.default.forwardRef(function SendFilled({ children, size = 16, ...rest }, ref) {
637
- return react.default.createElement(require_Icon_js, {
927
+ const SendFilled = /* @__PURE__ */ react.default.forwardRef(function SendFilled({ children, size = 16, ...rest }, ref) {
928
+ return react.default.createElement(require_Icon.Icon, {
638
929
  width: size,
639
930
  height: size,
640
931
  ref,
@@ -645,8 +936,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
645
936
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.45,15.11l-22-11a1,1,0,0,0-1.08.12,1,1,0,0,0-.33,1L6.69,15H18v2H6.69L4,26.74A1,1,0,0,0,5,28a1,1,0,0,0,.45-.11l22-11a1,1,0,0,0,0-1.78Z" }), children);
646
937
  });
647
938
  if (process.env.NODE_ENV !== "production") SendFilled.propTypes = require_iconPropTypes.iconPropTypes;
648
- const SendActionUsage = react.default.forwardRef(function SendActionUsage({ children, size = 16, ...rest }, ref) {
649
- return react.default.createElement(require_Icon_js, {
939
+ const SendActionUsage = /* @__PURE__ */ react.default.forwardRef(function SendActionUsage({ children, size = 16, ...rest }, ref) {
940
+ return react.default.createElement(require_Icon.Icon, {
650
941
  width: size,
651
942
  height: size,
652
943
  ref,
@@ -663,8 +954,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
663
954
  }), children);
664
955
  });
665
956
  if (process.env.NODE_ENV !== "production") SendActionUsage.propTypes = require_iconPropTypes.iconPropTypes;
666
- const SendBackward = react.default.forwardRef(function SendBackward({ children, size = 16, ...rest }, ref) {
667
- return react.default.createElement(require_Icon_js, {
957
+ const SendBackward = /* @__PURE__ */ react.default.forwardRef(function SendBackward({ children, size = 16, ...rest }, ref) {
958
+ return react.default.createElement(require_Icon.Icon, {
668
959
  width: size,
669
960
  height: size,
670
961
  ref,
@@ -675,8 +966,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
675
966
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,7H2V4A2.0023,2.0023,0,0,1,4,2H7V4H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,22H4a2.0023,2.0023,0,0,1-2-2V17H4v3H7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 10H4V14H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,7H20V4H17V2h3a2.0023,2.0023,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 2H14V4H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H12a2.0023,2.0023,0,0,1-2-2V12a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM12,12V28H28V12Z" }), children);
676
967
  });
677
968
  if (process.env.NODE_ENV !== "production") SendBackward.propTypes = require_iconPropTypes.iconPropTypes;
678
- const SendToBack = react.default.forwardRef(function SendToBack({ children, size = 16, ...rest }, ref) {
679
- return react.default.createElement(require_Icon_js, {
969
+ const SendToBack = /* @__PURE__ */ react.default.forwardRef(function SendToBack({ children, size = 16, ...rest }, ref) {
970
+ return react.default.createElement(require_Icon.Icon, {
680
971
  width: size,
681
972
  height: size,
682
973
  ref,
@@ -687,8 +978,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
687
978
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2h6v6a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V12A2.0023,2.0023,0,0,0,28,10ZM12,28V12H28l.0015,16Z" }), children);
688
979
  });
689
980
  if (process.env.NODE_ENV !== "production") SendToBack.propTypes = require_iconPropTypes.iconPropTypes;
690
- const SequentialPalette = react.default.forwardRef(function SequentialPalette({ children, size = 16, ...rest }, ref) {
691
- return react.default.createElement(require_Icon_js, {
981
+ const SequentialPalette = /* @__PURE__ */ react.default.forwardRef(function SequentialPalette({ children, size = 16, ...rest }, ref) {
982
+ return react.default.createElement(require_Icon.Icon, {
692
983
  width: size,
693
984
  height: size,
694
985
  ref,
@@ -699,8 +990,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
699
990
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.9961,20H2v-7.994h7.9961v7.994ZM3.999,18.0015h3.9981v-3.997h-3.9981v3.997ZM30,12h-7.9961v7.994h7.9961v-7.994ZM12.0151,12.006v7.994h7.9961v-7.994s-7.9961,0-7.9961,0ZM14.0142,17.9762v-3.9717h3.9728s-3.9728,3.9717-3.9728,3.9717Z" }), children);
700
991
  });
701
992
  if (process.env.NODE_ENV !== "production") SequentialPalette.propTypes = require_iconPropTypes.iconPropTypes;
702
- const ServerDns = react.default.forwardRef(function ServerDns({ children, size = 16, ...rest }, ref) {
703
- return react.default.createElement(require_Icon_js, {
993
+ const ServerDns = /* @__PURE__ */ react.default.forwardRef(function ServerDns({ children, size = 16, ...rest }, ref) {
994
+ return react.default.createElement(require_Icon.Icon, {
704
995
  width: size,
705
996
  height: size,
706
997
  ref,
@@ -715,8 +1006,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
715
1006
  }), children);
716
1007
  });
717
1008
  if (process.env.NODE_ENV !== "production") ServerDns.propTypes = require_iconPropTypes.iconPropTypes;
718
- const ServerProxy = react.default.forwardRef(function ServerProxy({ children, size = 16, ...rest }, ref) {
719
- return react.default.createElement(require_Icon_js, {
1009
+ const ServerProxy = /* @__PURE__ */ react.default.forwardRef(function ServerProxy({ children, size = 16, ...rest }, ref) {
1010
+ return react.default.createElement(require_Icon.Icon, {
720
1011
  width: size,
721
1012
  height: size,
722
1013
  ref,
@@ -731,8 +1022,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
731
1022
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2,24.59,3.41,27.17,6H22.315A6.9835,6.9835,0,0,0,9.08,10H4.83L7.41,7.41,6,6,1,11l5,5,1.41-1.41L4.83,12H9.685A6.9835,6.9835,0,0,0,22.92,8h4.25l-2.58,2.59L26,12l5-5ZM21,9a4.983,4.983,0,0,1-8.9745,3H16V10H11.1011a4.9852,4.9852,0,0,1,8.8734-4H16V8h4.8989A5.0019,5.0019,0,0,1,21,9Z" }), children);
732
1023
  });
733
1024
  if (process.env.NODE_ENV !== "production") ServerProxy.propTypes = require_iconPropTypes.iconPropTypes;
734
- const ServerTime = react.default.forwardRef(function ServerTime({ children, size = 16, ...rest }, ref) {
735
- return react.default.createElement(require_Icon_js, {
1025
+ const ServerTime = /* @__PURE__ */ react.default.forwardRef(function ServerTime({ children, size = 16, ...rest }, ref) {
1026
+ return react.default.createElement(require_Icon.Icon, {
736
1027
  width: size,
737
1028
  height: size,
738
1029
  ref,
@@ -747,8 +1038,20 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
747
1038
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 11.586 17 9.586 17 6 15 6 15 10.414 17.586 13 19 11.586z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,18a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,16,18ZM16,4a6,6,0,1,0,6,6A6.0067,6.0067,0,0,0,16,4Z" }), children);
748
1039
  });
749
1040
  if (process.env.NODE_ENV !== "production") ServerTime.propTypes = require_iconPropTypes.iconPropTypes;
750
- const ServerlessFleet = react.default.forwardRef(function ServerlessFleet({ children, size = 16, ...rest }, ref) {
751
- return react.default.createElement(require_Icon_js, {
1041
+ const ServerTimeUsage = /* @__PURE__ */ react.default.forwardRef(function ServerTimeUsage({ children, size = 16, ...rest }, ref) {
1042
+ return react.default.createElement(require_Icon.Icon, {
1043
+ width: size,
1044
+ height: size,
1045
+ ref,
1046
+ xmlns: "http://www.w3.org/2000/svg",
1047
+ viewBox: "0 0 32 32",
1048
+ fill: "currentColor",
1049
+ ...rest
1050
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,25c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM30,28v-6c0-1.1025-.8975-2-2-2H4c-1.103,0-2,.8975-2,2v6c0,1.1025.897,2,2,2h24c1.1025,0,2-.8975,2-2ZM28,22v6H4l-.0015-6h24.0015ZM24,10c0-4.4111-3.5889-8-8-8s-8,3.5889-8,8,3.5889,8,8,8,8-3.5889,8-8ZM22,10c0,3.3086-2.6914,6-6,6s-6-2.6914-6-6,2.6914-6,6-6,6,2.6914,6,6ZM16,10h6c0-1.5907-.6326-3.1179-1.7574-4.2426s-2.652-1.7574-4.2426-1.7574v6Z" }), children);
1051
+ });
1052
+ if (process.env.NODE_ENV !== "production") ServerTimeUsage.propTypes = require_iconPropTypes.iconPropTypes;
1053
+ const ServerlessFleet = /* @__PURE__ */ react.default.forwardRef(function ServerlessFleet({ children, size = 16, ...rest }, ref) {
1054
+ return react.default.createElement(require_Icon.Icon, {
752
1055
  width: size,
753
1056
  height: size,
754
1057
  ref,
@@ -759,8 +1062,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
759
1062
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.7 19.3 17.3 20.7 21 24.4 28.7 16.7 27.3 15.3 21 21.6 18.7 19.3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,12v11c0,1.1.9,2,2,2h4v-2h-4v-11h8v4h2v-4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,4h8v-2H4c-1.1,0-2,.9-2,2v8h2V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,8v8h2v-8h8v-2h-8c-1.1,0-2,.9-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,22v6H4v-6h-2v6c0,1.1.9,2,2,2h24c1.1,0,2-.9,2-2v-6h-2Z" }), children);
760
1063
  });
761
1064
  if (process.env.NODE_ENV !== "production") ServerlessFleet.propTypes = require_iconPropTypes.iconPropTypes;
762
- const ServiceDesk = react.default.forwardRef(function ServiceDesk({ children, size = 16, ...rest }, ref) {
763
- return react.default.createElement(require_Icon_js, {
1065
+ const ServiceDesk = /* @__PURE__ */ react.default.forwardRef(function ServiceDesk({ children, size = 16, ...rest }, ref) {
1066
+ return react.default.createElement(require_Icon.Icon, {
764
1067
  width: size,
765
1068
  height: size,
766
1069
  ref,
@@ -774,8 +1077,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
774
1077
  }), children);
775
1078
  });
776
1079
  if (process.env.NODE_ENV !== "production") ServiceDesk.propTypes = require_iconPropTypes.iconPropTypes;
777
- const ServiceId = react.default.forwardRef(function ServiceId({ children, size = 16, ...rest }, ref) {
778
- return react.default.createElement(require_Icon_js, {
1080
+ const ServiceId = /* @__PURE__ */ react.default.forwardRef(function ServiceId({ children, size = 16, ...rest }, ref) {
1081
+ return react.default.createElement(require_Icon.Icon, {
779
1082
  width: size,
780
1083
  height: size,
781
1084
  ref,
@@ -786,8 +1089,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
786
1089
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24v-2h-2.101c-0.13-0.637-0.384-1.229-0.732-1.753l1.49-1.49l-1.414-1.414l-1.49,1.49 c-0.524-0.348-1.116-0.602-1.753-0.732V16h-2v2.101c-0.637,0.13-1.229,0.384-1.753,0.732l-1.49-1.49l-1.414,1.414l1.49,1.49 c-0.348,0.524-0.602,1.116-0.732,1.753H16v2h2.101c0.13,0.637,0.384,1.229,0.732,1.753l-1.49,1.49l1.414,1.414l1.49-1.49 c0.524,0.348,1.116,0.602,1.753,0.732V30h2v-2.101c0.637-0.13,1.229-0.384,1.753-0.732l1.49,1.49l1.414-1.414l-1.49-1.49 c0.348-0.524,0.602-1.116,0.732-1.753H30z M23,26c-1.654,0-3-1.346-3-3s1.346-3,3-3s3,1.346,3,3S24.654,26,23,26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6H16V8H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,28V4h16v9h2V4c0-1.103-0.897-2-2-2H6C4.897,2,4,2.897,4,4v24c0,1.103,0.897,2,2,2h8v-2H6z" }), children);
787
1090
  });
788
1091
  if (process.env.NODE_ENV !== "production") ServiceId.propTypes = require_iconPropTypes.iconPropTypes;
789
- const ServiceLevels = react.default.forwardRef(function ServiceLevels({ children, size = 16, ...rest }, ref) {
790
- return react.default.createElement(require_Icon_js, {
1092
+ const ServiceLevels = /* @__PURE__ */ react.default.forwardRef(function ServiceLevels({ children, size = 16, ...rest }, ref) {
1093
+ return react.default.createElement(require_Icon.Icon, {
791
1094
  width: size,
792
1095
  height: size,
793
1096
  ref,
@@ -814,8 +1117,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
814
1117
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,20h-2c0-1.2616-.1946-2.5042-.5786-3.6929l1.9033-.6146c.448,1.3876.6753,2.8369.6753,4.3075Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29.8508,8.9775l-2.4368,2.4365-.0005-.0005c-.3621.3623-.8621.5864-1.4136.5864-1.103,0-2-.897-2-2,0-.5518.2241-1.0518.5864-1.4136l-.0005-.0005,2.4368-2.4365c-.3284-.0879-.667-.1494-1.0227-.1494-2.2056,0-4,1.7944-4,4,0,.7393.2153,1.4238.5669,2.019l-4.5479,4.5479c-.595-.3516-1.2795-.5669-2.019-.5669-2.2056,0-4,1.7944-4,4s1.7944,4,4,4,4-1.7944,4-4c0-.7397-.2153-1.4243-.5669-2.019l4.5479-4.5479c.595.3516,1.2795.5669,2.019.5669,2.2056,0,4-1.7944,4-4,0-.3555-.0615-.6943-.1492-1.0225Zm-13.8508,13.0225c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m4,20h-2c0-7.7196,6.2803-14,14-14,1.4707,0,2.9199.2272,4.3074.6754l-.6147,1.9031c-1.1885-.3838-2.4309-.5785-3.6926-.5785-6.6167,0-12,5.3832-12,12Z" }), children);
815
1118
  });
816
1119
  if (process.env.NODE_ENV !== "production") ServiceLevels.propTypes = require_iconPropTypes.iconPropTypes;
817
- const SessionBorderControl = react.default.forwardRef(function SessionBorderControl({ children, size = 16, ...rest }, ref) {
818
- return react.default.createElement(require_Icon_js, {
1120
+ const SessionBorderControl = /* @__PURE__ */ react.default.forwardRef(function SessionBorderControl({ children, size = 16, ...rest }, ref) {
1121
+ return react.default.createElement(require_Icon.Icon, {
819
1122
  width: size,
820
1123
  height: size,
821
1124
  ref,
@@ -826,8 +1129,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
826
1129
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,8,24.59,9.41,27.17,12H16a5.967,5.967,0,0,0-4,1.54V6.83l2.59,2.58L16,8,11,3,6,8,7.41,9.41,10,6.83V18a5.969,5.969,0,0,0,1.54,4H4.83l2.58-2.59L6,18,1,23l5,5,1.41-1.41L4.83,24H16A5.99,5.99,0,0,0,20.46,14h6.71l-2.58,2.59L26,18l5-5ZM20,18a4,4,0,1,1-4-4A4.0045,4.0045,0,0,1,20,18Z" }), children);
827
1130
  });
828
1131
  if (process.env.NODE_ENV !== "production") SessionBorderControl.propTypes = require_iconPropTypes.iconPropTypes;
829
- const Settings = react.default.forwardRef(function Settings({ children, size = 16, ...rest }, ref) {
830
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1132
+ const Settings = /* @__PURE__ */ react.default.forwardRef(function Settings({ children, size = 16, ...rest }, ref) {
1133
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
831
1134
  width: size,
832
1135
  height: size,
833
1136
  ref,
@@ -836,7 +1139,7 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
836
1139
  fill: "currentColor",
837
1140
  ...rest
838
1141
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.5,8.4c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3,0-0.4l1-0.8c0.4-0.3,0.4-0.9,0.2-1.3l-1.2-2C13.3,3.2,13,3,12.6,3 c-0.1,0-0.2,0-0.3,0.1l-1.2,0.4c-0.2-0.1-0.4-0.3-0.7-0.4l-0.3-1.3C10.1,1.3,9.7,1,9.2,1H6.8c-0.5,0-0.9,0.3-1,0.8L5.6,3.1 C5.3,3.2,5.1,3.3,4.9,3.4L3.7,3C3.6,3,3.5,3,3.4,3C3,3,2.7,3.2,2.5,3.5l-1.2,2C1.1,5.9,1.2,6.4,1.6,6.8l0.9,0.9c0,0.1,0,0.3,0,0.4 c0,0.1,0,0.3,0,0.4L1.6,9.2c-0.4,0.3-0.5,0.9-0.2,1.3l1.2,2C2.7,12.8,3,13,3.4,13c0.1,0,0.2,0,0.3-0.1l1.2-0.4 c0.2,0.1,0.4,0.3,0.7,0.4l0.3,1.3c0.1,0.5,0.5,0.8,1,0.8h2.4c0.5,0,0.9-0.3,1-0.8l0.3-1.3c0.2-0.1,0.4-0.2,0.7-0.4l1.2,0.4 c0.1,0,0.2,0.1,0.3,0.1c0.4,0,0.7-0.2,0.9-0.5l1.1-2c0.2-0.4,0.2-0.9-0.2-1.3L13.5,8.4z M12.6,12l-1.7-0.6c-0.4,0.3-0.9,0.6-1.4,0.8 L9.2,14H6.8l-0.4-1.8c-0.5-0.2-0.9-0.5-1.4-0.8L3.4,12l-1.2-2l1.4-1.2c-0.1-0.5-0.1-1.1,0-1.6L2.2,6l1.2-2l1.7,0.6 C5.5,4.2,6,4,6.5,3.8L6.8,2h2.4l0.4,1.8c0.5,0.2,0.9,0.5,1.4,0.8L12.6,4l1.2,2l-1.4,1.2c0.1,0.5,0.1,1.1,0,1.6l1.4,1.2L12.6,12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,11c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3C11,9.6,9.7,11,8,11C8,11,8,11,8,11z M8,6C6.9,6,6,6.8,6,7.9C6,7.9,6,8,6,8 c0,1.1,0.8,2,1.9,2c0,0,0.1,0,0.1,0c1.1,0,2-0.8,2-1.9c0,0,0-0.1,0-0.1C10,6.9,9.2,6,8,6C8.1,6,8,6,8,6z" }), children);
839
- return react.default.createElement(require_Icon_js, {
1142
+ return react.default.createElement(require_Icon.Icon, {
840
1143
  width: size,
841
1144
  height: size,
842
1145
  ref,
@@ -847,8 +1150,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
847
1150
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,16.76c0-.25,0-.5,0-.76s0-.51,0-.77l1.92-1.68A2,2,0,0,0,29.3,11L26.94,7a2,2,0,0,0-1.73-1,2,2,0,0,0-.64.1l-2.43.82a11.35,11.35,0,0,0-1.31-.75l-.51-2.52a2,2,0,0,0-2-1.61H13.64a2,2,0,0,0-2,1.61l-.51,2.52a11.48,11.48,0,0,0-1.32.75L7.43,6.06A2,2,0,0,0,6.79,6,2,2,0,0,0,5.06,7L2.7,11a2,2,0,0,0,.41,2.51L5,15.24c0,.25,0,.5,0,.76s0,.51,0,.77L3.11,18.45A2,2,0,0,0,2.7,21L5.06,25a2,2,0,0,0,1.73,1,2,2,0,0,0,.64-.1l2.43-.82a11.35,11.35,0,0,0,1.31.75l.51,2.52a2,2,0,0,0,2,1.61h4.72a2,2,0,0,0,2-1.61l.51-2.52a11.48,11.48,0,0,0,1.32-.75l2.42.82a2,2,0,0,0,.64.1,2,2,0,0,0,1.73-1L29.3,21a2,2,0,0,0-.41-2.51ZM25.21,24l-3.43-1.16a8.86,8.86,0,0,1-2.71,1.57L18.36,28H13.64l-.71-3.55a9.36,9.36,0,0,1-2.7-1.57L6.79,24,4.43,20l2.72-2.4a8.9,8.9,0,0,1,0-3.13L4.43,12,6.79,8l3.43,1.16a8.86,8.86,0,0,1,2.71-1.57L13.64,4h4.72l.71,3.55a9.36,9.36,0,0,1,2.7,1.57L25.21,8,27.57,12l-2.72,2.4a8.9,8.9,0,0,1,0,3.13L27.57,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,1,6-6A5.94,5.94,0,0,1,16,22Zm0-10a3.91,3.91,0,0,0-4,4,3.91,3.91,0,0,0,4,4,3.91,3.91,0,0,0,4-4A3.91,3.91,0,0,0,16,12Z" }), children);
848
1151
  });
849
1152
  if (process.env.NODE_ENV !== "production") Settings.propTypes = require_iconPropTypes.iconPropTypes;
850
- const SettingsAdjust = react.default.forwardRef(function SettingsAdjust({ children, size = 16, ...rest }, ref) {
851
- return react.default.createElement(require_Icon_js, {
1153
+ const SettingsAdjust = /* @__PURE__ */ react.default.forwardRef(function SettingsAdjust({ children, size = 16, ...rest }, ref) {
1154
+ return react.default.createElement(require_Icon.Icon, {
852
1155
  width: size,
853
1156
  height: size,
854
1157
  ref,
@@ -859,8 +1162,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
859
1162
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8h-4.1c-0.5-2.3-2.5-4-4.9-4s-4.4,1.7-4.9,4H2v2h14.1c0.5,2.3,2.5,4,4.9,4s4.4-1.7,4.9-4H30V8z M21,12c-1.7,0-3-1.3-3-3 s1.3-3,3-3s3,1.3,3,3S22.7,12,21,12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,24h4.1c0.5,2.3,2.5,4,4.9,4s4.4-1.7,4.9-4H30v-2H15.9c-0.5-2.3-2.5-4-4.9-4s-4.4,1.7-4.9,4H2V24z M11,20c1.7,0,3,1.3,3,3 s-1.3,3-3,3s-3-1.3-3-3S9.3,20,11,20z" }), children);
860
1163
  });
861
1164
  if (process.env.NODE_ENV !== "production") SettingsAdjust.propTypes = require_iconPropTypes.iconPropTypes;
862
- const SettingsCheck = react.default.forwardRef(function SettingsCheck({ children, size = 16, ...rest }, ref) {
863
- return react.default.createElement(require_Icon_js, {
1165
+ const SettingsCheck = /* @__PURE__ */ react.default.forwardRef(function SettingsCheck({ children, size = 16, ...rest }, ref) {
1166
+ return react.default.createElement(require_Icon.Icon, {
864
1167
  width: size,
865
1168
  height: size,
866
1169
  ref,
@@ -871,8 +1174,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
871
1174
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,1,6-6A5.9364,5.9364,0,0,1,16,22Zm0-10a3.9123,3.9123,0,0,0-4,4,3.9123,3.9123,0,0,0,4,4,3.9123,3.9123,0,0,0,4-4A3.9123,3.9123,0,0,0,16,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3047,11.044,26.9441,6.9562a1.9977,1.9977,0,0,0-2.3728-.8946l-2.4341.8233a11.0419,11.0419,0,0,0-1.312-.7583L20.3215,3.608A2,2,0,0,0,18.36,2H13.64A2,2,0,0,0,11.6785,3.608l-.5037,2.5186A10.9666,10.9666,0,0,0,9.8481,6.88L7.4287,6.0616a1.9977,1.9977,0,0,0-2.3728.8946L2.6953,11.044a2.0006,2.0006,0,0,0,.4119,2.5025l1.9309,1.6968C5.021,15.4947,5,15.7447,5,16c0,.2578.01.5127.0278.7656l-1.9206,1.688a2.0006,2.0006,0,0,0-.4119,2.5025L5.0559,25.044a1.9977,1.9977,0,0,0,2.3728.8946l2.4341-.8233a10.9736,10.9736,0,0,0,1.312.7583l.5037,2.5186A2,2,0,0,0,13.64,30H18V28H13.64l-.71-3.5508a9.0953,9.0953,0,0,1-2.6948-1.5713L6.7878,24.044l-2.36-4.0878,2.7253-2.3951a8.9263,8.9263,0,0,1-.007-3.1279L4.4275,12.044,6.7886,7.9562l3.4267,1.1591a9.0305,9.0305,0,0,1,2.7141-1.5644L13.64,4H18.36l.71,3.5508a9.0978,9.0978,0,0,1,2.6948,1.5713l3.4468-1.166,2.36,4.0878-2.7978,2.4522L26.0923,16l2.8-2.4536A2.0006,2.0006,0,0,0,29.3047,11.044Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 26.18 20.41 23.59 19 25 23 29 30 22 28.59 20.59 23 26.18z" }), children);
872
1175
  });
873
1176
  if (process.env.NODE_ENV !== "production") SettingsCheck.propTypes = require_iconPropTypes.iconPropTypes;
874
- const SettingsEdit = react.default.forwardRef(function SettingsEdit({ children, size = 16, ...rest }, ref) {
875
- return react.default.createElement(require_Icon_js, {
1177
+ const SettingsEdit = /* @__PURE__ */ react.default.forwardRef(function SettingsEdit({ children, size = 16, ...rest }, ref) {
1178
+ return react.default.createElement(require_Icon.Icon, {
876
1179
  width: size,
877
1180
  height: size,
878
1181
  ref,
@@ -883,8 +1186,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
883
1186
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m31.707,19.2929l-3-3c-.3906-.3906-1.0234-.3906-1.4141,0l-9.293,9.293v4.4141h4.4141l9.293-9.293c.3906-.3906.3906-1.0234,0-1.4141Zm-10.1211,8.707h-1.5859v-1.5859l5-5,1.5859,1.5859-5,5Zm6.4141-6.4141l-1.5859-1.5859,1.5859-1.5859,1.5859,1.5859-1.5859,1.5859Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,22c-3.3643,0-6-2.6357-6-6s2.6357-6,6-6,6,2.6357,6,6-2.6357,6-6,6Zm0-10c-2.2803,0-4,1.7197-4,4s1.7197,4,4,4,4-1.7197,4-4-1.7197-4-4-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m27.5474,12.0005l1.7322-1-2.3354-4.0444c-.3652-.6328-1.0334-1.0005-1.7322-1.0005-.2134,0-.4294.0342-.6406.106l-2.4341.8232c-.418-.2812-.856-.5352-1.312-.7583l-.5037-2.5186c-.187-.9351-1.0078-1.6079-1.9612-1.6079h-4.7207c-.9534,0-1.7742.6729-1.9612,1.6079l-.5037,2.5186c-.459.2246-.9062.4692-1.3267.7534l-2.4194-.8184c-.2112-.0718-.4272-.106-.6406-.106-.6987,0-1.3669.3677-1.7322,1.0005l-2.3606,4.0879c-.4766.8257-.3042,1.873.4119,2.5024l1.9309,1.6968c-.0171.2515-.0381.5015-.0381.7568,0,.2578.0103.5127.0278.7656l-1.9207,1.688c-.7161.6294-.8884,1.6768-.4119,2.5024l2.3606,4.0879c.3652.6328,1.0334,1.0005,1.7322,1.0005.2134,0,.4297-.0342.6406-.106l2.4341-.8232c.418.2817.856.5352,1.312.7583l.5037,2.5186c.187.9351,1.0078,1.6079,1.9612,1.6079h2.3604v-2h-2.3604l-.7102-3.5508c-.9753-.356-1.9026-.9062-2.6948-1.5713l-3.4468,1.166-2.3604-4.0879,2.7253-2.395c-.1838-1.043-.1914-2.083-.0071-3.1279l-2.7183-2.3892,2.3611-4.0879,3.4268,1.1592c.8032-.6763,1.7295-1.2051,2.7141-1.5645l.7102-3.5508h4.7207l.7102,3.5508c.9753.356,1.9023.9062,2.6948,1.5713l3.4468-1.166,2.3352,4.0444Z" }), children);
884
1187
  });
885
1188
  if (process.env.NODE_ENV !== "production") SettingsEdit.propTypes = require_iconPropTypes.iconPropTypes;
886
- const SettingsServices = react.default.forwardRef(function SettingsServices({ children, size = 16, ...rest }, ref) {
887
- return react.default.createElement(require_Icon_js, {
1189
+ const SettingsServices = /* @__PURE__ */ react.default.forwardRef(function SettingsServices({ children, size = 16, ...rest }, ref) {
1190
+ return react.default.createElement(require_Icon.Icon, {
888
1191
  width: size,
889
1192
  height: size,
890
1193
  ref,
@@ -895,8 +1198,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
895
1198
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,25H27V23h1V19H24v1H22V18a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v6A1,1,0,0,1,29,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30H18a1,1,0,0,1-1-1V23a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v6A1,1,0,0,1,24,30Zm-5-2h4V24H19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,19.8579A3.9934,3.9934,0,1,1,20,16h2a6,6,0,1,0-7,5.91Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.89,13.55l-2.31,2.03-1.42-1.42,2.41-2.12L25.21,7.96,21.77,9.12a9.3684,9.3684,0,0,0-2.7-1.57L18.36,4H13.64l-.71,3.55a8.8609,8.8609,0,0,0-2.71,1.57L6.79,7.96,4.43,12.04l2.72,2.39a8.8948,8.8948,0,0,0,0,3.13l-2.72,2.4,2.36,4.08,3.44-1.16a9.3684,9.3684,0,0,0,2.7,1.57L13.64,28H15v2H13.64a2.0007,2.0007,0,0,1-1.96-1.61l-.51-2.52a11.412,11.412,0,0,1-1.31-.75l-2.43.82a2.038,2.038,0,0,1-.64.1,1.973,1.973,0,0,1-1.73-1L2.7,20.96a2,2,0,0,1,.41-2.51l1.92-1.68C5.01,16.51,5,16.26,5,16s.02-.51.04-.76L3.11,13.55a2,2,0,0,1-.41-2.51L5.06,6.96a1.973,1.973,0,0,1,1.73-1,2.038,2.038,0,0,1,.64.1l2.42.82a11.5416,11.5416,0,0,1,1.32-.75l.51-2.52A2.0007,2.0007,0,0,1,13.64,2h4.72a2.0007,2.0007,0,0,1,1.96,1.61l.51,2.52a11.412,11.412,0,0,1,1.31.75l2.43-.82a2.038,2.038,0,0,1,.64-.1,1.973,1.973,0,0,1,1.73,1l2.36,4.08A2,2,0,0,1,28.89,13.55Z" }), children);
896
1199
  });
897
1200
  if (process.env.NODE_ENV !== "production") SettingsServices.propTypes = require_iconPropTypes.iconPropTypes;
898
- const SettingsView = react.default.forwardRef(function SettingsView({ children, size = 16, ...rest }, ref) {
899
- return react.default.createElement(require_Icon_js, {
1201
+ const SettingsView = /* @__PURE__ */ react.default.forwardRef(function SettingsView({ children, size = 16, ...rest }, ref) {
1202
+ return react.default.createElement(require_Icon.Icon, {
900
1203
  width: size,
901
1204
  height: size,
902
1205
  ref,
@@ -911,8 +1214,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
911
1214
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.7769,23.4785A8.64,8.64,0,0,0,23,18a8.64,8.64,0,0,0-7.7769,5.4785L15,24l.2231.5215A8.64,8.64,0,0,0,23,30a8.64,8.64,0,0,0,7.7769-5.4785L31,24ZM23,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,23,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.3989,20.8A6,6,0,1,1,22,16H20a4,4,0,1,0-6.4,3.2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3047,11.0439,26.9441,6.9561a1.9977,1.9977,0,0,0-2.3728-.8946l-2.4341.8233a11.0419,11.0419,0,0,0-1.312-.7583l-.5037-2.5186A2,2,0,0,0,18.36,2H13.64a2,2,0,0,0-1.9611,1.6079l-.5037,2.5186A10.9666,10.9666,0,0,0,9.8481,6.88L7.4287,6.0615a1.9977,1.9977,0,0,0-2.3728.8946L2.6953,11.0439a2.0006,2.0006,0,0,0,.4119,2.5025l1.9309,1.6968C5.021,15.4946,5,15.7446,5,16c0,.2578.01.5127.0278.7656l-1.9206,1.688a2.0006,2.0006,0,0,0-.4119,2.5025l2.3606,4.0878a1.9977,1.9977,0,0,0,2.3728.8946l2.4341-.8233a10.9736,10.9736,0,0,0,1.312.7583l.5037,2.5186A2,2,0,0,0,13.64,30H15V28H13.64l-.71-3.5508a9.0953,9.0953,0,0,1-2.6948-1.5713l-3.4468,1.166-2.36-4.0878L7.1528,17.561a8.9263,8.9263,0,0,1-.007-3.1279L4.4275,12.0439,6.7886,7.9561l3.4267,1.1591a9.0305,9.0305,0,0,1,2.7141-1.5644L13.64,4H18.36l.71,3.5508a9.0978,9.0978,0,0,1,2.6948,1.5713l3.4468-1.166,2.36,4.0878-2.7978,2.4522L26.0923,16l2.8-2.4536A2.0006,2.0006,0,0,0,29.3047,11.0439Z" }), children);
912
1215
  });
913
1216
  if (process.env.NODE_ENV !== "production") SettingsView.propTypes = require_iconPropTypes.iconPropTypes;
914
- const Shadow = react.default.forwardRef(function Shadow({ children, size = 16, ...rest }, ref) {
915
- return react.default.createElement(require_Icon_js, {
1217
+ const Shadow = /* @__PURE__ */ react.default.forwardRef(function Shadow({ children, size = 16, ...rest }, ref) {
1218
+ return react.default.createElement(require_Icon.Icon, {
916
1219
  width: size,
917
1220
  height: size,
918
1221
  ref,
@@ -923,8 +1226,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
923
1226
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,5c-1.0234,0-2.0312.1479-3.0046.4253-.9539-.2708-1.9561-.4253-2.9954-.4253-6.0654,0-11,4.9346-11,11s4.9346,11,11,11c1.0393,0,2.0415-.1545,2.9954-.4253.9734.2773,1.9812.4253,3.0046.4253,6.0654,0,11-4.9346,11-11s-4.9346-11-11-11ZM23.9495,16.9965l3.9866.0355c-.1228,1.0701-.4373,2.0808-.903,3.0039l-3.7977-.0342c.3713-.9463.6191-1.9531.7141-3.0052ZM23.9492,14.9963c-.0955-1.049-.343-2.0525-.7131-2.9963l3.8325.0378c.4548.9221.7627,1.9283.8772,2.994l-3.9966-.0355ZM25.7112,10.0244l-3.5099-.0347c-.7626-1.1636-1.7395-2.1714-2.8744-2.9731,2.536.0917,4.803,1.2339,6.3843,3.0078ZM4,16c0-4.9624,4.0371-9,9-9s9,4.0376,9,9-4.0371,9-9,9-9-4.0376-9-9ZM19.3269,24.9834c1.1405-.8057,2.121-1.8199,2.8853-2.9907l3.4556.031c-1.5793,1.7465-3.8279,2.8689-6.3408,2.9597h-.0001Z" }), children);
924
1227
  });
925
1228
  if (process.env.NODE_ENV !== "production") Shadow.propTypes = require_iconPropTypes.iconPropTypes;
926
- const ShapeExcept = react.default.forwardRef(function ShapeExcept({ children, size = 16, ...rest }, ref) {
927
- return react.default.createElement(require_Icon_js, {
1229
+ const ShapeExcept = /* @__PURE__ */ react.default.forwardRef(function ShapeExcept({ children, size = 16, ...rest }, ref) {
1230
+ return react.default.createElement(require_Icon.Icon, {
928
1231
  width: size,
929
1232
  height: size,
930
1233
  ref,
@@ -935,8 +1238,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
935
1238
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V20a2.0025,2.0025,0,0,0,2,2h6v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM12,20V12h8v8ZM3.9988,4H20v6H12a2.0023,2.0023,0,0,0-2,2v8H4Z" }), children);
936
1239
  });
937
1240
  if (process.env.NODE_ENV !== "production") ShapeExcept.propTypes = require_iconPropTypes.iconPropTypes;
938
- const ShapeExclude = react.default.forwardRef(function ShapeExclude({ children, size = 16, ...rest }, ref) {
939
- return react.default.createElement(require_Icon_js, {
1241
+ const ShapeExclude = /* @__PURE__ */ react.default.forwardRef(function ShapeExclude({ children, size = 16, ...rest }, ref) {
1242
+ return react.default.createElement(require_Icon.Icon, {
940
1243
  width: size,
941
1244
  height: size,
942
1245
  ref,
@@ -947,8 +1250,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
947
1250
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,10H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2h6V12A2,2,0,0,1,12,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H22V20a2,2,0,0,1-2,2H10v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10Z" }), children);
948
1251
  });
949
1252
  if (process.env.NODE_ENV !== "production") ShapeExclude.propTypes = require_iconPropTypes.iconPropTypes;
950
- const ShapeIntersect = react.default.forwardRef(function ShapeIntersect({ children, size = 16, ...rest }, ref) {
951
- return react.default.createElement(require_Icon_js, {
1253
+ const ShapeIntersect = /* @__PURE__ */ react.default.forwardRef(function ShapeIntersect({ children, size = 16, ...rest }, ref) {
1254
+ return react.default.createElement(require_Icon.Icon, {
952
1255
  width: size,
953
1256
  height: size,
954
1257
  ref,
@@ -959,8 +1262,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
959
1262
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H22V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V20a2.0025,2.0025,0,0,0,2,2h6v6a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,28,10ZM4,20V4H20v6H12a2.0025,2.0025,0,0,0-2,2v8Zm8,8V22h8a2.0025,2.0025,0,0,0,2-2V12h6V28Z" }), children);
960
1263
  });
961
1264
  if (process.env.NODE_ENV !== "production") ShapeIntersect.propTypes = require_iconPropTypes.iconPropTypes;
962
- const ShapeJoin = react.default.forwardRef(function ShapeJoin({ children, size = 16, ...rest }, ref) {
963
- return react.default.createElement(require_Icon_js, {
1265
+ const ShapeJoin = /* @__PURE__ */ react.default.forwardRef(function ShapeJoin({ children, size = 16, ...rest }, ref) {
1266
+ return react.default.createElement(require_Icon.Icon, {
964
1267
  width: size,
965
1268
  height: size,
966
1269
  ref,
@@ -971,8 +1274,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
971
1274
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H22V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V20a2.0025,2.0025,0,0,0,2,2h6v6a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,28,10ZM4,20V4h6V20Zm18,8V12h6V28Z" }), children);
972
1275
  });
973
1276
  if (process.env.NODE_ENV !== "production") ShapeJoin.propTypes = require_iconPropTypes.iconPropTypes;
974
- const ShapeUnite = react.default.forwardRef(function ShapeUnite({ children, size = 16, ...rest }, ref) {
975
- return react.default.createElement(require_Icon_js, {
1277
+ const ShapeUnite = /* @__PURE__ */ react.default.forwardRef(function ShapeUnite({ children, size = 16, ...rest }, ref) {
1278
+ return react.default.createElement(require_Icon.Icon, {
976
1279
  width: size,
977
1280
  height: size,
978
1281
  ref,
@@ -983,8 +1286,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
983
1286
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2h6v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10Z" }), children);
984
1287
  });
985
1288
  if (process.env.NODE_ENV !== "production") ShapeUnite.propTypes = require_iconPropTypes.iconPropTypes;
986
- const Shapes = react.default.forwardRef(function Shapes({ children, size = 16, ...rest }, ref) {
987
- return react.default.createElement(require_Icon_js, {
1289
+ const Shapes = /* @__PURE__ */ react.default.forwardRef(function Shapes({ children, size = 16, ...rest }, ref) {
1290
+ return react.default.createElement(require_Icon.Icon, {
988
1291
  width: size,
989
1292
  height: size,
990
1293
  ref,
@@ -1007,8 +1310,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1007
1310
  }), children);
1008
1311
  });
1009
1312
  if (process.env.NODE_ENV !== "production") Shapes.propTypes = require_iconPropTypes.iconPropTypes;
1010
- const Share = react.default.forwardRef(function Share({ children, size = 16, ...rest }, ref) {
1011
- return react.default.createElement(require_Icon_js, {
1313
+ const Share = /* @__PURE__ */ react.default.forwardRef(function Share({ children, size = 16, ...rest }, ref) {
1314
+ return react.default.createElement(require_Icon.Icon, {
1012
1315
  width: size,
1013
1316
  height: size,
1014
1317
  ref,
@@ -1019,8 +1322,20 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1019
1322
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,20a5,5,0,0,0-3.89,1.89L11.8,17.32a4.46,4.46,0,0,0,0-2.64l7.31-4.57A5,5,0,1,0,18,7a4.79,4.79,0,0,0,.2,1.32l-7.31,4.57a5,5,0,1,0,0,6.22l7.31,4.57A4.79,4.79,0,0,0,18,25a5,5,0,1,0,5-5ZM23,4a3,3,0,1,1-3,3A3,3,0,0,1,23,4ZM7,19a3,3,0,1,1,3-3A3,3,0,0,1,7,19Zm16,9a3,3,0,1,1,3-3A3,3,0,0,1,23,28Z" }), children);
1020
1323
  });
1021
1324
  if (process.env.NODE_ENV !== "production") Share.propTypes = require_iconPropTypes.iconPropTypes;
1022
- const ShareKnowledge = react.default.forwardRef(function ShareKnowledge({ children, size = 16, ...rest }, ref) {
1023
- return react.default.createElement(require_Icon_js, {
1325
+ const ShieldAlert = /* @__PURE__ */ react.default.forwardRef(function ShieldAlert({ children, size = 16, ...rest }, ref) {
1326
+ return react.default.createElement(require_Icon.Icon, {
1327
+ width: size,
1328
+ height: size,
1329
+ ref,
1330
+ xmlns: "http://www.w3.org/2000/svg",
1331
+ viewBox: "0 0 32 32",
1332
+ fill: "currentColor",
1333
+ ...rest
1334
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,18h-2V7h2v11ZM14.5,22.5c0,.8284.6716,1.5,1.5,1.5s1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5-1.5.6716-1.5,1.5ZM16.479,29.8779l5.7856-3.1562c3.5381-1.9297,5.7354-5.6543,5.7354-9.7217V4c0-1.103-.8975-2-2-2H6c-1.103,0-2,.897-2,2v13c0,4.0674,2.1978,7.792,5.7349,9.7217l5.7861,3.1562c.1494.0811.314.1221.479.1221s.3296-.041.479-.1221ZM26,4v13c0,3.335-1.7979,6.3867-4.6924,7.9658l-5.3076,2.8955-5.3071-2.8955c-2.8945-1.5791-4.6929-4.6309-4.6929-7.9658V4h20Z" }), children);
1335
+ });
1336
+ if (process.env.NODE_ENV !== "production") ShieldAlert.propTypes = require_iconPropTypes.iconPropTypes;
1337
+ const ShareKnowledge = /* @__PURE__ */ react.default.forwardRef(function ShareKnowledge({ children, size = 16, ...rest }, ref) {
1338
+ return react.default.createElement(require_Icon.Icon, {
1024
1339
  width: size,
1025
1340
  height: size,
1026
1341
  ref,
@@ -1031,8 +1346,20 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1031
1346
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,25H21a3,3,0,0,0-3,3v2h2V28a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V28A3,3,0,0,0,27,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20a4,4,0,1,0,4-4A4,4,0,0,0,20,20Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,26,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,21V20H4v1a7,7,0,0,0,7,7h3V26H11A5,5,0,0,1,6,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 10H26V12H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 6H29V8H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 2H29V4H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,11H5a3,3,0,0,0-3,3v2H4V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V14A3,3,0,0,0,11,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10A4,4,0,1,0,4,6,4,4,0,0,0,8,10ZM8,4A2,2,0,1,1,6,6,2,2,0,0,1,8,4Z" }), children);
1032
1347
  });
1033
1348
  if (process.env.NODE_ENV !== "production") ShareKnowledge.propTypes = require_iconPropTypes.iconPropTypes;
1034
- const ShoppingBag = react.default.forwardRef(function ShoppingBag({ children, size = 16, ...rest }, ref) {
1035
- return react.default.createElement(require_Icon_js, {
1349
+ const ShipmentDelivery = /* @__PURE__ */ react.default.forwardRef(function ShipmentDelivery({ children, size = 16, ...rest }, ref) {
1350
+ return react.default.createElement(require_Icon.Icon, {
1351
+ width: size,
1352
+ height: size,
1353
+ ref,
1354
+ xmlns: "http://www.w3.org/2000/svg",
1355
+ viewBox: "0 0 32 32",
1356
+ fill: "currentColor",
1357
+ ...rest
1358
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30c-1.8604,0-3.4287-1.2764-3.873-3h-6.2534c-.4453,1.7236-2.0132,3-3.8735,3s-3.4282-1.2764-3.8735-3h-2.1265c-.5522,0-1-.4473-1-1v-8h2v7h1.1265c.4453-1.7236,2.0132-3,3.8735-3s3.4282,1.2764,3.8735,3h6.2534c.2705-1.0488.957-1.9326,1.873-2.4629v-12.5371h-3v-2h4c.5527,0,1,.4478,1,1v2h3c.4004,0,.7617.2383.9189.606l3,7.0005c.0537.124.0811.2578.0811.3936v7c0,.5527-.4473,1-1,1h-2.127c-.4443,1.7236-2.0127,3-3.873,3ZM23,24c-1.1025,0-2,.8975-2,2s.8975,2,2,2,2-.8975,2-2-.8975-2-2-2ZM9,24c-1.103,0-2,.8975-2,2s.897,2,2,2,2-.8975,2-2-.897-2-2-2ZM26.873,25h1.127v-5h-5v2c1.8604,0,3.4287,1.2764,3.873,3ZM23,18h4.4834l-2.1426-5h-2.3408v5ZM9,16c-3.8599,0-7-3.1401-7-7s3.1401-7,7-7,7,3.1401,7,7-3.1401,7-7,7ZM9,4c-2.7568,0-5,2.2432-5,5s2.2432,5,5,5,5-2.2432,5-5-2.2432-5-5-5ZM10.293,11.707l-2-2c-.1875-.1875-.293-.4419-.293-.707v-3h2v2.5859l1.707,1.707-1.4141,1.4141Z" }), children);
1359
+ });
1360
+ if (process.env.NODE_ENV !== "production") ShipmentDelivery.propTypes = require_iconPropTypes.iconPropTypes;
1361
+ const ShoppingBag = /* @__PURE__ */ react.default.forwardRef(function ShoppingBag({ children, size = 16, ...rest }, ref) {
1362
+ return react.default.createElement(require_Icon.Icon, {
1036
1363
  width: size,
1037
1364
  height: size,
1038
1365
  ref,
@@ -1043,8 +1370,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1043
1370
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.76,11.35A1,1,0,0,0,28,11H22V7a3,3,0,0,0-3-3H13a3,3,0,0,0-3,3v4H4a1,1,0,0,0-1,1.15L4.88,24.3a2,2,0,0,0,2,1.7H25.14a2,2,0,0,0,2-1.7L29,12.15A1,1,0,0,0,28.76,11.35ZM12,7a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v4H12ZM25.14,24H6.86L5.17,13H26.83Z" }), children);
1044
1371
  });
1045
1372
  if (process.env.NODE_ENV !== "production") ShoppingBag.propTypes = require_iconPropTypes.iconPropTypes;
1046
- const ShoppingCart = react.default.forwardRef(function ShoppingCart({ children, size = 16, ...rest }, ref) {
1047
- return react.default.createElement(require_Icon_js, {
1373
+ const ShoppingCart = /* @__PURE__ */ react.default.forwardRef(function ShoppingCart({ children, size = 16, ...rest }, ref) {
1374
+ return react.default.createElement(require_Icon.Icon, {
1048
1375
  width: size,
1049
1376
  height: size,
1050
1377
  ref,
@@ -1063,8 +1390,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1063
1390
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,7H5.82L5,2.8A1,1,0,0,0,4,2H0V4H3.18L7,23.2A1,1,0,0,0,8,24H26V22H8.82L8,18H26a1,1,0,0,0,1-.78l2-9A1,1,0,0,0,28,7Zm-2.8,9H7.62L6.22,9H26.75Z" }), children);
1064
1391
  });
1065
1392
  if (process.env.NODE_ENV !== "production") ShoppingCart.propTypes = require_iconPropTypes.iconPropTypes;
1066
- const ShoppingCartArrowDown = react.default.forwardRef(function ShoppingCartArrowDown({ children, size = 16, ...rest }, ref) {
1067
- return react.default.createElement(require_Icon_js, {
1393
+ const ShoppingCartArrowDown = /* @__PURE__ */ react.default.forwardRef(function ShoppingCartArrowDown({ children, size = 16, ...rest }, ref) {
1394
+ return react.default.createElement(require_Icon.Icon, {
1068
1395
  width: size,
1069
1396
  height: size,
1070
1397
  ref,
@@ -1083,8 +1410,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1083
1410
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.586 6.586 18 10.172 18 2 16 2 16 10.172 12.414 6.586 11 8 17 14 23 8 21.586 6.586z" }), children);
1084
1411
  });
1085
1412
  if (process.env.NODE_ENV !== "production") ShoppingCartArrowDown.propTypes = require_iconPropTypes.iconPropTypes;
1086
- const ShoppingCartArrowUp = react.default.forwardRef(function ShoppingCartArrowUp({ children, size = 16, ...rest }, ref) {
1087
- return react.default.createElement(require_Icon_js, {
1413
+ const ShoppingCartArrowUp = /* @__PURE__ */ react.default.forwardRef(function ShoppingCartArrowUp({ children, size = 16, ...rest }, ref) {
1414
+ return react.default.createElement(require_Icon.Icon, {
1088
1415
  width: size,
1089
1416
  height: size,
1090
1417
  ref,
@@ -1103,8 +1430,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1103
1430
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.586 9.414 18 5.828 18 14 16 14 16 5.828 12.414 9.414 11 8 17 2 23 8 21.586 9.414z" }), children);
1104
1431
  });
1105
1432
  if (process.env.NODE_ENV !== "production") ShoppingCartArrowUp.propTypes = require_iconPropTypes.iconPropTypes;
1106
- const ShoppingCartClear = react.default.forwardRef(function ShoppingCartClear({ children, size = 16, ...rest }, ref) {
1107
- return react.default.createElement(require_Icon_js, {
1433
+ const ShoppingCartClear = /* @__PURE__ */ react.default.forwardRef(function ShoppingCartClear({ children, size = 16, ...rest }, ref) {
1434
+ return react.default.createElement(require_Icon.Icon, {
1108
1435
  width: size,
1109
1436
  height: size,
1110
1437
  ref,
@@ -1123,8 +1450,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1123
1450
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.41 8 22 4.41 20.59 3 17 6.59 13.41 3 12 4.41 15.59 8 12 11.59 13.41 13 17 9.41 20.59 13 22 11.59 18.41 8z" }), children);
1124
1451
  });
1125
1452
  if (process.env.NODE_ENV !== "production") ShoppingCartClear.propTypes = require_iconPropTypes.iconPropTypes;
1126
- const ShoppingCartError = react.default.forwardRef(function ShoppingCartError({ children, size = 16, ...rest }, ref) {
1127
- return react.default.createElement(require_Icon_js, {
1453
+ const ShoppingCartError = /* @__PURE__ */ react.default.forwardRef(function ShoppingCartError({ children, size = 16, ...rest }, ref) {
1454
+ return react.default.createElement(require_Icon.Icon, {
1128
1455
  width: size,
1129
1456
  height: size,
1130
1457
  ref,
@@ -1143,8 +1470,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1143
1470
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,2a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,17,2Zm0,2a3.9521,3.9521,0,0,1,2.019.5669L13.5669,10.019A3.9529,3.9529,0,0,1,13,8,4.0045,4.0045,0,0,1,17,4Zm0,8a3.9521,3.9521,0,0,1-2.019-.5669L20.4331,5.981A3.9529,3.9529,0,0,1,21,8,4.0045,4.0045,0,0,1,17,12Z" }), children);
1144
1471
  });
1145
1472
  if (process.env.NODE_ENV !== "production") ShoppingCartError.propTypes = require_iconPropTypes.iconPropTypes;
1146
- const ShoppingCartMinus = react.default.forwardRef(function ShoppingCartMinus({ children, size = 16, ...rest }, ref) {
1147
- return react.default.createElement(require_Icon_js, {
1473
+ const ShoppingCartMinus = /* @__PURE__ */ react.default.forwardRef(function ShoppingCartMinus({ children, size = 16, ...rest }, ref) {
1474
+ return react.default.createElement(require_Icon.Icon, {
1148
1475
  width: size,
1149
1476
  height: size,
1150
1477
  ref,
@@ -1163,8 +1490,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1163
1490
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6 12 8 22 8 22 6 12 6z" }), children);
1164
1491
  });
1165
1492
  if (process.env.NODE_ENV !== "production") ShoppingCartMinus.propTypes = require_iconPropTypes.iconPropTypes;
1166
- const ShoppingCartPlus = react.default.forwardRef(function ShoppingCartPlus({ children, size = 16, ...rest }, ref) {
1167
- return react.default.createElement(require_Icon_js, {
1493
+ const ShoppingCartPlus = /* @__PURE__ */ react.default.forwardRef(function ShoppingCartPlus({ children, size = 16, ...rest }, ref) {
1494
+ return react.default.createElement(require_Icon.Icon, {
1168
1495
  width: size,
1169
1496
  height: size,
1170
1497
  ref,
@@ -1183,8 +1510,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1183
1510
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 6 18 2 16 2 16 6 12 6 12 8 16 8 16 12 18 12 18 8 22 8 22 6 18 6z" }), children);
1184
1511
  });
1185
1512
  if (process.env.NODE_ENV !== "production") ShoppingCartPlus.propTypes = require_iconPropTypes.iconPropTypes;
1186
- const ShoppingCatalog = react.default.forwardRef(function ShoppingCatalog({ children, size = 16, ...rest }, ref) {
1187
- return react.default.createElement(require_Icon_js, {
1513
+ const ShoppingCatalog = /* @__PURE__ */ react.default.forwardRef(function ShoppingCatalog({ children, size = 16, ...rest }, ref) {
1514
+ return react.default.createElement(require_Icon.Icon, {
1188
1515
  width: size,
1189
1516
  height: size,
1190
1517
  ref,
@@ -1195,8 +1522,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1195
1522
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 24H21V28H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 24H28V28H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 17H21V21H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 17H28V21H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,11h-6V7c0-1.7-1.3-3-3-3h-6c-1.7,0-3,1.3-3,3v4H4c-0.6,0-1,0.4-1,1c0,0.1,0,0.1,0,0.2l1.9,12.1c0.1,1,1,1.7,2,1.7H15v-2 H6.9L5.2,13H28V11z M12,7c0-0.6,0.4-1,1-1h6c0.6,0,1,0.4,1,1v4h-8V7z" }), children);
1196
1523
  });
1197
1524
  if (process.env.NODE_ENV !== "production") ShoppingCatalog.propTypes = require_iconPropTypes.iconPropTypes;
1198
- const ShowDataCards = react.default.forwardRef(function ShowDataCards({ children, size = 16, ...rest }, ref) {
1199
- return react.default.createElement(require_Icon_js, {
1525
+ const ShowDataCards = /* @__PURE__ */ react.default.forwardRef(function ShowDataCards({ children, size = 16, ...rest }, ref) {
1526
+ return react.default.createElement(require_Icon.Icon, {
1200
1527
  width: size,
1201
1528
  height: size,
1202
1529
  ref,
@@ -1207,8 +1534,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1207
1534
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H4A2.0022,2.0022,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V8A2.0022,2.0022,0,0,1,28,10ZM4,4V8H28V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0022,2.0022,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v4A2.0022,2.0022,0,0,1,28,30ZM4,24v4H28V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H4a2.0022,2.0022,0,0,1-2-2V14a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v4A2.0022,2.0022,0,0,1,28,20ZM4,14v4H28V14Z" }), children);
1208
1535
  });
1209
1536
  if (process.env.NODE_ENV !== "production") ShowDataCards.propTypes = require_iconPropTypes.iconPropTypes;
1210
- const ShrinkScreen = react.default.forwardRef(function ShrinkScreen({ children, size = 16, ...rest }, ref) {
1211
- return react.default.createElement(require_Icon_js, {
1537
+ const ShrinkScreen = /* @__PURE__ */ react.default.forwardRef(function ShrinkScreen({ children, size = 16, ...rest }, ref) {
1538
+ return react.default.createElement(require_Icon.Icon, {
1212
1539
  width: size,
1213
1540
  height: size,
1214
1541
  ref,
@@ -1219,8 +1546,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1219
1546
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,28H17a2.0023,2.0023,0,0,1-2-2V20a2.0023,2.0023,0,0,1,2-2H28a2.0027,2.0027,0,0,1,2,2v6A2.0027,2.0027,0,0,1,28,28ZM17,20v6H28.002L28,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 10 12 13.586 7.707 9.293 6.293 10.707 10.586 15 7 15 7 17 14 17 14 10 12 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,22H4a2.0023,2.0023,0,0,1-2-2V7A2.002,2.002,0,0,1,4,5H26a2.0023,2.0023,0,0,1,2,2v9H26V7H4V20h9Z" }), children);
1220
1547
  });
1221
1548
  if (process.env.NODE_ENV !== "production") ShrinkScreen.propTypes = require_iconPropTypes.iconPropTypes;
1222
- const ShrinkScreenFilled = react.default.forwardRef(function ShrinkScreenFilled({ children, size = 16, ...rest }, ref) {
1223
- return react.default.createElement(require_Icon_js, {
1549
+ const ShrinkScreenFilled = /* @__PURE__ */ react.default.forwardRef(function ShrinkScreenFilled({ children, size = 16, ...rest }, ref) {
1550
+ return react.default.createElement(require_Icon.Icon, {
1224
1551
  width: size,
1225
1552
  height: size,
1226
1553
  ref,
@@ -1237,8 +1564,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1237
1564
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 10 12 13.586 7.707 9.293 6.293 10.707 10.586 15 7 15 7 17 14 17 14 10 12 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,22H4a2.0023,2.0023,0,0,1-2-2V7A2.002,2.002,0,0,1,4,5H26a2.0023,2.0023,0,0,1,2,2v9H26V7H4V20h9Z" }), children);
1238
1565
  });
1239
1566
  if (process.env.NODE_ENV !== "production") ShrinkScreenFilled.propTypes = require_iconPropTypes.iconPropTypes;
1240
- const Shuffle = react.default.forwardRef(function Shuffle({ children, size = 16, ...rest }, ref) {
1241
- return react.default.createElement(require_Icon_js, {
1567
+ const Shuffle = /* @__PURE__ */ react.default.forwardRef(function Shuffle({ children, size = 16, ...rest }, ref) {
1568
+ return react.default.createElement(require_Icon.Icon, {
1242
1569
  width: size,
1243
1570
  height: size,
1244
1571
  ref,
@@ -1249,8 +1576,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1249
1576
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.59,19.41,26.17,23H19.55l-4.37-7,4.37-7h6.62l-3.58,3.59L24,14l6-6L24,2,22.59,3.41,26.17,7H19.55a2,2,0,0,0-1.69.94L14,14.11,10.14,7.94A2,2,0,0,0,8.45,7H2V9H8.45l4.37,7L8.45,23H2v2H8.45a2,2,0,0,0,1.69-.94L14,17.89l3.86,6.17a2,2,0,0,0,1.69.94h6.62l-3.58,3.59L24,30l6-6-6-6Z" }), children);
1250
1577
  });
1251
1578
  if (process.env.NODE_ENV !== "production") Shuffle.propTypes = require_iconPropTypes.iconPropTypes;
1252
- const Shuttle = react.default.forwardRef(function Shuttle({ children, size = 16, ...rest }, ref) {
1253
- return react.default.createElement(require_Icon_js, {
1579
+ const Shuttle = /* @__PURE__ */ react.default.forwardRef(function Shuttle({ children, size = 16, ...rest }, ref) {
1580
+ return react.default.createElement(require_Icon.Icon, {
1254
1581
  width: size,
1255
1582
  height: size,
1256
1583
  ref,
@@ -1261,8 +1588,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1261
1588
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.81,16l-7-9.56A1,1,0,0,0,22,6H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V16.56A1,1,0,0,0,29.81,16ZM20,8h1.49l5.13,7H20ZM4,8H18v7H4ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V17H28Z" }), children);
1262
1589
  });
1263
1590
  if (process.env.NODE_ENV !== "production") Shuttle.propTypes = require_iconPropTypes.iconPropTypes;
1264
- const SidePanelClose = react.default.forwardRef(function SidePanelClose({ children, size = 16, ...rest }, ref) {
1265
- return react.default.createElement(require_Icon_js, {
1591
+ const SidePanelClose = /* @__PURE__ */ react.default.forwardRef(function SidePanelClose({ children, size = 16, ...rest }, ref) {
1592
+ return react.default.createElement(require_Icon.Icon, {
1266
1593
  width: size,
1267
1594
  height: size,
1268
1595
  ref,
@@ -1273,8 +1600,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1273
1600
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M10,26H4V6h6V26z M28,15H17.8 l3.6-3.6L20,10l-6,6l6,6l1.4-1.4L17.8,17H28v9H12V6h16V15z" }), children);
1274
1601
  });
1275
1602
  if (process.env.NODE_ENV !== "production") SidePanelClose.propTypes = require_iconPropTypes.iconPropTypes;
1276
- const SidePanelCloseFilled = react.default.forwardRef(function SidePanelCloseFilled({ children, size = 16, ...rest }, ref) {
1277
- return react.default.createElement(require_Icon_js, {
1603
+ const SidePanelCloseFilled = /* @__PURE__ */ react.default.forwardRef(function SidePanelCloseFilled({ children, size = 16, ...rest }, ref) {
1604
+ return react.default.createElement(require_Icon.Icon, {
1278
1605
  width: size,
1279
1606
  height: size,
1280
1607
  ref,
@@ -1285,8 +1612,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1285
1612
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M28,15H17.8l3.6-3.6L20,10l-6,6l6,6 l1.4-1.4L17.8,17H28v9H12V6h16V15z" }), children);
1286
1613
  });
1287
1614
  if (process.env.NODE_ENV !== "production") SidePanelCloseFilled.propTypes = require_iconPropTypes.iconPropTypes;
1288
- const SidePanelOpen = react.default.forwardRef(function SidePanelOpen({ children, size = 16, ...rest }, ref) {
1289
- return react.default.createElement(require_Icon_js, {
1615
+ const SidePanelOpen = /* @__PURE__ */ react.default.forwardRef(function SidePanelOpen({ children, size = 16, ...rest }, ref) {
1616
+ return react.default.createElement(require_Icon.Icon, {
1290
1617
  width: size,
1291
1618
  height: size,
1292
1619
  ref,
@@ -1297,8 +1624,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1297
1624
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M10,26H4V6h6V26z M28,26H12v-9h10.2 l-3.6,3.6L20,22l6-6l-6-6l-1.4,1.4l3.6,3.6H12V6h16V26z" }), children);
1298
1625
  });
1299
1626
  if (process.env.NODE_ENV !== "production") SidePanelOpen.propTypes = require_iconPropTypes.iconPropTypes;
1300
- const SidePanelOpenFilled = react.default.forwardRef(function SidePanelOpenFilled({ children, size = 16, ...rest }, ref) {
1301
- return react.default.createElement(require_Icon_js, {
1627
+ const SidePanelOpenFilled = /* @__PURE__ */ react.default.forwardRef(function SidePanelOpenFilled({ children, size = 16, ...rest }, ref) {
1628
+ return react.default.createElement(require_Icon.Icon, {
1302
1629
  width: size,
1303
1630
  height: size,
1304
1631
  ref,
@@ -1309,8 +1636,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1309
1636
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M28,26H12v-9h10.2l-3.6,3.6L20,22 l6-6l-6-6l-1.4,1.4l3.6,3.6H12V6h16V26z" }), children);
1310
1637
  });
1311
1638
  if (process.env.NODE_ENV !== "production") SidePanelOpenFilled.propTypes = require_iconPropTypes.iconPropTypes;
1312
- const Sight = react.default.forwardRef(function Sight({ children, size = 16, ...rest }, ref) {
1313
- return react.default.createElement(require_Icon_js, {
1639
+ const Sight = /* @__PURE__ */ react.default.forwardRef(function Sight({ children, size = 16, ...rest }, ref) {
1640
+ return react.default.createElement(require_Icon.Icon, {
1314
1641
  width: size,
1315
1642
  height: size,
1316
1643
  ref,
@@ -1321,8 +1648,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1321
1648
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H12V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H8V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H4V14H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V27H20a5.0055,5.0055,0,0,1-5-5V20.7207l-2.3162-.772a1,1,0,0,1-.5412-1.4631L15,13.7229V11a9.01,9.01,0,0,1,9-9h5V4H24a7.0078,7.0078,0,0,0-7,7v3a.9991.9991,0,0,1-.1426.5144l-2.3586,3.9312,1.8174.6057A1,1,0,0,1,17,20v2a3.0033,3.0033,0,0,0,3,3h5a1,1,0,0,1,1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 12H23V14H19z" }), children);
1322
1649
  });
1323
1650
  if (process.env.NODE_ENV !== "production") Sight.propTypes = require_iconPropTypes.iconPropTypes;
1324
- const Sigma = react.default.forwardRef(function Sigma({ children, size = 16, ...rest }, ref) {
1325
- return react.default.createElement(require_Icon_js, {
1651
+ const Sigma = /* @__PURE__ */ react.default.forwardRef(function Sigma({ children, size = 16, ...rest }, ref) {
1652
+ return react.default.createElement(require_Icon.Icon, {
1326
1653
  width: size,
1327
1654
  height: size,
1328
1655
  ref,
@@ -1333,8 +1660,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1333
1660
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 5 7 5 7 7.414 15.586 16 7 24.586 7 27 24 27 24 25 9.414 25 18.414 16 9.414 7 24 7 24 5z" }), children);
1334
1661
  });
1335
1662
  if (process.env.NODE_ENV !== "production") Sigma.propTypes = require_iconPropTypes.iconPropTypes;
1336
- const SignalStrength = react.default.forwardRef(function SignalStrength({ children, size = 16, ...rest }, ref) {
1337
- return react.default.createElement(require_Icon_js, {
1663
+ const SignalStrength = /* @__PURE__ */ react.default.forwardRef(function SignalStrength({ children, size = 16, ...rest }, ref) {
1664
+ return react.default.createElement(require_Icon.Icon, {
1338
1665
  width: size,
1339
1666
  height: size,
1340
1667
  ref,
@@ -1345,8 +1672,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1345
1672
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 6H28V26H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 11H20V26H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 16H13V26H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20H6V26H4z" }), children);
1346
1673
  });
1347
1674
  if (process.env.NODE_ENV !== "production") SignalStrength.propTypes = require_iconPropTypes.iconPropTypes;
1348
- const SimCard = react.default.forwardRef(function SimCard({ children, size = 16, ...rest }, ref) {
1349
- return react.default.createElement(require_Icon_js, {
1675
+ const SimCard = /* @__PURE__ */ react.default.forwardRef(function SimCard({ children, size = 16, ...rest }, ref) {
1676
+ return react.default.createElement(require_Icon.Icon, {
1350
1677
  width: size,
1351
1678
  height: size,
1352
1679
  ref,
@@ -1357,8 +1684,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1357
1684
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,9H8a2.0023,2.0023,0,0,0-2,2V21a2.0023,2.0023,0,0,0,2,2H21a2.0023,2.0023,0,0,0,2-2V11A2.0023,2.0023,0,0,0,21,9Zm0,4H18V11h3Zm-3,2h3v2H18Zm-2-4V21H13V14a1,1,0,0,0-1-1H8V11Zm-5,6H8V15h3ZM8,19h3v2H8Zm10,2V19h3v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5317,27H4a2.0021,2.0021,0,0,1-2-2V7A2.0021,2.0021,0,0,1,4,5H28a2.0021,2.0021,0,0,1,2,2V19.6379a2.0044,2.0044,0,0,1-.4639,1.2808L25.0679,26.28A1.9944,1.9944,0,0,1,23.5317,27ZM4,7V25H23.5317L28,19.6379V7Z" }), children);
1358
1685
  });
1359
1686
  if (process.env.NODE_ENV !== "production") SimCard.propTypes = require_iconPropTypes.iconPropTypes;
1360
- const SkillLevel = react.default.forwardRef(function SkillLevel({ children, size = 16, ...rest }, ref) {
1361
- return react.default.createElement(require_Icon_js, {
1687
+ const SkillLevel = /* @__PURE__ */ react.default.forwardRef(function SkillLevel({ children, size = 16, ...rest }, ref) {
1688
+ return react.default.createElement(require_Icon.Icon, {
1362
1689
  width: size,
1363
1690
  height: size,
1364
1691
  ref,
@@ -1369,8 +1696,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1369
1696
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H22V4h8Zm-6-2h4V6H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H12V12h8Zm-6-2h4V14H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30H2V18h8ZM4,28H8V20H4Z" }), children);
1370
1697
  });
1371
1698
  if (process.env.NODE_ENV !== "production") SkillLevel.propTypes = require_iconPropTypes.iconPropTypes;
1372
- const SkillLevelAdvanced = react.default.forwardRef(function SkillLevelAdvanced({ children, size = 16, ...rest }, ref) {
1373
- return react.default.createElement(require_Icon_js, {
1699
+ const SkillLevelAdvanced = /* @__PURE__ */ react.default.forwardRef(function SkillLevelAdvanced({ children, size = 16, ...rest }, ref) {
1700
+ return react.default.createElement(require_Icon.Icon, {
1374
1701
  width: size,
1375
1702
  height: size,
1376
1703
  ref,
@@ -1381,8 +1708,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1381
1708
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H22V4h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H12V12h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30H2V18h8Z" }), children);
1382
1709
  });
1383
1710
  if (process.env.NODE_ENV !== "production") SkillLevelAdvanced.propTypes = require_iconPropTypes.iconPropTypes;
1384
- const SkillLevelBasic = react.default.forwardRef(function SkillLevelBasic({ children, size = 16, ...rest }, ref) {
1385
- return react.default.createElement(require_Icon_js, {
1711
+ const SkillLevelBasic = /* @__PURE__ */ react.default.forwardRef(function SkillLevelBasic({ children, size = 16, ...rest }, ref) {
1712
+ return react.default.createElement(require_Icon.Icon, {
1386
1713
  width: size,
1387
1714
  height: size,
1388
1715
  ref,
@@ -1393,8 +1720,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1393
1720
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H22V4h8Zm-6-2h4V6H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H12V12h8Zm-6-2h4V14H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30H2V18h8Z" }), children);
1394
1721
  });
1395
1722
  if (process.env.NODE_ENV !== "production") SkillLevelBasic.propTypes = require_iconPropTypes.iconPropTypes;
1396
- const SkillLevelIntermediate = react.default.forwardRef(function SkillLevelIntermediate({ children, size = 16, ...rest }, ref) {
1397
- return react.default.createElement(require_Icon_js, {
1723
+ const SkillLevelIntermediate = /* @__PURE__ */ react.default.forwardRef(function SkillLevelIntermediate({ children, size = 16, ...rest }, ref) {
1724
+ return react.default.createElement(require_Icon.Icon, {
1398
1725
  width: size,
1399
1726
  height: size,
1400
1727
  ref,
@@ -1405,377 +1732,29 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1405
1732
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H22V4h8Zm-6-2h4V6H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30H12V12h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30H2V18h8Z" }), children);
1406
1733
  });
1407
1734
  if (process.env.NODE_ENV !== "production") SkillLevelIntermediate.propTypes = require_iconPropTypes.iconPropTypes;
1408
- const SkipBack = react.default.forwardRef(function SkipBack({ children, size = 16, ...rest }, ref) {
1409
- return react.default.createElement(require_Icon_js, {
1410
- width: size,
1411
- height: size,
1412
- ref,
1413
- xmlns: "http://www.w3.org/2000/svg",
1414
- viewBox: "0 0 32 32",
1415
- fill: "currentColor",
1416
- ...rest
1417
- }, /* @__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);
1418
- });
1419
- if (process.env.NODE_ENV !== "production") SkipBack.propTypes = require_iconPropTypes.iconPropTypes;
1420
- const SkipBackFilled = react.default.forwardRef(function SkipBackFilled({ children, size = 16, ...rest }, ref) {
1421
- return react.default.createElement(require_Icon_js, {
1422
- width: size,
1423
- height: size,
1424
- ref,
1425
- xmlns: "http://www.w3.org/2000/svg",
1426
- viewBox: "0 0 32 32",
1427
- fill: "currentColor",
1428
- ...rest
1429
- }, /* @__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);
1430
- });
1431
- if (process.env.NODE_ENV !== "production") SkipBackFilled.propTypes = require_iconPropTypes.iconPropTypes;
1432
- const SkipBackOutline = react.default.forwardRef(function SkipBackOutline({ children, size = 16, ...rest }, ref) {
1433
- return react.default.createElement(require_Icon_js, {
1434
- width: size,
1435
- height: size,
1436
- ref,
1437
- xmlns: "http://www.w3.org/2000/svg",
1438
- viewBox: "0 0 32 32",
1439
- fill: "currentColor",
1440
- ...rest
1441
- }, /* @__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", {
1442
- d: "M9 10H11V22H9z",
1443
- transform: "matrix(-1 0 0 -1 20 32)"
1444
- }), /* @__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);
1445
- });
1446
- if (process.env.NODE_ENV !== "production") SkipBackOutline.propTypes = require_iconPropTypes.iconPropTypes;
1447
- const SkipBackOutlineFilled = react.default.forwardRef(function SkipBackOutlineFilled({ 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: "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", {
1457
- fill: "none",
1458
- 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"
1459
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1460
- fill: "none",
1461
- d: "M8 10H10V22H8z",
1462
- transform: "matrix(-1 0 0 -1 18 32)"
1463
- }), children);
1464
- });
1465
- if (process.env.NODE_ENV !== "production") SkipBackOutlineFilled.propTypes = require_iconPropTypes.iconPropTypes;
1466
- const SkipBackOutlineSolid = react.default.forwardRef(function SkipBackOutlineSolid({ children, size = 16, ...rest }, ref) {
1467
- return react.default.createElement(require_Icon_js, {
1468
- width: size,
1469
- height: size,
1470
- ref,
1471
- xmlns: "http://www.w3.org/2000/svg",
1472
- viewBox: "0 0 32 32",
1473
- fill: "currentColor",
1474
- ...rest
1475
- }, /* @__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", {
1476
- d: "M9 10H11V22H9z",
1477
- transform: "matrix(-1 0 0 -1 20 32)"
1478
- }), /* @__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);
1479
- });
1480
- if (process.env.NODE_ENV !== "production") SkipBackOutlineSolid.propTypes = require_iconPropTypes.iconPropTypes;
1481
- const SkipBackSolidFilled = react.default.forwardRef(function SkipBackSolidFilled({ children, size = 16, ...rest }, ref) {
1482
- return react.default.createElement(require_Icon_js, {
1483
- width: size,
1484
- height: size,
1485
- ref,
1486
- xmlns: "http://www.w3.org/2000/svg",
1487
- viewBox: "0 0 32 32",
1488
- fill: "currentColor",
1489
- ...rest
1490
- }, /* @__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", {
1491
- fill: "none",
1492
- 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"
1493
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1494
- fill: "none",
1495
- d: "M8 10H10V22H8z",
1496
- transform: "matrix(-1 0 0 -1 18 32)"
1497
- }), children);
1498
- });
1499
- if (process.env.NODE_ENV !== "production") SkipBackSolidFilled.propTypes = require_iconPropTypes.iconPropTypes;
1500
- const SkipForward = react.default.forwardRef(function SkipForward({ children, size = 16, ...rest }, ref) {
1501
- return react.default.createElement(require_Icon_js, {
1502
- width: size,
1503
- height: size,
1504
- ref,
1505
- xmlns: "http://www.w3.org/2000/svg",
1506
- viewBox: "0 0 32 32",
1507
- fill: "currentColor",
1508
- ...rest
1509
- }, /* @__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);
1510
- });
1511
- if (process.env.NODE_ENV !== "production") SkipForward.propTypes = require_iconPropTypes.iconPropTypes;
1512
- const SkipForwardFilled = react.default.forwardRef(function SkipForwardFilled({ children, size = 16, ...rest }, ref) {
1513
- return react.default.createElement(require_Icon_js, {
1514
- width: size,
1515
- height: size,
1516
- ref,
1517
- xmlns: "http://www.w3.org/2000/svg",
1518
- viewBox: "0 0 32 32",
1519
- fill: "currentColor",
1520
- ...rest
1521
- }, /* @__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);
1522
- });
1523
- if (process.env.NODE_ENV !== "production") SkipForwardFilled.propTypes = require_iconPropTypes.iconPropTypes;
1524
- const SkipForwardOutline = react.default.forwardRef(function SkipForwardOutline({ children, size = 16, ...rest }, ref) {
1525
- return react.default.createElement(require_Icon_js, {
1526
- width: size,
1527
- height: size,
1528
- ref,
1529
- xmlns: "http://www.w3.org/2000/svg",
1530
- viewBox: "0 0 32 32",
1531
- fill: "currentColor",
1532
- ...rest
1533
- }, /* @__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);
1534
- });
1535
- if (process.env.NODE_ENV !== "production") SkipForwardOutline.propTypes = require_iconPropTypes.iconPropTypes;
1536
- const SkipForwardOutlineFilled = react.default.forwardRef(function SkipForwardOutlineFilled({ children, size = 16, ...rest }, ref) {
1537
- return react.default.createElement(require_Icon_js, {
1538
- width: size,
1539
- height: size,
1540
- ref,
1541
- xmlns: "http://www.w3.org/2000/svg",
1542
- viewBox: "0 0 32 32",
1543
- fill: "currentColor",
1544
- ...rest
1545
- }, /* @__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", {
1546
- fill: "none",
1547
- d: "M22 10H24V22H22z"
1548
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1549
- fill: "none",
1550
- 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"
1551
- }), children);
1552
- });
1553
- if (process.env.NODE_ENV !== "production") SkipForwardOutlineFilled.propTypes = require_iconPropTypes.iconPropTypes;
1554
- const SkipForwardOutlineSolid = react.default.forwardRef(function SkipForwardOutlineSolid({ children, size = 16, ...rest }, ref) {
1555
- return react.default.createElement(require_Icon_js, {
1556
- width: size,
1557
- height: size,
1558
- ref,
1559
- xmlns: "http://www.w3.org/2000/svg",
1560
- viewBox: "0 0 32 32",
1561
- fill: "currentColor",
1562
- ...rest
1563
- }, /* @__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);
1564
- });
1565
- if (process.env.NODE_ENV !== "production") SkipForwardOutlineSolid.propTypes = require_iconPropTypes.iconPropTypes;
1566
- const SkipForwardSolidFilled = react.default.forwardRef(function SkipForwardSolidFilled({ children, size = 16, ...rest }, ref) {
1567
- return react.default.createElement(require_Icon_js, {
1568
- width: size,
1569
- height: size,
1570
- ref,
1571
- xmlns: "http://www.w3.org/2000/svg",
1572
- viewBox: "0 0 32 32",
1573
- fill: "currentColor",
1574
- ...rest
1575
- }, /* @__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", {
1576
- fill: "none",
1577
- d: "M22 10H24V22H22z"
1578
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1579
- fill: "none",
1580
- 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"
1581
- }), children);
1582
- });
1583
- if (process.env.NODE_ENV !== "production") SkipForwardSolidFilled.propTypes = require_iconPropTypes.iconPropTypes;
1584
- const Sleet = react.default.forwardRef(function Sleet({ children, size = 16, ...rest }, ref) {
1585
- return react.default.createElement(require_Icon_js, {
1586
- width: size,
1587
- height: size,
1588
- ref,
1589
- xmlns: "http://www.w3.org/2000/svg",
1590
- viewBox: "0 0 32 32",
1591
- fill: "currentColor",
1592
- ...rest
1593
- }, /* @__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);
1594
- });
1595
- if (process.env.NODE_ENV !== "production") Sleet.propTypes = require_iconPropTypes.iconPropTypes;
1596
- const Slisor = react.default.forwardRef(function Slisor({ children, size = 16, ...rest }, ref) {
1597
- return react.default.createElement(require_Icon_js, {
1598
- width: size,
1599
- height: size,
1600
- ref,
1601
- xmlns: "http://www.w3.org/2000/svg",
1602
- viewBox: "0 0 32 32",
1603
- fill: "currentColor",
1604
- ...rest
1605
- }, /* @__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", {
1606
- cx: "7",
1607
- cy: "25",
1608
- r: "1"
1609
- }), /* @__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);
1610
- });
1611
- if (process.env.NODE_ENV !== "production") Slisor.propTypes = require_iconPropTypes.iconPropTypes;
1612
- const Slm = react.default.forwardRef(function Slm({ children, size = 16, ...rest }, ref) {
1613
- return react.default.createElement(require_Icon_js, {
1614
- width: size,
1615
- height: size,
1616
- ref,
1617
- xmlns: "http://www.w3.org/2000/svg",
1618
- viewBox: "0 0 32 32",
1619
- fill: "currentColor",
1620
- ...rest
1621
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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);
1622
- });
1623
- if (process.env.NODE_ENV !== "production") Slm.propTypes = require_iconPropTypes.iconPropTypes;
1624
- const Smell = react.default.forwardRef(function Smell({ children, size = 16, ...rest }, ref) {
1625
- return react.default.createElement(require_Icon_js, {
1626
- width: size,
1627
- height: size,
1628
- ref,
1629
- xmlns: "http://www.w3.org/2000/svg",
1630
- viewBox: "0 0 32 32",
1631
- fill: "currentColor",
1632
- ...rest
1633
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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);
1634
- });
1635
- if (process.env.NODE_ENV !== "production") Smell.propTypes = require_iconPropTypes.iconPropTypes;
1636
- const Smoke = react.default.forwardRef(function Smoke({ children, size = 16, ...rest }, ref) {
1637
- return react.default.createElement(require_Icon_js, {
1638
- width: size,
1639
- height: size,
1640
- ref,
1641
- xmlns: "http://www.w3.org/2000/svg",
1642
- viewBox: "0 0 32 32",
1643
- fill: "currentColor",
1644
- ...rest
1645
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.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);
1646
- });
1647
- if (process.env.NODE_ENV !== "production") Smoke.propTypes = require_iconPropTypes.iconPropTypes;
1648
- const WatsonHealthSmoothing = react.default.forwardRef(function WatsonHealthSmoothing({ children, size = 16, ...rest }, ref) {
1649
- return react.default.createElement(require_Icon_js, {
1650
- width: size,
1651
- height: size,
1652
- ref,
1653
- xmlns: "http://www.w3.org/2000/svg",
1654
- viewBox: "0 0 32 32",
1655
- fill: "currentColor",
1656
- ...rest
1657
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1658
- cx: "16",
1659
- cy: "16",
1660
- r: "5"
1661
- }), /* @__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);
1662
- });
1663
- if (process.env.NODE_ENV !== "production") WatsonHealthSmoothing.propTypes = require_iconPropTypes.iconPropTypes;
1664
- const WatsonHealthSmoothingCursor = react.default.forwardRef(function WatsonHealthSmoothingCursor({ children, size = 16, ...rest }, ref) {
1665
- return react.default.createElement(require_Icon_js, {
1666
- width: size,
1667
- height: size,
1668
- ref,
1669
- xmlns: "http://www.w3.org/2000/svg",
1670
- viewBox: "0 0 32 32",
1671
- fill: "currentColor",
1672
- ...rest
1673
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1674
- cx: "18",
1675
- cy: "18",
1676
- r: "4"
1677
- }), /* @__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);
1678
- });
1679
- if (process.env.NODE_ENV !== "production") WatsonHealthSmoothingCursor.propTypes = require_iconPropTypes.iconPropTypes;
1680
- const Snooze = react.default.forwardRef(function Snooze({ children, size = 16, ...rest }, ref) {
1681
- return react.default.createElement(require_Icon_js, {
1682
- width: size,
1683
- height: size,
1684
- ref,
1685
- xmlns: "http://www.w3.org/2000/svg",
1686
- viewBox: "0 0 32 32",
1687
- fill: "currentColor",
1688
- ...rest
1689
- }, /* @__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", {
1690
- d: "M24.5 3.965H26.499V9.036999999999999H24.5z",
1691
- transform: "rotate(-44.945 25.5 6.5)"
1692
- }), /* @__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", {
1693
- d: "M3.965 5.501H9.036999999999999V7.5H3.965z",
1694
- transform: "rotate(-45.055 6.5 6.5)"
1695
- }), children);
1696
- });
1697
- if (process.env.NODE_ENV !== "production") Snooze.propTypes = require_iconPropTypes.iconPropTypes;
1698
- const Snow = react.default.forwardRef(function Snow({ children, size = 16, ...rest }, ref) {
1699
- return react.default.createElement(require_Icon_js, {
1700
- width: size,
1701
- height: size,
1702
- ref,
1703
- xmlns: "http://www.w3.org/2000/svg",
1704
- viewBox: "0 0 32 32",
1705
- fill: "currentColor",
1706
- ...rest
1707
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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);
1708
- });
1709
- if (process.env.NODE_ENV !== "production") Snow.propTypes = require_iconPropTypes.iconPropTypes;
1710
- const SnowBlizzard = react.default.forwardRef(function SnowBlizzard({ children, size = 16, ...rest }, ref) {
1711
- return react.default.createElement(require_Icon_js, {
1712
- width: size,
1713
- height: size,
1714
- ref,
1715
- xmlns: "http://www.w3.org/2000/svg",
1716
- viewBox: "0 0 32 32",
1717
- fill: "currentColor",
1718
- ...rest
1719
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "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);
1720
- });
1721
- if (process.env.NODE_ENV !== "production") SnowBlizzard.propTypes = require_iconPropTypes.iconPropTypes;
1722
- const SnowHeavy = react.default.forwardRef(function SnowHeavy({ children, size = 16, ...rest }, ref) {
1723
- return react.default.createElement(require_Icon_js, {
1724
- width: size,
1725
- height: size,
1726
- ref,
1727
- xmlns: "http://www.w3.org/2000/svg",
1728
- viewBox: "0 0 32 32",
1729
- fill: "currentColor",
1730
- ...rest
1731
- }, /* @__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);
1732
- });
1733
- if (process.env.NODE_ENV !== "production") SnowHeavy.propTypes = require_iconPropTypes.iconPropTypes;
1734
- const SnowScattered = react.default.forwardRef(function SnowScattered({ children, size = 16, ...rest }, ref) {
1735
- return react.default.createElement(require_Icon_js, {
1736
- width: size,
1737
- height: size,
1738
- ref,
1739
- xmlns: "http://www.w3.org/2000/svg",
1740
- viewBox: "0 0 32 32",
1741
- fill: "currentColor",
1742
- ...rest
1743
- }, /* @__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", {
1744
- d: "M26.732 3.768H29.732V5.768H26.732z",
1745
- transform: "rotate(-45 28.232 4.768)"
1746
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1747
- d: "M26.732 16.233H29.732V18.233H26.732z",
1748
- transform: "rotate(225 28.232 17.233)"
1749
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1750
- d: "M12.268 3.768H15.268V5.768H12.268z",
1751
- transform: "rotate(225 13.768 4.768)"
1752
- }), /* @__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);
1753
- });
1754
- if (process.env.NODE_ENV !== "production") SnowScattered.propTypes = require_iconPropTypes.iconPropTypes;
1755
- const SnowScatteredNight = react.default.forwardRef(function SnowScatteredNight({ children, size = 16, ...rest }, ref) {
1756
- return react.default.createElement(require_Icon_js, {
1757
- width: size,
1758
- height: size,
1759
- ref,
1760
- xmlns: "http://www.w3.org/2000/svg",
1761
- viewBox: "0 0 32 32",
1762
- fill: "currentColor",
1763
- ...rest
1764
- }, /* @__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);
1765
- });
1766
- if (process.env.NODE_ENV !== "production") SnowScatteredNight.propTypes = require_iconPropTypes.iconPropTypes;
1767
- const SnowDensity = react.default.forwardRef(function SnowDensity({ children, size = 16, ...rest }, ref) {
1768
- return react.default.createElement(require_Icon_js, {
1769
- width: size,
1770
- height: size,
1771
- ref,
1772
- xmlns: "http://www.w3.org/2000/svg",
1773
- viewBox: "0 0 32 32",
1774
- fill: "currentColor",
1775
- ...rest
1776
- }, /* @__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);
1777
- });
1778
- if (process.env.NODE_ENV !== "production") SnowDensity.propTypes = require_iconPropTypes.iconPropTypes;
1735
+ exports.QS = QS;
1736
+ exports.QSAlt = QSAlt;
1737
+ exports.Rule = Rule;
1738
+ exports.RuleCancelled = RuleCancelled;
1739
+ exports.RuleDataQuality = RuleDataQuality;
1740
+ exports.RuleDraft = RuleDraft;
1741
+ exports.RuleFilled = RuleFilled;
1742
+ exports.RuleGroupingDataQuality = RuleGroupingDataQuality;
1743
+ exports.RuleLocked = RuleLocked;
1744
+ exports.RulePartial = RulePartial;
1745
+ exports.RuleTest = RuleTest;
1746
+ exports.Ruler = Ruler;
1747
+ exports.RulerAlt = RulerAlt;
1748
+ exports.Run = Run;
1749
+ exports.RunMirror = RunMirror;
1750
+ exports.RunViewIcon = RunViewIcon;
1751
+ exports.Running = Running;
1752
+ exports.SailboatCoastal = SailboatCoastal;
1753
+ exports.SailboatOffshore = SailboatOffshore;
1754
+ exports.SalesOps = SalesOps;
1755
+ exports.SankeyDiagram = SankeyDiagram;
1756
+ exports.SankeyDiagramAlt = SankeyDiagramAlt;
1757
+ exports.Sap = Sap;
1779
1758
  exports.Satellite = Satellite;
1780
1759
  exports.SatelliteRadar = SatelliteRadar;
1781
1760
  exports.SatelliteWeather = SatelliteWeather;
@@ -1823,6 +1802,7 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1823
1802
  exports.ServerDns = ServerDns;
1824
1803
  exports.ServerProxy = ServerProxy;
1825
1804
  exports.ServerTime = ServerTime;
1805
+ exports.ServerTimeUsage = ServerTimeUsage;
1826
1806
  exports.ServerlessFleet = ServerlessFleet;
1827
1807
  exports.ServiceDesk = ServiceDesk;
1828
1808
  exports.ServiceId = ServiceId;
@@ -1843,6 +1823,8 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1843
1823
  exports.Shapes = Shapes;
1844
1824
  exports.Share = Share;
1845
1825
  exports.ShareKnowledge = ShareKnowledge;
1826
+ exports.ShieldAlert = ShieldAlert;
1827
+ exports.ShipmentDelivery = ShipmentDelivery;
1846
1828
  exports.ShoppingBag = ShoppingBag;
1847
1829
  exports.ShoppingCart = ShoppingCart;
1848
1830
  exports.ShoppingCartArrowDown = ShoppingCartArrowDown;
@@ -1869,44 +1851,17 @@ var require_bucket_16 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1869
1851
  exports.SkillLevelAdvanced = SkillLevelAdvanced;
1870
1852
  exports.SkillLevelBasic = SkillLevelBasic;
1871
1853
  exports.SkillLevelIntermediate = SkillLevelIntermediate;
1872
- exports.SkipBack = SkipBack;
1873
- exports.SkipBackFilled = SkipBackFilled;
1874
- exports.SkipBackOutline = SkipBackOutline;
1875
- exports.SkipBackOutlineFilled = SkipBackOutlineFilled;
1876
- exports.SkipBackOutlineSolid = SkipBackOutlineSolid;
1877
- exports.SkipBackSolidFilled = SkipBackSolidFilled;
1878
- exports.SkipForward = SkipForward;
1879
- exports.SkipForwardFilled = SkipForwardFilled;
1880
- exports.SkipForwardOutline = SkipForwardOutline;
1881
- exports.SkipForwardOutlineFilled = SkipForwardOutlineFilled;
1882
- exports.SkipForwardOutlineSolid = SkipForwardOutlineSolid;
1883
- exports.SkipForwardSolidFilled = SkipForwardSolidFilled;
1884
- exports.Sleet = Sleet;
1885
- exports.Slisor = Slisor;
1886
- exports.Slm = Slm;
1887
- exports.Smell = Smell;
1888
- exports.Smoke = Smoke;
1889
- exports.Snooze = Snooze;
1890
- exports.Snow = Snow;
1891
- exports.SnowBlizzard = SnowBlizzard;
1892
- exports.SnowDensity = SnowDensity;
1893
- exports.SnowHeavy = SnowHeavy;
1894
- exports.SnowScattered = SnowScattered;
1895
- exports.SnowScatteredNight = SnowScatteredNight;
1896
1854
  exports.WatsonHealthSaveAnnotation = WatsonHealthSaveAnnotation;
1897
1855
  exports.WatsonHealthSaveImage = WatsonHealthSaveImage;
1898
1856
  exports.WatsonHealthSaveSeries = WatsonHealthSaveSeries;
1899
1857
  exports.WatsonHealthScalpelCursor = WatsonHealthScalpelCursor;
1900
1858
  exports.WatsonHealthScalpelLasso = WatsonHealthScalpelLasso;
1901
1859
  exports.WatsonHealthScalpelSelect = WatsonHealthScalpelSelect;
1902
- exports.WatsonHealthSmoothing = WatsonHealthSmoothing;
1903
- exports.WatsonHealthSmoothingCursor = WatsonHealthSmoothingCursor;
1904
1860
  }));
1905
-
1906
1861
  //#endregion
1907
- Object.defineProperty(exports, 'default', {
1908
- enumerable: true,
1909
- get: function () {
1910
- return require_bucket_16();
1911
- }
1912
- });
1862
+ Object.defineProperty(exports, "default", {
1863
+ enumerable: true,
1864
+ get: function() {
1865
+ return require_bucket_16();
1866
+ }
1867
+ });