@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-15.js
14
12
  var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,357 @@ var require_bucket_15 = /* @__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 QrCode = react.default.forwardRef(function QrCode({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const PricingQuickProposal = /* @__PURE__ */ react.default.forwardRef(function PricingQuickProposal({ 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", {
37
+ strokeWidth: "0",
38
+ d: "m29,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"
39
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
40
+ strokeWidth: "0",
41
+ d: "M3 11H11V13H3z"
42
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
43
+ strokeWidth: "0",
44
+ d: "M3 19H11V21H3z"
45
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
46
+ strokeWidth: "0",
47
+ d: "M5 15H13V17H5z"
48
+ }), children);
49
+ });
50
+ if (process.env.NODE_ENV !== "production") PricingQuickProposal.propTypes = require_iconPropTypes.iconPropTypes;
51
+ const PricingTailored = /* @__PURE__ */ react.default.forwardRef(function PricingTailored({ children, size = 16, ...rest }, ref) {
52
+ return react.default.createElement(require_Icon.Icon, {
53
+ width: size,
54
+ height: size,
55
+ ref,
56
+ xmlns: "http://www.w3.org/2000/svg",
57
+ viewBox: "0 0 32 32",
58
+ fill: "currentColor",
59
+ ...rest
60
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
61
+ strokeWidth: "0",
62
+ d: "m27,21h-2c0-2.8226,0-7.0881-10.0903-8.0042l.1807-1.9917c11.9097,1.0811,11.9097,6.8802,11.9097,9.9958Z"
63
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
64
+ strokeWidth: "0",
65
+ d: "m16.9097,20.9958c-11.9097-1.0811-11.9097-6.8802-11.9097-9.9958h2c0,2.8226,0,7.0881,10.0903,8.0042l-.1807,1.9917Z"
66
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
67
+ strokeWidth: "0",
68
+ d: "m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"
69
+ }), children);
70
+ });
71
+ if (process.env.NODE_ENV !== "production") PricingTailored.propTypes = require_iconPropTypes.iconPropTypes;
72
+ const PricingTraditional = /* @__PURE__ */ react.default.forwardRef(function PricingTraditional({ children, size = 16, ...rest }, ref) {
73
+ return react.default.createElement(require_Icon.Icon, {
74
+ width: size,
75
+ height: size,
76
+ ref,
77
+ xmlns: "http://www.w3.org/2000/svg",
78
+ viewBox: "0 0 32 32",
79
+ fill: "currentColor",
80
+ ...rest
81
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
82
+ strokeWidth: "0",
83
+ d: "m17,15.0698v-6.9536c1.6909.2793,3.084,1.1021,4.2219,2.5117l1.5562-1.2559c-1.5195-1.8823-3.4619-2.9736-5.7781-3.2759v-3.0962h-2v3.022c-3.6152.2192-6,2.2603-6,5.2202,0,4.2739,3.1265,5.1191,6,5.5586v7.1616c-2.7192-.1777-4.0186-1.1001-5.2219-2.5903l-1.5562,1.2559c1.7703,2.1934,3.7332,3.168,6.7781,3.3369v3.0352h2v-3.0449c3.7256-.3042,6-2.3271,6-5.4399,0-4.209-3.1428-5.0156-6-5.4453Zm-6-3.8276c0-2.1533,2.0293-3.0537,4-3.2134v6.7466c-2.5696-.4238-4-1.043-4-3.5332Zm6,12.71v-6.8574c2.5669.4155,4,1.0044,4,3.4204,0,2.5361-2.1902,3.2656-4,3.437Z"
84
+ }), children);
85
+ });
86
+ if (process.env.NODE_ENV !== "production") PricingTraditional.propTypes = require_iconPropTypes.iconPropTypes;
87
+ const Printer = /* @__PURE__ */ react.default.forwardRef(function Printer({ children, size = 16, ...rest }, ref) {
88
+ return react.default.createElement(require_Icon.Icon, {
89
+ width: size,
90
+ height: size,
91
+ ref,
92
+ xmlns: "http://www.w3.org/2000/svg",
93
+ viewBox: "0 0 32 32",
94
+ fill: "currentColor",
95
+ ...rest
96
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,9H25V3H7V9H4a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2H7v6H25V23h3a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9ZM9,5H23V9H9ZM23,27H9V17H23Zm5-6H25V15H7v6H4V11H28Z" }), children);
97
+ });
98
+ if (process.env.NODE_ENV !== "production") Printer.propTypes = require_iconPropTypes.iconPropTypes;
99
+ const PrivateNetwork = /* @__PURE__ */ react.default.forwardRef(function PrivateNetwork({ children, size = 16, ...rest }, ref) {
100
+ return react.default.createElement(require_Icon.Icon, {
101
+ width: size,
102
+ height: size,
103
+ ref,
104
+ xmlns: "http://www.w3.org/2000/svg",
105
+ viewBox: "0 0 32 32",
106
+ fill: "currentColor",
107
+ ...rest
108
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,23v3h-14.5c-2.5,0-4.5-2-4.5-4.5s2-4.5,4.5-4.5h.5v-2h-.5c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5h14.5v3h8v-8h-8ZM29,29h-4v-4h4v4ZM23.5,4h-14.5V1H1v8h8v-3h14.5c2.5,0,4.5,2,4.5,4.5s-2,4.5-4.5,4.5h-.5v2h.5c3.6,0,6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5ZM7,7H3V3h4v4ZM20,15h-1v-2c0-1.7-1.3-3-3-3s-3,1.3-3,3v2h-1c-.6,0-1,.4-1,1v5c0,.6.4,1,1,1h8c.6,0,1-.4,1-1v-5c0-.6-.4-1-1-1ZM15,13c0-.6.4-1,1-1s1,.4,1,1v2h-2v-2ZM19,20h-6v-3h6v3Z" }), children);
109
+ });
110
+ if (process.env.NODE_ENV !== "production") PrivateNetwork.propTypes = require_iconPropTypes.iconPropTypes;
111
+ const Process = /* @__PURE__ */ react.default.forwardRef(function Process({ children, size = 16, ...rest }, ref) {
112
+ return react.default.createElement(require_Icon.Icon, {
113
+ width: size,
114
+ height: size,
115
+ ref,
116
+ xmlns: "http://www.w3.org/2000/svg",
117
+ viewBox: "0 0 32 32",
118
+ fill: "currentColor",
119
+ ...rest
120
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,25c-.7383,0-1.3762.4048-1.7227,1h-5.6301l2.6479-5.0923c.2273.0552.4609.0923.7048.0923,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.6787.2349,1.2979.6162,1.8013l-3.5034,6.7373c-.1611.3101-.1489.6816.0325.9805.1812.2983.5054.481.8547.481h7.2773c.3464.5952.9844,1,1.7227,1,1.1045,0,2-.8955,2-2s-.8955-2-2-2Zm-4-8c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29.8872,26.5386l-4.041-7.771c.0986-.2363.1538-.4956.1538-.7676,0-1.1045-.8955-2-2-2s-2,.8955-2,2,.8955,2,2,2c.0757,0,.1477-.0142.2212-.0225l3.1316,6.0225h-4.5371c-.4141-1.1611-1.5137-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.302,0,2.4016-.8389,2.8157-2h6.1843c.3494,0,.6736-.1826.8547-.481.1814-.2988.1936-.6704.0325-.9805Zm-9.8872,1.4614c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21,8c-.2439,0-.4778.0371-.7048.0923l-3.408-6.5537c-.1721-.3311-.5298-.5386-.8872-.5386s-.7151.2075-.8872.5386l-3.8914,7.4839c-.0737-.0083-.1458-.0225-.2214-.0225-1.1045,0-2,.8955-2,2s.8955,2,2,2,2-.8955,2-2c0-.272-.0552-.5312-.1538-.7676l3.1538-6.0649,2.6162,5.0312c-.3813.5034-.6162,1.1226-.6162,1.8013,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0,4c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z" }), children);
121
+ });
122
+ if (process.env.NODE_ENV !== "production") Process.propTypes = require_iconPropTypes.iconPropTypes;
123
+ const ProcessAutomate = /* @__PURE__ */ react.default.forwardRef(function ProcessAutomate({ children, size = 16, ...rest }, ref) {
124
+ return react.default.createElement(require_Icon.Icon, {
125
+ width: size,
126
+ height: size,
127
+ ref,
128
+ xmlns: "http://www.w3.org/2000/svg",
129
+ viewBox: "0 0 32 32",
130
+ fill: "currentColor",
131
+ ...rest
132
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m31,17c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.3018.8384,2.4014,2,2.8154v2.6104l-11,6.4165-10.0154-5.8423,22.5193-13.1362c.3071-.1792.4961-.5083.4961-.8638s-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3.1846c-1.1616.4141-2,1.5137-2,2.8154,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-1.3018-.8384-2.4014-2-2.8159v-2.6099l11-6.4165,10.0154,5.8423L3.4961,22.1362c-.3071.1792-.4961.5083-.4961.8638s.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-3.1841c1.1616-.4146,2-1.5142,2-2.8159Zm-27-1c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm24,2c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z" }), children);
133
+ });
134
+ if (process.env.NODE_ENV !== "production") ProcessAutomate.propTypes = require_iconPropTypes.iconPropTypes;
135
+ const Product = /* @__PURE__ */ react.default.forwardRef(function Product({ children, size = 16, ...rest }, ref) {
136
+ return react.default.createElement(require_Icon.Icon, {
137
+ width: size,
138
+ height: size,
139
+ ref,
140
+ xmlns: "http://www.w3.org/2000/svg",
141
+ viewBox: "0 0 32 32",
142
+ fill: "currentColor",
143
+ ...rest
144
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H14V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 22H18V24H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM18,6v4H14V6ZM6,26V6h6v6h8V6h6l.0012,20Z" }), children);
145
+ });
146
+ if (process.env.NODE_ENV !== "production") Product.propTypes = require_iconPropTypes.iconPropTypes;
147
+ const ProductionEnvironment = /* @__PURE__ */ react.default.forwardRef(function ProductionEnvironment({ children, size = 16, ...rest }, ref) {
148
+ return react.default.createElement(require_Icon.Icon, {
149
+ width: size,
150
+ height: size,
151
+ ref,
152
+ xmlns: "http://www.w3.org/2000/svg",
153
+ viewBox: "0 0 32 32",
154
+ fill: "currentColor",
155
+ ...rest
156
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18.0001h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM25.58,22.4101l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.42,27.5901l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.915,20.5771l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z" }), children);
157
+ });
158
+ if (process.env.NODE_ENV !== "production") ProductionEnvironment.propTypes = require_iconPropTypes.iconPropTypes;
159
+ const ProductionService = /* @__PURE__ */ react.default.forwardRef(function ProductionService({ children, size = 16, ...rest }, ref) {
160
+ return react.default.createElement(require_Icon.Icon, {
161
+ width: size,
162
+ height: size,
163
+ ref,
164
+ xmlns: "http://www.w3.org/2000/svg",
165
+ viewBox: "0 0 32 32",
166
+ fill: "currentColor",
167
+ ...rest
168
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM31,27.0001c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.2228.0283-.4384.0746-.6475l-2.0746-1.1977-2.0746,1.1977c.0463.209.0746.4247.0746.6475,0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3c.7037,0,1.343.2536,1.8551.6607l2.1449-1.2383v-1.6068c-1.1615-.4141-2-1.5137-2-2.8157,0-1.6543,1.3457-3,3-3s3,1.3457,3,3c0,1.3019-.8385,2.4016-2,2.8157v1.6067l2.1449,1.2383c.5121-.4071,1.1514-.6607,1.8551-.6607,1.6543,0,3,1.3457,3,3h0ZM19,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1ZM22,19.0001c0,.5513.4482,1,1,1s1-.4487,1-1-.4482-1-1-1-1,.4487-1,1ZM29,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z" }), children);
169
+ });
170
+ if (process.env.NODE_ENV !== "production") ProductionService.propTypes = require_iconPropTypes.iconPropTypes;
171
+ const ProgressBar = /* @__PURE__ */ react.default.forwardRef(function ProgressBar({ children, size = 16, ...rest }, ref) {
172
+ return react.default.createElement(require_Icon.Icon, {
173
+ width: size,
174
+ height: size,
175
+ ref,
176
+ xmlns: "http://www.w3.org/2000/svg",
177
+ viewBox: "0 0 32 32",
178
+ fill: "currentColor",
179
+ ...rest
180
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,21H4a2.0021,2.0021,0,0,1-2-2V13a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,21ZM4,13v6H28V13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 15H20V17H6z" }), children);
181
+ });
182
+ if (process.env.NODE_ENV !== "production") ProgressBar.propTypes = require_iconPropTypes.iconPropTypes;
183
+ const ProgressBarRound = /* @__PURE__ */ react.default.forwardRef(function ProgressBarRound({ children, size = 16, ...rest }, ref) {
184
+ return react.default.createElement(require_Icon.Icon, {
185
+ width: size,
186
+ height: size,
187
+ ref,
188
+ xmlns: "http://www.w3.org/2000/svg",
189
+ viewBox: "0 0 32 32",
190
+ fill: "currentColor",
191
+ ...rest
192
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,26a10.0162,10.0162,0,0,1-7.4531-3.3325l1.49-1.334A8,8,0,1,0,16,8V6a10,10,0,0,1,0,20Z" }), /* @__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);
193
+ });
194
+ if (process.env.NODE_ENV !== "production") ProgressBarRound.propTypes = require_iconPropTypes.iconPropTypes;
195
+ const Promote = /* @__PURE__ */ react.default.forwardRef(function Promote({ children, size = 16, ...rest }, ref) {
196
+ return react.default.createElement(require_Icon.Icon, {
197
+ width: size,
198
+ height: size,
199
+ ref,
200
+ xmlns: "http://www.w3.org/2000/svg",
201
+ viewBox: "0 0 32 32",
202
+ fill: "currentColor",
203
+ ...rest
204
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 21 17.4 22.4 14.8 25 23 25 23 27 14.8 27 17.4 29.6 16 31 11 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
205
+ d: "M6.3 19H17.6V21H6.3z",
206
+ transform: "rotate(-45 12 20)"
207
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,22h-2v-5c0-0.3,0.1-0.5,0.3-0.7l4.1-4.1c1.7-1.7,2.6-4,2.6-6.4V4h-1.9c-2.4,0-4.7,0.9-6.4,2.6l-4.1,4.1 C15.5,10.9,15.3,11,15,11H7.5l-2.6,3.3l5.3,0.8l-0.3,2l-7-1c-0.4-0.1-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l4-5C6.4,9.1,6.7,9,7,9h7.6 l3.8-3.8C20.4,3.1,23.2,2,26.1,2H28c1.1,0,2,0.9,2,2v1.9c0,2.9-1.1,5.7-3.2,7.8L23,17.4V22z" }), children);
208
+ });
209
+ if (process.env.NODE_ENV !== "production") Promote.propTypes = require_iconPropTypes.iconPropTypes;
210
+ const PromptSession = /* @__PURE__ */ react.default.forwardRef(function PromptSession({ children, size = 16, ...rest }, ref) {
211
+ return react.default.createElement(require_Icon.Icon, {
212
+ width: size,
213
+ height: size,
214
+ ref,
215
+ xmlns: "http://www.w3.org/2000/svg",
216
+ viewBox: "0 0 32 32",
217
+ fill: "currentColor",
218
+ ...rest
219
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 25.5859 25 23.5859 25 21 23 21 23 24.4141 25.5859 27 27 25.5859z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,31c-3.8599,0-7-3.1401-7-7s3.1401-7,7-7,7,3.1401,7,7-3.1401,7-7,7Zm0-12c-2.7571,0-5,2.2429-5,5s2.2429,5,5,5,5-2.2429,5-5-2.2429-5-5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
220
+ cx: "9",
221
+ cy: "13",
222
+ r: "2"
223
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
224
+ cx: "16",
225
+ cy: "13",
226
+ r: "2"
227
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
228
+ cx: "23",
229
+ cy: "13",
230
+ r: "2"
231
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z" }), children);
232
+ });
233
+ if (process.env.NODE_ENV !== "production") PromptSession.propTypes = require_iconPropTypes.iconPropTypes;
234
+ const PromptTemplate = /* @__PURE__ */ react.default.forwardRef(function PromptTemplate({ children, size = 16, ...rest }, ref) {
235
+ return react.default.createElement(require_Icon.Icon, {
236
+ width: size,
237
+ height: size,
238
+ ref,
239
+ xmlns: "http://www.w3.org/2000/svg",
240
+ viewBox: "0 0 32 32",
241
+ fill: "currentColor",
242
+ ...rest
243
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m31.5,23c-.8271,0-1.5-.6729-1.5-1.5v-1.5c0-1.1025-.8972-2-2-2h-2v2h2v1.5c0,.98.4072,1.8643,1.0581,2.5-.6509.6357-1.0581,1.52-1.0581,2.5v1.5h-2v2h2c1.1028,0,2-.8975,2-2v-1.5c0-.8271.6729-1.5,1.5-1.5h.5v-2h-.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,20v1.5c0,.8271-.6729,1.5-1.5,1.5h-.5v2h.5c.8271,0,1.5.6729,1.5,1.5v1.5c0,1.1025.8972,2,2,2h2v-2h-2v-1.5c0-.98-.4072-1.8643-1.0581-2.5.6509-.6357,1.0581-1.52,1.0581-2.5v-1.5h2v-2h-2c-1.1028,0-2,.8975-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
244
+ cx: "23",
245
+ cy: "13",
246
+ r: "2"
247
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
248
+ cx: "16",
249
+ cy: "13",
250
+ r: "2"
251
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
252
+ cx: "9",
253
+ cy: "13",
254
+ r: "2"
255
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z" }), children);
256
+ });
257
+ if (process.env.NODE_ENV !== "production") PromptTemplate.propTypes = require_iconPropTypes.iconPropTypes;
258
+ const PropertyRelationship = /* @__PURE__ */ react.default.forwardRef(function PropertyRelationship({ children, size = 16, ...rest }, ref) {
259
+ return react.default.createElement(require_Icon.Icon, {
260
+ width: size,
261
+ height: size,
262
+ ref,
263
+ xmlns: "http://www.w3.org/2000/svg",
264
+ viewBox: "0 0 32 32",
265
+ fill: "currentColor",
266
+ ...rest
267
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 16 22 24 20.6 22.6 27.2 16 20.6 9.4 22 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 15H20V17H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16 10 8 11.4 9.4 4.8 16 11.4 22.6 10 24z" }), children);
268
+ });
269
+ if (process.env.NODE_ENV !== "production") PropertyRelationship.propTypes = require_iconPropTypes.iconPropTypes;
270
+ const PullRequest = /* @__PURE__ */ react.default.forwardRef(function PullRequest({ children, size = 16, ...rest }, ref) {
271
+ return react.default.createElement(require_Icon.Icon, {
272
+ width: size,
273
+ height: size,
274
+ ref,
275
+ xmlns: "http://www.w3.org/2000/svg",
276
+ viewBox: "0 0 32 32",
277
+ fill: "currentColor",
278
+ ...rest
279
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
280
+ strokeWidth: "0",
281
+ d: "m25,22.1421v-13.1421c0-2.2056-1.7944-4-4-4h-4.1719l2.5859-2.5859-1.4141-1.4141-5,5,5,5,1.4141-1.4141-2.5859-2.5859h4.1719c1.1028,0,2,.8975,2,2v13.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579Zm-1,5.8579c-1.1028,0-2-.8975-2-2s.8972-2,2-2,2,.8975,2,2-.8972,2-2,2Z"
282
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
283
+ strokeWidth: "0",
284
+ d: "m4,6c0,1.8584,1.2798,3.4106,3,3.8579v12.2842c-1.7202.447-3,1.9993-3,3.8579,0,2.2061,1.7944,4,4,4s4-1.7939,4-4c0-1.8586-1.2798-3.4109-3-3.8579v-12.2842c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm6,20c0,1.1025-.897,2-2,2s-2-.8975-2-2c0-1.1025.897-2,2-2s2,.8975,2,2Zm0-20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"
285
+ }), children);
286
+ });
287
+ if (process.env.NODE_ENV !== "production") PullRequest.propTypes = require_iconPropTypes.iconPropTypes;
288
+ const PunctuationCheck = /* @__PURE__ */ react.default.forwardRef(function PunctuationCheck({ children, size = 16, ...rest }, ref) {
289
+ return react.default.createElement(require_Icon.Icon, {
290
+ width: size,
291
+ height: size,
292
+ ref,
293
+ xmlns: "http://www.w3.org/2000/svg",
294
+ viewBox: "0 0 32 32",
295
+ fill: "currentColor",
296
+ ...rest
297
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,27.1781l-2.59-2.59-1.41,1.4119,4,4,7-7-1.41-1.4119-5.59,5.59ZM14,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM22,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM12,28h-6c-1.103,0-2-.8975-2-2V6c0-1.103.897-2,2-2h20c1.1025,0,2,.897,2,2v11h-2V6H6v20h6v2Z" }), children);
298
+ });
299
+ if (process.env.NODE_ENV !== "production") PunctuationCheck.propTypes = require_iconPropTypes.iconPropTypes;
300
+ const Purchase = /* @__PURE__ */ react.default.forwardRef(function Purchase({ children, size = 16, ...rest }, ref) {
301
+ return react.default.createElement(require_Icon.Icon, {
302
+ width: size,
303
+ height: size,
304
+ ref,
305
+ xmlns: "http://www.w3.org/2000/svg",
306
+ viewBox: "0 0 32 32",
307
+ fill: "currentColor",
308
+ ...rest
309
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6Zm0,2v3H4V8ZM4,24V13H28V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 20H16V22H6z" }), children);
310
+ });
311
+ if (process.env.NODE_ENV !== "production") Purchase.propTypes = require_iconPropTypes.iconPropTypes;
312
+ const WatsonHealthQcLaunch = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthQcLaunch({ children, size = 16, ...rest }, ref) {
313
+ return react.default.createElement(require_Icon.Icon, {
314
+ width: size,
315
+ height: size,
316
+ ref,
317
+ xmlns: "http://www.w3.org/2000/svg",
318
+ viewBox: "0 0 32 32",
319
+ fill: "currentColor",
320
+ ...rest
321
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,22H19a2.0023,2.0023,0,0,1-2-2V10a2.002,2.002,0,0,1,2-2h6v2H19V20h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,8H9a2.002,2.002,0,0,0-2,2V20a2.0023,2.0023,0,0,0,2,2h1v2a2.0023,2.0023,0,0,0,2,2h2V24H12V22h1a2.0023,2.0023,0,0,0,2-2V10A2.002,2.002,0,0,0,13,8ZM9,20V10h4V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,28,30ZM4,4V28H28V4Z" }), children);
322
+ });
323
+ if (process.env.NODE_ENV !== "production") WatsonHealthQcLaunch.propTypes = require_iconPropTypes.iconPropTypes;
324
+ const Qiskit = /* @__PURE__ */ react.default.forwardRef(function Qiskit({ children, size = 16, ...rest }, ref) {
325
+ return react.default.createElement(require_Icon.Icon, {
326
+ width: size,
327
+ height: size,
328
+ ref,
329
+ xmlns: "http://www.w3.org/2000/svg",
330
+ viewBox: "0 0 32 32",
331
+ fill: "currentColor",
332
+ ...rest
333
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
334
+ strokeWidth: "0",
335
+ d: "m16,1C7.729,1,1,7.729,1,16s6.729,15,15,15,15-6.729,15-15S24.271,1,16,1Zm6.5825,20.5c-.5203-.8926-1.4771-1.5-2.5825-1.5-.1821,0-.3586.0225-.532.0537l-1.7258-3.0205c6.7866.2388,10.1216,1.8262,10.2571,2.4668-.0979.4624-1.8899,1.4141-5.4167,2Zm-2.5825.5c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1ZM3,16c0-.5435.0442-1.0762.1094-1.6025.8552.666,2.1555,1.1973,3.7239,1.6025-1.5684.4053-2.8687.9365-3.7239,1.6025-.0652-.5264-.1094-1.0591-.1094-1.6025Zm6.4175-5.4995c.5205.8921,1.4773,1.4995,2.5825,1.4995.1821,0,.3586-.0225.532-.0537l1.7258,3.0205c-6.8042-.2393-10.1387-1.8335-10.2581-2.4619.0862-.4609,1.8784-1.416,5.4177-2.0044Zm2.5825-.5005c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm13.167,6c1.5681-.4053,2.8684-.9365,3.7236-1.6025.0652.5264.1094,1.0591.1094,1.6025s-.0442,1.0762-.1094,1.6025c-.8552-.666-2.1555-1.1973-3.7236-1.6025ZM16,3c4.9019,0,9.1758,2.7285,11.3901,6.7451-2.2891-.9961-5.7993-1.5513-9.3901-1.6997v1.999c6.6108.2695,9.8655,1.8232,9.9993,2.4556-.1431.6763-3.8533,2.4062-11.4236,2.4917l-2.3118-4.0454c.4524-.5254.7361-1.2002.7361-1.9463,0-1.6543-1.3457-3-3-3-1.4956,0-2.7285,1.1035-2.9531,2.5371-1.7056.2837-3.2363.6841-4.4351,1.2051,2.2151-4.0146,6.4878-6.7422,11.3882-6.7422Zm0,26c-4.9019,0-9.1758-2.7285-11.3901-6.7451,2.2891.9961,5.7993,1.5513,9.3901,1.6997v-1.999c-6.6282-.2705-9.8823-1.8306-10.0002-2.4507.126-.6729,3.8357-2.4106,11.4246-2.4966l2.3118,4.0454c-.4524.5254-.7361,1.2002-.7361,1.9463,0,1.6543,1.3457,3,3,3,1.4956,0,2.7285-1.1035,2.9531-2.5371,1.7056-.2837,3.2363-.6841,4.4351-1.2051-2.2151,4.0146-6.4878,6.7422-11.3882,6.7422Z"
336
+ }), children);
337
+ });
338
+ if (process.env.NODE_ENV !== "production") Qiskit.propTypes = require_iconPropTypes.iconPropTypes;
339
+ const QqPlot = /* @__PURE__ */ react.default.forwardRef(function QqPlot({ children, size = 16, ...rest }, ref) {
340
+ return react.default.createElement(require_Icon.Icon, {
341
+ width: size,
342
+ height: size,
343
+ ref,
344
+ xmlns: "http://www.w3.org/2000/svg",
345
+ viewBox: "0 0 32 32",
346
+ fill: "currentColor",
347
+ ...rest
348
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
349
+ cx: "20",
350
+ cy: "4",
351
+ r: "2"
352
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
353
+ cx: "8",
354
+ cy: "16",
355
+ r: "2"
356
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
357
+ cx: "28",
358
+ cy: "12",
359
+ r: "2"
360
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
361
+ cx: "11",
362
+ cy: "7",
363
+ r: "2"
364
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
365
+ cx: "16",
366
+ cy: "24",
367
+ r: "2"
368
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4131,28.5859,2,4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4131Z" }), children);
369
+ });
370
+ if (process.env.NODE_ENV !== "production") QqPlot.propTypes = require_iconPropTypes.iconPropTypes;
371
+ const QrCode = /* @__PURE__ */ react.default.forwardRef(function QrCode({ children, size = 16, ...rest }, ref) {
372
+ return react.default.createElement(require_Icon.Icon, {
32
373
  width: size,
33
374
  height: size,
34
375
  ref,
@@ -51,8 +392,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
51
392
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 22H10V26H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,30H2V18H14ZM4,28h8V20H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 6H26V10H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,14H18V2H30ZM20,12h8V4H20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H10V10H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,14H2V2H14ZM4,12h8V4H4Z" }), children);
52
393
  });
53
394
  if (process.env.NODE_ENV !== "production") QrCode.propTypes = require_iconPropTypes.iconPropTypes;
54
- const QuadrantPlot = react.default.forwardRef(function QuadrantPlot({ children, size = 16, ...rest }, ref) {
55
- return react.default.createElement(require_Icon_js, {
395
+ const QuadrantPlot = /* @__PURE__ */ react.default.forwardRef(function QuadrantPlot({ children, size = 16, ...rest }, ref) {
396
+ return react.default.createElement(require_Icon.Icon, {
56
397
  width: size,
57
398
  height: size,
58
399
  ref,
@@ -91,8 +432,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
91
432
  }), children);
92
433
  });
93
434
  if (process.env.NODE_ENV !== "production") QuadrantPlot.propTypes = require_iconPropTypes.iconPropTypes;
94
- const Query = react.default.forwardRef(function Query({ children, size = 16, ...rest }, ref) {
95
- return react.default.createElement(require_Icon_js, {
435
+ const Query = /* @__PURE__ */ react.default.forwardRef(function Query({ children, size = 16, ...rest }, ref) {
436
+ return react.default.createElement(require_Icon.Icon, {
96
437
  width: size,
97
438
  height: size,
98
439
  ref,
@@ -107,8 +448,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
107
448
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,12H10V8h2a2,2,0,0,0,0-4H10A2.0023,2.0023,0,0,0,8,6v.5H6V6a4.0045,4.0045,0,0,1,4-4h2a4,4,0,0,1,0,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.4479,21.0337A10.971,10.971,0,0,0,19.9211,4.7446l-.999,1.73A8.9967,8.9967,0,1,1,5,14H3a10.9916,10.9916,0,0,0,18.0338,8.4478L28.5859,30,30,28.5859Z" }), children);
108
449
  });
109
450
  if (process.env.NODE_ENV !== "production") Query.propTypes = require_iconPropTypes.iconPropTypes;
110
- const QueryQueue = react.default.forwardRef(function QueryQueue({ children, size = 16, ...rest }, ref) {
111
- return react.default.createElement(require_Icon_js, {
451
+ const QueryQueue = /* @__PURE__ */ react.default.forwardRef(function QueryQueue({ children, size = 16, ...rest }, ref) {
452
+ return react.default.createElement(require_Icon.Icon, {
112
453
  width: size,
113
454
  height: size,
114
455
  ref,
@@ -119,8 +460,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
119
460
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 6H28V8H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H28V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 18H28V20H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 24H28V26H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 14 11 19 4 24 4 14z" }), children);
120
461
  });
121
462
  if (process.env.NODE_ENV !== "production") QueryQueue.propTypes = require_iconPropTypes.iconPropTypes;
122
- const QuestionAnswering = react.default.forwardRef(function QuestionAnswering({ children, size = 16, ...rest }, ref) {
123
- return react.default.createElement(require_Icon_js, {
463
+ const QuestionAnswering = /* @__PURE__ */ react.default.forwardRef(function QuestionAnswering({ children, size = 16, ...rest }, ref) {
464
+ return react.default.createElement(require_Icon.Icon, {
124
465
  width: size,
125
466
  height: size,
126
467
  ref,
@@ -143,8 +484,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
143
484
  }), children);
144
485
  });
145
486
  if (process.env.NODE_ENV !== "production") QuestionAnswering.propTypes = require_iconPropTypes.iconPropTypes;
146
- const Queued = react.default.forwardRef(function Queued({ children, size = 16, ...rest }, ref) {
147
- return react.default.createElement(require_Icon_js, {
487
+ const Queued = /* @__PURE__ */ react.default.forwardRef(function Queued({ children, size = 16, ...rest }, ref) {
488
+ return react.default.createElement(require_Icon.Icon, {
148
489
  width: size,
149
490
  height: size,
150
491
  ref,
@@ -155,8 +496,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
155
496
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 20H30V22H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 24H30V26H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 28H30V30H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 24H20V26H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 20H20V22H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 28H20V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.8149,8.293A12.0777,12.0777,0,0,1,10.0068,5.62L9.0079,3.89A14.0845,14.0845,0,0,0,5.2841,7.0083Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.1851,8.293l1.5308-1.2847A14.0845,14.0845,0,0,0,22.9921,3.89l-.9989,1.73A12.0777,12.0777,0,0,1,25.1851,8.293Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.7366,11.9l-1.8772-.6831A13.9019,13.9019,0,0,0,2,16H4A11.917,11.917,0,0,1,4.7366,11.9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.8149,23.707A11.9975,11.9975,0,0,1,4.7366,20.1l-1.8772.6831a13.99,13.99,0,0,0,2.4247,4.209Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.2634,11.9A11.917,11.917,0,0,1,28,16h2a13.8971,13.8971,0,0,0-.8594-4.7827Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.9182,27.8066A11.8894,11.8894,0,0,1,10.0068,26.38l-.9989,1.73a13.8673,13.8673,0,0,0,4.5633,1.664Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.9182,4.1934a11.3012,11.3012,0,0,1,4.1636,0l.347-1.9678a13.187,13.187,0,0,0-4.8576,0Z" }), children);
156
497
  });
157
498
  if (process.env.NODE_ENV !== "production") Queued.propTypes = require_iconPropTypes.iconPropTypes;
158
- const Quotes = react.default.forwardRef(function Quotes({ children, size = 16, ...rest }, ref) {
159
- return react.default.createElement(require_Icon_js, {
499
+ const Quotes = /* @__PURE__ */ react.default.forwardRef(function Quotes({ children, size = 16, ...rest }, ref) {
500
+ return react.default.createElement(require_Icon.Icon, {
160
501
  width: size,
161
502
  height: size,
162
503
  ref,
@@ -167,8 +508,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
167
508
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,15H6.11A9,9,0,0,1,10,8.86l1.79-1.2L10.69,6,8.9,7.2A11,11,0,0,0,4,16.35V23a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V17A2,2,0,0,0,12,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,15H20.11A9,9,0,0,1,24,8.86l1.79-1.2L24.7,6,22.9,7.2A11,11,0,0,0,18,16.35V23a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V17A2,2,0,0,0,26,15Z" }), children);
168
509
  });
169
510
  if (process.env.NODE_ENV !== "production") Quotes.propTypes = require_iconPropTypes.iconPropTypes;
170
- const Radar = react.default.forwardRef(function Radar({ children, size = 16, ...rest }, ref) {
171
- return react.default.createElement(require_Icon_js, {
511
+ const Radar = /* @__PURE__ */ react.default.forwardRef(function Radar({ children, size = 16, ...rest }, ref) {
512
+ return react.default.createElement(require_Icon.Icon, {
172
513
  width: size,
173
514
  height: size,
174
515
  ref,
@@ -179,8 +520,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
179
520
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4141,28.5859,2,15.293,15.293a1,1,0,0,0,1.414,1.414l4.18-4.1792A5.9956,5.9956,0,1,1,16,10V8a8.011,8.011,0,1,0,6.3164,3.0977L25.1631,8.251A11.881,11.881,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a13.8572,13.8572,0,0,0-3.4224-9.1636Z" }), children);
180
521
  });
181
522
  if (process.env.NODE_ENV !== "production") Radar.propTypes = require_iconPropTypes.iconPropTypes;
182
- const RadarEnhanced = react.default.forwardRef(function RadarEnhanced({ children, size = 16, ...rest }, ref) {
183
- return react.default.createElement(require_Icon_js, {
523
+ const RadarEnhanced = /* @__PURE__ */ react.default.forwardRef(function RadarEnhanced({ children, size = 16, ...rest }, ref) {
524
+ return react.default.createElement(require_Icon.Icon, {
184
525
  width: size,
185
526
  height: size,
186
527
  ref,
@@ -191,8 +532,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
191
532
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541A4.9817,4.9817,0,0,1,18,19a5.0385,5.0385,0,0,1-.6074-.05,8.0432,8.0432,0,0,0-4.3421-4.3423A4.9,4.9,0,0,1,18,9V7a7.0078,7.0078,0,0,0-7,7c0,.0234.0056.0469.0059.07A8.0469,8.0469,0,0,0,10,14a7.95,7.95,0,0,0-1.9883.26C8.0095,14.1729,8,14.0879,8,14A10.0114,10.0114,0,0,1,18,4V2A12.0137,12.0137,0,0,0,6,14c0,.355.0171.7061.0471,1.0537A7.9943,7.9943,0,1,0,16.9465,25.9521c.35.03.7019.0479,1.0535.0479A11.9853,11.9853,0,0,0,27.1538,6.2607ZM15.91,21H13.9563a12.029,12.029,0,0,0-1.218-4.332A6.01,6.01,0,0,1,15.91,21ZM4.09,23H6.0435a12.0318,12.0318,0,0,0,1.2182,4.3325A6.01,6.01,0,0,1,4.09,23Zm1.9532-2H4.09a6.01,6.01,0,0,1,3.1714-4.332A12.0321,12.0321,0,0,0,6.0435,21ZM10,27.9858A10.0149,10.0149,0,0,1,8.0552,23h3.89A10.0149,10.0149,0,0,1,10,27.9858ZM8.0552,21A10.0118,10.0118,0,0,1,10,16.0151,10.01,10.01,0,0,1,11.9448,21Zm4.6831,6.3325A12.0318,12.0318,0,0,0,13.9565,23H15.91A6.01,6.01,0,0,1,12.7383,27.3325ZM28,14A10.0114,10.0114,0,0,1,18,24c-.0869,0-.1733-.01-.26-.0117a7.5527,7.5527,0,0,0,.19-2.9942c.0237,0,.0466.0059.07.0059A6.9991,6.9991,0,0,0,23.6055,9.8086l2.1313-2.1314A9.95,9.95,0,0,1,28,14Z" }), children);
192
533
  });
193
534
  if (process.env.NODE_ENV !== "production") RadarEnhanced.propTypes = require_iconPropTypes.iconPropTypes;
194
- const RadarWeather = react.default.forwardRef(function RadarWeather({ children, size = 16, ...rest }, ref) {
195
- return react.default.createElement(require_Icon_js, {
535
+ const RadarWeather = /* @__PURE__ */ react.default.forwardRef(function RadarWeather({ children, size = 16, ...rest }, ref) {
536
+ return react.default.createElement(require_Icon.Icon, {
196
537
  width: size,
197
538
  height: size,
198
539
  ref,
@@ -203,8 +544,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
203
544
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541a4.9646,4.9646,0,0,1-3.8811,7.7193,7.0485,7.0485,0,0,0-5.1438-3.8731A4.9431,4.9431,0,0,1,18,9V7a6.9551,6.9551,0,0,0-6.9087,8.0791,6.93,6.93,0,0,0-2.8525,1.06A9.97,9.97,0,0,1,18,4V2A11.9756,11.9756,0,0,0,6.573,17.6357a6.9293,6.9293,0,0,0-1.3674,2.7061A4.9948,4.9948,0,0,0,7,30H17a4.9921,4.9921,0,0,0,4.9678-4.68A12.0391,12.0391,0,0,0,30,14a11.8678,11.8678,0,0,0-2.8389-7.7466ZM17,28H7a2.9945,2.9945,0,0,1-.6963-5.9082l.6587-.1572.0986-.67a4.9923,4.9923,0,0,1,9.878,0l.0986.6695.6587.1572A2.9945,2.9945,0,0,1,17,28ZM28,14a10.0346,10.0346,0,0,1-6.3118,9.291,4.9577,4.9577,0,0,0-2.0207-2.5,6.9922,6.9922,0,0,0,3.938-10.9824l2.132-2.1318A9.8873,9.8873,0,0,1,28,14Z" }), children);
204
545
  });
205
546
  if (process.env.NODE_ENV !== "production") RadarWeather.propTypes = require_iconPropTypes.iconPropTypes;
206
- const Radio = react.default.forwardRef(function Radio({ children, size = 16, ...rest }, ref) {
207
- return react.default.createElement(require_Icon_js, {
547
+ const Radio = /* @__PURE__ */ react.default.forwardRef(function Radio({ children, size = 16, ...rest }, ref) {
548
+ return react.default.createElement(require_Icon.Icon, {
208
549
  width: size,
209
550
  height: size,
210
551
  ref,
@@ -215,8 +556,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
215
556
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H24V2H22v8H13V8H11v2H8V8H6v2H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM4,28V12H28V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,26a4,4,0,1,1,4-4A4,4,0,0,1,10,26Zm0-6a2,2,0,1,0,2,2A2,2,0,0,0,10,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 14H13V16H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 16H26V18H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 20H26V22H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 24H26V26H17z" }), children);
216
557
  });
217
558
  if (process.env.NODE_ENV !== "production") Radio.propTypes = require_iconPropTypes.iconPropTypes;
218
- const RadioCombat = react.default.forwardRef(function RadioCombat({ children, size = 16, ...rest }, ref) {
219
- return react.default.createElement(require_Icon_js, {
559
+ const RadioCombat = /* @__PURE__ */ react.default.forwardRef(function RadioCombat({ children, size = 16, ...rest }, ref) {
560
+ return react.default.createElement(require_Icon.Icon, {
220
561
  width: size,
221
562
  height: size,
222
563
  ref,
@@ -227,8 +568,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
227
568
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,26a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,26Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,10,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 20H26V22H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 24H26V26H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,12h8a2.0023,2.0023,0,0,0,2-2V6a2.0023,2.0023,0,0,0-2-2H20a2.0023,2.0023,0,0,0-2,2V7H12a4.0045,4.0045,0,0,0-4,4v3H6V4H4V14a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V16a2.0023,2.0023,0,0,0-2-2H10V11a2.0023,2.0023,0,0,1,2-2h6v1A2.0023,2.0023,0,0,0,20,12Zm4-6h4v4H24ZM20,6h2v4H20Zm8,22H4V16H28Z" }), children);
228
569
  });
229
570
  if (process.env.NODE_ENV !== "production") RadioCombat.propTypes = require_iconPropTypes.iconPropTypes;
230
- const RadioPushToTalk = react.default.forwardRef(function RadioPushToTalk({ children, size = 16, ...rest }, ref) {
231
- return react.default.createElement(require_Icon_js, {
571
+ const RadioPushToTalk = /* @__PURE__ */ react.default.forwardRef(function RadioPushToTalk({ children, size = 16, ...rest }, ref) {
572
+ return react.default.createElement(require_Icon.Icon, {
232
573
  width: size,
233
574
  height: size,
234
575
  ref,
@@ -243,8 +584,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
243
584
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,7H21V2H19V7H10A2.0023,2.0023,0,0,0,8,9v2H6v2H8v2H6v2H8V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,22,7ZM10,28V9H22V28Z" }), children);
244
585
  });
245
586
  if (process.env.NODE_ENV !== "production") RadioPushToTalk.propTypes = require_iconPropTypes.iconPropTypes;
246
- const RadioButton = react.default.forwardRef(function RadioButton({ children, size = 16, ...rest }, ref) {
247
- return react.default.createElement(require_Icon_js, {
587
+ const RadioButton = /* @__PURE__ */ react.default.forwardRef(function RadioButton({ children, size = 16, ...rest }, ref) {
588
+ return react.default.createElement(require_Icon.Icon, {
248
589
  width: size,
249
590
  height: size,
250
591
  ref,
@@ -255,8 +596,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
255
596
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z" }), children);
256
597
  });
257
598
  if (process.env.NODE_ENV !== "production") RadioButton.propTypes = require_iconPropTypes.iconPropTypes;
258
- const RadioButtonChecked = react.default.forwardRef(function RadioButtonChecked({ children, size = 16, ...rest }, ref) {
259
- return react.default.createElement(require_Icon_js, {
599
+ const RadioButtonChecked = /* @__PURE__ */ react.default.forwardRef(function RadioButtonChecked({ children, size = 16, ...rest }, ref) {
600
+ return react.default.createElement(require_Icon.Icon, {
260
601
  width: size,
261
602
  height: size,
262
603
  ref,
@@ -267,8 +608,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
267
608
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Z" }), children);
268
609
  });
269
610
  if (process.env.NODE_ENV !== "production") RadioButtonChecked.propTypes = require_iconPropTypes.iconPropTypes;
270
- const Rag = react.default.forwardRef(function Rag({ children, size = 16, ...rest }, ref) {
271
- return react.default.createElement(require_Icon_js, {
611
+ const Rag = /* @__PURE__ */ react.default.forwardRef(function Rag({ children, size = 16, ...rest }, ref) {
612
+ return react.default.createElement(require_Icon.Icon, {
272
613
  width: size,
273
614
  height: size,
274
615
  ref,
@@ -294,8 +635,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
294
635
  }), children);
295
636
  });
296
637
  if (process.env.NODE_ENV !== "production") Rag.propTypes = require_iconPropTypes.iconPropTypes;
297
- const Rain = react.default.forwardRef(function Rain({ children, size = 16, ...rest }, ref) {
298
- return react.default.createElement(require_Icon_js, {
638
+ const Rain = /* @__PURE__ */ react.default.forwardRef(function Rain({ children, size = 16, ...rest }, ref) {
639
+ return react.default.createElement(require_Icon.Icon, {
299
640
  width: size,
300
641
  height: size,
301
642
  ref,
@@ -306,8 +647,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
306
647
  }, /* @__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: "M14,30a.93.93,0,0,1-.45-.11,1,1,0,0,1-.44-1.34l2-4a1,1,0,1,1,1.78.9l-2,4A1,1,0,0,1,14,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30a.93.93,0,0,1-.45-.11,1,1,0,0,1-.44-1.34l2-4a1,1,0,1,1,1.78.9l-2,4A1,1,0,0,1,20,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30a.93.93,0,0,1-.45-.11,1,1,0,0,1-.44-1.34l2-4a1,1,0,1,1,1.78.9l-2,4A1,1,0,0,1,8,30Z" }), children);
307
648
  });
308
649
  if (process.env.NODE_ENV !== "production") Rain.propTypes = require_iconPropTypes.iconPropTypes;
309
- const RainDrizzle = react.default.forwardRef(function RainDrizzle({ children, size = 16, ...rest }, ref) {
310
- return react.default.createElement(require_Icon_js, {
650
+ const RainDrizzle = /* @__PURE__ */ react.default.forwardRef(function RainDrizzle({ children, size = 16, ...rest }, ref) {
651
+ return react.default.createElement(require_Icon.Icon, {
311
652
  width: size,
312
653
  height: size,
313
654
  ref,
@@ -318,8 +659,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
318
659
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,30a1,1,0,0,1-.8944-1.4474l2-4a1,1,0,1,1,1.7887.8946l-2,4A.9979.9979,0,0,1,11,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,22H19.3813L18.105,24.5527a1,1,0,0,0,1.789.8946L21.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);
319
660
  });
320
661
  if (process.env.NODE_ENV !== "production") RainDrizzle.propTypes = require_iconPropTypes.iconPropTypes;
321
- const RainHeavy = react.default.forwardRef(function RainHeavy({ children, size = 16, ...rest }, ref) {
322
- return react.default.createElement(require_Icon_js, {
662
+ const RainHeavy = /* @__PURE__ */ react.default.forwardRef(function RainHeavy({ children, size = 16, ...rest }, ref) {
663
+ return react.default.createElement(require_Icon.Icon, {
323
664
  width: size,
324
665
  height: size,
325
666
  ref,
@@ -330,8 +671,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
330
671
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,17,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,8,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15.5a6.5323,6.5323,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0A6.4905,6.4905,0,0,0,5.7026,21.3584L4.106,24.5527a1,1,0,1,0,1.7885.8946L7.6174,22l6.7644,0L13.106,24.5527a1,1,0,1,0,1.7885.8946L16.6177,22h6.7641L22.106,24.5527a1,1,0,1,0,1.7885.8946l1.9444-3.89A6.5058,6.5058,0,0,0,30,15.5ZM23.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);
331
672
  });
332
673
  if (process.env.NODE_ENV !== "production") RainHeavy.propTypes = require_iconPropTypes.iconPropTypes;
333
- const RainScattered = react.default.forwardRef(function RainScattered({ children, size = 16, ...rest }, ref) {
334
- return react.default.createElement(require_Icon_js, {
674
+ const RainScattered = /* @__PURE__ */ react.default.forwardRef(function RainScattered({ children, size = 16, ...rest }, ref) {
675
+ return react.default.createElement(require_Icon.Icon, {
335
676
  width: size,
336
677
  height: size,
337
678
  ref,
@@ -351,8 +692,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
351
692
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25h7.3818L14.106,27.5527a1,1,0,1,0,1.7885.8946L17.6177,25H19a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11ZM19,23H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23Zm3.9268-8.5107a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z" }), children);
352
693
  });
353
694
  if (process.env.NODE_ENV !== "production") RainScattered.propTypes = require_iconPropTypes.iconPropTypes;
354
- const RainScatteredNight = react.default.forwardRef(function RainScatteredNight({ children, size = 16, ...rest }, ref) {
355
- return react.default.createElement(require_Icon_js, {
695
+ const RainScatteredNight = /* @__PURE__ */ react.default.forwardRef(function RainScatteredNight({ children, size = 16, ...rest }, ref) {
696
+ return react.default.createElement(require_Icon.Icon, {
356
697
  width: size,
357
698
  height: size,
358
699
  ref,
@@ -363,8 +704,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
363
704
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.5084,32a1.0115,1.0115,0,0,1-.4485-.1055.9986.9986,0,0,1-.4486-1.3418l1.4934-3a1.0025,1.0025,0,0,1,1.7943.8945l-1.4934,3A1.0015,1.0015,0,0,1,8.5084,32Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.8442,13.0347a1.5184,1.5184,0,0,0-1.2309-.8658,5.3587,5.3587,0,0,1-3.4094-1.7163,6.4648,6.4648,0,0,1-1.285-6.393,1.6031,1.6031,0,0,0-.3-1.5459,1.4535,1.4535,0,0,0-1.3594-.4922l-.0191.0029a7.8549,7.8549,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25h7.3818L14.106,27.5527a1,1,0,1,0,1.7885.8946L17.6177,25H19a5.9549,5.9549,0,0,0,5.88-7.1455,7.5,7.5,0,0,0,4.8672-3.3A1.5381,1.5381,0,0,0,29.8442,13.0347ZM19,23H8a3.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,23Zm5.1509-7.0479a5.9639,5.9639,0,0,0-3.5015-2.708A7.5076,7.5076,0,0,0,18.0286,9.55a6.01,6.01,0,0,1,3.77-5.334,8.4581,8.4581,0,0,0,1.9395,7.5972A7.4007,7.4007,0,0,0,27.64,14.041,5.4392,5.4392,0,0,1,24.1509,15.9521Z" }), children);
364
705
  });
365
706
  if (process.env.NODE_ENV !== "production") RainScatteredNight.propTypes = require_iconPropTypes.iconPropTypes;
366
- const RainDrop = react.default.forwardRef(function RainDrop({ children, size = 16, ...rest }, ref) {
367
- return react.default.createElement(require_Icon_js, {
707
+ const RainDrop = /* @__PURE__ */ react.default.forwardRef(function RainDrop({ children, size = 16, ...rest }, ref) {
708
+ return react.default.createElement(require_Icon.Icon, {
368
709
  width: size,
369
710
  height: size,
370
711
  ref,
@@ -375,8 +716,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
375
716
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24V22a3.2965,3.2965,0,0,0,3-3h2A5.2668,5.2668,0,0,1,16,24Z" }), /* @__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" }), children);
376
717
  });
377
718
  if (process.env.NODE_ENV !== "production") RainDrop.propTypes = require_iconPropTypes.iconPropTypes;
378
- const Raw = react.default.forwardRef(function Raw({ children, size = 16, ...rest }, ref) {
379
- return react.default.createElement(require_Icon_js, {
719
+ const Raw = /* @__PURE__ */ react.default.forwardRef(function Raw({ children, size = 16, ...rest }, ref) {
720
+ return react.default.createElement(require_Icon.Icon, {
380
721
  width: size,
381
722
  height: size,
382
723
  ref,
@@ -387,8 +728,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
387
728
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.2 9 28.86 17 28.6 21.54 28.19 18 27.51 12.54 25.49 12.54 24.81 18 24.4 21.54 24.14 17 23.8 9 22 9 23 23 25.27 23 26.03 18.07 26.49 14 26.5 13.97 26.51 14 26.97 18.07 27.73 23 30 23 31 9 29.2 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,9H14a2,2,0,0,0-2,2V23h2V18h4v5h2V11A2,2,0,0,0,18,9Zm-4,7V11h4v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,15V11A2,2,0,0,0,8,9H2V23H4V17H5.48l2.34,6H10L7.63,17H8A2,2,0,0,0,10,15ZM4,11H8v4H4Z" }), children);
388
729
  });
389
730
  if (process.env.NODE_ENV !== "production") Raw.propTypes = require_iconPropTypes.iconPropTypes;
390
- const ReadMe = react.default.forwardRef(function ReadMe({ children, size = 16, ...rest }, ref) {
391
- return react.default.createElement(require_Icon_js, {
731
+ const ReadMe = /* @__PURE__ */ react.default.forwardRef(function ReadMe({ children, size = 16, ...rest }, ref) {
732
+ return react.default.createElement(require_Icon.Icon, {
392
733
  width: size,
393
734
  height: size,
394
735
  ref,
@@ -399,8 +740,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
399
740
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,7H5v-2h15v2ZM20,10H5v2h15v-2ZM12,15h-7v2h7v-2ZM10,20h-5v2h5v-2ZM20,20c-1.1,0-2,.9-2,2s.9,2,2,2,2-.9,2-2-.9-2-2-2ZM28,22l-.22.52c-1.42,3.33-4.48,5.48-7.78,5.48s-6.35-2.15-7.78-5.48l-.22-.52.22-.52c1.42-3.33,4.48-5.48,7.78-5.48s6.35,2.15,7.78,5.48l.22.52ZM24,22c0-2.21-1.79-4-4-4s-4,1.79-4,4,1.79,4,4,4,4-1.79,4-4Z" }), children);
400
741
  });
401
742
  if (process.env.NODE_ENV !== "production") ReadMe.propTypes = require_iconPropTypes.iconPropTypes;
402
- const ReadingGlasses = react.default.forwardRef(function ReadingGlasses({ children, size = 16, ...rest }, ref) {
403
- return react.default.createElement(require_Icon_js, {
743
+ const ReadingGlasses = /* @__PURE__ */ react.default.forwardRef(function ReadingGlasses({ children, size = 16, ...rest }, ref) {
744
+ return react.default.createElement(require_Icon.Icon, {
404
745
  width: size,
405
746
  height: size,
406
747
  ref,
@@ -411,8 +752,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
411
752
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4141,6.9968l-4.0001-3.9968-1.414,1.4144,4.0001,3.9968v10.5888h-7.0001c-1.4702,0-2.691,1.0646-2.9457,2.4624-.6383-.2906-1.333-.4624-2.0543-.4624s-1.416.1718-2.0543.4623c-.2548-1.3978-1.4755-2.4623-2.9457-2.4623H3.9999v-10.5888l4.0001-3.9968-1.414-1.4144-4.0001,3.9968c-.3779.378-.5859.8801-.5859,1.4144v16.5888c0,2.2061,1.7944,4,4,4h3c2.7568,0,5-2.2432,5-5v-.2139c.5444-.4899,1.2498-.7861,2-.7861s1.4553.2962,2,.7861v.2139c0,2.7568,2.2432,5,5,5h3c2.2061,0,4-1.7939,4-4V8.4112c0-.5343-.208-1.0364-.5859-1.4144ZM12,24c0,1.6543-1.3457,3-3,3h-3c-1.103,0-2-.8975-2-2v-4h7c.5513,0,1,.4482,1,1v2ZM28,25c0,1.1025-.8975,2-2,2h-3c-1.6543,0-3-1.3457-3-3v-2c0-.5518.4482-1,1-1h7v4Z" }), children);
412
753
  });
413
754
  if (process.env.NODE_ENV !== "production") ReadingGlasses.propTypes = require_iconPropTypes.iconPropTypes;
414
- const Receipt = react.default.forwardRef(function Receipt({ children, size = 16, ...rest }, ref) {
415
- return react.default.createElement(require_Icon_js, {
755
+ const Receipt = /* @__PURE__ */ react.default.forwardRef(function Receipt({ children, size = 16, ...rest }, ref) {
756
+ return react.default.createElement(require_Icon.Icon, {
416
757
  width: size,
417
758
  height: size,
418
759
  ref,
@@ -423,8 +764,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
423
764
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 16H23V18H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 16H17V18H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 12H23V14H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 12H17V14H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 8H23V10H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,2H7A2.002,2.002,0,0,0,5,4V29a1,1,0,0,0,1,1H7a.9987.9987,0,0,0,.8-.4L10,26.667,12.2,29.6a1.0353,1.0353,0,0,0,1.6,0L16,26.667,18.2,29.6a1.0353,1.0353,0,0,0,1.6,0L22,26.667,24.2,29.6a.9993.9993,0,0,0,.8.4h1a1,1,0,0,0,1-1V4A2.0023,2.0023,0,0,0,25,2Zm0,25.333L22.8,24.4a1.0353,1.0353,0,0,0-1.6,0L19,27.333,16.8,24.4a1.0353,1.0353,0,0,0-1.6,0L13,27.333,10.8,24.4a1.0353,1.0353,0,0,0-1.6,0L7,27.333V4H25Z" }), children);
424
765
  });
425
766
  if (process.env.NODE_ENV !== "production") Receipt.propTypes = require_iconPropTypes.iconPropTypes;
426
- const RecentlyViewed = react.default.forwardRef(function RecentlyViewed({ children, size = 16, ...rest }, ref) {
427
- return react.default.createElement(require_Icon_js, {
767
+ const RecentlyViewed = /* @__PURE__ */ react.default.forwardRef(function RecentlyViewed({ children, size = 16, ...rest }, ref) {
768
+ return react.default.createElement(require_Icon.Icon, {
428
769
  width: size,
429
770
  height: size,
430
771
  ref,
@@ -435,8 +776,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
435
776
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A13.94,13.94,0,0,0,6,6.23V2H4v8h8V8H7.08A12,12,0,1,1,4,16H2A14,14,0,1,0,16,2Z" }), children);
436
777
  });
437
778
  if (process.env.NODE_ENV !== "production") RecentlyViewed.propTypes = require_iconPropTypes.iconPropTypes;
438
- const Recommend = react.default.forwardRef(function Recommend({ children, size = 16, ...rest }, ref) {
439
- return react.default.createElement(require_Icon_js, {
779
+ const Recommend = /* @__PURE__ */ react.default.forwardRef(function Recommend({ children, size = 16, ...rest }, ref) {
780
+ return react.default.createElement(require_Icon.Icon, {
440
781
  width: size,
441
782
  height: size,
442
783
  ref,
@@ -447,8 +788,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
447
788
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2a9,9,0,0,0-6,15.69V30l6-4,6,4V17.69A9,9,0,0,0,16,2Zm4,24.26-2.89-1.92L16,23.6l-1.11.74L12,26.26V19.05a8.88,8.88,0,0,0,8,0ZM20.89,16A7,7,0,1,1,23,11,7,7,0,0,1,20.89,16Z" }), children);
448
789
  });
449
790
  if (process.env.NODE_ENV !== "production") Recommend.propTypes = require_iconPropTypes.iconPropTypes;
450
- const Recording = react.default.forwardRef(function Recording({ children, size = 16, ...rest }, ref) {
451
- return react.default.createElement(require_Icon_js, {
791
+ const Recording = /* @__PURE__ */ react.default.forwardRef(function Recording({ children, size = 16, ...rest }, ref) {
792
+ return react.default.createElement(require_Icon.Icon, {
452
793
  width: size,
453
794
  height: size,
454
795
  ref,
@@ -459,8 +800,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
459
800
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,12a4,4,0,1,1-4,4,4,4,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" }), children);
460
801
  });
461
802
  if (process.env.NODE_ENV !== "production") Recording.propTypes = require_iconPropTypes.iconPropTypes;
462
- const RecordingFilled = react.default.forwardRef(function RecordingFilled({ children, size = 16, ...rest }, ref) {
463
- return react.default.createElement(require_Icon_js, {
803
+ const RecordingFilled = /* @__PURE__ */ react.default.forwardRef(function RecordingFilled({ children, size = 16, ...rest }, ref) {
804
+ return react.default.createElement(require_Icon.Icon, {
464
805
  width: size,
465
806
  height: size,
466
807
  ref,
@@ -475,8 +816,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
475
816
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6 S19.3,22,16,22z" }), children);
476
817
  });
477
818
  if (process.env.NODE_ENV !== "production") RecordingFilled.propTypes = require_iconPropTypes.iconPropTypes;
478
- const RecordingFilledAlt = react.default.forwardRef(function RecordingFilledAlt({ children, size = 16, ...rest }, ref) {
479
- return react.default.createElement(require_Icon_js, {
819
+ const RecordingFilledAlt = /* @__PURE__ */ react.default.forwardRef(function RecordingFilledAlt({ children, size = 16, ...rest }, ref) {
820
+ return react.default.createElement(require_Icon.Icon, {
480
821
  width: size,
481
822
  height: size,
482
823
  ref,
@@ -491,8 +832,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
491
832
  }), children);
492
833
  });
493
834
  if (process.env.NODE_ENV !== "production") RecordingFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
494
- const Recycle = react.default.forwardRef(function Recycle({ children, size = 16, ...rest }, ref) {
495
- return react.default.createElement(require_Icon_js, {
835
+ const Recycle = /* @__PURE__ */ react.default.forwardRef(function Recycle({ children, size = 16, ...rest }, ref) {
836
+ return react.default.createElement(require_Icon.Icon, {
496
837
  width: size,
497
838
  height: size,
498
839
  ref,
@@ -503,8 +844,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
503
844
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.5081,22.2549l-2.0781-3.7402-1.7485,.9707,2.0781,3.7412c.3247,.584,.3162,1.2769-.0229,1.8535-.3391,.5762-.9407,.9199-1.6091,.9199h-7.2974l2.5801-2.5898-1.4102-1.4102-5,5,5,5,1.4102-1.4102-2.5801-2.5898h7.2974c1.3848,0,2.6306-.7124,3.3328-1.9058,.7024-1.1938,.7202-2.6284,.0479-3.8394Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.8726,26c-.6685,0-1.27-.3438-1.6091-.9199-.3391-.5767-.3477-1.2695-.0229-1.8535l4.1111-7.4004,1.0479,3.52,1.9121-.5664-2.0083-6.7798-6.7798,2.0083,.5664,1.9121,3.4934-1.0298-4.0913,7.3643c-.6724,1.2109-.6545,2.6455,.0479,3.8394,.7021,1.1934,1.948,1.9058,3.3328,1.9058h6.1274v-2H5.8726Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.51,9.6538l-1.0476,3.519L19.3503,3.9712c-.6858-1.2344-1.9382-1.9712-3.3503-1.9712s-2.6646,.7368-3.3503,1.9712l-3.0796,5.5435,1.7485,.9707,3.0796-5.543c.3276-.5898,.9265-.9424,1.6018-.9424s1.2742,.3525,1.6018,.9424l5.0925,9.167-3.4939-1.0298-.5664,1.9121,6.78,2.0083,2.0083-6.7798-1.9124-.5664Z" }), children);
504
845
  });
505
846
  if (process.env.NODE_ENV !== "production") Recycle.propTypes = require_iconPropTypes.iconPropTypes;
506
- const Redefinition = react.default.forwardRef(function Redefinition({ children, size = 16, ...rest }, ref) {
507
- return react.default.createElement(require_Icon_js, {
847
+ const Redefinition = /* @__PURE__ */ react.default.forwardRef(function Redefinition({ children, size = 16, ...rest }, ref) {
848
+ return react.default.createElement(require_Icon.Icon, {
508
849
  width: size,
509
850
  height: size,
510
851
  ref,
@@ -515,8 +856,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
515
856
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,28v-4h7v-2h-7v-4h7c.3564,0,.686-.1899.865-.498.179-.3086.1802-.6885.0032-.998L12.8682,2.5039c-.356-.623-1.3804-.623-1.7363,0L3.1318,16.5039c-.177.3096-.1758.6895.0032.998.179.3081.5085.498.865.498h7v4h-7v2h7v4c0,1.1045.8955,2,2,2h15v-2h-15ZM5.7231,16l6.2769-10.9844,6.2769,10.9844H5.7231Z" }), children);
516
857
  });
517
858
  if (process.env.NODE_ENV !== "production") Redefinition.propTypes = require_iconPropTypes.iconPropTypes;
518
- const RedHatAiInstructlabOnIbmCloud = react.default.forwardRef(function RedHatAiInstructlabOnIbmCloud({ children, size = 16, ...rest }, ref) {
519
- return react.default.createElement(require_Icon_js, {
859
+ const RedHatAiInstructlabOnIbmCloud = /* @__PURE__ */ react.default.forwardRef(function RedHatAiInstructlabOnIbmCloud({ children, size = 16, ...rest }, ref) {
860
+ return react.default.createElement(require_Icon.Icon, {
520
861
  width: size,
521
862
  height: size,
522
863
  ref,
@@ -527,8 +868,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
527
868
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,10c-1.3016,0-2.3906.8409-2.805,2.002l-8.195-.002v2l8.1945.002c.4138,1.162,1.5032,1.998,2.8055,1.998,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3ZM21,14c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1ZM24,18l-8.1796.001c-.4146-1.1608-1.519-2.001-2.8204-2.001-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.3025,0,2.4076-.8367,2.8213-1.999l8.1787-.001v-2ZM13,20c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1ZM29.8801,16.4801l-6,11c-.1799.3198-.51.5199-.88.5199h-14c-.37,0-.7001-.2001-.88-.5199l-6-11c-.16-.3-.16-.6602,0-.9601l4.11-7.53,1.74,1-3.83,7.01,5.45,10h12.8201l5.45-10-5.45-10h-13.41v-2h14c.37,0,.7001.2001.88.52l6,11c.1599.2999.1599.66,0,.9601h-.0001Z" }), children);
528
869
  });
529
870
  if (process.env.NODE_ENV !== "production") RedHatAiInstructlabOnIbmCloud.propTypes = require_iconPropTypes.iconPropTypes;
530
- const Redo = react.default.forwardRef(function Redo({ children, size = 16, ...rest }, ref) {
531
- return react.default.createElement(require_Icon_js, {
871
+ const Redo = /* @__PURE__ */ react.default.forwardRef(function Redo({ children, size = 16, ...rest }, ref) {
872
+ return react.default.createElement(require_Icon.Icon, {
532
873
  width: size,
533
874
  height: size,
534
875
  ref,
@@ -539,8 +880,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
539
880
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,10H24.1851L20.5977,6.4141,22,5,28,11,22,17l-1.4023-1.4146L24.1821,12H12a6,6,0,0,0,0,12h8v2H12a8,8,0,0,1,0-16Z" }), children);
540
881
  });
541
882
  if (process.env.NODE_ENV !== "production") Redo.propTypes = require_iconPropTypes.iconPropTypes;
542
- const RefEvapotranspiration = react.default.forwardRef(function RefEvapotranspiration({ children, size = 16, ...rest }, ref) {
543
- return react.default.createElement(require_Icon_js, {
883
+ const RefEvapotranspiration = /* @__PURE__ */ react.default.forwardRef(function RefEvapotranspiration({ children, size = 16, ...rest }, ref) {
884
+ return react.default.createElement(require_Icon.Icon, {
544
885
  width: size,
545
886
  height: size,
546
887
  ref,
@@ -551,8 +892,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
551
892
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,12a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L13.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L17.3154,6.11A3.9693,3.9693,0,0,1,18,8.223,3.8978,3.8978,0,0,1,14,12Zm.0005-7.2368L12.3438,7.2257A1.89,1.89,0,0,0,12,8.223,1.9,1.9,0,0,0,14,10a1.9,1.9,0,0,0,2-1.777,1.98,1.98,0,0,0-.375-1.0466Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5,26A5.385,5.385,0,0,1,2,20.751,5.3837,5.3837,0,0,1,2.874,17.92L6.49,12.5383a1.2168,1.2168,0,0,1,2.02-.0006l3.55,5.2777A5.4923,5.4923,0,0,1,13,20.751,5.385,5.385,0,0,1,7.5,26Zm0-11.38L4.5649,18.9868A3.3586,3.3586,0,0,0,4,20.751,3.3855,3.3855,0,0,0,7.5,24,3.3855,3.3855,0,0,0,11,20.751a3.4354,3.4354,0,0,0-.63-1.867Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,2,20,7l1.4141,1.4141L24,5.8281V16a4.0045,4.0045,0,0,1-4,4H16v2h4a6.0066,6.0066,0,0,0,6-6V5.8281l2.5859,2.586L30,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), children);
552
893
  });
553
894
  if (process.env.NODE_ENV !== "production") RefEvapotranspiration.propTypes = require_iconPropTypes.iconPropTypes;
554
- const ReferenceArchitecture = react.default.forwardRef(function ReferenceArchitecture({ children, size = 16, ...rest }, ref) {
555
- return react.default.createElement(require_Icon_js, {
895
+ const ReferenceArchitecture = /* @__PURE__ */ react.default.forwardRef(function ReferenceArchitecture({ children, size = 16, ...rest }, ref) {
896
+ return react.default.createElement(require_Icon.Icon, {
556
897
  width: size,
557
898
  height: size,
558
899
  ref,
@@ -567,8 +908,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
567
908
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,20c1.1028,0,2-.8975,2-2v-4c0-1.1025-.8972-2-2-2h-1v-5c0-1.1025-.8972-2-2-2h-5v-1c0-1.1025-.8972-2-2-2h-4c-1.1028,0-2,.8975-2,2v1h-5c-1.1028,0-2,.8975-2,2v5.1421c-1.7202.4473-3,1.9995-3,3.8579s1.2798,3.4106,3,3.8579v5.1421c0,1.1025.8972,2,2,2h7v1c0,1.1025.8972,2,2,2h12c1.1028,0,2-.8975,2-2v-4c0-1.1025-.8972-2-2-2h-1v-2h1Zm0-2h-4v-4h4v4ZM14,4h4v4h-4v-4Zm-2,3v1c0,1.1025.8972,2,2,2h4c1.1028,0,2-.8975,2-2v-1h5v5h-1c-1.1028,0-2,.8975-2,2v1h-12.1421c-.3638-1.3989-1.4592-2.4941-2.8579-2.8579v-5.1421h5Zm-8,9c0-1.1025.8972-2,2-2s2,.8975,2,2-.8972,2-2,2-2-.8975-2-2Zm24,12h-12v-4h12v4Zm-3-6h-9c-1.1028,0-2,.8975-2,2v1h-7v-5.1421c1.3987-.3638,2.4941-1.459,2.8579-2.8579h12.1421v1c0,1.1025.8972,2,2,2h1v2Z" }), children);
568
909
  });
569
910
  if (process.env.NODE_ENV !== "production") ReferenceArchitecture.propTypes = require_iconPropTypes.iconPropTypes;
570
- const ReflectHorizontal = react.default.forwardRef(function ReflectHorizontal({ children, size = 16, ...rest }, ref) {
571
- return react.default.createElement(require_Icon_js, {
911
+ const ReflectHorizontal = /* @__PURE__ */ react.default.forwardRef(function ReflectHorizontal({ children, size = 16, ...rest }, ref) {
912
+ return react.default.createElement(require_Icon.Icon, {
572
913
  width: size,
573
914
  height: size,
574
915
  ref,
@@ -582,8 +923,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
582
923
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,16a1.001,1.001,0,0,1-.386.79l-9,7A1,1,0,0,1,2,23V9a1,1,0,0,1,1.614-.79l9,7A1.001,1.001,0,0,1,13,16ZM4,20.9556,10.3711,16,4,11.0444Z" }), children);
583
924
  });
584
925
  if (process.env.NODE_ENV !== "production") ReflectHorizontal.propTypes = require_iconPropTypes.iconPropTypes;
585
- const ReflectVertical = react.default.forwardRef(function ReflectVertical({ children, size = 16, ...rest }, ref) {
586
- return react.default.createElement(require_Icon_js, {
926
+ const ReflectVertical = /* @__PURE__ */ react.default.forwardRef(function ReflectVertical({ children, size = 16, ...rest }, ref) {
927
+ return react.default.createElement(require_Icon.Icon, {
587
928
  width: size,
588
929
  height: size,
589
930
  ref,
@@ -597,8 +938,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
597
938
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,13a1.001,1.001,0,0,1-.79-.386l-7-9A1,1,0,0,1,9,2H23a1,1,0,0,1,.79,1.614l-7,9A1.001,1.001,0,0,1,16,13ZM11.0444,4,16,10.3711,20.9556,4Z" }), children);
598
939
  });
599
940
  if (process.env.NODE_ENV !== "production") ReflectVertical.propTypes = require_iconPropTypes.iconPropTypes;
600
- const WatsonHealthRegionAnalysisArea = react.default.forwardRef(function WatsonHealthRegionAnalysisArea({ children, size = 16, ...rest }, ref) {
601
- return react.default.createElement(require_Icon_js, {
941
+ const WatsonHealthRegionAnalysisArea = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthRegionAnalysisArea({ children, size = 16, ...rest }, ref) {
942
+ return react.default.createElement(require_Icon.Icon, {
602
943
  width: size,
603
944
  height: size,
604
945
  ref,
@@ -609,8 +950,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
609
950
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16H28A12,12,0,1,0,16,28Z" }), children);
610
951
  });
611
952
  if (process.env.NODE_ENV !== "production") WatsonHealthRegionAnalysisArea.propTypes = require_iconPropTypes.iconPropTypes;
612
- const WatsonHealthRegionAnalysisVolume = react.default.forwardRef(function WatsonHealthRegionAnalysisVolume({ children, size = 16, ...rest }, ref) {
613
- return react.default.createElement(require_Icon_js, {
953
+ const WatsonHealthRegionAnalysisVolume = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthRegionAnalysisVolume({ children, size = 16, ...rest }, ref) {
954
+ return react.default.createElement(require_Icon.Icon, {
614
955
  width: size,
615
956
  height: size,
616
957
  ref,
@@ -621,8 +962,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
621
962
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.8305,20.3555A24.9534,24.9534,0,0,0,15,22.9644v-2A22.9014,22.9014,0,0,1,4.1335,17.6919,11.979,11.979,0,0,1,4,16a11.9847,11.9847,0,0,1,.1332-1.69,22.9282,22.9282,0,0,1,23.7336,0A11.9847,11.9847,0,0,1,28,16h2A14,14,0,1,0,16,30V28A12.01,12.01,0,0,1,4.8305,20.3555ZM16,4a12.01,12.01,0,0,1,11.17,7.6465,24.8982,24.8982,0,0,0-22.3406,0A12.01,12.01,0,0,1,16,4Z" }), children);
622
963
  });
623
964
  if (process.env.NODE_ENV !== "production") WatsonHealthRegionAnalysisVolume.propTypes = require_iconPropTypes.iconPropTypes;
624
- const WatsonHealthRegistration = react.default.forwardRef(function WatsonHealthRegistration({ children, size = 16, ...rest }, ref) {
625
- return react.default.createElement(require_Icon_js, {
965
+ const WatsonHealthRegistration = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthRegistration({ children, size = 16, ...rest }, ref) {
966
+ return react.default.createElement(require_Icon.Icon, {
626
967
  width: size,
627
968
  height: size,
628
969
  ref,
@@ -633,8 +974,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
633
974
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,25H20a2.0027,2.0027,0,0,1-2-2V20h2v3h8V9H20v3H18V9a2.0023,2.0023,0,0,1,2-2h8a2.0023,2.0023,0,0,1,2,2V23A2.0027,2.0027,0,0,1,28,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 15H12V17H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 15H24V17H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 15H18V17H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,25H4a2.0023,2.0023,0,0,1-2-2V9A2.002,2.002,0,0,1,4,7h8a2.002,2.002,0,0,1,2,2v3H12V9H4V23h8V20h2v3A2.0023,2.0023,0,0,1,12,25Z" }), children);
634
975
  });
635
976
  if (process.env.NODE_ENV !== "production") WatsonHealthRegistration.propTypes = require_iconPropTypes.iconPropTypes;
636
- const Reminder = react.default.forwardRef(function Reminder({ children, size = 16, ...rest }, ref) {
637
- return react.default.createElement(require_Icon_js, {
977
+ const Reminder = /* @__PURE__ */ react.default.forwardRef(function Reminder({ children, size = 16, ...rest }, ref) {
978
+ return react.default.createElement(require_Icon.Icon, {
638
979
  width: size,
639
980
  height: size,
640
981
  ref,
@@ -645,8 +986,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
645
986
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23.3818l-2-1V20a6.0046,6.0046,0,0,0-5-5.91V12H21v2.09A6.0046,6.0046,0,0,0,16,20v2.3818l-2,1V28h6v2h4V28h6ZM28,26H16V24.6182l2-1V20a4,4,0,0,1,8,0v3.6182l2,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" }), children);
646
987
  });
647
988
  if (process.env.NODE_ENV !== "production") Reminder.propTypes = require_iconPropTypes.iconPropTypes;
648
- const ReminderMedical = react.default.forwardRef(function ReminderMedical({ children, size = 16, ...rest }, ref) {
649
- return react.default.createElement(require_Icon_js, {
989
+ const ReminderMedical = /* @__PURE__ */ react.default.forwardRef(function ReminderMedical({ children, size = 16, ...rest }, ref) {
990
+ return react.default.createElement(require_Icon.Icon, {
650
991
  width: size,
651
992
  height: size,
652
993
  ref,
@@ -657,8 +998,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
657
998
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,12v2h1v4a3,3,0,0,1-6,0V14h1V12H20v6a5.0083,5.0083,0,0,0,4,4.8989V24a4,4,0,0,1-8,0V21.8157a3,3,0,1,0-2,0V24a6,6,0,0,0,12,0V22.8989A5.0083,5.0083,0,0,0,30,18V12ZM15,18a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,15,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2l4,0V26L6,26V6h4V8h2V6h8V8h2V6h4v4h2V6A2,2,0,0,0,26,4Z" }), children);
658
999
  });
659
1000
  if (process.env.NODE_ENV !== "production") ReminderMedical.propTypes = require_iconPropTypes.iconPropTypes;
660
- const RemoteConnection = react.default.forwardRef(function RemoteConnection({ children, size = 16, ...rest }, ref) {
661
- return react.default.createElement(require_Icon_js, {
1001
+ const RemoteConnection = /* @__PURE__ */ react.default.forwardRef(function RemoteConnection({ children, size = 16, ...rest }, ref) {
1002
+ return react.default.createElement(require_Icon.Icon, {
662
1003
  width: size,
663
1004
  height: size,
664
1005
  ref,
@@ -669,8 +1010,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
669
1010
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.5,12c-5.2,0-9.5,4.3-9.5,9.5v.5H4V6h24v6h2v-6c0-1.1-.9-2-2-2H4c-1.1,0-2,.9-2,2v16c0,1.1.9,2,2,2h8.3c.4,1.5,1.2,2.9,2.2,4h-6.6v2h9.3c1.3.6,2.7,1,4.2,1,5.2,0,9.5-4.3,9.5-9.5s-4.3-9.5-9.5-9.5h0ZM21.5,29c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5,7.5,3.4,7.5,7.5-3.4,7.5-7.5,7.5ZM18.7,24.7l-1.4-1.4,2.3-2.3-2.3-2.3,1.4-1.4,3.7,3.7s-3.7,3.7-3.7,3.7ZM26,25h-4v-2h4v2Z" }), children);
670
1011
  });
671
1012
  if (process.env.NODE_ENV !== "production") RemoteConnection.propTypes = require_iconPropTypes.iconPropTypes;
672
- const Renew = react.default.forwardRef(function Renew({ children, size = 16, ...rest }, ref) {
673
- return react.default.createElement(require_Icon_js, {
1013
+ const Renew = /* @__PURE__ */ react.default.forwardRef(function Renew({ children, size = 16, ...rest }, ref) {
1014
+ return react.default.createElement(require_Icon.Icon, {
674
1015
  width: size,
675
1016
  height: size,
676
1017
  ref,
@@ -681,8 +1022,20 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
681
1022
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,10H6.78A11,11,0,0,1,27,16h2A13,13,0,0,0,6,7.68V4H4v8h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,22h5.22A11,11,0,0,1,5,16H3a13,13,0,0,0,23,8.32V28h2V20H20Z" }), children);
682
1023
  });
683
1024
  if (process.env.NODE_ENV !== "production") Renew.propTypes = require_iconPropTypes.iconPropTypes;
684
- const Repeat = react.default.forwardRef(function Repeat({ children, size = 16, ...rest }, ref) {
685
- return react.default.createElement(require_Icon_js, {
1025
+ const RenewAlt = /* @__PURE__ */ react.default.forwardRef(function RenewAlt({ children, size = 16, ...rest }, ref) {
1026
+ return react.default.createElement(require_Icon.Icon, {
1027
+ width: size,
1028
+ height: size,
1029
+ ref,
1030
+ xmlns: "http://www.w3.org/2000/svg",
1031
+ viewBox: "0 0 32 32",
1032
+ fill: "currentColor",
1033
+ ...rest
1034
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.707,29.707l-1.4141-1.4141,3.293-3.293H2V8h2v15h17.5859l-3.293-3.293,1.4141-1.4141,5.707,5.707-5.707,5.707ZM30,24h-2v-15H10.4141l3.293,3.293-1.4141,1.4141-5.707-5.707,5.707-5.707,1.4141,1.4141-3.293,3.293h19.5859v17Z" }), children);
1035
+ });
1036
+ if (process.env.NODE_ENV !== "production") RenewAlt.propTypes = require_iconPropTypes.iconPropTypes;
1037
+ const Repeat = /* @__PURE__ */ react.default.forwardRef(function Repeat({ children, size = 16, ...rest }, ref) {
1038
+ return react.default.createElement(require_Icon.Icon, {
686
1039
  width: size,
687
1040
  height: size,
688
1041
  ref,
@@ -693,8 +1046,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
693
1046
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,6H26.1719l-3.586-3.5859L24,1l6,6-6,6-1.4141-1.4141L26.1719,8H6v7H4V8A2.0024,2.0024,0,0,1,6,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.4141,20.4141,5.8281,24H26V17h2v7a2.0024,2.0024,0,0,1-2,2H5.8281L9.414,29.5859,8,31,2,25l6-6Z" }), children);
694
1047
  });
695
1048
  if (process.env.NODE_ENV !== "production") Repeat.propTypes = require_iconPropTypes.iconPropTypes;
696
- const RepeatOne = react.default.forwardRef(function RepeatOne({ children, size = 16, ...rest }, ref) {
697
- return react.default.createElement(require_Icon_js, {
1049
+ const RepeatOne = /* @__PURE__ */ react.default.forwardRef(function RepeatOne({ children, size = 16, ...rest }, ref) {
1050
+ return react.default.createElement(require_Icon.Icon, {
698
1051
  width: size,
699
1052
  height: size,
700
1053
  ref,
@@ -705,8 +1058,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
705
1058
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,6H26.1719l-3.586-3.5859L24,1l6,6-6,6-1.4141-1.4141L26.1719,8H6v7H4V8A2.0024,2.0024,0,0,1,6,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.4141,20.4141,5.8281,24H26V17h2v7a2.0024,2.0024,0,0,1-2,2H5.8281L9.414,29.5859,8,31,2,25l6-6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 19 17 11 15 11 15 12 13 12 13 14 15 14 15 19 13 19 13 21 19 21 19 19 17 19z" }), children);
706
1059
  });
707
1060
  if (process.env.NODE_ENV !== "production") RepeatOne.propTypes = require_iconPropTypes.iconPropTypes;
708
- const Replicate = react.default.forwardRef(function Replicate({ children, size = 16, ...rest }, ref) {
709
- return react.default.createElement(require_Icon_js, {
1061
+ const Replicate = /* @__PURE__ */ react.default.forwardRef(function Replicate({ children, size = 16, ...rest }, ref) {
1062
+ return react.default.createElement(require_Icon.Icon, {
710
1063
  width: size,
711
1064
  height: size,
712
1065
  ref,
@@ -717,8 +1070,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
717
1070
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8h2V4a2.0021,2.0021,0,0,0-2-2H24V4h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 2H21V4H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 11H30V15H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,18v4H24V10a2.0023,2.0023,0,0,0-2-2H10V4h4V2H10A2.0023,2.0023,0,0,0,8,4V8H4a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V24h4a2.0023,2.0023,0,0,0,2-2V18ZM22,28H4V10H22Z" }), children);
718
1071
  });
719
1072
  if (process.env.NODE_ENV !== "production") Replicate.propTypes = require_iconPropTypes.iconPropTypes;
720
- const Reply = react.default.forwardRef(function Reply({ children, size = 16, ...rest }, ref) {
721
- return react.default.createElement(require_Icon_js, {
1073
+ const Reply = /* @__PURE__ */ react.default.forwardRef(function Reply({ children, size = 16, ...rest }, ref) {
1074
+ return react.default.createElement(require_Icon.Icon, {
722
1075
  width: size,
723
1076
  height: size,
724
1077
  ref,
@@ -729,8 +1082,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
729
1082
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.88,30a1,1,0,0,1-.88-.5A15.19,15.19,0,0,0,15,22v6a1,1,0,0,1-.62.92,1,1,0,0,1-1.09-.21l-12-12a1,1,0,0,1,0-1.42l12-12a1,1,0,0,1,1.09-.21A1,1,0,0,1,15,4v6.11a17.19,17.19,0,0,1,15,17,16.34,16.34,0,0,1-.13,2,1,1,0,0,1-.79.86ZM14.5,20A17.62,17.62,0,0,1,28,26,15.31,15.31,0,0,0,13.91,12,1,1,0,0,1,13,11V6.41L3.41,16,13,25.59V21a1,1,0,0,1,1-1h.54Z" }), children);
730
1083
  });
731
1084
  if (process.env.NODE_ENV !== "production") Reply.propTypes = require_iconPropTypes.iconPropTypes;
732
- const ReplyAll = react.default.forwardRef(function ReplyAll({ children, size = 16, ...rest }, ref) {
733
- return react.default.createElement(require_Icon_js, {
1085
+ const ReplyAll = /* @__PURE__ */ react.default.forwardRef(function ReplyAll({ children, size = 16, ...rest }, ref) {
1086
+ return react.default.createElement(require_Icon.Icon, {
734
1087
  width: size,
735
1088
  height: size,
736
1089
  ref,
@@ -741,8 +1094,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
741
1094
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,29a.9989.9989,0,0,1-.768-.36l-10-12a1,1,0,0,1,0-1.28l10-12A1,1,0,0,1,20,4v7.0325c7.0074.4629,11,5.86,11,14.9677a1,1,0,0,1-1.8.6c-2.8218-3.7623-5.3912-5.3463-9.2-5.5716V28a1,1,0,0,1-1,1ZM10.3016,16,18,25.238V20a1,1,0,0,1,1-1,12.7127,12.7127,0,0,1,9.8414,4.0909C28.0864,16.5553,24.6587,13,19,13a1,1,0,0,1-1-1V6.7618Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.4639,28.9182,1.2318,16.64a1,1,0,0,1,0-1.28L11.4638,3.0792,13,4.36,3.3016,16,13,27.638Z" }), children);
742
1095
  });
743
1096
  if (process.env.NODE_ENV !== "production") ReplyAll.propTypes = require_iconPropTypes.iconPropTypes;
744
- const RepoArtifact = react.default.forwardRef(function RepoArtifact({ children, size = 16, ...rest }, ref) {
745
- return react.default.createElement(require_Icon_js, {
1097
+ const RepoArtifact = /* @__PURE__ */ react.default.forwardRef(function RepoArtifact({ children, size = 16, ...rest }, ref) {
1098
+ return react.default.createElement(require_Icon.Icon, {
746
1099
  width: size,
747
1100
  height: size,
748
1101
  ref,
@@ -753,8 +1106,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
753
1106
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V16h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H16v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5l1.4,1.4 l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V30h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8H30z M23,26 c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S24.7,26,23,26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h10v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v5h2v-5 C30,8.9,29.1,8,28,8z" }), children);
754
1107
  });
755
1108
  if (process.env.NODE_ENV !== "production") RepoArtifact.propTypes = require_iconPropTypes.iconPropTypes;
756
- const RepoSourceCode = react.default.forwardRef(function RepoSourceCode({ children, size = 16, ...rest }, ref) {
757
- return react.default.createElement(require_Icon_js, {
1109
+ const RepoSourceCode = /* @__PURE__ */ react.default.forwardRef(function RepoSourceCode({ children, size = 16, ...rest }, ref) {
1110
+ return react.default.createElement(require_Icon.Icon, {
758
1111
  width: size,
759
1112
  height: size,
760
1113
  ref,
@@ -765,8 +1118,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
765
1118
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.6 21.4 27.2 25 27.2 25 23.6 28.6 25 30 30 25 25 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.4 21.4 16.8 25 16.8 25 20.4 28.6 19 30 14 25 19 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h7v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z" }), children);
766
1119
  });
767
1120
  if (process.env.NODE_ENV !== "production") RepoSourceCode.propTypes = require_iconPropTypes.iconPropTypes;
768
- const Report = react.default.forwardRef(function Report({ children, size = 16, ...rest }, ref) {
769
- return react.default.createElement(require_Icon_js, {
1121
+ const Report = /* @__PURE__ */ react.default.forwardRef(function Report({ children, size = 16, ...rest }, ref) {
1122
+ return react.default.createElement(require_Icon.Icon, {
770
1123
  width: size,
771
1124
  height: size,
772
1125
  ref,
@@ -777,8 +1130,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
777
1130
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H18V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13H22V15H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 23H15V25H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" }), children);
778
1131
  });
779
1132
  if (process.env.NODE_ENV !== "production") Report.propTypes = require_iconPropTypes.iconPropTypes;
780
- const ReportData = react.default.forwardRef(function ReportData({ children, size = 16, ...rest }, ref) {
781
- return react.default.createElement(require_Icon_js, {
1133
+ const ReportData = /* @__PURE__ */ react.default.forwardRef(function ReportData({ children, size = 16, ...rest }, ref) {
1134
+ return react.default.createElement(require_Icon.Icon, {
782
1135
  width: size,
783
1136
  height: size,
784
1137
  ref,
@@ -789,8 +1142,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
789
1142
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 20H17V24H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H22V24H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 14H12V24H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" }), children);
790
1143
  });
791
1144
  if (process.env.NODE_ENV !== "production") ReportData.propTypes = require_iconPropTypes.iconPropTypes;
792
- const RequestQuote = react.default.forwardRef(function RequestQuote({ children, size = 16, ...rest }, ref) {
793
- return react.default.createElement(require_Icon_js, {
1145
+ const RequestQuote = /* @__PURE__ */ react.default.forwardRef(function RequestQuote({ children, size = 16, ...rest }, ref) {
1146
+ return react.default.createElement(require_Icon.Icon, {
794
1147
  width: size,
795
1148
  height: size,
796
1149
  ref,
@@ -801,8 +1154,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
801
1154
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,22v6H6V4H16V2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.54,5.76l-3.3-3.3a1.6,1.6,0,0,0-2.24,0l-14,14V22h5.53l14-14a1.6,1.6,0,0,0,0-2.24ZM14.7,20H12V17.3l9.44-9.45,2.71,2.71ZM25.56,9.15,22.85,6.44l2.27-2.27,2.71,2.71Z" }), children);
802
1155
  });
803
1156
  if (process.env.NODE_ENV !== "production") RequestQuote.propTypes = require_iconPropTypes.iconPropTypes;
804
- const RequirementDefinition = react.default.forwardRef(function RequirementDefinition({ children, size = 16, ...rest }, ref) {
805
- return react.default.createElement(require_Icon_js, {
1157
+ const RequirementDefinition = /* @__PURE__ */ react.default.forwardRef(function RequirementDefinition({ children, size = 16, ...rest }, ref) {
1158
+ return react.default.createElement(require_Icon.Icon, {
806
1159
  width: size,
807
1160
  height: size,
808
1161
  ref,
@@ -822,8 +1175,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
822
1175
  }), children);
823
1176
  });
824
1177
  if (process.env.NODE_ENV !== "production") RequirementDefinition.propTypes = require_iconPropTypes.iconPropTypes;
825
- const RequirementUsage = react.default.forwardRef(function RequirementUsage({ children, size = 16, ...rest }, ref) {
826
- return react.default.createElement(require_Icon_js, {
1178
+ const RequirementUsage = /* @__PURE__ */ react.default.forwardRef(function RequirementUsage({ children, size = 16, ...rest }, ref) {
1179
+ return react.default.createElement(require_Icon.Icon, {
827
1180
  width: size,
828
1181
  height: size,
829
1182
  ref,
@@ -843,8 +1196,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
843
1196
  }), children);
844
1197
  });
845
1198
  if (process.env.NODE_ENV !== "production") RequirementUsage.propTypes = require_iconPropTypes.iconPropTypes;
846
- const Reset = react.default.forwardRef(function Reset({ children, size = 16, ...rest }, ref) {
847
- return react.default.createElement(require_Icon_js, {
1199
+ const Reset = /* @__PURE__ */ react.default.forwardRef(function Reset({ children, size = 16, ...rest }, ref) {
1200
+ return react.default.createElement(require_Icon.Icon, {
848
1201
  width: size,
849
1202
  height: size,
850
1203
  ref,
@@ -855,8 +1208,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
855
1208
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,28A12,12,0,1,0,6,16v6.2L2.4,18.6,1,20l6,6,6-6-1.4-1.4L8,22.2V16H8A10,10,0,1,1,18,26Z" }), children);
856
1209
  });
857
1210
  if (process.env.NODE_ENV !== "production") Reset.propTypes = require_iconPropTypes.iconPropTypes;
858
- const ResetAlt = react.default.forwardRef(function ResetAlt({ children, size = 16, ...rest }, ref) {
859
- return react.default.createElement(require_Icon_js, {
1211
+ const ResetAlt = /* @__PURE__ */ react.default.forwardRef(function ResetAlt({ children, size = 16, ...rest }, ref) {
1212
+ return react.default.createElement(require_Icon.Icon, {
860
1213
  width: size,
861
1214
  height: size,
862
1215
  ref,
@@ -867,8 +1220,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
867
1220
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,8H6.83l3.58-3.59L9,3,3,9l6,6,1.41-1.41L6.83,10H27V26H7V19H5v7a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V10A2,2,0,0,0,27,8Z" }), children);
868
1221
  });
869
1222
  if (process.env.NODE_ENV !== "production") ResetAlt.propTypes = require_iconPropTypes.iconPropTypes;
870
- const Restart = react.default.forwardRef(function Restart({ children, size = 16, ...rest }, ref) {
871
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1223
+ const Restart = /* @__PURE__ */ react.default.forwardRef(function Restart({ children, size = 16, ...rest }, ref) {
1224
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
872
1225
  width: size,
873
1226
  height: size,
874
1227
  ref,
@@ -877,7 +1230,7 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
877
1230
  fill: "currentColor",
878
1231
  ...rest
879
1232
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,9c0,2.8-2.2,5-5,5s-5-2.2-5-5s2.2-5,5-5h3.1L9.3,5.8L10,6.5l3-3l-3-3L9.3,1.2L11.1,3H8C4.7,3,2,5.7,2,9s2.7,6,6,6 s6-2.7,6-6H13z" }), children);
880
- return react.default.createElement(require_Icon_js, {
1233
+ return react.default.createElement(require_Icon.Icon, {
881
1234
  width: size,
882
1235
  height: size,
883
1236
  ref,
@@ -888,8 +1241,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
888
1241
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18A10,10,0,1,1,16,8h6.1821l-3.5844,3.5854L20,13l6-6L20,1,18.5977,2.414,22.1851,6H16A12,12,0,1,0,28,18Z" }), children);
889
1242
  });
890
1243
  if (process.env.NODE_ENV !== "production") Restart.propTypes = require_iconPropTypes.iconPropTypes;
891
- const Restaurant = react.default.forwardRef(function Restaurant({ children, size = 16, ...rest }, ref) {
892
- return react.default.createElement(require_Icon_js, {
1244
+ const Restaurant = /* @__PURE__ */ react.default.forwardRef(function Restaurant({ children, size = 16, ...rest }, ref) {
1245
+ return react.default.createElement(require_Icon.Icon, {
893
1246
  width: size,
894
1247
  height: size,
895
1248
  ref,
@@ -900,8 +1253,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
900
1253
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 2H11V12H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,11a4,4,0,0,1-8,0V2H4v9a6,6,0,0,0,5,5.91V30h2V16.91A6,6,0,0,0,16,11V2H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,2H21V30h2V20h3a2,2,0,0,0,2-2V8A5.78,5.78,0,0,0,22,2Zm4,16H23V4.09c2.88.56,3,3.54,3,3.91Z" }), children);
901
1254
  });
902
1255
  if (process.env.NODE_ENV !== "production") Restaurant.propTypes = require_iconPropTypes.iconPropTypes;
903
- const RestaurantFine = react.default.forwardRef(function RestaurantFine({ children, size = 16, ...rest }, ref) {
904
- return react.default.createElement(require_Icon_js, {
1256
+ const RestaurantFine = /* @__PURE__ */ react.default.forwardRef(function RestaurantFine({ children, size = 16, ...rest }, ref) {
1257
+ return react.default.createElement(require_Icon.Icon, {
905
1258
  width: size,
906
1259
  height: size,
907
1260
  ref,
@@ -912,8 +1265,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
912
1265
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,11.0005v-8a1,1,0,0,0-1-1H19a1,1,0,0,0-1,1v8A6.0039,6.0039,0,0,0,23,16.91V28H19v2H29V28H25V16.91A6.0039,6.0039,0,0,0,30,11.0005Zm-10,0V4h8v7.0005a4,4,0,1,1-8,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,2v9.02a3.9644,3.9644,0,0,1-3.96,3.96A4.0052,4.0052,0,0,1,4,11.02V2H2v9.02a5.9888,5.9888,0,0,0,5,5.8652V30H9V16.8953A5.9646,5.9646,0,0,0,14,11.02V2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 2H9V11.98H7z" }), children);
913
1266
  });
914
1267
  if (process.env.NODE_ENV !== "production") RestaurantFine.propTypes = require_iconPropTypes.iconPropTypes;
915
- const Result = react.default.forwardRef(function Result({ children, size = 16, ...rest }, ref) {
916
- return react.default.createElement(require_Icon_js, {
1268
+ const Result = /* @__PURE__ */ react.default.forwardRef(function Result({ children, size = 16, ...rest }, ref) {
1269
+ return react.default.createElement(require_Icon.Icon, {
917
1270
  width: size,
918
1271
  height: size,
919
1272
  ref,
@@ -924,8 +1277,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
924
1277
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 23H22V25H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 23H12V25H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H22V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H12V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H22V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13H12V15H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" }), children);
925
1278
  });
926
1279
  if (process.env.NODE_ENV !== "production") Result.propTypes = require_iconPropTypes.iconPropTypes;
927
- const ResultDraft = react.default.forwardRef(function ResultDraft({ children, size = 16, ...rest }, ref) {
928
- return react.default.createElement(require_Icon_js, {
1280
+ const ResultDraft = /* @__PURE__ */ react.default.forwardRef(function ResultDraft({ children, size = 16, ...rest }, ref) {
1281
+ return react.default.createElement(require_Icon.Icon, {
929
1282
  width: size,
930
1283
  height: size,
931
1284
  ref,
@@ -936,8 +1289,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
936
1289
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7,19.3l-3-3c-0.4-0.4-1-0.4-1.4,0L16,25.6V30h4.4l9.3-9.3C30.1,20.3,30.1,19.7,29.7,19.3z M19.6,28H18v-1.6l5-5l1.6,1.6 L19.6,28z M26,21.6L24.4,20l1.6-1.6l1.6,1.6L26,21.6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 23H12V25H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H18V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H12V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H22V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13H12V15H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,28V7h3v3h12V7h3v6h2V7c0-1.1-0.9-2-2-2h-3V4c0-1.1-0.9-2-2-2h-8c-1.1,0-2,0.9-2,2v1H7C5.9,5,5,5.9,5,7v21 c0,1.1,0.9,2,2,2h5v-2H7z M12,4h8v4h-8V4z" }), children);
937
1290
  });
938
1291
  if (process.env.NODE_ENV !== "production") ResultDraft.propTypes = require_iconPropTypes.iconPropTypes;
939
- const ResultNew = react.default.forwardRef(function ResultNew({ children, size = 16, ...rest }, ref) {
940
- return react.default.createElement(require_Icon_js, {
1292
+ const ResultNew = /* @__PURE__ */ react.default.forwardRef(function ResultNew({ children, size = 16, ...rest }, ref) {
1293
+ return react.default.createElement(require_Icon.Icon, {
941
1294
  width: size,
942
1295
  height: size,
943
1296
  ref,
@@ -952,8 +1305,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
952
1305
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13H12V15H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H12V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 23H12V25H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H22V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 18H22V20H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 23H18V25H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,28V7h3v3H22V7h3V18h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H18V28ZM12,4h8V8H12Z" }), children);
953
1306
  });
954
1307
  if (process.env.NODE_ENV !== "production") ResultNew.propTypes = require_iconPropTypes.iconPropTypes;
955
- const ResultOld = react.default.forwardRef(function ResultOld({ children, size = 16, ...rest }, ref) {
956
- return react.default.createElement(require_Icon_js, {
1308
+ const ResultOld = /* @__PURE__ */ react.default.forwardRef(function ResultOld({ children, size = 16, ...rest }, ref) {
1309
+ return react.default.createElement(require_Icon.Icon, {
957
1310
  width: size,
958
1311
  height: size,
959
1312
  ref,
@@ -964,8 +1317,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
964
1317
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 13H12V15H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H22V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H12V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 23H12V25H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,28V7h3v3H22V7h3v8h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h9V28ZM12,4h8V8H12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,19v2.4131A6.996,6.996,0,1,1,24,32V30a5,5,0,1,0-4.5762-7H22v2H16V19Z" }), children);
965
1318
  });
966
1319
  if (process.env.NODE_ENV !== "production") ResultOld.propTypes = require_iconPropTypes.iconPropTypes;
967
- const RetryFailed = react.default.forwardRef(function RetryFailed({ children, size = 16, ...rest }, ref) {
968
- return react.default.createElement(require_Icon_js, {
1320
+ const RetryFailed = /* @__PURE__ */ react.default.forwardRef(function RetryFailed({ children, size = 16, ...rest }, ref) {
1321
+ return react.default.createElement(require_Icon.Icon, {
969
1322
  width: size,
970
1323
  height: size,
971
1324
  ref,
@@ -976,8 +1329,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
976
1329
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.41 25 30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,2A12.0351,12.0351,0,0,0,6,14v6.2L2.4,16.6,1,18l6,6,6-6-1.4-1.4L8,20.2V14a10,10,0,0,1,20,0v3h2V14A12.0351,12.0351,0,0,0,18,2Z" }), children);
977
1330
  });
978
1331
  if (process.env.NODE_ENV !== "production") RetryFailed.propTypes = require_iconPropTypes.iconPropTypes;
979
- const Return = react.default.forwardRef(function Return({ children, size = 16, ...rest }, ref) {
980
- return react.default.createElement(require_Icon_js, {
1332
+ const Return = /* @__PURE__ */ react.default.forwardRef(function Return({ children, size = 16, ...rest }, ref) {
1333
+ return react.default.createElement(require_Icon.Icon, {
981
1334
  width: size,
982
1335
  height: size,
983
1336
  ref,
@@ -988,8 +1341,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
988
1341
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,8v2c2.2061,0,4,1.7944,4,4s-1.7939,4-4,4h-12v-5l-6,6,6,6v-5h12c3.3086,0,6-2.6914,6-6s-2.6914-6-6-6Z" }), children);
989
1342
  });
990
1343
  if (process.env.NODE_ENV !== "production") Return.propTypes = require_iconPropTypes.iconPropTypes;
991
- const Review = react.default.forwardRef(function Review({ children, size = 16, ...rest }, ref) {
992
- return react.default.createElement(require_Icon_js, {
1344
+ const Review = /* @__PURE__ */ react.default.forwardRef(function Review({ children, size = 16, ...rest }, ref) {
1345
+ return react.default.createElement(require_Icon.Icon, {
993
1346
  width: size,
994
1347
  height: size,
995
1348
  ref,
@@ -1000,8 +1353,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1000
1353
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 8 17.912 11.703 22 12.297 19 15 20 19 16 16.75 12 19 13 15 10 12.297 14.2 11.703 16 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" }), children);
1001
1354
  });
1002
1355
  if (process.env.NODE_ENV !== "production") Review.propTypes = require_iconPropTypes.iconPropTypes;
1003
- const Rewind_10 = react.default.forwardRef(function Rewind_10({ children, size = 16, ...rest }, ref) {
1004
- return react.default.createElement(require_Icon_js, {
1356
+ const Rewind_10 = /* @__PURE__ */ react.default.forwardRef(function Rewind_10({ children, size = 16, ...rest }, ref) {
1357
+ return react.default.createElement(require_Icon.Icon, {
1005
1358
  width: size,
1006
1359
  height: size,
1007
1360
  ref,
@@ -1012,8 +1365,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1012
1365
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z" }), children);
1013
1366
  });
1014
1367
  if (process.env.NODE_ENV !== "production") Rewind_10.propTypes = require_iconPropTypes.iconPropTypes;
1015
- const Rewind_30 = react.default.forwardRef(function Rewind_30({ children, size = 16, ...rest }, ref) {
1016
- return react.default.createElement(require_Icon_js, {
1368
+ const Rewind_30 = /* @__PURE__ */ react.default.forwardRef(function Rewind_30({ children, size = 16, ...rest }, ref) {
1369
+ return react.default.createElement(require_Icon.Icon, {
1017
1370
  width: size,
1018
1371
  height: size,
1019
1372
  ref,
@@ -1024,8 +1377,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1024
1377
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.64,22.13a2.81,2.81,0,0,1-1.28-.27,2.36,2.36,0,0,1-.89-.77A3.39,3.39,0,0,1,17,19.84a7.12,7.12,0,0,1-.17-1.68A7.24,7.24,0,0,1,17,16.48a3.46,3.46,0,0,1,.52-1.25,2.36,2.36,0,0,1,.89-.77,2.81,2.81,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.31,5.31,0,0,1,.7,2.93,5.31,5.31,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.64,22.13Zm0-1.22a1,1,0,0,0,1-.55,3.24,3.24,0,0,0,.3-1.51V17.47a3.17,3.17,0,0,0-.3-1.5,1.22,1.22,0,0,0-2.05,0,3.18,3.18,0,0,0-.29,1.5v1.38a3.25,3.25,0,0,0,.29,1.51A1,1,0,0,0,19.64,20.91Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.62,17.42a1.46,1.46,0,0,0,1-.27.84.84,0,0,0,.31-.68v-.08a.94.94,0,0,0-.3-.74,1.2,1.2,0,0,0-.83-.27,1.65,1.65,0,0,0-.89.24,2.1,2.1,0,0,0-.68.68l-.93-.83a5.37,5.37,0,0,1,.44-.51,2.7,2.7,0,0,1,.54-.4,2.55,2.55,0,0,1,.7-.27,3.25,3.25,0,0,1,.87-.1,3.94,3.94,0,0,1,1.06.14,2.33,2.33,0,0,1,.82.4,1.91,1.91,0,0,1,.54.63,1.87,1.87,0,0,1,.18.83,2,2,0,0,1-.11.67,1.82,1.82,0,0,1-.32.52,1.79,1.79,0,0,1-.47.36,2.27,2.27,0,0,1-.57.2V18a2.34,2.34,0,0,1,.63.21,1.7,1.7,0,0,1,.51.38,1.89,1.89,0,0,1,.34.55,2.07,2.07,0,0,1,.12.73,2,2,0,0,1-.2.92,2,2,0,0,1-.58.72,2.66,2.66,0,0,1-.89.45,3.76,3.76,0,0,1-1.15.16,4.1,4.1,0,0,1-1-.11A3.1,3.1,0,0,1,11,21.7a2.76,2.76,0,0,1-.56-.45A4.22,4.22,0,0,1,10,20.7l1.07-.81a3.07,3.07,0,0,0,.28.42,1.94,1.94,0,0,0,.36.34,1.57,1.57,0,0,0,.45.22,2,2,0,0,0,.57.07,1.45,1.45,0,0,0,1-.3,1.12,1.12,0,0,0,.34-.85v-.08a1,1,0,0,0-.37-.8,1.78,1.78,0,0,0-1.06-.28h-.76V17.42Z" }), children);
1025
1378
  });
1026
1379
  if (process.env.NODE_ENV !== "production") Rewind_30.propTypes = require_iconPropTypes.iconPropTypes;
1027
- const Rewind_5 = react.default.forwardRef(function Rewind_5({ children, size = 16, ...rest }, ref) {
1028
- return react.default.createElement(require_Icon_js, {
1380
+ const Rewind_5 = /* @__PURE__ */ react.default.forwardRef(function Rewind_5({ children, size = 16, ...rest }, ref) {
1381
+ return react.default.createElement(require_Icon.Icon, {
1029
1382
  width: size,
1030
1383
  height: size,
1031
1384
  ref,
@@ -1036,8 +1389,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1036
1389
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z" }), children);
1037
1390
  });
1038
1391
  if (process.env.NODE_ENV !== "production") Rewind_5.propTypes = require_iconPropTypes.iconPropTypes;
1039
- const Rexx = react.default.forwardRef(function Rexx({ children, size = 16, ...rest }, ref) {
1040
- return react.default.createElement(require_Icon_js, {
1392
+ const Rexx = /* @__PURE__ */ react.default.forwardRef(function Rexx({ children, size = 16, ...rest }, ref) {
1393
+ return react.default.createElement(require_Icon.Icon, {
1041
1394
  width: size,
1042
1395
  height: size,
1043
1396
  ref,
@@ -1048,8 +1401,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1048
1401
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.5,16l2.5,5h-2l-1.5-3-1.5,3h-2l2.5-5-2.5-5h2l1.5,3,1.5-3h2l-2.5,5ZM32,11h-2l-1.5,3-1.5-3h-2l2.5,5-2.5,5h2l1.5-3,1.5,3h2l-2.5-5,2.5-5ZM14,12.9761v-1.9761h-6v9.9761h6v-2h-4v-2h2v-2h-2v-2s4,0,4,0ZM6,13v2c0,1-.7,1.8-1.6,2l1.6,4h-2l-1.6-4h-.4v4H0v-10h4c1.1,0,2,.9,2,2ZM4,13h-2v2h2v-2Z" }), children);
1049
1402
  });
1050
1403
  if (process.env.NODE_ENV !== "production") Rexx.propTypes = require_iconPropTypes.iconPropTypes;
1051
- const RightPanelClose = react.default.forwardRef(function RightPanelClose({ children, size = 16, ...rest }, ref) {
1052
- return react.default.createElement(require_Icon_js, {
1404
+ const RightPanelClose = /* @__PURE__ */ react.default.forwardRef(function RightPanelClose({ children, size = 16, ...rest }, ref) {
1405
+ return react.default.createElement(require_Icon.Icon, {
1053
1406
  width: size,
1054
1407
  height: size,
1055
1408
  ref,
@@ -1063,8 +1416,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1063
1416
  }), children);
1064
1417
  });
1065
1418
  if (process.env.NODE_ENV !== "production") RightPanelClose.propTypes = require_iconPropTypes.iconPropTypes;
1066
- const RightPanelCloseFilled = react.default.forwardRef(function RightPanelCloseFilled({ children, size = 16, ...rest }, ref) {
1067
- return react.default.createElement(require_Icon_js, {
1419
+ const RightPanelCloseFilled = /* @__PURE__ */ react.default.forwardRef(function RightPanelCloseFilled({ children, size = 16, ...rest }, ref) {
1420
+ return react.default.createElement(require_Icon.Icon, {
1068
1421
  width: size,
1069
1422
  height: size,
1070
1423
  ref,
@@ -1078,8 +1431,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1078
1431
  }), children);
1079
1432
  });
1080
1433
  if (process.env.NODE_ENV !== "production") RightPanelCloseFilled.propTypes = require_iconPropTypes.iconPropTypes;
1081
- const RightPanelOpen = react.default.forwardRef(function RightPanelOpen({ children, size = 16, ...rest }, ref) {
1082
- return react.default.createElement(require_Icon_js, {
1434
+ const RightPanelOpen = /* @__PURE__ */ react.default.forwardRef(function RightPanelOpen({ children, size = 16, ...rest }, ref) {
1435
+ return react.default.createElement(require_Icon.Icon, {
1083
1436
  width: size,
1084
1437
  height: size,
1085
1438
  ref,
@@ -1093,8 +1446,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1093
1446
  }), children);
1094
1447
  });
1095
1448
  if (process.env.NODE_ENV !== "production") RightPanelOpen.propTypes = require_iconPropTypes.iconPropTypes;
1096
- const RightPanelOpenFilled = react.default.forwardRef(function RightPanelOpenFilled({ children, size = 16, ...rest }, ref) {
1097
- return react.default.createElement(require_Icon_js, {
1449
+ const RightPanelOpenFilled = /* @__PURE__ */ react.default.forwardRef(function RightPanelOpenFilled({ children, size = 16, ...rest }, ref) {
1450
+ return react.default.createElement(require_Icon.Icon, {
1098
1451
  width: size,
1099
1452
  height: size,
1100
1453
  ref,
@@ -1108,8 +1461,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1108
1461
  }), children);
1109
1462
  });
1110
1463
  if (process.env.NODE_ENV !== "production") RightPanelOpenFilled.propTypes = require_iconPropTypes.iconPropTypes;
1111
- const Road = react.default.forwardRef(function Road({ children, size = 16, ...rest }, ref) {
1112
- return react.default.createElement(require_Icon_js, {
1464
+ const Road = /* @__PURE__ */ react.default.forwardRef(function Road({ children, size = 16, ...rest }, ref) {
1465
+ return react.default.createElement(require_Icon.Icon, {
1113
1466
  width: size,
1114
1467
  height: size,
1115
1468
  ref,
@@ -1120,8 +1473,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1120
1473
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 13H19V15H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.4409,8,24.1687,3.45A2.009,2.009,0,0,0,22.2456,2H9.7544A2.0089,2.0089,0,0,0,7.8313,3.4507L6.5315,8H4v2H6v7a2.0025,2.0025,0,0,0,2,2v3h2V19H22v3h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM9.7544,4H22.2458l1.4285,5H8.3257ZM24,13H22v2h2v2H8V15h2V13H8V11H24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16H4V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 16H30V30H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 21H17V24H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V30H15z" }), children);
1121
1474
  });
1122
1475
  if (process.env.NODE_ENV !== "production") Road.propTypes = require_iconPropTypes.iconPropTypes;
1123
- const RoadWeather = react.default.forwardRef(function RoadWeather({ children, size = 16, ...rest }, ref) {
1124
- return react.default.createElement(require_Icon_js, {
1476
+ const RoadWeather = /* @__PURE__ */ react.default.forwardRef(function RoadWeather({ children, size = 16, ...rest }, ref) {
1477
+ return react.default.createElement(require_Icon.Icon, {
1125
1478
  width: size,
1126
1479
  height: size,
1127
1480
  ref,
@@ -1132,8 +1485,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1132
1485
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,31H14v-.228a3.0135,3.0135,0,0,0-1.9468-2.8091L8.5215,26.6384A3.9034,3.9034,0,0,1,6,23H8a1.8946,1.8946,0,0,0,1.2236,1.7659L12.7554,26.09A5.0226,5.0226,0,0,1,16,30.772Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,31H28v-.228a3.0135,3.0135,0,0,0-1.9468-2.8091l-3.5317-1.3245A3.9034,3.9034,0,0,1,20,23h2a1.8946,1.8946,0,0,0,1.2236,1.7659L26.7554,26.09A5.0226,5.0226,0,0,1,30,30.772Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 13H17V15H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.4409,8,22.1687,3.45A2.009,2.009,0,0,0,20.2456,2H7.7544A2.0089,2.0089,0,0,0,5.8313,3.4507L4.5315,8H2v2H4v7a2.0025,2.0025,0,0,0,2,2v2H8V19H20v2h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM7.7544,4H20.2458l1.4285,5H6.3257ZM22,13H20v2h2v2H6V15H8V13H6V11H22Z" }), children);
1133
1486
  });
1134
1487
  if (process.env.NODE_ENV !== "production") RoadWeather.propTypes = require_iconPropTypes.iconPropTypes;
1135
- const Roadmap = react.default.forwardRef(function Roadmap({ children, size = 16, ...rest }, ref) {
1136
- return react.default.createElement(require_Icon_js, {
1488
+ const Roadmap = /* @__PURE__ */ react.default.forwardRef(function Roadmap({ children, size = 16, ...rest }, ref) {
1489
+ return react.default.createElement(require_Icon.Icon, {
1137
1490
  width: size,
1138
1491
  height: size,
1139
1492
  ref,
@@ -1144,8 +1497,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1144
1497
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H4a2.0023,2.0023,0,0,1-2-2V24a2.0023,2.0023,0,0,1,2-2h8a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,12,30ZM4,24v4h8V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H12a2.0023,2.0023,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,28,20ZM12,14v4H28V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10H4A2.0023,2.0023,0,0,1,2,8V4A2.0023,2.0023,0,0,1,4,2H16a2.0023,2.0023,0,0,1,2,2V8A2.0023,2.0023,0,0,1,16,10ZM4,4V8H16V4Z" }), children);
1145
1498
  });
1146
1499
  if (process.env.NODE_ENV !== "production") Roadmap.propTypes = require_iconPropTypes.iconPropTypes;
1147
- const Rocket = react.default.forwardRef(function Rocket({ children, size = 16, ...rest }, ref) {
1148
- return react.default.createElement(require_Icon_js, {
1500
+ const Rocket = /* @__PURE__ */ react.default.forwardRef(function Rocket({ children, size = 16, ...rest }, ref) {
1501
+ return react.default.createElement(require_Icon.Icon, {
1149
1502
  width: size,
1150
1503
  height: size,
1151
1504
  ref,
@@ -1159,8 +1512,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1159
1512
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30a1,1,0,0,1-.37-.07,1,1,0,0,1-.62-.79l-1-7,2-.28.75,5.27L21,24.52V17a1,1,0,0,1,.29-.71l4.07-4.07A8.94,8.94,0,0,0,28,5.86V4H26.14a8.94,8.94,0,0,0-6.36,2.64l-4.07,4.07A1,1,0,0,1,15,11H7.48L4.87,14.26l5.27.75-.28,2-7-1a1,1,0,0,1-.79-.62,1,1,0,0,1,.15-1l4-5A1,1,0,0,1,7,9h7.59l3.77-3.78A10.92,10.92,0,0,1,26.14,2H28a2,2,0,0,1,2,2V5.86a10.92,10.92,0,0,1-3.22,7.78L23,17.41V25a1,1,0,0,1-.38.78l-5,4A1,1,0,0,1,17,30Z" }), children);
1160
1513
  });
1161
1514
  if (process.env.NODE_ENV !== "production") Rocket.propTypes = require_iconPropTypes.iconPropTypes;
1162
- const Rotate = react.default.forwardRef(function Rotate({ children, size = 16, ...rest }, ref) {
1163
- return react.default.createElement(require_Icon_js, {
1515
+ const Rotate = /* @__PURE__ */ react.default.forwardRef(function Rotate({ children, size = 16, ...rest }, ref) {
1516
+ return react.default.createElement(require_Icon.Icon, {
1164
1517
  width: size,
1165
1518
  height: size,
1166
1519
  ref,
@@ -1171,8 +1524,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1171
1524
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.91,26.82l.35,2a12.9,12.9,0,0,0,4.24-1.54l-1-1.73A10.88,10.88,0,0,1,17.91,26.82Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.42,23.07,26,24.35a13,13,0,0,0,2.24-3.91l-1.87-.68A11,11,0,0,1,24.42,23.07Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.5,27.25a12.9,12.9,0,0,0,4.24,1.54l.35-2a10.88,10.88,0,0,1-3.59-1.3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.67,19.76l-1.87.68A13,13,0,0,0,6,24.35l.32-.26,1.22-1h0a11,11,0,0,1-1.91-3.31Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,16a12.85,12.85,0,0,0-.8-4.44l-1.87.68A11.18,11.18,0,0,1,27,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,7.65a13,13,0,0,0-20,0V4H4v8h8V10H6.81A11,11,0,0,1,24.42,8.93Z" }), children);
1172
1525
  });
1173
1526
  if (process.env.NODE_ENV !== "production") Rotate.propTypes = require_iconPropTypes.iconPropTypes;
1174
- const WatsonHealthRotate_180 = react.default.forwardRef(function WatsonHealthRotate_180({ children, size = 16, ...rest }, ref) {
1175
- return react.default.createElement(require_Icon_js, {
1527
+ const WatsonHealthRotate_180 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthRotate_180({ children, size = 16, ...rest }, ref) {
1528
+ return react.default.createElement(require_Icon.Icon, {
1176
1529
  width: size,
1177
1530
  height: size,
1178
1531
  ref,
@@ -1183,8 +1536,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1183
1536
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.0913,26.8235l-.3467,1.968a12.8956,12.8956,0,0,1-4.24-1.5418l1-1.7307A10.9086,10.9086,0,0,0,14.0913,26.8235Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5767,23.0682,6.0449,24.3533a12.9811,12.9811,0,0,1-2.25-3.9112l1.8775-.6834A10.9808,10.9808,0,0,0,7.5767,23.0682Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.4951,27.25a12.8956,12.8956,0,0,1-4.24,1.5418l-.3467-1.968a10.9086,10.9086,0,0,0,3.5869-1.3045Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.3271,19.7587l1.8775.6834a12.9811,12.9811,0,0,1-2.2495,3.9112l-.3115-.2614-1.22-1.0237h0a10.9822,10.9822,0,0,0,1.9038-3.3093Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.6616,5.2559c-.1592.0346-.3144.08-.4712.1215-.2131.0562-.4258.1138-.6335.1822-.1643.0547-.325.1167-.4859.1782-.1926.0742-.3835.1509-.57.2349-.1611.0727-.3193.15-.4763.23q-.2677.1363-.5262.2867c-.153.0893-.3046.18-.4531.2758-.1679.1089-.3308.2242-.4922.3413-.1406.1026-.2817.2037-.417.3125-.1616.1294-.3156.2676-.47.4063-.1225.11-.2478.2168-.3652.332-.1668.1636-.3223.3379-.4785.5117A10.9438,10.9438,0,0,0,5,16H3A12.9363,12.9363,0,0,1,6.05,7.65l-.0047-.0039c.0918-.1094.197-.2061.2925-.3125.1841-.2051.3672-.41.5635-.603.1382-.1358.2856-.2613.43-.3907.1831-.1645.3657-.3286.5581-.4824.1592-.1279.3244-.2466.4895-.3667.1921-.14.3855-.2768.5854-.4062.1743-.1128.3523-.2188.5322-.3238q.3081-.1786.6253-.3408c.1846-.0942.37-.1846.56-.27.2224-.1.449-.1914.678-.2793.1894-.0723.3777-.1455.5713-.209.2463-.0815.498-.1494.7507-.2163.1848-.0493.3674-.1025.5554-.1431.29-.0634.5865-.1074.8833-.1508.159-.023.3145-.0552.4754-.0728A12.9331,12.9331,0,0,1,26,7.7031V4h2v8H20V10h5.1885A10.961,10.961,0,0,0,16,5a11.1114,11.1114,0,0,0-1.189.0669c-.1362.0146-.268.042-.4026.0615C14.1575,5.165,13.907,5.2026,13.6616,5.2559Z" }), children);
1184
1537
  });
1185
1538
  if (process.env.NODE_ENV !== "production") WatsonHealthRotate_180.propTypes = require_iconPropTypes.iconPropTypes;
1186
- const WatsonHealthRotate_360 = react.default.forwardRef(function WatsonHealthRotate_360({ children, size = 16, ...rest }, ref) {
1187
- return react.default.createElement(require_Icon_js, {
1539
+ const WatsonHealthRotate_360 = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthRotate_360({ children, size = 16, ...rest }, ref) {
1540
+ return react.default.createElement(require_Icon.Icon, {
1188
1541
  width: size,
1189
1542
  height: size,
1190
1543
  ref,
@@ -1195,8 +1548,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1195
1548
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.95,7.65l.0047-.0039c-.0918-.1094-.197-.2061-.2925-.3125-.1841-.2051-.3672-.41-.5635-.603-.1382-.1358-.2856-.2613-.43-.3907-.1831-.1645-.3657-.3286-.5581-.4824-.1592-.1279-.3244-.2466-.4895-.3667-.1921-.14-.3855-.2768-.5854-.4062-.1743-.1128-.3523-.2188-.5322-.3238q-.3081-.1786-.6253-.3408c-.1846-.0942-.37-.1846-.56-.27-.2224-.1-.449-.1914-.678-.2793-.1894-.0723-.3777-.1455-.5713-.209-.2463-.0815-.498-.1494-.7507-.2163-.1848-.0493-.3674-.1025-.5554-.1431-.29-.0634-.5865-.1074-.8833-.1508-.159-.023-.3145-.0552-.4754-.0728A12.9331,12.9331,0,0,0,6,7.7031V4H4v8h8V10H6.8115A10.961,10.961,0,0,1,16,5a11.1114,11.1114,0,0,1,1.189.0669c.1362.0146.268.042.4026.0615.2509.0366.5014.0742.7468.1275.1592.0346.3144.08.4712.1215.2131.0562.4258.1138.6335.1822.1643.0547.325.1167.4859.1782.1926.0742.3835.1509.5705.2349.1611.0727.3193.15.4763.23q.2677.1363.5262.2867c.153.0893.3046.18.4531.2758.1679.1089.3308.2242.4922.3413.1406.1026.2817.2037.417.3125.1616.1294.3156.2676.47.4063.1225.11.2478.2168.3652.332.1668.1636.3223.3379.4785.5117A10.9928,10.9928,0,1,1,5,16H3A13,13,0,1,0,25.95,7.65Z" }), children);
1196
1549
  });
1197
1550
  if (process.env.NODE_ENV !== "production") WatsonHealthRotate_360.propTypes = require_iconPropTypes.iconPropTypes;
1198
- const RotateClockwise = react.default.forwardRef(function RotateClockwise({ children, size = 16, ...rest }, ref) {
1199
- return react.default.createElement(require_Icon_js, {
1551
+ const RotateClockwise = /* @__PURE__ */ react.default.forwardRef(function RotateClockwise({ children, size = 16, ...rest }, ref) {
1552
+ return react.default.createElement(require_Icon.Icon, {
1200
1553
  width: size,
1201
1554
  height: size,
1202
1555
  ref,
@@ -1207,8 +1560,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1207
1560
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H16a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM16,16V28H28.0012L28,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,2,13.59,3.41,16.17,6H11a7.0078,7.0078,0,0,0-7,7v5H6V13a5.0057,5.0057,0,0,1,5-5h5.17l-2.58,2.59L15,12l5-5Z" }), children);
1208
1561
  });
1209
1562
  if (process.env.NODE_ENV !== "production") RotateClockwise.propTypes = require_iconPropTypes.iconPropTypes;
1210
- const RotateClockwiseAlt = react.default.forwardRef(function RotateClockwiseAlt({ children, size = 16, ...rest }, ref) {
1211
- return react.default.createElement(require_Icon_js, {
1563
+ const RotateClockwiseAlt = /* @__PURE__ */ react.default.forwardRef(function RotateClockwiseAlt({ children, size = 16, ...rest }, ref) {
1564
+ return react.default.createElement(require_Icon.Icon, {
1212
1565
  width: size,
1213
1566
  height: size,
1214
1567
  ref,
@@ -1219,8 +1572,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1219
1572
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H4a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,16,30ZM4,16V28H16.0012L16,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15l-1.41-1.41L26,16.17V11a7.0078,7.0078,0,0,0-7-7H14V6h5a5.0057,5.0057,0,0,1,5,5v5.17l-2.59-2.58L20,15l5,5Z" }), children);
1220
1573
  });
1221
1574
  if (process.env.NODE_ENV !== "production") RotateClockwiseAlt.propTypes = require_iconPropTypes.iconPropTypes;
1222
- const RotateClockwiseAltFilled = react.default.forwardRef(function RotateClockwiseAltFilled({ children, size = 16, ...rest }, ref) {
1223
- return react.default.createElement(require_Icon_js, {
1575
+ const RotateClockwiseAltFilled = /* @__PURE__ */ react.default.forwardRef(function RotateClockwiseAltFilled({ children, size = 16, ...rest }, ref) {
1576
+ return react.default.createElement(require_Icon.Icon, {
1224
1577
  width: size,
1225
1578
  height: size,
1226
1579
  ref,
@@ -1231,8 +1584,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1231
1584
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H4a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15l-1.41-1.41L26,16.17V11a7.0078,7.0078,0,0,0-7-7H14V6h5a5.0057,5.0057,0,0,1,5,5v5.17l-2.59-2.58L20,15l5,5Z" }), children);
1232
1585
  });
1233
1586
  if (process.env.NODE_ENV !== "production") RotateClockwiseAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
1234
- const RotateClockwiseFilled = react.default.forwardRef(function RotateClockwiseFilled({ children, size = 16, ...rest }, ref) {
1235
- return react.default.createElement(require_Icon_js, {
1587
+ const RotateClockwiseFilled = /* @__PURE__ */ react.default.forwardRef(function RotateClockwiseFilled({ children, size = 16, ...rest }, ref) {
1588
+ return react.default.createElement(require_Icon.Icon, {
1236
1589
  width: size,
1237
1590
  height: size,
1238
1591
  ref,
@@ -1243,8 +1596,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1243
1596
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H16a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,2,13.59,3.41,16.17,6H11a7.0078,7.0078,0,0,0-7,7v5H6V13a5.0057,5.0057,0,0,1,5-5h5.17l-2.58,2.59L15,12l5-5Z" }), children);
1244
1597
  });
1245
1598
  if (process.env.NODE_ENV !== "production") RotateClockwiseFilled.propTypes = require_iconPropTypes.iconPropTypes;
1246
- const RotateCounterclockwise = react.default.forwardRef(function RotateCounterclockwise({ children, size = 16, ...rest }, ref) {
1247
- return react.default.createElement(require_Icon_js, {
1599
+ const RotateCounterclockwise = /* @__PURE__ */ react.default.forwardRef(function RotateCounterclockwise({ children, size = 16, ...rest }, ref) {
1600
+ return react.default.createElement(require_Icon.Icon, {
1248
1601
  width: size,
1249
1602
  height: size,
1250
1603
  ref,
@@ -1255,8 +1608,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1255
1608
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,28V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,28ZM4,16,3.9988,28H16V16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,2l1.41,1.41L15.83,6H21a7.0078,7.0078,0,0,1,7,7v5H26V13a5.0057,5.0057,0,0,0-5-5H15.83l2.58,2.59L17,12,12,7Z" }), children);
1256
1609
  });
1257
1610
  if (process.env.NODE_ENV !== "production") RotateCounterclockwise.propTypes = require_iconPropTypes.iconPropTypes;
1258
- const RotateCounterclockwiseAlt = react.default.forwardRef(function RotateCounterclockwiseAlt({ children, size = 16, ...rest }, ref) {
1259
- return react.default.createElement(require_Icon_js, {
1611
+ const RotateCounterclockwiseAlt = /* @__PURE__ */ react.default.forwardRef(function RotateCounterclockwiseAlt({ children, size = 16, ...rest }, ref) {
1612
+ return react.default.createElement(require_Icon.Icon, {
1260
1613
  width: size,
1261
1614
  height: size,
1262
1615
  ref,
@@ -1267,8 +1620,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1267
1620
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,28V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H16A2.0023,2.0023,0,0,1,14,28Zm2-12-.0012,12H28V16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,15l1.41-1.41L6,16.17V11a7.0078,7.0078,0,0,1,7-7h5V6H13a5.0057,5.0057,0,0,0-5,5v5.17l2.59-2.58L12,15,7,20Z" }), children);
1268
1621
  });
1269
1622
  if (process.env.NODE_ENV !== "production") RotateCounterclockwiseAlt.propTypes = require_iconPropTypes.iconPropTypes;
1270
- const RotateCounterclockwiseAltFilled = react.default.forwardRef(function RotateCounterclockwiseAltFilled({ children, size = 16, ...rest }, ref) {
1271
- return react.default.createElement(require_Icon_js, {
1623
+ const RotateCounterclockwiseAltFilled = /* @__PURE__ */ react.default.forwardRef(function RotateCounterclockwiseAltFilled({ children, size = 16, ...rest }, ref) {
1624
+ return react.default.createElement(require_Icon.Icon, {
1272
1625
  width: size,
1273
1626
  height: size,
1274
1627
  ref,
@@ -1279,8 +1632,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1279
1632
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,28V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H16A2.0023,2.0023,0,0,1,14,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,15l1.41-1.41L6,16.17V11a7.0078,7.0078,0,0,1,7-7h5V6H13a5.0057,5.0057,0,0,0-5,5v5.17l2.59-2.58L12,15,7,20Z" }), children);
1280
1633
  });
1281
1634
  if (process.env.NODE_ENV !== "production") RotateCounterclockwiseAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
1282
- const RotateCounterclockwiseFilled = react.default.forwardRef(function RotateCounterclockwiseFilled({ children, size = 16, ...rest }, ref) {
1283
- return react.default.createElement(require_Icon_js, {
1635
+ const RotateCounterclockwiseFilled = /* @__PURE__ */ react.default.forwardRef(function RotateCounterclockwiseFilled({ children, size = 16, ...rest }, ref) {
1636
+ return react.default.createElement(require_Icon.Icon, {
1284
1637
  width: size,
1285
1638
  height: size,
1286
1639
  ref,
@@ -1291,8 +1644,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1291
1644
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,28V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,2l1.41,1.41L15.83,6H21a7.0078,7.0078,0,0,1,7,7v5H26V13a5.0057,5.0057,0,0,0-5-5H15.83l2.58,2.59L17,12,12,7Z" }), children);
1292
1645
  });
1293
1646
  if (process.env.NODE_ENV !== "production") RotateCounterclockwiseFilled.propTypes = require_iconPropTypes.iconPropTypes;
1294
- const Router = react.default.forwardRef(function Router({ children, size = 16, ...rest }, ref) {
1295
- return react.default.createElement(require_Icon_js, {
1647
+ const Router = /* @__PURE__ */ react.default.forwardRef(function Router({ children, size = 16, ...rest }, ref) {
1648
+ return react.default.createElement(require_Icon.Icon, {
1296
1649
  width: size,
1297
1650
  height: size,
1298
1651
  ref,
@@ -1303,8 +1656,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1303
1656
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 7 16 2 11 7 12.409 8.419 15 5.847 15 13 17 13 17 5.794 19.591 8.419 21 7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 25 16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 11 19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 11 13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z" }), children);
1304
1657
  });
1305
1658
  if (process.env.NODE_ENV !== "production") Router.propTypes = require_iconPropTypes.iconPropTypes;
1306
- const RouterVoice = react.default.forwardRef(function RouterVoice({ children, size = 16, ...rest }, ref) {
1307
- return react.default.createElement(require_Icon_js, {
1659
+ const RouterVoice = /* @__PURE__ */ react.default.forwardRef(function RouterVoice({ children, size = 16, ...rest }, ref) {
1660
+ return react.default.createElement(require_Icon.Icon, {
1308
1661
  width: size,
1309
1662
  height: size,
1310
1663
  ref,
@@ -1315,8 +1668,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1315
1668
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 25 16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 11 19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 11 13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.4289,5.8227v1.63a1.1269,1.1269,0,0,1-.6767,1.026l-1.39.5967A1.1218,1.1218,0,0,1,9.14,8.8424L7.3208,7.0233a1.1165,1.1165,0,0,1,.0125-1.579l.0348-.0328c7.393-6.527,14.6913-2.0374,17.2127-.0473a1.1166,1.1166,0,0,1,.1746,1.5693,1.1011,1.1011,0,0,1-.0873.0971L22.9108,8.7878a1.1114,1.1114,0,0,1-1.2225.2329l-1.39-.5967a1.1112,1.1112,0,0,1-.68-1.0223v-1.63S15.9726,3.0648,12.4289,5.8227Z" }), children);
1316
1669
  });
1317
1670
  if (process.env.NODE_ENV !== "production") RouterVoice.propTypes = require_iconPropTypes.iconPropTypes;
1318
- const RouterWifi = react.default.forwardRef(function RouterWifi({ children, size = 16, ...rest }, ref) {
1319
- return react.default.createElement(require_Icon_js, {
1671
+ const RouterWifi = /* @__PURE__ */ react.default.forwardRef(function RouterWifi({ children, size = 16, ...rest }, ref) {
1672
+ return react.default.createElement(require_Icon.Icon, {
1320
1673
  width: size,
1321
1674
  height: size,
1322
1675
  ref,
@@ -1331,8 +1684,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1331
1684
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19.5356,10.4648a5,5,0,0,0-7.0717,0L11.05,9.0508a6.9992,6.9992,0,0,1,9.9,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.0713,6.929a10,10,0,0,0-14.1426,0L7.5146,5.5144a12.0011,12.0011,0,0,1,16.9708,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 25 16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 11 19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 11 13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z" }), children);
1332
1685
  });
1333
1686
  if (process.env.NODE_ENV !== "production") RouterWifi.propTypes = require_iconPropTypes.iconPropTypes;
1334
- const Row = react.default.forwardRef(function Row({ children, size = 16, ...rest }, ref) {
1335
- return react.default.createElement(require_Icon_js, {
1687
+ const Row = /* @__PURE__ */ react.default.forwardRef(function Row({ children, size = 16, ...rest }, ref) {
1688
+ return react.default.createElement(require_Icon.Icon, {
1336
1689
  width: size,
1337
1690
  height: size,
1338
1691
  ref,
@@ -1343,8 +1696,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1343
1696
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 24H28V26H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18H6V14H26v4m2,0V14a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 6H28V8H4z" }), children);
1344
1697
  });
1345
1698
  if (process.env.NODE_ENV !== "production") Row.propTypes = require_iconPropTypes.iconPropTypes;
1346
- const RowCollapse = react.default.forwardRef(function RowCollapse({ children, size = 16, ...rest }, ref) {
1347
- return react.default.createElement(require_Icon_js, {
1699
+ const RowCollapse = /* @__PURE__ */ react.default.forwardRef(function RowCollapse({ children, size = 16, ...rest }, ref) {
1700
+ return react.default.createElement(require_Icon.Icon, {
1348
1701
  width: size,
1349
1702
  height: size,
1350
1703
  ref,
@@ -1355,8 +1708,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1355
1708
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,20H6a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22A2,2,0,0,0,26,20Zm0,6H6V22H26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 7.828 19.586 10.414 21 9 16 4 11 9 12.414 10.414 15 7.828 15 14 4 14 4 16 28 16 28 14 17 14 17 7.828z" }), children);
1356
1709
  });
1357
1710
  if (process.env.NODE_ENV !== "production") RowCollapse.propTypes = require_iconPropTypes.iconPropTypes;
1358
- const RowDelete = react.default.forwardRef(function RowDelete({ children, size = 16, ...rest }, ref) {
1359
- return react.default.createElement(require_Icon_js, {
1711
+ const RowDelete = /* @__PURE__ */ react.default.forwardRef(function RowDelete({ children, size = 16, ...rest }, ref) {
1712
+ return react.default.createElement(require_Icon.Icon, {
1360
1713
  width: size,
1361
1714
  height: size,
1362
1715
  ref,
@@ -1367,8 +1720,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1367
1720
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30H4a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2H24a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,24,30ZM4,22H3.9985L4,28H24V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 3.41 28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,14V8H18V6H4A2.0023,2.0023,0,0,0,2,8v6a2.0023,2.0023,0,0,0,2,2H26V14Z" }), children);
1368
1721
  });
1369
1722
  if (process.env.NODE_ENV !== "production") RowDelete.propTypes = require_iconPropTypes.iconPropTypes;
1370
- const RowExpand = react.default.forwardRef(function RowExpand({ children, size = 16, ...rest }, ref) {
1371
- return react.default.createElement(require_Icon_js, {
1723
+ const RowExpand = /* @__PURE__ */ react.default.forwardRef(function RowExpand({ children, size = 16, ...rest }, ref) {
1724
+ return react.default.createElement(require_Icon.Icon, {
1372
1725
  width: size,
1373
1726
  height: size,
1374
1727
  ref,
@@ -1379,8 +1732,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1379
1732
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 18 15 18 15 24.172 12.414 21.586 11 23 16 28 21 23 19.586 21.586 17 24.172 17 18 28 18 28 16 4 16 4 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,6H6V6H26Z" }), children);
1380
1733
  });
1381
1734
  if (process.env.NODE_ENV !== "production") RowExpand.propTypes = require_iconPropTypes.iconPropTypes;
1382
- const RowInsert = react.default.forwardRef(function RowInsert({ children, size = 16, ...rest }, ref) {
1383
- return react.default.createElement(require_Icon_js, {
1735
+ const RowInsert = /* @__PURE__ */ react.default.forwardRef(function RowInsert({ children, size = 16, ...rest }, ref) {
1736
+ return react.default.createElement(require_Icon.Icon, {
1384
1737
  width: size,
1385
1738
  height: size,
1386
1739
  ref,
@@ -1391,8 +1744,8 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1391
1744
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H10a2.0021,2.0021,0,0,1-2-2V4a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,12ZM10,4v6H28V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H10a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30ZM10,22v6H28V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 16 3.414 10.414 2 11.828 6.172 16 2 20.172 3.414 21.586 9 16z" }), children);
1392
1745
  });
1393
1746
  if (process.env.NODE_ENV !== "production") RowInsert.propTypes = require_iconPropTypes.iconPropTypes;
1394
- const Rss = react.default.forwardRef(function Rss({ children, size = 16, ...rest }, ref) {
1395
- return react.default.createElement(require_Icon_js, {
1747
+ const Rss = /* @__PURE__ */ react.default.forwardRef(function Rss({ children, size = 16, ...rest }, ref) {
1748
+ return react.default.createElement(require_Icon.Icon, {
1396
1749
  width: size,
1397
1750
  height: size,
1398
1751
  ref,
@@ -1403,302 +1756,27 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1403
1756
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,18c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6C14,20.7,11.3,18,8,18z M8,28c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4 C12,26.2,10.2,28,8,28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24h-2C28,13,19,4,8,4V2C20.1,2,30,11.9,30,24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,24h-2c0-6.6-5.4-12-12-12v-2C15.7,10,22,16.3,22,24z" }), children);
1404
1757
  });
1405
1758
  if (process.env.NODE_ENV !== "production") Rss.propTypes = require_iconPropTypes.iconPropTypes;
1406
- const Rule = react.default.forwardRef(function Rule({ children, size = 16, ...rest }, ref) {
1407
- return react.default.createElement(require_Icon_js, {
1408
- width: size,
1409
- height: size,
1410
- ref,
1411
- xmlns: "http://www.w3.org/2000/svg",
1412
- viewBox: "0 0 32 32",
1413
- fill: "currentColor",
1414
- ...rest
1415
- }, /* @__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);
1416
- });
1417
- if (process.env.NODE_ENV !== "production") Rule.propTypes = require_iconPropTypes.iconPropTypes;
1418
- const RuleCancelled = react.default.forwardRef(function RuleCancelled({ children, size = 16, ...rest }, ref) {
1419
- return react.default.createElement(require_Icon_js, {
1420
- width: size,
1421
- height: size,
1422
- ref,
1423
- xmlns: "http://www.w3.org/2000/svg",
1424
- viewBox: "0 0 32 32",
1425
- fill: "currentColor",
1426
- ...rest
1427
- }, /* @__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);
1428
- });
1429
- if (process.env.NODE_ENV !== "production") RuleCancelled.propTypes = require_iconPropTypes.iconPropTypes;
1430
- const RuleDataQuality = react.default.forwardRef(function RuleDataQuality({ children, size = 16, ...rest }, ref) {
1431
- return react.default.createElement(require_Icon_js, {
1432
- width: size,
1433
- height: size,
1434
- ref,
1435
- xmlns: "http://www.w3.org/2000/svg",
1436
- viewBox: "0 0 32 32",
1437
- fill: "currentColor",
1438
- ...rest
1439
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("switch", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("foreignObject", {
1440
- width: "1",
1441
- height: "1",
1442
- x: "0",
1443
- y: "0",
1444
- requiredExtensions: "http://ns.adobe.com/AdobeIllustrator/10.0/"
1445
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", { children: [
1446
- /* @__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" }),
1447
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H18V18H8z" }),
1448
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H20V12H8z" }),
1449
- /* @__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" })
1450
- ] })] }), children);
1451
- });
1452
- if (process.env.NODE_ENV !== "production") RuleDataQuality.propTypes = require_iconPropTypes.iconPropTypes;
1453
- const RuleDraft = react.default.forwardRef(function RuleDraft({ children, size = 16, ...rest }, ref) {
1454
- return react.default.createElement(require_Icon_js, {
1455
- width: size,
1456
- height: size,
1457
- ref,
1458
- xmlns: "http://www.w3.org/2000/svg",
1459
- viewBox: "0 0 32 32",
1460
- fill: "currentColor",
1461
- ...rest
1462
- }, /* @__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);
1463
- });
1464
- if (process.env.NODE_ENV !== "production") RuleDraft.propTypes = require_iconPropTypes.iconPropTypes;
1465
- const RuleFilled = react.default.forwardRef(function RuleFilled({ children, size = 16, ...rest }, ref) {
1466
- return react.default.createElement(require_Icon_js, {
1467
- width: size,
1468
- height: size,
1469
- ref,
1470
- xmlns: "http://www.w3.org/2000/svg",
1471
- viewBox: "0 0 32 32",
1472
- fill: "currentColor",
1473
- ...rest
1474
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1475
- fill: "none",
1476
- d: "M9 16H23V18H9z",
1477
- "data-icon-path": "inner-path"
1478
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1479
- fill: "none",
1480
- d: "M9 10H23V12H9z"
1481
- }), /* @__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);
1482
- });
1483
- if (process.env.NODE_ENV !== "production") RuleFilled.propTypes = require_iconPropTypes.iconPropTypes;
1484
- const RuleLocked = react.default.forwardRef(function RuleLocked({ children, size = 16, ...rest }, ref) {
1485
- return react.default.createElement(require_Icon_js, {
1486
- width: size,
1487
- height: size,
1488
- ref,
1489
- xmlns: "http://www.w3.org/2000/svg",
1490
- viewBox: "0 0 32 32",
1491
- fill: "currentColor",
1492
- ...rest
1493
- }, /* @__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);
1494
- });
1495
- if (process.env.NODE_ENV !== "production") RuleLocked.propTypes = require_iconPropTypes.iconPropTypes;
1496
- const RulePartial = react.default.forwardRef(function RulePartial({ children, size = 16, ...rest }, ref) {
1497
- return react.default.createElement(require_Icon_js, {
1498
- width: size,
1499
- height: size,
1500
- ref,
1501
- xmlns: "http://www.w3.org/2000/svg",
1502
- viewBox: "0 0 32 32",
1503
- fill: "currentColor",
1504
- ...rest
1505
- }, /* @__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);
1506
- });
1507
- if (process.env.NODE_ENV !== "production") RulePartial.propTypes = require_iconPropTypes.iconPropTypes;
1508
- const RuleTest = react.default.forwardRef(function RuleTest({ children, size = 16, ...rest }, ref) {
1509
- return react.default.createElement(require_Icon_js, {
1510
- width: size,
1511
- height: size,
1512
- ref,
1513
- xmlns: "http://www.w3.org/2000/svg",
1514
- viewBox: "0 0 32 32",
1515
- fill: "currentColor",
1516
- ...rest
1517
- }, /* @__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);
1518
- });
1519
- if (process.env.NODE_ENV !== "production") RuleTest.propTypes = require_iconPropTypes.iconPropTypes;
1520
- const RuleGroupingDataQuality = react.default.forwardRef(function RuleGroupingDataQuality({ children, size = 16, ...rest }, ref) {
1521
- return react.default.createElement(require_Icon_js, {
1522
- width: size,
1523
- height: size,
1524
- ref,
1525
- xmlns: "http://www.w3.org/2000/svg",
1526
- viewBox: "0 0 32 32",
1527
- fill: "currentColor",
1528
- ...rest
1529
- }, /* @__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);
1530
- });
1531
- if (process.env.NODE_ENV !== "production") RuleGroupingDataQuality.propTypes = require_iconPropTypes.iconPropTypes;
1532
- const Ruler = react.default.forwardRef(function Ruler({ children, size = 16, ...rest }, ref) {
1533
- return react.default.createElement(require_Icon_js, {
1534
- width: size,
1535
- height: size,
1536
- ref,
1537
- xmlns: "http://www.w3.org/2000/svg",
1538
- viewBox: "0 0 32 32",
1539
- fill: "currentColor",
1540
- ...rest
1541
- }, /* @__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);
1542
- });
1543
- if (process.env.NODE_ENV !== "production") Ruler.propTypes = require_iconPropTypes.iconPropTypes;
1544
- const RulerAlt = react.default.forwardRef(function RulerAlt({ children, size = 16, ...rest }, ref) {
1545
- return react.default.createElement(require_Icon_js, {
1546
- width: size,
1547
- height: size,
1548
- ref,
1549
- xmlns: "http://www.w3.org/2000/svg",
1550
- viewBox: "0 0 32 32",
1551
- fill: "currentColor",
1552
- ...rest
1553
- }, /* @__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);
1554
- });
1555
- if (process.env.NODE_ENV !== "production") RulerAlt.propTypes = require_iconPropTypes.iconPropTypes;
1556
- const Run = react.default.forwardRef(function Run({ children, size = 16, ...rest }, ref) {
1557
- return react.default.createElement(require_Icon_js, {
1558
- width: size,
1559
- height: size,
1560
- ref,
1561
- xmlns: "http://www.w3.org/2000/svg",
1562
- viewBox: "0 0 32 32",
1563
- fill: "currentColor",
1564
- ...rest
1565
- }, /* @__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);
1566
- });
1567
- if (process.env.NODE_ENV !== "production") Run.propTypes = require_iconPropTypes.iconPropTypes;
1568
- const RunMirror = react.default.forwardRef(function RunMirror({ children, size = 16, ...rest }, ref) {
1569
- return react.default.createElement(require_Icon_js, {
1570
- width: size,
1571
- height: size,
1572
- ref,
1573
- xmlns: "http://www.w3.org/2000/svg",
1574
- viewBox: "0 0 32 32",
1575
- fill: "currentColor",
1576
- ...rest
1577
- }, /* @__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);
1578
- });
1579
- if (process.env.NODE_ENV !== "production") RunMirror.propTypes = require_iconPropTypes.iconPropTypes;
1580
- const RunViewIcon = react.default.forwardRef(function RunViewIcon({ children, size = 16, ...rest }, ref) {
1581
- return react.default.createElement(require_Icon_js, {
1582
- width: size,
1583
- height: size,
1584
- ref,
1585
- xmlns: "http://www.w3.org/2000/svg",
1586
- viewBox: "0 0 32 32",
1587
- fill: "currentColor",
1588
- ...rest
1589
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { 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);
1590
- });
1591
- if (process.env.NODE_ENV !== "production") RunViewIcon.propTypes = require_iconPropTypes.iconPropTypes;
1592
- const Running = react.default.forwardRef(function Running({ children, size = 16, ...rest }, ref) {
1593
- return react.default.createElement(require_Icon_js, {
1594
- width: size,
1595
- height: size,
1596
- ref,
1597
- xmlns: "http://www.w3.org/2000/svg",
1598
- viewBox: "0 0 32 32",
1599
- fill: "currentColor",
1600
- ...rest
1601
- }, /* @__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);
1602
- });
1603
- if (process.env.NODE_ENV !== "production") Running.propTypes = require_iconPropTypes.iconPropTypes;
1604
- const QS = react.default.forwardRef(function QS({ children, size = 16, ...rest }, ref) {
1605
- return react.default.createElement(require_Icon_js, {
1606
- width: size,
1607
- height: size,
1608
- ref,
1609
- xmlns: "http://www.w3.org/2000/svg",
1610
- viewBox: "0 0 32 32",
1611
- fill: "currentColor",
1612
- ...rest
1613
- }, /* @__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);
1614
- });
1615
- if (process.env.NODE_ENV !== "production") QS.propTypes = require_iconPropTypes.iconPropTypes;
1616
- const QSAlt = react.default.forwardRef(function QSAlt({ children, size = 16, ...rest }, ref) {
1617
- return react.default.createElement(require_Icon_js, {
1618
- width: size,
1619
- height: size,
1620
- ref,
1621
- xmlns: "http://www.w3.org/2000/svg",
1622
- viewBox: "0 0 32 32",
1623
- fill: "currentColor",
1624
- ...rest
1625
- }, /* @__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);
1626
- });
1627
- if (process.env.NODE_ENV !== "production") QSAlt.propTypes = require_iconPropTypes.iconPropTypes;
1628
- const SailboatCoastal = react.default.forwardRef(function SailboatCoastal({ children, size = 16, ...rest }, ref) {
1629
- return react.default.createElement(require_Icon_js, {
1630
- width: size,
1631
- height: size,
1632
- ref,
1633
- xmlns: "http://www.w3.org/2000/svg",
1634
- viewBox: "0 0 32 32",
1635
- fill: "currentColor",
1636
- ...rest
1637
- }, /* @__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);
1638
- });
1639
- if (process.env.NODE_ENV !== "production") SailboatCoastal.propTypes = require_iconPropTypes.iconPropTypes;
1640
- const SailboatOffshore = react.default.forwardRef(function SailboatOffshore({ children, size = 16, ...rest }, ref) {
1641
- return react.default.createElement(require_Icon_js, {
1642
- width: size,
1643
- height: size,
1644
- ref,
1645
- xmlns: "http://www.w3.org/2000/svg",
1646
- viewBox: "0 0 32 32",
1647
- fill: "currentColor",
1648
- ...rest
1649
- }, /* @__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);
1650
- });
1651
- if (process.env.NODE_ENV !== "production") SailboatOffshore.propTypes = require_iconPropTypes.iconPropTypes;
1652
- const SalesOps = react.default.forwardRef(function SalesOps({ children, size = 16, ...rest }, ref) {
1653
- return react.default.createElement(require_Icon_js, {
1654
- width: size,
1655
- height: size,
1656
- ref,
1657
- xmlns: "http://www.w3.org/2000/svg",
1658
- viewBox: "0 0 32 32",
1659
- fill: "currentColor",
1660
- ...rest
1661
- }, /* @__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);
1662
- });
1663
- if (process.env.NODE_ENV !== "production") SalesOps.propTypes = require_iconPropTypes.iconPropTypes;
1664
- const SankeyDiagram = react.default.forwardRef(function SankeyDiagram({ 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)("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);
1674
- });
1675
- if (process.env.NODE_ENV !== "production") SankeyDiagram.propTypes = require_iconPropTypes.iconPropTypes;
1676
- const SankeyDiagramAlt = react.default.forwardRef(function SankeyDiagramAlt({ children, size = 16, ...rest }, ref) {
1677
- return react.default.createElement(require_Icon_js, {
1678
- width: size,
1679
- height: size,
1680
- ref,
1681
- xmlns: "http://www.w3.org/2000/svg",
1682
- viewBox: "0 0 32 32",
1683
- fill: "currentColor",
1684
- ...rest
1685
- }, /* @__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);
1686
- });
1687
- if (process.env.NODE_ENV !== "production") SankeyDiagramAlt.propTypes = require_iconPropTypes.iconPropTypes;
1688
- const Sap = react.default.forwardRef(function Sap({ children, size = 16, ...rest }, ref) {
1689
- return react.default.createElement(require_Icon_js, {
1690
- width: size,
1691
- height: size,
1692
- ref,
1693
- xmlns: "http://www.w3.org/2000/svg",
1694
- viewBox: "0 0 32 32",
1695
- fill: "currentColor",
1696
- ...rest
1697
- }, /* @__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);
1698
- });
1699
- if (process.env.NODE_ENV !== "production") Sap.propTypes = require_iconPropTypes.iconPropTypes;
1700
- exports.QS = QS;
1701
- exports.QSAlt = QSAlt;
1759
+ exports.PricingQuickProposal = PricingQuickProposal;
1760
+ exports.PricingTailored = PricingTailored;
1761
+ exports.PricingTraditional = PricingTraditional;
1762
+ exports.Printer = Printer;
1763
+ exports.PrivateNetwork = PrivateNetwork;
1764
+ exports.Process = Process;
1765
+ exports.ProcessAutomate = ProcessAutomate;
1766
+ exports.Product = Product;
1767
+ exports.ProductionEnvironment = ProductionEnvironment;
1768
+ exports.ProductionService = ProductionService;
1769
+ exports.ProgressBar = ProgressBar;
1770
+ exports.ProgressBarRound = ProgressBarRound;
1771
+ exports.Promote = Promote;
1772
+ exports.PromptSession = PromptSession;
1773
+ exports.PromptTemplate = PromptTemplate;
1774
+ exports.PropertyRelationship = PropertyRelationship;
1775
+ exports.PullRequest = PullRequest;
1776
+ exports.PunctuationCheck = PunctuationCheck;
1777
+ exports.Purchase = Purchase;
1778
+ exports.Qiskit = Qiskit;
1779
+ exports.QqPlot = QqPlot;
1702
1780
  exports.QrCode = QrCode;
1703
1781
  exports.QuadrantPlot = QuadrantPlot;
1704
1782
  exports.Query = Query;
@@ -1742,6 +1820,7 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1742
1820
  exports.ReminderMedical = ReminderMedical;
1743
1821
  exports.RemoteConnection = RemoteConnection;
1744
1822
  exports.Renew = Renew;
1823
+ exports.RenewAlt = RenewAlt;
1745
1824
  exports.Repeat = Repeat;
1746
1825
  exports.RepeatOne = RepeatOne;
1747
1826
  exports.Replicate = Replicate;
@@ -1796,38 +1875,17 @@ var require_bucket_15 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1796
1875
  exports.RowExpand = RowExpand;
1797
1876
  exports.RowInsert = RowInsert;
1798
1877
  exports.Rss = Rss;
1799
- exports.Rule = Rule;
1800
- exports.RuleCancelled = RuleCancelled;
1801
- exports.RuleDataQuality = RuleDataQuality;
1802
- exports.RuleDraft = RuleDraft;
1803
- exports.RuleFilled = RuleFilled;
1804
- exports.RuleGroupingDataQuality = RuleGroupingDataQuality;
1805
- exports.RuleLocked = RuleLocked;
1806
- exports.RulePartial = RulePartial;
1807
- exports.RuleTest = RuleTest;
1808
- exports.Ruler = Ruler;
1809
- exports.RulerAlt = RulerAlt;
1810
- exports.Run = Run;
1811
- exports.RunMirror = RunMirror;
1812
- exports.RunViewIcon = RunViewIcon;
1813
- exports.Running = Running;
1814
- exports.SailboatCoastal = SailboatCoastal;
1815
- exports.SailboatOffshore = SailboatOffshore;
1816
- exports.SalesOps = SalesOps;
1817
- exports.SankeyDiagram = SankeyDiagram;
1818
- exports.SankeyDiagramAlt = SankeyDiagramAlt;
1819
- exports.Sap = Sap;
1878
+ exports.WatsonHealthQcLaunch = WatsonHealthQcLaunch;
1820
1879
  exports.WatsonHealthRegionAnalysisArea = WatsonHealthRegionAnalysisArea;
1821
1880
  exports.WatsonHealthRegionAnalysisVolume = WatsonHealthRegionAnalysisVolume;
1822
1881
  exports.WatsonHealthRegistration = WatsonHealthRegistration;
1823
1882
  exports.WatsonHealthRotate_180 = WatsonHealthRotate_180;
1824
1883
  exports.WatsonHealthRotate_360 = WatsonHealthRotate_360;
1825
1884
  }));
1826
-
1827
1885
  //#endregion
1828
- Object.defineProperty(exports, 'default', {
1829
- enumerable: true,
1830
- get: function () {
1831
- return require_bucket_15();
1832
- }
1833
- });
1886
+ Object.defineProperty(exports, "default", {
1887
+ enumerable: true,
1888
+ get: function() {
1889
+ return require_bucket_15();
1890
+ }
1891
+ });