@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-20.js
14
12
  var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,15 +19,14 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
21
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
22
20
  */
23
21
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
24
- const require_chunk = require_chunk_CsKB0u1v$1.default;
25
- const require_Icon_js = require_Icon$1.default;
26
- const require_iconPropTypes = require_iconPropTypes_U9gLABJo$1.default;
22
+ const require_Icon = require_Icon_2zUDcllO$1.default;
23
+ const require_iconPropTypes = require_iconPropTypes_DaTOKOBs$1.default;
27
24
  let react = require("react");
28
- react = require_chunk.__toESM(react);
25
+ react = require_Icon.__toESM(react);
29
26
  let react_jsx_runtime = require("react/jsx-runtime");
30
27
  const didWarnAboutDeprecation = {};
31
- const VideoOff = react.default.forwardRef(function VideoOff({ children, size = 16, ...rest }, ref) {
32
- return react.default.createElement(require_Icon_js, {
28
+ const UserProfile = /* @__PURE__ */ react.default.forwardRef(function UserProfile({ children, size = 16, ...rest }, ref) {
29
+ return react.default.createElement(require_Icon.Icon, {
33
30
  width: size,
34
31
  height: size,
35
32
  ref,
@@ -37,11 +34,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
37
34
  viewBox: "0 0 32 32",
38
35
  fill: "currentColor",
39
36
  ...rest
40
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.46,8.11a1,1,0,0,0-1,.08L23,12.06V10.44l7-7L28.56,2,2,28.56,3.44,30l4-4H21a2,2,0,0,0,2-2V19.94l5.42,3.87A1,1,0,0,0,30,23V9A1,1,0,0,0,29.46,8.11ZM28,21.06l-5.42-3.87A1,1,0,0,0,21,18v6H9.44L21,12.44V14a1,1,0,0,0,1.58.81L28,10.94Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,24V8H20V6H4A2,2,0,0,0,2,8V24Z" }), children);
37
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 4H32V6H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 9H32V11H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 14H29V16H22z" }), children);
41
38
  });
42
- if (process.env.NODE_ENV !== "production") VideoOff.propTypes = require_iconPropTypes.iconPropTypes;
43
- const VideoOffFilled = react.default.forwardRef(function VideoOffFilled({ children, size = 16, ...rest }, ref) {
44
- return react.default.createElement(require_Icon_js, {
39
+ if (process.env.NODE_ENV !== "production") UserProfile.propTypes = require_iconPropTypes.iconPropTypes;
40
+ const UserRole = /* @__PURE__ */ react.default.forwardRef(function UserRole({ children, size = 16, ...rest }, ref) {
41
+ return react.default.createElement(require_Icon.Icon, {
45
42
  width: size,
46
43
  height: size,
47
44
  ref,
@@ -49,11 +46,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
49
46
  viewBox: "0 0 32 32",
50
47
  fill: "currentColor",
51
48
  ...rest
52
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.31,6H4A2,2,0,0,0,2,8V24a2.85,2.85,0,0,0,0,.29Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.46,8.11a1,1,0,0,0-1,.08L23,12.06V10.44l7-7L28.56,2,2,28.56,3.44,30l4-4H21a2,2,0,0,0,2-2V19.94l5.42,3.87A1,1,0,0,0,30,23V9A1,1,0,0,0,29.46,8.11Z" }), children);
49
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.07 21 22 15 28.07 9 29.5 10.41 24.86 15 29.5 19.59 28.07 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
53
50
  });
54
- if (process.env.NODE_ENV !== "production") VideoOffFilled.propTypes = require_iconPropTypes.iconPropTypes;
55
- const VideoPlayer = react.default.forwardRef(function VideoPlayer({ children, size = 16, ...rest }, ref) {
56
- return react.default.createElement(require_Icon_js, {
51
+ if (process.env.NODE_ENV !== "production") UserRole.propTypes = require_iconPropTypes.iconPropTypes;
52
+ const UserService = /* @__PURE__ */ react.default.forwardRef(function UserService({ children, size = 16, ...rest }, ref) {
53
+ return react.default.createElement(require_Icon.Icon, {
57
54
  width: size,
58
55
  height: size,
59
56
  ref,
@@ -61,20 +58,32 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
61
58
  viewBox: "0 0 32 32",
62
59
  fill: "currentColor",
63
60
  ...rest
64
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 11 13 21 21 16 13 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,6H4c-1.103,0-2,.8975-2,2v16c0,1.1025.897,2,2,2h24c1.103,0,2-.8975,2-2V8c0-1.1025-.897-2-2-2Zm0,18H4V8h24v16Z" }), children);
61
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
62
+ strokeWidth: "0",
63
+ d: "m23.019,10.4332c-.595.3514-1.2795.5668-2.019.5668-2.2056,0-4-1.7944-4-4,0-.3557.0615-.6943.1492-1.0228l2.4368,2.4368.0005-.0004c.3621.3621.8621.5864,1.4136.5864,1.103,0,2-.897,2-2,0-.5515-.2242-1.0515-.5864-1.4136l.0005-.0004-2.4368-2.4368c.3284-.0875.667-.1491,1.0227-.1491,2.2056,0,4,1.7944,4,4,0,.7396-.2155,1.4241-.5669,2.0191l5.5669,5.5668-1.4141,1.4141-5.5669-5.5668Z"
64
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
65
+ strokeWidth: "0",
66
+ d: "m16,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5h-2v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
67
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
68
+ strokeWidth: "0",
69
+ d: "m9,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3c.0019-1.6561,1.3439-2.9981,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
70
+ }), children);
65
71
  });
66
- if (process.env.NODE_ENV !== "production") VideoPlayer.propTypes = require_iconPropTypes.iconPropTypes;
67
- const View = react.default.forwardRef(function View({ children, size = 16, ...rest }, ref) {
68
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
72
+ if (process.env.NODE_ENV !== "production") UserService.propTypes = require_iconPropTypes.iconPropTypes;
73
+ const UserServiceDesk = /* @__PURE__ */ react.default.forwardRef(function UserServiceDesk({ children, size = 16, ...rest }, ref) {
74
+ return react.default.createElement(require_Icon.Icon, {
69
75
  width: size,
70
76
  height: size,
71
77
  ref,
72
78
  xmlns: "http://www.w3.org/2000/svg",
73
- viewBox: "0 0 16 16",
79
+ viewBox: "0 0 32 32",
74
80
  fill: "currentColor",
75
81
  ...rest
76
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.5,7.8C14.3,4.7,11.3,2.6,8,2.5C4.7,2.6,1.7,4.7,0.5,7.8c0,0.1,0,0.2,0,0.3c1.2,3.1,4.1,5.2,7.5,5.3 c3.3-0.1,6.3-2.2,7.5-5.3C15.5,8.1,15.5,7.9,15.5,7.8z M8,12.5c-2.7,0-5.4-2-6.5-4.5c1-2.5,3.8-4.5,6.5-4.5s5.4,2,6.5,4.5 C13.4,10.5,10.6,12.5,8,12.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S9.1,10,8,10z" }), children);
77
- return react.default.createElement(require_Icon_js, {
82
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.334,11.95l1.2055-1.206a1.178,1.178,0,0,1,1.2593-.2584l1.4693.5868A1.1736,1.1736,0,0,1,30,12.1489v2.692A1.1681,1.1681,0,0,1,28.8229,16l-.05-.0015C18.4775,15.3578,16.4,6.6357,16.0073,3.2976a1.1681,1.1681,0,0,1,1.0315-1.29A1.1492,1.1492,0,0,1,17.1751,2h2.5994a1.1626,1.1626,0,0,1,1.0764.7322l.5866,1.47a1.1635,1.1635,0,0,1-.2529,1.26L19.9791,6.668S20.6733,11.3682,25.334,11.95Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
83
+ });
84
+ if (process.env.NODE_ENV !== "production") UserServiceDesk.propTypes = require_iconPropTypes.iconPropTypes;
85
+ const UserSettings = /* @__PURE__ */ react.default.forwardRef(function UserSettings({ children, size = 16, ...rest }, ref) {
86
+ return react.default.createElement(require_Icon.Icon, {
78
87
  width: size,
79
88
  height: size,
80
89
  ref,
@@ -82,11 +91,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
82
91
  viewBox: "0 0 32 32",
83
92
  fill: "currentColor",
84
93
  ...rest
85
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,25c-5.3,0-10.9-3.93-12.93-9C5.1,10.93,10.7,7,16,7s10.9,3.93,12.93,9C26.9,21.07,21.3,25,16,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" }), children);
94
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
86
95
  });
87
- if (process.env.NODE_ENV !== "production") View.propTypes = require_iconPropTypes.iconPropTypes;
88
- const ViewFilled = react.default.forwardRef(function ViewFilled({ children, size = 16, ...rest }, ref) {
89
- return react.default.createElement(require_Icon_js, {
96
+ if (process.env.NODE_ENV !== "production") UserSettings.propTypes = require_iconPropTypes.iconPropTypes;
97
+ const UserSimulation = /* @__PURE__ */ react.default.forwardRef(function UserSimulation({ children, size = 16, ...rest }, ref) {
98
+ return react.default.createElement(require_Icon.Icon, {
90
99
  width: size,
91
100
  height: size,
92
101
  ref,
@@ -94,15 +103,23 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
94
103
  viewBox: "0 0 32 32",
95
104
  fill: "currentColor",
96
105
  ...rest
97
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
98
- cx: "16",
99
- cy: "16",
100
- r: "4"
101
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,22.5A6.5,6.5,0,1,1,22.5,16,6.51,6.51,0,0,1,16,22.5Z" }), children);
106
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
107
+ d: "M25.232 12.866H29.232V14.866H25.232z",
108
+ transform: "rotate(30 27.232 13.866)"
109
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 8H30V10H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
110
+ d: "M2.768 12.866H6.768V14.866H2.768z",
111
+ transform: "rotate(150 4.768 13.866)"
112
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V25a5.0059,5.0059,0,0,0-5-5H13a5.0059,5.0059,0,0,0-5,5v5H6V25a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
113
+ d: "M25.232 3.134H29.232V5.134H25.232z",
114
+ transform: "rotate(-30 27.232 4.134)"
115
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 8H6V10H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
116
+ d: "M2.768 3.134H6.768V5.134H2.768z",
117
+ transform: "rotate(210 4.768 4.134)"
118
+ }), children);
102
119
  });
103
- if (process.env.NODE_ENV !== "production") ViewFilled.propTypes = require_iconPropTypes.iconPropTypes;
104
- const ViewMode_1 = react.default.forwardRef(function ViewMode_1({ children, size = 16, ...rest }, ref) {
105
- return react.default.createElement(require_Icon_js, {
120
+ if (process.env.NODE_ENV !== "production") UserSimulation.propTypes = require_iconPropTypes.iconPropTypes;
121
+ const UserSpeaker = /* @__PURE__ */ react.default.forwardRef(function UserSpeaker({ children, size = 16, ...rest }, ref) {
122
+ return react.default.createElement(require_Icon.Icon, {
106
123
  width: size,
107
124
  height: size,
108
125
  ref,
@@ -110,11 +127,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
110
127
  viewBox: "0 0 32 32",
111
128
  fill: "currentColor",
112
129
  ...rest
113
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 19H28V21H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6v6H6V6H26m0-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
130
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4146,19,27.7,17.2852A2.97,2.97,0,0,0,28,16a3,3,0,1,0-3,3,2.97,2.97,0,0,0,1.2864-.3L28,20.4141V28H22V25a7.0078,7.0078,0,0,0-7-7H9a7.008,7.008,0,0,0-7,7v5H30V20.4141A1.988,1.988,0,0,0,29.4146,19ZM4,25a5.006,5.006,0,0,1,5-5h6a5.0059,5.0059,0,0,1,5,5v3H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
114
131
  });
115
- if (process.env.NODE_ENV !== "production") ViewMode_1.propTypes = require_iconPropTypes.iconPropTypes;
116
- const ViewMode_2 = react.default.forwardRef(function ViewMode_2({ children, size = 16, ...rest }, ref) {
117
- return react.default.createElement(require_Icon_js, {
132
+ if (process.env.NODE_ENV !== "production") UserSpeaker.propTypes = require_iconPropTypes.iconPropTypes;
133
+ const UserSponsor = /* @__PURE__ */ react.default.forwardRef(function UserSponsor({ children, size = 16, ...rest }, ref) {
134
+ return react.default.createElement(require_Icon.Icon, {
118
135
  width: size,
119
136
  height: size,
120
137
  ref,
@@ -122,20 +139,26 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
122
139
  viewBox: "0 0 32 32",
123
140
  fill: "currentColor",
124
141
  ...rest
125
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 19H28V21H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,6v6H6V6h6m0-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6v6H20V6h6m0-2H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
142
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.8301 13.3662 30.8301 11.6338 28 13.2681 28 10 26 10 26 13.2676 23.1699 11.6338 22.1699 13.3662 25 15 22.1699 16.6338 23.1699 18.3662 26 16.7324 26 20 28 20 28 16.7319 30.8301 18.3662 31.8301 16.6338 29 15 31.8301 13.3662z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,30h-2v-5c-.0033-2.7601-2.2399-4.9967-5-5h-6c-2.7601.0033-4.9967,2.2399-5,5v5h-2v-5c.0045-3.8641,3.1359-6.9955,7-7h6c3.8641.0045,6.9955,3.1359,7,7v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,4c2.7614,0,5,2.2386,5,5s-2.2386,5-5,5-5-2.2386-5-5c.0031-2.7601,2.2399-4.9969,5-5m0-2c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.134-7-7-7Z" }), children);
126
143
  });
127
- if (process.env.NODE_ENV !== "production") ViewMode_2.propTypes = require_iconPropTypes.iconPropTypes;
128
- const ViewOff = react.default.forwardRef(function ViewOff({ children, size = 16, ...rest }, ref) {
129
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
144
+ if (process.env.NODE_ENV !== "production") UserSponsor.propTypes = require_iconPropTypes.iconPropTypes;
145
+ const UserXRay = /* @__PURE__ */ react.default.forwardRef(function UserXRay({ children, size = 16, ...rest }, ref) {
146
+ return react.default.createElement(require_Icon.Icon, {
130
147
  width: size,
131
148
  height: size,
132
149
  ref,
133
150
  xmlns: "http://www.w3.org/2000/svg",
134
- viewBox: "0 0 16 16",
151
+ viewBox: "0 0 32 32",
135
152
  fill: "currentColor",
136
153
  ...rest
137
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.6,11.3l0.7-0.7C2.6,9.8,1.9,9,1.5,8c1-2.5,3.8-4.5,6.5-4.5c0.7,0,1.4,0.1,2,0.4l0.8-0.8C9.9,2.7,9,2.5,8,2.5 C4.7,2.6,1.7,4.7,0.5,7.8c0,0.1,0,0.2,0,0.3C1,9.3,1.7,10.4,2.6,11.3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,7.9c0.1-1,0.9-1.8,1.8-1.8l0.9-0.9C7.2,4.7,5.5,5.6,5.1,7.2C5,7.7,5,8.3,5.1,8.8L6,7.9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.5,7.8c-0.6-1.5-1.6-2.8-2.9-3.7L15,1.7L14.3,1L1,14.3L1.7,15l2.6-2.6c1.1,0.7,2.4,1,3.7,1.1c3.3-0.1,6.3-2.2,7.5-5.3 C15.5,8.1,15.5,7.9,15.5,7.8z M10,8c0,1.1-0.9,2-2,2c-0.3,0-0.7-0.1-1-0.3L9.7,7C9.9,7.3,10,7.6,10,8z M8,12.5c-1,0-2.1-0.3-3-0.8 l1.3-1.3c1.4,0.9,3.2,0.6,4.2-0.8c0.7-1,0.7-2.4,0-3.4l1.4-1.4c1.1,0.8,2,1.9,2.6,3.2C13.4,10.5,10.6,12.5,8,12.5z" }), children);
138
- return react.default.createElement(require_Icon_js, {
154
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
155
+ fill: "none",
156
+ d: "M28 9 28 7 25 7 25 5 23 5 23 7 20 7 20 9 23 9 23 12 20 12 20 14 23 14 23 16 25 16 25 14 28 14 28 12 25 12 25 9 28 9z"
157
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,3H17a1,1,0,0,0-1,1V17a1,1,0,0,0,1,1H31a1,1,0,0,0,1-1V4A1,1,0,0,0,31,3ZM28,9H25v3h3v2H25v2H23V14H20V12h3V9H20V7h3V5h2V7h3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,30H13V26a2.9465,2.9465,0,0,0-3-3H6a2.9465,2.9465,0,0,0-3,3v4H1V26a4.9514,4.9514,0,0,1,5-5h4a4.9514,4.9514,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,11a3,3,0,0,1,0,6,3,3,0,0,1,0-6M8,9A5,5,0,0,0,8,19,5,5,0,0,0,8,9Z" }), children);
158
+ });
159
+ if (process.env.NODE_ENV !== "production") UserXRay.propTypes = require_iconPropTypes.iconPropTypes;
160
+ const UserProfileAlt = /* @__PURE__ */ react.default.forwardRef(function UserProfileAlt({ children, size = 16, ...rest }, ref) {
161
+ return react.default.createElement(require_Icon.Icon, {
139
162
  width: size,
140
163
  height: size,
141
164
  ref,
@@ -143,11 +166,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
143
166
  viewBox: "0 0 32 32",
144
167
  fill: "currentColor",
145
168
  ...rest
146
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.24,22.51l1.43-1.42A14.06,14.06,0,0,1,3.07,16C5.1,10.93,10.7,7,16,7a12.38,12.38,0,0,1,4,.72l1.55-1.56A14.72,14.72,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16,16,0,0,0,5.24,22.51Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,15.73a4,4,0,0,1,3.7-3.7l1.81-1.82a6,6,0,0,0-7.33,7.33Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66A16.4,16.4,0,0,0,25.2,8.22L30,3.41,28.59,2,2,28.59,3.41,30l5.1-5.1A15.29,15.29,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM20,16a4,4,0,0,1-6,3.44L19.44,14A4,4,0,0,1,20,16Zm-4,9a13.05,13.05,0,0,1-6-1.58l2.54-2.54a6,6,0,0,0,8.35-8.35l2.87-2.87A14.54,14.54,0,0,1,28.93,16C26.9,21.07,21.3,25,16,25Z" }), children);
169
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 13H26V15H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 8H30V10H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 3H30V5H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,30H7a2.0059,2.0059,0,0,1-2-2V21a2.0059,2.0059,0,0,1-2-2V13a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,11,30ZM6,12a.9448.9448,0,0,0-1,1v6H7v9h4V19h2V13a.9448.9448,0,0,0-1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,9a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,9,9ZM9,3a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,9,3Z" }), children);
147
170
  });
148
- if (process.env.NODE_ENV !== "production") ViewOff.propTypes = require_iconPropTypes.iconPropTypes;
149
- const ViewOffFilled = react.default.forwardRef(function ViewOffFilled({ children, size = 16, ...rest }, ref) {
150
- return react.default.createElement(require_Icon_js, {
171
+ if (process.env.NODE_ENV !== "production") UserProfileAlt.propTypes = require_iconPropTypes.iconPropTypes;
172
+ const UvIndex = /* @__PURE__ */ react.default.forwardRef(function UvIndex({ children, size = 16, ...rest }, ref) {
173
+ return react.default.createElement(require_Icon.Icon, {
151
174
  width: size,
152
175
  height: size,
153
176
  ref,
@@ -155,11 +178,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
155
178
  viewBox: "0 0 32 32",
156
179
  fill: "currentColor",
157
180
  ...rest
158
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66a16.4,16.4,0,0,0-5.73-7.45L30,3.41,28.59,2,2,28.59,3.41,30l5.1-5.09A15.38,15.38,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,22.5a6.46,6.46,0,0,1-3.83-1.26L14,19.43A4,4,0,0,0,19.43,14l1.81-1.81A6.49,6.49,0,0,1,16,22.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.53,21.81l5-5A6.84,6.84,0,0,1,9.5,16,6.51,6.51,0,0,1,16,9.5a6.84,6.84,0,0,1,.79.05l3.78-3.77A14.39,14.39,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A15.86,15.86,0,0,0,4.53,21.81Z" }), children);
181
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,5.9121l1.7444,2.9326.7822,1.315,1.4739-.4107,3.1206-.87L22.2512,12,21.84,13.4731l1.315.7823L26.0876,16l-2.9323,1.7441-1.315.7818L22.2512,20l.87,3.1211-3.1208-.87L18.5266,21.84l-.7822,1.315L16,26.0879l-1.7444-2.9326-.7822-1.315L12,22.251l-3.1208.87L9.7488,20l.4109-1.4741-1.315-.7818L5.9124,16l2.9323-1.7446,1.315-.7823L9.7488,12l-.87-3.1206L12,9.749l1.4739.4107.7822-1.315L16,5.9121M16,2,12.5366,7.8223,6,6l1.8223,6.5366L2,16l5.8223,3.4629L6,26l6.5366-1.8223L16,30l3.4634-5.8223L26,26l-1.8223-6.5371L30,16l-5.8223-3.4634L26,6,19.4634,7.8223,16,2Z" }), children);
159
182
  });
160
- if (process.env.NODE_ENV !== "production") ViewOffFilled.propTypes = require_iconPropTypes.iconPropTypes;
161
- const ViewNext = react.default.forwardRef(function ViewNext({ children, size = 16, ...rest }, ref) {
162
- return react.default.createElement(require_Icon_js, {
183
+ if (process.env.NODE_ENV !== "production") UvIndex.propTypes = require_iconPropTypes.iconPropTypes;
184
+ const UvIndexAlt = /* @__PURE__ */ react.default.forwardRef(function UvIndexAlt({ children, size = 16, ...rest }, ref) {
185
+ return react.default.createElement(require_Icon.Icon, {
163
186
  width: size,
164
187
  height: size,
165
188
  ref,
@@ -167,11 +190,17 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
167
190
  viewBox: "0 0 32 32",
168
191
  fill: "currentColor",
169
192
  ...rest
170
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.587 22 15 16.41 15 7 16.998 7 16.998 15.582 22 20.587 20.587 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z" }), children);
193
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30H9a2.0027,2.0027,0,0,1-2-2V20H9v8h4V20h2v8A2.0027,2.0027,0,0,1,13,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 20 23.25 20 21 29.031 18.792 20 17 20 19.5 30 22.5 30 25 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V7H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
194
+ d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
195
+ transform: "rotate(-45 24.147 7.853)"
196
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 15H30V17H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H7V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
197
+ d: "M6.854 5.375H8.854V10.333H6.854z",
198
+ transform: "rotate(-45 7.854 7.853)"
199
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,17H20V16a4,4,0,0,0-8,0v1H10V16a6,6,0,0,1,12,0Z" }), children);
171
200
  });
172
- if (process.env.NODE_ENV !== "production") ViewNext.propTypes = require_iconPropTypes.iconPropTypes;
173
- const VintageMac = react.default.forwardRef(function VintageMac({ children, size = 16, ...rest }, ref) {
174
- return react.default.createElement(require_Icon_js, {
201
+ if (process.env.NODE_ENV !== "production") UvIndexAlt.propTypes = require_iconPropTypes.iconPropTypes;
202
+ const UvIndexFilled = /* @__PURE__ */ react.default.forwardRef(function UvIndexFilled({ children, size = 16, ...rest }, ref) {
203
+ return react.default.createElement(require_Icon.Icon, {
175
204
  width: size,
176
205
  height: size,
177
206
  ref,
@@ -179,11 +208,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
179
208
  viewBox: "0 0 32 32",
180
209
  fill: "currentColor",
181
210
  ...rest
182
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,16h-12V6h12v10ZM12,8v6h8v-6h-8ZM24,4v20H8V4h16M24,2H8c-1.1,0-2,.9-2,2v20c0,1.1.9,2,2,2h16c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM10,18h2v2h-2v-2ZM16,18h6v2h-6v-2ZM9,28h14v2h-14v-2Z" }), children);
211
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30l-3.4634-5.8223L6,26l1.8223-6.5369L2,16l5.8223-3.4631L6,6l6.5366,1.8223L16,2l3.4634,5.8223L26,6l-1.8223,6.5369L30,16l-5.8223,3.4631L26,26l-6.5366-1.8223Z" }), children);
183
212
  });
184
- if (process.env.NODE_ENV !== "production") VintageMac.propTypes = require_iconPropTypes.iconPropTypes;
185
- const VirtualColumn = react.default.forwardRef(function VirtualColumn({ children, size = 16, ...rest }, ref) {
186
- return react.default.createElement(require_Icon_js, {
213
+ if (process.env.NODE_ENV !== "production") UvIndexFilled.propTypes = require_iconPropTypes.iconPropTypes;
214
+ const ValueVariable = /* @__PURE__ */ react.default.forwardRef(function ValueVariable({ children, size = 16, ...rest }, ref) {
215
+ return react.default.createElement(require_Icon.Icon, {
187
216
  width: size,
188
217
  height: size,
189
218
  ref,
@@ -191,11 +220,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
191
220
  viewBox: "0 0 32 32",
192
221
  fill: "currentColor",
193
222
  ...rest
194
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 11 26.414 12.414 23.828 15 30 15 30 17 23.828 17 26.414 19.586 25 21 20 16 25 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28H20a2.0023,2.0023,0,0,1-2-2V6a2.0023,2.0023,0,0,1,2-2H30V6H20V26H30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H2V26H12V6H2V4H12a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,12,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 5.586 12.414 8.172 15 2 15 2 17 8.172 17 5.586 19.586 7 21 12 16 7 11z" }), children);
223
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28H22V26h4V6H22V4h4a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,26,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 11 18 11 16 14.897 14 11 12 11 14.905 16 12 21 14 21 16 17.201 18 21 20 21 17.098 16 20 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,28H6a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,6,4h4V6H6V26h4Z" }), children);
195
224
  });
196
- if (process.env.NODE_ENV !== "production") VirtualColumn.propTypes = require_iconPropTypes.iconPropTypes;
197
- const VirtualColumnKey = react.default.forwardRef(function VirtualColumnKey({ children, size = 16, ...rest }, ref) {
198
- return react.default.createElement(require_Icon_js, {
225
+ if (process.env.NODE_ENV !== "production") ValueVariable.propTypes = require_iconPropTypes.iconPropTypes;
226
+ const ValueVariableAlt = /* @__PURE__ */ react.default.forwardRef(function ValueVariableAlt({ children, size = 16, ...rest }, ref) {
227
+ return react.default.createElement(require_Icon.Icon, {
199
228
  width: size,
200
229
  height: size,
201
230
  ref,
@@ -203,15 +232,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
203
232
  viewBox: "0 0 32 32",
204
233
  fill: "currentColor",
205
234
  ...rest
206
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
207
- cx: "24.5",
208
- cy: "9.5",
209
- r: "1.5"
210
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.4143,22H12V16.5857l6.03-6.03A5.3518,5.3518,0,0,1,18,10a6,6,0,1,1,6,6,5.3583,5.3583,0,0,1-.5559-.03ZM14,20h2.5857l6.1706-6.1709.5174.0957A3.935,3.935,0,0,0,24,14a4.0507,4.0507,0,1,0-3.925-3.2729l.0952.5166L14,17.4143Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,18v8H10V6h4V4H4A2.0025,2.0025,0,0,0,2,6V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V18ZM4,6H8V26H4Z" }), children);
235
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3,15.874v.2676c1.1201.2939,2,1.1743,2,2.8584v8h4v2h-4c-1.1028,0-2-.8975-2-2v-8c0-1.5498-.8799-2-2-2v-2c1.1201,0,2-.4766,2-2V5c0-1.1025.8972-2,2-2h4v2h-4v8c0,1.6841-.8799,2.5801-2,2.874ZM29,15.874v.2676c-1.1201.2939-2,1.1743-2,2.8584v8h-4s0,2,0,2h4c1.1028,0,2-.8975,2-2v-8c0-1.5498.8799-2,2-2v-2c-1.1201,0-2-.4766-2-2V5c0-1.1025-.8972-2-2-2h-4s0,2,0,2h4v8c0,1.6841.8799,2.5801,2,2.874ZM10.3401,21.8939c-.4089,0-.7344-.1158-.977-.3471-.2421-.2314-.3631-.5464-.3631-.9447,0-.3767.1129-.6807.3392-.9123.2258-.2314.5274-.3472.9043-.3472.3443,0,.6108.101.799.3025.1882.2019.2828.4825.2828.8422v.0654l.1129.0818c.1617-.0863.3687-.2776.622-.5742.2528-.2965.5325-.6767.8397-1.1405.3067-.4637.6347-.992.9846-1.5852s.7024-1.2349,1.0579-1.9251l-.0483-2.7824c-.0112-.69-.1938-1.0352-.5493-1.0352-.2156,0-.4603.0943-.7344.2825-.2746.1886-.6327.5034-1.0741.9447l-.5005-.4844c.6886-.7856,1.2944-1.3536,1.8167-1.7035.5218-.3498,1.0416-.5249,1.5583-.5249.6027,0,1.0436.2181,1.3239.654.2797.436.4303,1.1439.4521,2.1234l.0325,1.8247h.1612c.4628-.8935.8773-1.6363,1.2435-2.2284.3657-.5919.713-1.063,1.0416-1.4129.328-.3498.651-.5975.9689-.7428.3174-.1453.6591-.2181,1.0253-.2181.4089,0,.7344.1158.977.3472.2421.2315.3631.5465.3631.9446,0,.377-.1129.681-.3392.9123-.2258.2317-.5274.3472-.9043.3472-.3443,0-.6108-.0954-.799-.2861-.1887-.1908-.2828-.4605-.2828-.8094v-.1146l-.1129-.0818c-.1404.0757-.323.2589-.5493.55-.2258.2912-.4816.6685-.767,1.1324-.2853.4637-.5951,1.0084-.9282,1.6339-.3341.6256-.6841,1.3103-1.0497,2.0543l.0483,2.6368c.0107.6904.1938,1.0352.5493,1.0352.2151,0,.4598-.0941.7344-.2825.2746-.1883.6322-.5031,1.0736-.9447l.501.4844c-.3448.3984-.6647.7375-.9607,1.0173-.2965.2801-.5813.5087-.856.6863s-.5386.3095-.7914.3956-.5086.1292-.767.1292c-.6032,0-1.0441-.2179-1.3239-.6539-.2802-.436-.4308-1.1438-.4521-2.1235l-.0325-1.8247h-.1455c-.4521.8397-.8748,1.5502-1.2674,2.1315-.3931.5813-.767,1.0552-1.1225,1.421-.355.3661-.7049.6326-1.0492.7994-.3448.1667-.6998.2502-1.066.2502Z" }), children);
211
236
  });
212
- if (process.env.NODE_ENV !== "production") VirtualColumnKey.propTypes = require_iconPropTypes.iconPropTypes;
213
- const VirtualDesktop = react.default.forwardRef(function VirtualDesktop({ children, size = 16, ...rest }, ref) {
214
- return react.default.createElement(require_Icon_js, {
237
+ if (process.env.NODE_ENV !== "production") ValueVariableAlt.propTypes = require_iconPropTypes.iconPropTypes;
238
+ const Van = /* @__PURE__ */ react.default.forwardRef(function Van({ children, size = 16, ...rest }, ref) {
239
+ return react.default.createElement(require_Icon.Icon, {
215
240
  width: size,
216
241
  height: size,
217
242
  ref,
@@ -219,11 +244,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
219
244
  viewBox: "0 0 32 32",
220
245
  fill: "currentColor",
221
246
  ...rest
222
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,16H11a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h4v2H12v2h8V28H17V26h4a2.0023,2.0023,0,0,0,2-2V18A2.0023,2.0023,0,0,0,21,16ZM11,24V18H21l.0015,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.8218,10.124a9.9992,9.9992,0,0,0-19.6436,0A7.4914,7.4914,0,0,0,7,24.9746v-2a5.4945,5.4945,0,0,1,.123-10.9541l.8365-.0566.09-.834a7.9979,7.9979,0,0,1,15.9014,0l.09.834.8365.0566A5.4945,5.4945,0,0,1,25,22.9746v2a7.4914,7.4914,0,0,0,.8218-14.8506Z" }), children);
247
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.81,16l-7-9.56A1,1,0,0,0,22,6H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V16.56A1,1,0,0,0,29.81,16ZM20,8h1.49l5.13,7H20ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V8H18v9H28Z" }), children);
223
248
  });
224
- if (process.env.NODE_ENV !== "production") VirtualDesktop.propTypes = require_iconPropTypes.iconPropTypes;
225
- const VirtualMachine = react.default.forwardRef(function VirtualMachine({ children, size = 16, ...rest }, ref) {
226
- return react.default.createElement(require_Icon_js, {
249
+ if (process.env.NODE_ENV !== "production") Van.propTypes = require_iconPropTypes.iconPropTypes;
250
+ const VegetationAsset = /* @__PURE__ */ react.default.forwardRef(function VegetationAsset({ children, size = 16, ...rest }, ref) {
251
+ return react.default.createElement(require_Icon.Icon, {
227
252
  width: size,
228
253
  height: size,
229
254
  ref,
@@ -231,11 +256,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
231
256
  viewBox: "0 0 32 32",
232
257
  fill: "currentColor",
233
258
  ...rest
234
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,13H12a2.0025,2.0025,0,0,0-2,2V28a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V15A2.0025,2.0025,0,0,0,20,13Zm0,2,0,3H12V15Zm0,5,0,3H12V20Zm-8,8V25h8v3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.91,10.13a.121.121,0,0,1-.0967-.0952A10.0061,10.0061,0,0,0,17.89,2.1816,10.0025,10.0025,0,0,0,6.1858,10.0347a.1212.1212,0,0,1-.0964.0957A7.5019,7.5019,0,0,0,7.4912,25H8V23H7.4954a5.5108,5.5108,0,0,1-5.4387-6.3,5.6992,5.6992,0,0,1,4.7138-4.6606l1.0166-.1836a.1306.1306,0,0,0,.1045-.1035l.18-.9351a8.28,8.28,0,0,1,6.8469-6.7427,7.957,7.957,0,0,1,2.8471.1245,8.22,8.22,0,0,1,6.1475,6.545l.1941,1.0083a.13.13,0,0,0,.1045.1035l1.0576.1914a5.7819,5.7819,0,0,1,3.1011,1.539A5.5052,5.5052,0,0,1,24.5076,23H24v2h.5076A7.5019,7.5019,0,0,0,25.91,10.13Z" }), children);
259
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
260
+ cx: "21.5",
261
+ cy: "10.5",
262
+ r: "1.5"
263
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5,1a2.4518,2.4518,0,0,0-1.2061.3105L18.9834,5.6084l.0027.0054a5.497,5.497,0,1,0,7.3257,7.5444l.0031.0015,4.4-8.5A2.5,2.5,0,0,0,28.5,1Zm-7,13A3.5,3.5,0,1,1,25,10.5,3.5042,3.5042,0,0,1,21.5,14ZM28.9414,3.7354,26.5571,8.3408A5.5279,5.5279,0,0,0,23.658,5.4424l4.5949-2.377A.5165.5165,0,0,1,29,3.5.4985.4985,0,0,1,28.9414,3.7354Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,20h7V18H17V28a2.0027,2.0027,0,0,0,2,2h3V28H19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0024,2.0024,0,0,1,12,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.3079,2.2852A9.4882,9.4882,0,0,0,15,2,8.0275,8.0275,0,0,0,8.0786,6.001C8.0525,6,8.0264,6,8,6A6,6,0,0,0,8,18V16A4,4,0,0,1,8,8a2.7009,2.7009,0,0,1,.387.0391l.863.1142.3086-.6675A6.0192,6.0192,0,0,1,15,4a7.499,7.499,0,0,1,1.731.2148Z" }), children);
235
264
  });
236
- if (process.env.NODE_ENV !== "production") VirtualMachine.propTypes = require_iconPropTypes.iconPropTypes;
237
- const VirtualPrivateCloud = react.default.forwardRef(function VirtualPrivateCloud({ children, size = 16, ...rest }, ref) {
238
- return react.default.createElement(require_Icon_js, {
265
+ if (process.env.NODE_ENV !== "production") VegetationAsset.propTypes = require_iconPropTypes.iconPropTypes;
266
+ const VegetationEncroachment = /* @__PURE__ */ react.default.forwardRef(function VegetationEncroachment({ children, size = 16, ...rest }, ref) {
267
+ return react.default.createElement(require_Icon.Icon, {
239
268
  width: size,
240
269
  height: size,
241
270
  ref,
@@ -243,17 +272,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
243
272
  viewBox: "0 0 32 32",
244
273
  fill: "currentColor",
245
274
  ...rest
246
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20V17a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm-6-3a2,2,0,0,1,4,0v3H14ZM12,28V22h8l.0012,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.8288,10.1152A10.0067,10.0067,0,0,0,17.89,2.1816,10.0025,10.0025,0,0,0,6.17,10.1152,7.502,7.502,0,0,0,7.4912,25H8V23H7.4953a5.5019,5.5019,0,0,1-.9694-10.9165l1.3488-.2441.2591-1.3457a8.0109,8.0109,0,0,1,15.7312,0l.259,1.3457,1.3489.2441A5.5019,5.5019,0,0,1,24.5076,23H24v2h.5076a7.502,7.502,0,0,0,1.3212-14.8848Z" }), children);
275
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m19,20h7v-2h-9v10c.0015,1.104.896,1.9985,2,2h3v-2h-3v-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,30h-3v-2h3v-12.4336l-3.5146-2.1089,1.0292-1.7148,3.5147,2.1084c.6007.3632.9686,1.0133.9707,1.7153v12.4336c-.0013,1.104-.896,1.9987-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 6.4102 28.59 5 25 8.5898 21.41 5 20 6.4102 23.59 10 20 13.5898 21.41 15 25 11.4102 28.59 15 30 13.5898 26.41 10 30 6.4102z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m17.3079,2.2852c-.7283-.1821-1.4995-.2852-2.3079-.2852-2.8545.0083-5.4897,1.5317-6.9214,4.001-.0261-.001-.0522-.001-.0786-.001-3.3137,0-6,2.6865-6,6s2.6863,6,6,6v-2c-2.209,0-4-1.791-4-4s1.791-4,4-4c.1299.0039.259.0166.387.0391l.863.1143.3086-.6675c.9834-2.1196,3.1047-3.4785,5.4414-3.4858.6079,0,1.1819.0854,1.731.2148l.5769-1.9297Z" }), children);
247
276
  });
248
- if (process.env.NODE_ENV !== "production") VirtualPrivateCloud.propTypes = require_iconPropTypes.iconPropTypes;
249
- const VirtualPrivateCloudAlt = react.default.forwardRef(function VirtualPrivateCloudAlt({ children, size = 16, ...rest }, ref) {
250
- if (process.env.NODE_ENV !== "production") {
251
- if (!didWarnAboutDeprecation["VirtualPrivateCloudAlt"]) {
252
- didWarnAboutDeprecation["VirtualPrivateCloudAlt"] = true;
253
- console.warn("Icon name was requested by the product team to be renamed to and replaced by ibm-cloud--vpc. As a result, the VirtualPrivateCloudAlt component will be removed in the next major version of @carbon/icons-react.");
254
- }
255
- }
256
- return react.default.createElement(require_Icon_js, {
277
+ if (process.env.NODE_ENV !== "production") VegetationEncroachment.propTypes = require_iconPropTypes.iconPropTypes;
278
+ const VegetationHeight = /* @__PURE__ */ react.default.forwardRef(function VegetationHeight({ children, size = 16, ...rest }, ref) {
279
+ return react.default.createElement(require_Icon.Icon, {
257
280
  width: size,
258
281
  height: size,
259
282
  ref,
@@ -261,11 +284,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
261
284
  viewBox: "0 0 32 32",
262
285
  fill: "currentColor",
263
286
  ...rest
264
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.4141,22,10,8.5859V2H2v8H8.5859L22,23.4141V30h8V22ZM8,8H4V4H8ZM28,28H24V24h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,6a3.9915,3.9915,0,0,0-7.8579-1H13V7h9.1421A3.9945,3.9945,0,0,0,25,9.8579V19h2V9.8579A3.9962,3.9962,0,0,0,30,6ZM26,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,25H9.8579A3.9945,3.9945,0,0,0,7,22.1421V13H5v9.1421A3.9915,3.9915,0,1,0,9.8579,27H19ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z" }), children);
287
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m13,8l-5,5,1.4102,1.4102,2.5898-2.5801v16.1699h-3v2h3c1.104-.0015,1.9988-.896,2-2V11.8301l2.5898,2.5801,1.4102-1.4102-5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,30h-3c-1.104-.0013-1.9987-.896-2-2v-11h6c2.2096-.0001,4.0007-1.7915,4.0006-4.001,0-.1319-.0065-.2637-.0196-.395-.277-2.0943-2.0835-3.6461-4.1957-3.604h-1.5837l-.1766-.779c-.573-2.5249-2.9942-4.221-6.025-4.221-2.3366.0074-4.4579,1.3664-5.4415,3.4859l-.3085.6672-.863-.1143c-.1279-.022-.2573-.0349-.387-.0388-2.2091,0-4,1.7909-4,4s1.7909,4,4,4v2c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6c.0264,0,.0525,0,.0786.001,1.4317-2.4694,4.067-3.9928,6.9214-4.001,3.6788,0,6.6923,1.9776,7.7516,5h.0337c3.1405-.0351,5.8053,2.2967,6.1872,5.4141.323,3.2985-2.0892,6.2344-5.3877,6.5573-.1943.019-.3895.0286-.5848.0286h-4v9h3v2Z" }), children);
265
288
  });
266
- if (process.env.NODE_ENV !== "production") VirtualPrivateCloudAlt.propTypes = require_iconPropTypes.iconPropTypes;
267
- const VisualInspection = react.default.forwardRef(function VisualInspection({ children, size = 16, ...rest }, ref) {
268
- return react.default.createElement(require_Icon_js, {
289
+ if (process.env.NODE_ENV !== "production") VegetationHeight.propTypes = require_iconPropTypes.iconPropTypes;
290
+ const VehicleApi = /* @__PURE__ */ react.default.forwardRef(function VehicleApi({ children, size = 16, ...rest }, ref) {
291
+ return react.default.createElement(require_Icon.Icon, {
269
292
  width: size,
270
293
  height: size,
271
294
  ref,
@@ -273,11 +296,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
273
296
  viewBox: "0 0 32 32",
274
297
  fill: "currentColor",
275
298
  ...rest
276
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,24.5859l-5.1147-5.1147c.9407-1.3201,1.3683-3.0299.9602-4.8428-.4971-2.2083-2.2783-3.9913-4.4888-4.4786-4.3566-.9604-8.1675,2.8505-7.207,7.2071.4873,2.2105,2.2703,3.9918,4.4787,4.4888,1.8129.408,3.5228-.0197,4.8429-.9605l5.1147,5.1147,1.4141-1.4141h0ZM17.0848,19.8568c-3.0406.805-5.7481-1.9051-4.9404-4.9449.3548-1.3352,1.4352-2.4146,2.7707-2.7682,3.0406-.805,5.7481,1.9051,4.9404,4.9449-.3548,1.3352-1.4352,2.4146-2.7707,2.7682ZM29.0663,16.3569l-.0654-.1709c-1.9897-5.2383-7.5781-9.1865-13.0005-9.1865s-11.0107,3.9482-12.9995,9.1841l-.0664.1733c-.1978.5166-.7764.7739-1.2915.5767-.5161-.1978-.7739-.7759-.5767-1.2915l.0654-.1709c2.2671-5.9688,8.6597-10.4717,14.8687-10.4717s12.6016,4.5029,14.8696,10.4741l.0645.1685M16.0004,27c-6.2088-.0002-12.6006-4.5031-14.8691-10.4741l-.064-.166c-.1987-.5151.0581-1.0942.5732-1.293.5146-.1982,1.0938.0576,1.293.5732l.0659.1709c1.9907,5.2405,7.5788,9.1887,13.001,9.189v2Z" }), children);
299
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,11a1.9907,1.9907,0,0,0-.8247.1821L24.8337,9.51A3.45,3.45,0,0,0,25,8.5a3.45,3.45,0,0,0-.1663-1.01l2.3416-1.6723A1.9975,1.9975,0,1,0,26,4c0,.064.0129.124.0188.1865L23.7273,5.8232A3.4652,3.4652,0,0,0,21.5,5a3.5,3.5,0,0,0,0,7,3.4652,3.4652,0,0,0,2.2273-.8232l2.2915,1.6367C26.0129,12.876,26,12.936,26,13a2,2,0,1,0,2-2Zm-6.5-1A1.5,1.5,0,1,1,23,8.5,1.5017,1.5017,0,0,1,21.5,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,19.9336l-7.7324-2.7783L18.374,13.0967A2.99,2.99,0,0,0,16.0537,12H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,17.2949A4.9884,4.9884,0,0,0,2,20.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V20.875A1,1,0,0,0,29.3379,19.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V20.1074A2.9977,2.9977,0,0,1,4.52,18.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,14h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,21.5781Z" }), children);
277
300
  });
278
- if (process.env.NODE_ENV !== "production") VisualInspection.propTypes = require_iconPropTypes.iconPropTypes;
279
- const VisualRecognition = react.default.forwardRef(function VisualRecognition({ children, size = 16, ...rest }, ref) {
280
- return react.default.createElement(require_Icon_js, {
301
+ if (process.env.NODE_ENV !== "production") VehicleApi.propTypes = require_iconPropTypes.iconPropTypes;
302
+ const VehicleConnected = /* @__PURE__ */ react.default.forwardRef(function VehicleConnected({ children, size = 16, ...rest }, ref) {
303
+ return react.default.createElement(require_Icon.Icon, {
281
304
  width: size,
282
305
  height: size,
283
306
  ref,
@@ -285,15 +308,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
285
308
  viewBox: "0 0 32 32",
286
309
  fill: "currentColor",
287
310
  ...rest
288
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
289
- cx: "23",
290
- cy: "12",
291
- r: "2"
292
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,5H16.24A8,8,0,1,0,6,16.92V27a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V7A2,2,0,0,0,28,5ZM4,10A6,6,0,0,1,15.19,7H8V9h7.91A6.64,6.64,0,0,1,16,10a6.64,6.64,0,0,1-.09,1H10v2h5.19A6,6,0,0,1,4,10ZM28,27H8l5-5,1.59,1.59a2,2,0,0,0,2.82,0L23,18l5,5Zm0-6.83-3.59-3.59a2,2,0,0,0-2.82,0L16,22.17l-1.59-1.59a2,2,0,0,0-2.82,0L8,24.17V17.74A8.24,8.24,0,0,0,10,18a8,8,0,0,0,8-8,7.9,7.9,0,0,0-.59-3H28Z" }), children);
311
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,17.9336l-7.7324-2.7783L18.374,11.0967A2.99,2.99,0,0,0,16.0537,10H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,15.2949A4.9884,4.9884,0,0,0,2,18.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V18.875A1,1,0,0,0,29.3379,17.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V18.1074A2.9977,2.9977,0,0,1,4.52,16.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,12h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,19.5781Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,11H23a2.0021,2.0021,0,0,0-2-2V7A4.0045,4.0045,0,0,1,25,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,11H27a6.0067,6.0067,0,0,0-6-6V3A8.0092,8.0092,0,0,1,29,11Z" }), children);
293
312
  });
294
- if (process.env.NODE_ENV !== "production") VisualRecognition.propTypes = require_iconPropTypes.iconPropTypes;
295
- const Vlan = react.default.forwardRef(function Vlan({ children, size = 16, ...rest }, ref) {
296
- return react.default.createElement(require_Icon_js, {
313
+ if (process.env.NODE_ENV !== "production") VehicleConnected.propTypes = require_iconPropTypes.iconPropTypes;
314
+ const VehicleInsights = /* @__PURE__ */ react.default.forwardRef(function VehicleInsights({ children, size = 16, ...rest }, ref) {
315
+ return react.default.createElement(require_Icon.Icon, {
297
316
  width: size,
298
317
  height: size,
299
318
  ref,
@@ -301,11 +320,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
301
320
  viewBox: "0 0 32 32",
302
321
  fill: "currentColor",
303
322
  ...rest
304
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,17V15H17V11h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H13a2.0023,2.0023,0,0,0-2,2V9a2.0023,2.0023,0,0,0,2,2h2v4H2v2H8v4H6a2.0023,2.0023,0,0,0-2,2v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V23a2.0023,2.0023,0,0,0-2-2H10V17H22v4H20a2.0023,2.0023,0,0,0-2,2v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V23a2.0023,2.0023,0,0,0-2-2H24V17ZM13,4h6V9H13ZM12,28H6V23h6Zm14,0H20V23h6Z" }), children);
323
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,17.9336l-7.7324-2.7783L18.374,11.0967A2.99,2.99,0,0,0,16.0537,10H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,15.2949A4.9884,4.9884,0,0,0,2,18.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V18.875A1,1,0,0,0,29.3379,17.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V18.1074A2.9977,2.9977,0,0,1,4.52,16.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,12h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,19.5781Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 2H30V9H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 6H26V9H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H22V9H20z" }), children);
305
324
  });
306
- if (process.env.NODE_ENV !== "production") Vlan.propTypes = require_iconPropTypes.iconPropTypes;
307
- const VlanIbm = react.default.forwardRef(function VlanIbm({ children, size = 16, ...rest }, ref) {
308
- return react.default.createElement(require_Icon_js, {
325
+ if (process.env.NODE_ENV !== "production") VehicleInsights.propTypes = require_iconPropTypes.iconPropTypes;
326
+ const VehicleServices = /* @__PURE__ */ react.default.forwardRef(function VehicleServices({ children, size = 16, ...rest }, ref) {
327
+ return react.default.createElement(require_Icon.Icon, {
309
328
  width: size,
310
329
  height: size,
311
330
  ref,
@@ -313,15 +332,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
313
332
  viewBox: "0 0 32 32",
314
333
  fill: "currentColor",
315
334
  ...rest
316
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,22Zm0,6a2,2,0,1,1,2-2A2.002,2.002,0,0,1,16,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,5a3,3,0,1,0-4,2.8154V15H17V9H15v6H6V7.8159a3.0007,3.0007,0,1,0-2,0V15a2.002,2.002,0,0,0,2,2h9v3h2V17h9a2.002,2.002,0,0,0,2-2V7.8159A2.9958,2.9958,0,0,0,30,5ZM5,4A1,1,0,1,1,4,5,1.0013,1.0013,0,0,1,5,4ZM27,6a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,27,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
317
- cx: "16",
318
- cy: "5",
319
- r: "2"
320
- }), children);
335
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,17.9336l-7.7324-2.7783L18.374,11.0967A2.99,2.99,0,0,0,16.0537,10H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,15.2949A4.9884,4.9884,0,0,0,2,18.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V18.875A1,1,0,0,0,29.3379,17.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V18.1074A2.9977,2.9977,0,0,1,4.52,16.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,12h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,19.5781Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.5547,6a2,2,0,0,1,2-2H30a3.9756,3.9756,0,0,0-7.304,1H16V7h6.696A3.9756,3.9756,0,0,0,30,8H26.5547A2,2,0,0,1,24.5547,6Z" }), children);
321
336
  });
322
- if (process.env.NODE_ENV !== "production") VlanIbm.propTypes = require_iconPropTypes.iconPropTypes;
323
- const VmdkDisk = react.default.forwardRef(function VmdkDisk({ children, size = 16, ...rest }, ref) {
324
- return react.default.createElement(require_Icon_js, {
337
+ if (process.env.NODE_ENV !== "production") VehicleServices.propTypes = require_iconPropTypes.iconPropTypes;
338
+ const Version = /* @__PURE__ */ react.default.forwardRef(function Version({ children, size = 16, ...rest }, ref) {
339
+ return react.default.createElement(require_Icon.Icon, {
325
340
  width: size,
326
341
  height: size,
327
342
  ref,
@@ -329,22 +344,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
329
344
  viewBox: "0 0 32 32",
330
345
  fill: "currentColor",
331
346
  ...rest
332
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
333
- cx: "10.5",
334
- cy: "24.5",
335
- r: "1.5"
336
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
337
- d: "M19.5 14.964H21.5V20.035H19.5z",
338
- transform: "rotate(-45 20.5 17.5)"
339
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
340
- cx: "16",
341
- cy: "13",
342
- r: "2"
343
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6a7,7,0,0,0,0,14V18a5,5,0,1,1,5-5h2A7,7,0,0,0,16,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4A2,2,0,0,0,26,2Zm0,26H6V4H26Z" }), children);
347
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2V4H26V19h2V4a2.0023,2.0023,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,7V9H21V24h2V9a2.0023,2.0023,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,12H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H6a2.0023,2.0023,0,0,1-2-2V14A2.0023,2.0023,0,0,1,6,12Zm10,2L6,13.9988V28H16Z" }), children);
344
348
  });
345
- if (process.env.NODE_ENV !== "production") VmdkDisk.propTypes = require_iconPropTypes.iconPropTypes;
346
- const VoiceActivate = react.default.forwardRef(function VoiceActivate({ children, size = 16, ...rest }, ref) {
347
- return react.default.createElement(require_Icon_js, {
349
+ if (process.env.NODE_ENV !== "production") Version.propTypes = require_iconPropTypes.iconPropTypes;
350
+ const VersionMajor = /* @__PURE__ */ react.default.forwardRef(function VersionMajor({ children, size = 16, ...rest }, ref) {
351
+ return react.default.createElement(require_Icon.Icon, {
348
352
  width: size,
349
353
  height: size,
350
354
  ref,
@@ -352,11 +356,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
352
356
  viewBox: "0 0 32 32",
353
357
  fill: "currentColor",
354
358
  ...rest
355
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V27H20a5.0055,5.0055,0,0,1-5-5V20.7207l-2.3162-.772a1,1,0,0,1-.5412-1.4631L15,13.7229V11a9.01,9.01,0,0,1,9-9h5V4H24a7.0078,7.0078,0,0,0-7,7v3a.9991.9991,0,0,1-.1426.5144l-2.3586,3.9312,1.8174.6057A1,1,0,0,1,17,20v2a3.0033,3.0033,0,0,0,3,3h5a1,1,0,0,1,1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 12H23V14H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.3325,25.2168a7.0007,7.0007,0,0,1,0-10.4341l1.334,1.49a5,5,0,0,0,0,7.4537Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.3994,28.8008a11.0019,11.0019,0,0,1,0-17.6006L7.6,12.8a9.0009,9.0009,0,0,0,0,14.4014Z" }), children);
359
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 17.4141 16 14.8345 16 14.8345 13.4125 17.4156 12 16 16 12 20 16 18.5859 17.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 11.4141 16 8.8345 16 8.8345 13.4125 11.4156 12 10 16 6 20 10 18.5859 11.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 23.4141 16 20.8345 16 20.8345 13.4125 23.4156 12 22 16 18 20 22 18.5859 23.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m1.5858,17.4142c-.3905-.3905-.5858-.9024-.5858-1.4142s.1953-1.0237.5858-1.4142L14.5858,1.5858c.3905-.3905.9023-.5858,1.4142-.5858s1.0237.1953,1.4142.5858l13,13c.3905.3905.5858.9024.5858,1.4142s-.1953,1.0237-.5858,1.4142l-13,13c-.3905.3905-.9024.5858-1.4142.5858s-1.0237-.1953-1.4142-.5858L1.5858,17.4142ZM16,3L3,16l13,13,13-13L16,3Z" }), children);
356
360
  });
357
- if (process.env.NODE_ENV !== "production") VoiceActivate.propTypes = require_iconPropTypes.iconPropTypes;
358
- const VoiceMode = react.default.forwardRef(function VoiceMode({ children, size = 16, ...rest }, ref) {
359
- return react.default.createElement(require_Icon_js, {
361
+ if (process.env.NODE_ENV !== "production") VersionMajor.propTypes = require_iconPropTypes.iconPropTypes;
362
+ const VersionMinor = /* @__PURE__ */ react.default.forwardRef(function VersionMinor({ children, size = 16, ...rest }, ref) {
363
+ return react.default.createElement(require_Icon.Icon, {
360
364
  width: size,
361
365
  height: size,
362
366
  ref,
@@ -364,11 +368,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
364
368
  viewBox: "0 0 32 32",
365
369
  fill: "currentColor",
366
370
  ...rest
367
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,29h-2V3h2v26ZM23,6h-2v20h2V6ZM11,6h-2v20h2V6ZM5,11h-2v10h2v-10ZM29,11h-2v10h2.0031s-.0031-10-.0031-10Z" }), children);
371
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 15.4141 16 12.8345 16 12.8345 13.4125 15.4156 12 14 16 10 20 14 18.5859 15.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 21.4141 16 18.8345 16 18.8345 13.4125 21.4156 12 20 16 16 20 20 18.5859 21.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m1.5858,17.4142c-.3905-.3905-.5858-.9024-.5858-1.4142s.1953-1.0237.5858-1.4142L14.5858,1.5858c.3905-.3905.9023-.5858,1.4142-.5858s1.0237.1953,1.4142.5858l13,13c.3905.3905.5858.9024.5858,1.4142s-.1953,1.0237-.5858,1.4142l-13,13c-.3905.3905-.9024.5858-1.4142.5858s-1.0237-.1953-1.4142-.5858L1.5858,17.4142ZM16,3L3,16l13,13,13-13L16,3Z" }), children);
368
372
  });
369
- if (process.env.NODE_ENV !== "production") VoiceMode.propTypes = require_iconPropTypes.iconPropTypes;
370
- const Voicemail = react.default.forwardRef(function Voicemail({ children, size = 16, ...rest }, ref) {
371
- return react.default.createElement(require_Icon_js, {
373
+ if (process.env.NODE_ENV !== "production") VersionMinor.propTypes = require_iconPropTypes.iconPropTypes;
374
+ const VersionPatch = /* @__PURE__ */ react.default.forwardRef(function VersionPatch({ children, size = 16, ...rest }, ref) {
375
+ return react.default.createElement(require_Icon.Icon, {
372
376
  width: size,
373
377
  height: size,
374
378
  ref,
@@ -376,11 +380,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
376
380
  viewBox: "0 0 32 32",
377
381
  fill: "currentColor",
378
382
  ...rest
379
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10a6,6,0,0,0-4.46,10H12.46A6,6,0,1,0,8,22H24a6,6,0,0,0,0-12ZM4,16a4,4,0,1,1,4,4A4,4,0,0,1,4,16Zm20,4a4,4,0,1,1,4-4A4,4,0,0,1,24,20Z" }), children);
383
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 18.4141 16 15.8345 16 15.8345 13.4125 18.4156 12 17 16 13 20 17 18.5859 18.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m1.5858,17.4142c-.3905-.3905-.5858-.9024-.5858-1.4142s.1953-1.0237.5858-1.4142L14.5858,1.5858c.3905-.3905.9023-.5858,1.4142-.5858s1.0237.1953,1.4142.5858l13,13c.3905.3905.5858.9024.5858,1.4142s-.1953,1.0237-.5858,1.4142l-13,13c-.3905.3905-.9024.5858-1.4142.5858s-1.0237-.1953-1.4142-.5858L1.5858,17.4142ZM16,3L3,16l13,13,13-13L16,3Z" }), children);
380
384
  });
381
- if (process.env.NODE_ENV !== "production") Voicemail.propTypes = require_iconPropTypes.iconPropTypes;
382
- const VolumeBlockStorage = react.default.forwardRef(function VolumeBlockStorage({ children, size = 16, ...rest }, ref) {
383
- return react.default.createElement(require_Icon_js, {
385
+ if (process.env.NODE_ENV !== "production") VersionPatch.propTypes = require_iconPropTypes.iconPropTypes;
386
+ const VerticalFold = /* @__PURE__ */ react.default.forwardRef(function VerticalFold({ children, size = 16, ...rest }, ref) {
387
+ return react.default.createElement(require_Icon.Icon, {
384
388
  width: size,
385
389
  height: size,
386
390
  ref,
@@ -388,11 +392,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
388
392
  viewBox: "0 0 32 32",
389
393
  fill: "currentColor",
390
394
  ...rest
391
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,21H10V14h7Zm-5-2h3V16H12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30H10V23h7Zm-5-2h3V25H12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,21H19V14h7Zm-5-2h3V16H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H19V23h7Zm-5-2h3V25H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,28H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h7.5857A1.9865,1.9865,0,0,1,13,4.5859L16.4143,8H28a2.0023,2.0023,0,0,1,2,2v8H28V10H15.5857l-4-4H4V26H8Z" }), children);
395
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,24l1.414,1.414,2.586-2.586v7.172h2v-7.172l2.586,2.586,1.414-1.414-5-5-5,5ZM21,8l-1.414-1.414-2.586,2.586V2h-2v7.172l-2.586-2.586-1.414,1.414,5,5,5-5ZM2,17h4v-2H2v2ZM12,15h-4v2h4v-2ZM14,17h4v-2h-4v2ZM20,17h4v-2h-4v2ZM26,15v2h4v-2h-4Z" }), children);
392
396
  });
393
- if (process.env.NODE_ENV !== "production") VolumeBlockStorage.propTypes = require_iconPropTypes.iconPropTypes;
394
- const VolumeDown = react.default.forwardRef(function VolumeDown({ children, size = 16, ...rest }, ref) {
395
- return react.default.createElement(require_Icon_js, {
397
+ if (process.env.NODE_ENV !== "production") VerticalFold.propTypes = require_iconPropTypes.iconPropTypes;
398
+ const VerticalView = /* @__PURE__ */ react.default.forwardRef(function VerticalView({ children, size = 16, ...rest }, ref) {
399
+ return react.default.createElement(require_Icon.Icon, {
396
400
  width: size,
397
401
  height: size,
398
402
  ref,
@@ -400,11 +404,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
400
404
  viewBox: "0 0 32 32",
401
405
  fill: "currentColor",
402
406
  ...rest
403
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.1,10.66,23.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30a1,1,0,0,1-.71-.3L11.67,22H5a1,1,0,0,1-1-1H4V11a1,1,0,0,1,1-1h6.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,21,3V29A1,1,0,0,1,20,30ZM6,20h6a1.17,1.17,0,0,1,.79.3L19,26.57V5.43L12.79,11.7A1.17,1.17,0,0,1,12,12H6Z" }), children);
407
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2h8a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,12,30ZM4,4V28h8V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H20a2.0021,2.0021,0,0,1-2-2V4a2.0021,2.0021,0,0,1,2-2h8a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM20,4V28h8V4Z" }), children);
404
408
  });
405
- if (process.env.NODE_ENV !== "production") VolumeDown.propTypes = require_iconPropTypes.iconPropTypes;
406
- const VolumeDownAlt = react.default.forwardRef(function VolumeDownAlt({ children, size = 16, ...rest }, ref) {
407
- return react.default.createElement(require_Icon_js, {
409
+ if (process.env.NODE_ENV !== "production") VerticalView.propTypes = require_iconPropTypes.iconPropTypes;
410
+ const Video = /* @__PURE__ */ react.default.forwardRef(function Video({ children, size = 16, ...rest }, ref) {
411
+ return react.default.createElement(require_Icon.Icon, {
408
412
  width: size,
409
413
  height: size,
410
414
  ref,
@@ -412,11 +416,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
412
416
  viewBox: "0 0 32 32",
413
417
  fill: "currentColor",
414
418
  ...rest
415
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 15H32V17H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30ZM4,20h6a1.2008,1.2008,0,0,1,.7939.2969L17,26.5684V5.4316l-6.2061,6.2715A1.2013,1.2013,0,0,1,10,12H4Z" }), children);
419
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H21a2,2,0,0,1,2,2v4.06l5.42-3.87A1,1,0,0,1,30,9V23a1,1,0,0,1-1.58.81L23,19.94V24A2,2,0,0,1,21,26ZM4,8V24H21V18a1,1,0,0,1,1.58-.81L28,21.06V10.94l-5.42,3.87A1,1,0,0,1,21,14V8Z" }), children);
416
420
  });
417
- if (process.env.NODE_ENV !== "production") VolumeDownAlt.propTypes = require_iconPropTypes.iconPropTypes;
418
- const VolumeDownFilled = react.default.forwardRef(function VolumeDownFilled({ children, size = 16, ...rest }, ref) {
419
- return react.default.createElement(require_Icon_js, {
421
+ if (process.env.NODE_ENV !== "production") Video.propTypes = require_iconPropTypes.iconPropTypes;
422
+ const VideoAdd = /* @__PURE__ */ react.default.forwardRef(function VideoAdd({ children, size = 16, ...rest }, ref) {
423
+ return react.default.createElement(require_Icon.Icon, {
420
424
  width: size,
421
425
  height: size,
422
426
  ref,
@@ -424,11 +428,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
424
428
  viewBox: "0 0 32 32",
425
429
  fill: "currentColor",
426
430
  ...rest
427
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.1,10.66,23.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30a1,1,0,0,1-.71-.3L11.67,22H5a1,1,0,0,1-1-1H4V11a1,1,0,0,1,1-1h6.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,21,3V29A1,1,0,0,1,20,30Z" }), children);
431
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 15 14 15 14 11 12 11 12 15 8 15 8 17 12 17 12 21 14 21 14 17 18 17 18 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H21a2.0023,2.0023,0,0,1,2,2v4.0566l5.4189-3.87A.9995.9995,0,0,1,30,9V23a.9995.9995,0,0,1-1.5811.8135L23,19.9434V24A2.0023,2.0023,0,0,1,21,26ZM4,8V24.001L21,24V18a.9995.9995,0,0,1,1.5811-.8135L28,21.0566V10.9434l-5.4189,3.87A.9995.9995,0,0,1,21,14V8Z" }), children);
428
432
  });
429
- if (process.env.NODE_ENV !== "production") VolumeDownFilled.propTypes = require_iconPropTypes.iconPropTypes;
430
- const VolumeDownFilledAlt = react.default.forwardRef(function VolumeDownFilledAlt({ children, size = 16, ...rest }, ref) {
431
- return react.default.createElement(require_Icon_js, {
433
+ if (process.env.NODE_ENV !== "production") VideoAdd.propTypes = require_iconPropTypes.iconPropTypes;
434
+ const VideoChat = /* @__PURE__ */ react.default.forwardRef(function VideoChat({ children, size = 16, ...rest }, ref) {
435
+ return react.default.createElement(require_Icon.Icon, {
432
436
  width: size,
433
437
  height: size,
434
438
  ref,
@@ -436,11 +440,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
436
440
  viewBox: "0 0 32 32",
437
441
  fill: "currentColor",
438
442
  ...rest
439
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 15H32V17H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30Z" }), children);
443
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 12H17V14H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 17H13V19H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H21a2.0023,2.0023,0,0,1,2,2v4.0566l5.4189-3.87A.9995.9995,0,0,1,30,9V23a.9995.9995,0,0,1-1.5811.8135L23,19.9434V24A2.0023,2.0023,0,0,1,21,26ZM4,8V24.001L21,24V18a.9995.9995,0,0,1,1.5811-.8135L28,21.0566V10.9434l-5.4189,3.87A.9995.9995,0,0,1,21,14V8Z" }), children);
440
444
  });
441
- if (process.env.NODE_ENV !== "production") VolumeDownFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
442
- const VolumeFileStorage = react.default.forwardRef(function VolumeFileStorage({ children, size = 16, ...rest }, ref) {
443
- return react.default.createElement(require_Icon_js, {
445
+ if (process.env.NODE_ENV !== "production") VideoChat.propTypes = require_iconPropTypes.iconPropTypes;
446
+ const VideoFilled = /* @__PURE__ */ react.default.forwardRef(function VideoFilled({ children, size = 16, ...rest }, ref) {
447
+ return react.default.createElement(require_Icon.Icon, {
444
448
  width: size,
445
449
  height: size,
446
450
  ref,
@@ -448,11 +452,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
448
452
  viewBox: "0 0 32 32",
449
453
  fill: "currentColor",
450
454
  ...rest
451
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.707,17.293l-5-5A1,1,0,0,0,20,12H14a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V18A1,1,0,0,0,25.707,17.293ZM23.5857,18H20V14.4141ZM14,28V14h4v4a2,2,0,0,0,2,2h4v8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,27H4a2.0023,2.0023,0,0,1-2-2V5A2.0023,2.0023,0,0,1,4,3h7.5857A1.9865,1.9865,0,0,1,13,3.5859L16.4143,7H28a2.0023,2.0023,0,0,1,2,2v8H28V9H15.5857l-4-4H4V25H8Z" }), children);
455
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H21a2,2,0,0,1,2,2v4.06l5.42-3.87A1,1,0,0,1,30,9V23a1,1,0,0,1-1.58.81L23,19.94V24A2,2,0,0,1,21,26Z" }), children);
452
456
  });
453
- if (process.env.NODE_ENV !== "production") VolumeFileStorage.propTypes = require_iconPropTypes.iconPropTypes;
454
- const VolumeMute = react.default.forwardRef(function VolumeMute({ children, size = 16, ...rest }, ref) {
455
- return react.default.createElement(require_Icon_js, {
457
+ if (process.env.NODE_ENV !== "production") VideoFilled.propTypes = require_iconPropTypes.iconPropTypes;
458
+ const VideoOff = /* @__PURE__ */ react.default.forwardRef(function VideoOff({ children, size = 16, ...rest }, ref) {
459
+ return react.default.createElement(require_Icon.Icon, {
456
460
  width: size,
457
461
  height: size,
458
462
  ref,
@@ -460,11 +464,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
460
464
  viewBox: "0 0 32 32",
461
465
  fill: "currentColor",
462
466
  ...rest
463
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 12.41 29.59 11 26 14.59 22.41 11 21 12.41 24.59 16 21 19.59 22.41 21 26 17.41 29.59 21 31 19.59 27.41 16 31 12.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30ZM4,20h6a1.17,1.17,0,0,1,.79.3L17,26.57V5.43L10.79,11.7A1.17,1.17,0,0,1,10,12H4Z" }), children);
467
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.46,8.11a1,1,0,0,0-1,.08L23,12.06V10.44l7-7L28.56,2,2,28.56,3.44,30l4-4H21a2,2,0,0,0,2-2V19.94l5.42,3.87A1,1,0,0,0,30,23V9A1,1,0,0,0,29.46,8.11ZM28,21.06l-5.42-3.87A1,1,0,0,0,21,18v6H9.44L21,12.44V14a1,1,0,0,0,1.58.81L28,10.94Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,24V8H20V6H4A2,2,0,0,0,2,8V24Z" }), children);
464
468
  });
465
- if (process.env.NODE_ENV !== "production") VolumeMute.propTypes = require_iconPropTypes.iconPropTypes;
466
- const VolumeMuteFilled = react.default.forwardRef(function VolumeMuteFilled({ children, size = 16, ...rest }, ref) {
467
- return react.default.createElement(require_Icon_js, {
469
+ if (process.env.NODE_ENV !== "production") VideoOff.propTypes = require_iconPropTypes.iconPropTypes;
470
+ const VideoOffFilled = /* @__PURE__ */ react.default.forwardRef(function VideoOffFilled({ children, size = 16, ...rest }, ref) {
471
+ return react.default.createElement(require_Icon.Icon, {
468
472
  width: size,
469
473
  height: size,
470
474
  ref,
@@ -472,11 +476,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
472
476
  viewBox: "0 0 32 32",
473
477
  fill: "currentColor",
474
478
  ...rest
475
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 12.41 29.59 11 26 14.59 22.41 11 21 12.41 24.59 16 21 19.59 22.41 21 26 17.41 29.59 21 31 19.59 27.41 16 31 12.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30Z" }), children);
479
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.31,6H4A2,2,0,0,0,2,8V24a2.85,2.85,0,0,0,0,.29Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.46,8.11a1,1,0,0,0-1,.08L23,12.06V10.44l7-7L28.56,2,2,28.56,3.44,30l4-4H21a2,2,0,0,0,2-2V19.94l5.42,3.87A1,1,0,0,0,30,23V9A1,1,0,0,0,29.46,8.11Z" }), children);
476
480
  });
477
- if (process.env.NODE_ENV !== "production") VolumeMuteFilled.propTypes = require_iconPropTypes.iconPropTypes;
478
- const VolumeObjectStorage = react.default.forwardRef(function VolumeObjectStorage({ children, size = 16, ...rest }, ref) {
479
- return react.default.createElement(require_Icon_js, {
481
+ if (process.env.NODE_ENV !== "production") VideoOffFilled.propTypes = require_iconPropTypes.iconPropTypes;
482
+ const VideoPlayer = /* @__PURE__ */ react.default.forwardRef(function VideoPlayer({ children, size = 16, ...rest }, ref) {
483
+ return react.default.createElement(require_Icon.Icon, {
480
484
  width: size,
481
485
  height: size,
482
486
  ref,
@@ -484,23 +488,20 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
484
488
  viewBox: "0 0 32 32",
485
489
  fill: "currentColor",
486
490
  ...rest
487
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,24a2.98,2.98,0,0,0-2.0376.8115l-4.0037-2.4023a2.0478,2.0478,0,0,0,0-.8184l4.0037-2.4023a3.2463,3.2463,0,1,0-.9211-1.7793l-4.0037,2.4023a3,3,0,1,0,0,4.377l4.0037,2.4023A2.9729,2.9729,0,0,0,20,27a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0008,1.0008,0,0,1,23,16Zm-9,7a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,14,23Zm9,5a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,23,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,28H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h7.5857A1.9865,1.9865,0,0,1,13,4.5859L16.4143,8H28a2.0023,2.0023,0,0,1,2,2v8H28V10H15.5857l-4-4H4V26H8Z" }), children);
491
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 11 13 21 21 16 13 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,6H4c-1.103,0-2,.8975-2,2v16c0,1.1025.897,2,2,2h24c1.103,0,2-.8975,2-2V8c0-1.1025-.897-2-2-2Zm0,18H4V8h24v16Z" }), children);
488
492
  });
489
- if (process.env.NODE_ENV !== "production") VolumeObjectStorage.propTypes = require_iconPropTypes.iconPropTypes;
490
- const VolumeUp = react.default.forwardRef(function VolumeUp({ children, size = 16, ...rest }, ref) {
491
- return react.default.createElement(require_Icon_js, {
493
+ if (process.env.NODE_ENV !== "production") VideoPlayer.propTypes = require_iconPropTypes.iconPropTypes;
494
+ const View = /* @__PURE__ */ react.default.forwardRef(function View({ children, size = 16, ...rest }, ref) {
495
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
492
496
  width: size,
493
497
  height: size,
494
498
  ref,
495
499
  xmlns: "http://www.w3.org/2000/svg",
496
- viewBox: "0 0 32 32",
500
+ viewBox: "0 0 16 16",
497
501
  fill: "currentColor",
498
502
  ...rest
499
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.16,8.08,25.63,9.37a10,10,0,0,1-.29,13.23L26.81,24a12,12,0,0,0,.35-15.88Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30ZM4,20h6.08a1,1,0,0,1,.71.3L17,26.57V5.43L10.79,11.7a1,1,0,0,1-.71.3H4Z" }), children);
500
- });
501
- if (process.env.NODE_ENV !== "production") VolumeUp.propTypes = require_iconPropTypes.iconPropTypes;
502
- const VolumeUpAlt = react.default.forwardRef(function VolumeUpAlt({ children, size = 16, ...rest }, ref) {
503
- return react.default.createElement(require_Icon_js, {
503
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.5,7.8C14.3,4.7,11.3,2.6,8,2.5C4.7,2.6,1.7,4.7,0.5,7.8c0,0.1,0,0.2,0,0.3c1.2,3.1,4.1,5.2,7.5,5.3 c3.3-0.1,6.3-2.2,7.5-5.3C15.5,8.1,15.5,7.9,15.5,7.8z M8,12.5c-2.7,0-5.4-2-6.5-4.5c1-2.5,3.8-4.5,6.5-4.5s5.4,2,6.5,4.5 C13.4,10.5,10.6,12.5,8,12.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S9.1,10,8,10z" }), children);
504
+ return react.default.createElement(require_Icon.Icon, {
504
505
  width: size,
505
506
  height: size,
506
507
  ref,
@@ -508,11 +509,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
508
509
  viewBox: "0 0 32 32",
509
510
  fill: "currentColor",
510
511
  ...rest
511
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 15 28 15 28 11 26 11 26 15 22 15 22 17 26 17 26 21 28 21 28 17 32 17 32 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30ZM4,20h6a1.2008,1.2008,0,0,1,.7939.2969L17,26.5684V5.4316l-6.2061,6.2715A1.2013,1.2013,0,0,1,10,12H4Z" }), children);
512
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,25c-5.3,0-10.9-3.93-12.93-9C5.1,10.93,10.7,7,16,7s10.9,3.93,12.93,9C26.9,21.07,21.3,25,16,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" }), children);
512
513
  });
513
- if (process.env.NODE_ENV !== "production") VolumeUpAlt.propTypes = require_iconPropTypes.iconPropTypes;
514
- const VolumeUpFilled = react.default.forwardRef(function VolumeUpFilled({ children, size = 16, ...rest }, ref) {
515
- return react.default.createElement(require_Icon_js, {
514
+ if (process.env.NODE_ENV !== "production") View.propTypes = require_iconPropTypes.iconPropTypes;
515
+ const ViewFilled = /* @__PURE__ */ react.default.forwardRef(function ViewFilled({ children, size = 16, ...rest }, ref) {
516
+ return react.default.createElement(require_Icon.Icon, {
516
517
  width: size,
517
518
  height: size,
518
519
  ref,
@@ -520,11 +521,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
520
521
  viewBox: "0 0 32 32",
521
522
  fill: "currentColor",
522
523
  ...rest
523
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.16,8.08,25.63,9.37a10,10,0,0,1-.29,13.23L26.81,24a12,12,0,0,0,.35-15.88Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30Z" }), children);
524
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
525
+ cx: "16",
526
+ cy: "16",
527
+ r: "4"
528
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,22.5A6.5,6.5,0,1,1,22.5,16,6.51,6.51,0,0,1,16,22.5Z" }), children);
524
529
  });
525
- if (process.env.NODE_ENV !== "production") VolumeUpFilled.propTypes = require_iconPropTypes.iconPropTypes;
526
- const VolumeUpFilledAlt = react.default.forwardRef(function VolumeUpFilledAlt({ children, size = 16, ...rest }, ref) {
527
- return react.default.createElement(require_Icon_js, {
530
+ if (process.env.NODE_ENV !== "production") ViewFilled.propTypes = require_iconPropTypes.iconPropTypes;
531
+ const ViewMode_1 = /* @__PURE__ */ react.default.forwardRef(function ViewMode_1({ children, size = 16, ...rest }, ref) {
532
+ return react.default.createElement(require_Icon.Icon, {
528
533
  width: size,
529
534
  height: size,
530
535
  ref,
@@ -532,11 +537,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
532
537
  viewBox: "0 0 32 32",
533
538
  fill: "currentColor",
534
539
  ...rest
535
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 15 28 15 28 11 26 11 26 15 22 15 22 17 26 17 26 21 28 21 28 17 32 17 32 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30Z" }), children);
540
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 19H28V21H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6v6H6V6H26m0-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
536
541
  });
537
- if (process.env.NODE_ENV !== "production") VolumeUpFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
538
- const Vpn = react.default.forwardRef(function Vpn({ children, size = 16, ...rest }, ref) {
539
- return react.default.createElement(require_Icon_js, {
542
+ if (process.env.NODE_ENV !== "production") ViewMode_1.propTypes = require_iconPropTypes.iconPropTypes;
543
+ const ViewMode_2 = /* @__PURE__ */ react.default.forwardRef(function ViewMode_2({ children, size = 16, ...rest }, ref) {
544
+ return react.default.createElement(require_Icon.Icon, {
540
545
  width: size,
541
546
  height: size,
542
547
  ref,
@@ -544,23 +549,20 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
544
549
  viewBox: "0 0 32 32",
545
550
  fill: "currentColor",
546
551
  ...rest
547
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,23H12V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H14Zm0-7h4V11H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 19 24.32 9 22 9 22 23 24 23 24 13 27.68 23 30 23 30 9 28 9 28 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 9 6 22 4 9 2 9 4.52 23 7.48 23 10 9 8 9z" }), children);
552
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 19H28V21H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,6v6H6V6h6m0-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6v6H20V6h6m0-2H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
548
553
  });
549
- if (process.env.NODE_ENV !== "production") Vpn.propTypes = require_iconPropTypes.iconPropTypes;
550
- const VpnConnection = react.default.forwardRef(function VpnConnection({ children, size = 16, ...rest }, ref) {
551
- return react.default.createElement(require_Icon_js, {
554
+ if (process.env.NODE_ENV !== "production") ViewMode_2.propTypes = require_iconPropTypes.iconPropTypes;
555
+ const ViewOff = /* @__PURE__ */ react.default.forwardRef(function ViewOff({ children, size = 16, ...rest }, ref) {
556
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
552
557
  width: size,
553
558
  height: size,
554
559
  ref,
555
560
  xmlns: "http://www.w3.org/2000/svg",
556
- viewBox: "0 0 32 32",
561
+ viewBox: "0 0 16 16",
557
562
  fill: "currentColor",
558
563
  ...rest
559
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,7a1.9919,1.9919,0,0,0-1.7227,1H22A6,6,0,0,0,10,8H5.7227a2,2,0,1,0,0,2H10v4H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2H22V10h4.2773A1.9966,1.9966,0,1,0,28,7ZM12,8a4,4,0,0,1,8,0v6H12V10h5V8Zm12,8V28H8V16Z" }), children);
560
- });
561
- if (process.env.NODE_ENV !== "production") VpnConnection.propTypes = require_iconPropTypes.iconPropTypes;
562
- const VpnPolicy = react.default.forwardRef(function VpnPolicy({ children, size = 16, ...rest }, ref) {
563
- return react.default.createElement(require_Icon_js, {
564
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2.6,11.3l0.7-0.7C2.6,9.8,1.9,9,1.5,8c1-2.5,3.8-4.5,6.5-4.5c0.7,0,1.4,0.1,2,0.4l0.8-0.8C9.9,2.7,9,2.5,8,2.5 C4.7,2.6,1.7,4.7,0.5,7.8c0,0.1,0,0.2,0,0.3C1,9.3,1.7,10.4,2.6,11.3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,7.9c0.1-1,0.9-1.8,1.8-1.8l0.9-0.9C7.2,4.7,5.5,5.6,5.1,7.2C5,7.7,5,8.3,5.1,8.8L6,7.9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.5,7.8c-0.6-1.5-1.6-2.8-2.9-3.7L15,1.7L14.3,1L1,14.3L1.7,15l2.6-2.6c1.1,0.7,2.4,1,3.7,1.1c3.3-0.1,6.3-2.2,7.5-5.3 C15.5,8.1,15.5,7.9,15.5,7.8z M10,8c0,1.1-0.9,2-2,2c-0.3,0-0.7-0.1-1-0.3L9.7,7C9.9,7.3,10,7.6,10,8z M8,12.5c-1,0-2.1-0.3-3-0.8 l1.3-1.3c1.4,0.9,3.2,0.6,4.2-0.8c0.7-1,0.7-2.4,0-3.4l1.4-1.4c1.1,0.8,2,1.9,2.6,3.2C13.4,10.5,10.6,12.5,8,12.5z" }), children);
565
+ return react.default.createElement(require_Icon.Icon, {
564
566
  width: size,
565
567
  height: size,
566
568
  ref,
@@ -568,11 +570,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
568
570
  viewBox: "0 0 32 32",
569
571
  fill: "currentColor",
570
572
  ...rest
571
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15A6,6,0,1,0,20,19.46V29l4-1.8838L28,29V19.46A5.98,5.98,0,0,0,30,15ZM26,25.8477l-2-.9415-2,.9415V20.65a5.8877,5.8877,0,0,0,4,0ZM24,19a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,2A6.0066,6.0066,0,0,0,8,8v6H6a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H17V28H6V16h9V14H10V8a4,4,0,0,1,7.92-.8008l1.96-.3984A6.0167,6.0167,0,0,0,14,2Z" }), children);
573
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.24,22.51l1.43-1.42A14.06,14.06,0,0,1,3.07,16C5.1,10.93,10.7,7,16,7a12.38,12.38,0,0,1,4,.72l1.55-1.56A14.72,14.72,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16,16,0,0,0,5.24,22.51Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,15.73a4,4,0,0,1,3.7-3.7l1.81-1.82a6,6,0,0,0-7.33,7.33Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66A16.4,16.4,0,0,0,25.2,8.22L30,3.41,28.59,2,2,28.59,3.41,30l5.1-5.1A15.29,15.29,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM20,16a4,4,0,0,1-6,3.44L19.44,14A4,4,0,0,1,20,16Zm-4,9a13.05,13.05,0,0,1-6-1.58l2.54-2.54a6,6,0,0,0,8.35-8.35l2.87-2.87A14.54,14.54,0,0,1,28.93,16C26.9,21.07,21.3,25,16,25Z" }), children);
572
574
  });
573
- if (process.env.NODE_ENV !== "production") VpnPolicy.propTypes = require_iconPropTypes.iconPropTypes;
574
- const Wallet = react.default.forwardRef(function Wallet({ children, size = 16, ...rest }, ref) {
575
- return react.default.createElement(require_Icon_js, {
575
+ if (process.env.NODE_ENV !== "production") ViewOff.propTypes = require_iconPropTypes.iconPropTypes;
576
+ const ViewOffFilled = /* @__PURE__ */ react.default.forwardRef(function ViewOffFilled({ children, size = 16, ...rest }, ref) {
577
+ return react.default.createElement(require_Icon.Icon, {
576
578
  width: size,
577
579
  height: size,
578
580
  ref,
@@ -580,20 +582,23 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
580
582
  viewBox: "0 0 32 32",
581
583
  fill: "currentColor",
582
584
  ...rest
583
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 17H24V19H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H4V5H26V3H4A2,2,0,0,0,2,5V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM4,26V10H28v3H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h8v3ZM28,15v6H20V15Z" }), children);
585
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.94,15.66a16.4,16.4,0,0,0-5.73-7.45L30,3.41,28.59,2,2,28.59,3.41,30l5.1-5.09A15.38,15.38,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,22.5a6.46,6.46,0,0,1-3.83-1.26L14,19.43A4,4,0,0,0,19.43,14l1.81-1.81A6.49,6.49,0,0,1,16,22.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.53,21.81l5-5A6.84,6.84,0,0,1,9.5,16,6.51,6.51,0,0,1,16,9.5a6.84,6.84,0,0,1,.79.05l3.78-3.77A14.39,14.39,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A15.86,15.86,0,0,0,4.53,21.81Z" }), children);
584
586
  });
585
- if (process.env.NODE_ENV !== "production") Wallet.propTypes = require_iconPropTypes.iconPropTypes;
586
- const Warning = react.default.forwardRef(function Warning({ children, size = 16, ...rest }, ref) {
587
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
587
+ if (process.env.NODE_ENV !== "production") ViewOffFilled.propTypes = require_iconPropTypes.iconPropTypes;
588
+ const ViewNext = /* @__PURE__ */ react.default.forwardRef(function ViewNext({ children, size = 16, ...rest }, ref) {
589
+ return react.default.createElement(require_Icon.Icon, {
588
590
  width: size,
589
591
  height: size,
590
592
  ref,
591
593
  xmlns: "http://www.w3.org/2000/svg",
592
- viewBox: "0 0 16 16",
594
+ viewBox: "0 0 32 32",
593
595
  fill: "currentColor",
594
596
  ...rest
595
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M8,14c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S11.3,14,8,14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5 4H8.5V9H7.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10.2c-0.4,0-0.8,0.3-0.8,0.8s0.3,0.8,0.8,0.8c0.4,0,0.8-0.3,0.8-0.8S8.4,10.2,8,10.2z" }), children);
596
- return react.default.createElement(require_Icon_js, {
597
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.587 22 15 16.41 15 7 16.998 7 16.998 15.582 22 20.587 20.587 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z" }), children);
598
+ });
599
+ if (process.env.NODE_ENV !== "production") ViewNext.propTypes = require_iconPropTypes.iconPropTypes;
600
+ const VintageMac = /* @__PURE__ */ react.default.forwardRef(function VintageMac({ children, size = 16, ...rest }, ref) {
601
+ return react.default.createElement(require_Icon.Icon, {
597
602
  width: size,
598
603
  height: size,
599
604
  ref,
@@ -601,20 +606,23 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
601
606
  viewBox: "0 0 32 32",
602
607
  fill: "currentColor",
603
608
  ...rest
604
- }, /* @__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: "M15 8H17V19H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,22Z" }), children);
609
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,16h-12V6h12v10ZM12,8v6h8v-6h-8ZM24,4v20H8V4h16M24,2H8c-1.1,0-2,.9-2,2v20c0,1.1.9,2,2,2h16c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM10,18h2v2h-2v-2ZM16,18h6v2h-6v-2ZM9,28h14v2h-14v-2Z" }), children);
605
610
  });
606
- if (process.env.NODE_ENV !== "production") Warning.propTypes = require_iconPropTypes.iconPropTypes;
607
- const WarningAlt = react.default.forwardRef(function WarningAlt({ children, size = 16, ...rest }, ref) {
608
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
611
+ if (process.env.NODE_ENV !== "production") VintageMac.propTypes = require_iconPropTypes.iconPropTypes;
612
+ const VirtualColumn = /* @__PURE__ */ react.default.forwardRef(function VirtualColumn({ children, size = 16, ...rest }, ref) {
613
+ return react.default.createElement(require_Icon.Icon, {
609
614
  width: size,
610
615
  height: size,
611
616
  ref,
612
617
  xmlns: "http://www.w3.org/2000/svg",
613
- viewBox: "0 0 16 16",
618
+ viewBox: "0 0 32 32",
614
619
  fill: "currentColor",
615
620
  ...rest
616
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.5,14h-13c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.3,0-0.5l6.5-12C7.7,1,8,0.9,8.2,1.1c0.1,0,0.2,0.1,0.2,0.2l6.5,12 c0.1,0.2,0.1,0.3,0,0.5C14.9,13.9,14.7,14,14.5,14z M2.3,13h11.3L8,2.5L2.3,13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5 6H8.5V9.5H7.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10.8c-0.4,0-0.8,0.3-0.8,0.8s0.3,0.8,0.8,0.8c0.4,0,0.8-0.3,0.8-0.8S8.4,10.8,8,10.8z" }), children);
617
- return react.default.createElement(require_Icon_js, {
621
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 11 26.414 12.414 23.828 15 30 15 30 17 23.828 17 26.414 19.586 25 21 20 16 25 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28H20a2.0023,2.0023,0,0,1-2-2V6a2.0023,2.0023,0,0,1,2-2H30V6H20V26H30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H2V26H12V6H2V4H12a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,12,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 11 5.586 12.414 8.172 15 2 15 2 17 8.172 17 5.586 19.586 7 21 12 16 7 11z" }), children);
622
+ });
623
+ if (process.env.NODE_ENV !== "production") VirtualColumn.propTypes = require_iconPropTypes.iconPropTypes;
624
+ const VirtualColumnKey = /* @__PURE__ */ react.default.forwardRef(function VirtualColumnKey({ children, size = 16, ...rest }, ref) {
625
+ return react.default.createElement(require_Icon.Icon, {
618
626
  width: size,
619
627
  height: size,
620
628
  ref,
@@ -622,11 +630,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
622
630
  viewBox: "0 0 32 32",
623
631
  fill: "currentColor",
624
632
  ...rest
625
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V21H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z" }), children);
633
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
634
+ cx: "24.5",
635
+ cy: "9.5",
636
+ r: "1.5"
637
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.4143,22H12V16.5857l6.03-6.03A5.3518,5.3518,0,0,1,18,10a6,6,0,1,1,6,6,5.3583,5.3583,0,0,1-.5559-.03ZM14,20h2.5857l6.1706-6.1709.5174.0957A3.935,3.935,0,0,0,24,14a4.0507,4.0507,0,1,0-3.925-3.2729l.0952.5166L14,17.4143Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,18v8H10V6h4V4H4A2.0025,2.0025,0,0,0,2,6V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V18ZM4,6H8V26H4Z" }), children);
626
638
  });
627
- if (process.env.NODE_ENV !== "production") WarningAlt.propTypes = require_iconPropTypes.iconPropTypes;
628
- const WarningAltFilled = react.default.forwardRef(function WarningAltFilled({ children, size = 16, ...rest }, ref) {
629
- return react.default.createElement(require_Icon_js, {
639
+ if (process.env.NODE_ENV !== "production") VirtualColumnKey.propTypes = require_iconPropTypes.iconPropTypes;
640
+ const VirtualDesktop = /* @__PURE__ */ react.default.forwardRef(function VirtualDesktop({ children, size = 16, ...rest }, ref) {
641
+ return react.default.createElement(require_Icon.Icon, {
630
642
  width: size,
631
643
  height: size,
632
644
  ref,
@@ -634,15 +646,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
634
646
  viewBox: "0 0 32 32",
635
647
  fill: "currentColor",
636
648
  ...rest
637
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
638
- fill: "none",
639
- d: "M16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Zm-1.125-5h2.25V12h-2.25Z",
640
- "data-icon-path": "inner-path"
641
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.002,6.1714h-.004L4.6487,27.9966,4.6506,28H27.3494l.0019-.0034ZM14.875,12h2.25v9h-2.25ZM16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z" }), children);
649
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,16H11a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h4v2H12v2h8V28H17V26h4a2.0023,2.0023,0,0,0,2-2V18A2.0023,2.0023,0,0,0,21,16ZM11,24V18H21l.0015,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.8218,10.124a9.9992,9.9992,0,0,0-19.6436,0A7.4914,7.4914,0,0,0,7,24.9746v-2a5.4945,5.4945,0,0,1,.123-10.9541l.8365-.0566.09-.834a7.9979,7.9979,0,0,1,15.9014,0l.09.834.8365.0566A5.4945,5.4945,0,0,1,25,22.9746v2a7.4914,7.4914,0,0,0,.8218-14.8506Z" }), children);
642
650
  });
643
- if (process.env.NODE_ENV !== "production") WarningAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
644
- const WarningAltInverted = react.default.forwardRef(function WarningAltInverted({ children, size = 16, ...rest }, ref) {
645
- return react.default.createElement(require_Icon_js, {
651
+ if (process.env.NODE_ENV !== "production") VirtualDesktop.propTypes = require_iconPropTypes.iconPropTypes;
652
+ const VirtualMachine = /* @__PURE__ */ react.default.forwardRef(function VirtualMachine({ children, size = 16, ...rest }, ref) {
653
+ return react.default.createElement(require_Icon.Icon, {
646
654
  width: size,
647
655
  height: size,
648
656
  ref,
@@ -650,11 +658,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
650
658
  viewBox: "0 0 32 32",
651
659
  fill: "currentColor",
652
660
  ...rest
653
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,17a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H17V15H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.855,2.481a1.001,1.001,0,0,1,.0322.98l-13,25a1,1,0,0,1-1.7744,0l-13-25A1,1,0,0,1,3,2H29A1.0007,1.0007,0,0,1,29.855,2.481ZM4.6487,4.0033,15.998,25.8286h.004L27.3513,4.0033,27.3493,4H4.6507Z" }), children);
661
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,13H12a2.0025,2.0025,0,0,0-2,2V28a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V15A2.0025,2.0025,0,0,0,20,13Zm0,2,0,3H12V15Zm0,5,0,3H12V20Zm-8,8V25h8v3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.91,10.13a.121.121,0,0,1-.0967-.0952A10.0061,10.0061,0,0,0,17.89,2.1816,10.0025,10.0025,0,0,0,6.1858,10.0347a.1212.1212,0,0,1-.0964.0957A7.5019,7.5019,0,0,0,7.4912,25H8V23H7.4954a5.5108,5.5108,0,0,1-5.4387-6.3,5.6992,5.6992,0,0,1,4.7138-4.6606l1.0166-.1836a.1306.1306,0,0,0,.1045-.1035l.18-.9351a8.28,8.28,0,0,1,6.8469-6.7427,7.957,7.957,0,0,1,2.8471.1245,8.22,8.22,0,0,1,6.1475,6.545l.1941,1.0083a.13.13,0,0,0,.1045.1035l1.0576.1914a5.7819,5.7819,0,0,1,3.1011,1.539A5.5052,5.5052,0,0,1,24.5076,23H24v2h.5076A7.5019,7.5019,0,0,0,25.91,10.13Z" }), children);
654
662
  });
655
- if (process.env.NODE_ENV !== "production") WarningAltInverted.propTypes = require_iconPropTypes.iconPropTypes;
656
- const WarningAltInvertedFilled = react.default.forwardRef(function WarningAltInvertedFilled({ children, size = 16, ...rest }, ref) {
657
- return react.default.createElement(require_Icon_js, {
663
+ if (process.env.NODE_ENV !== "production") VirtualMachine.propTypes = require_iconPropTypes.iconPropTypes;
664
+ const VirtualPrivateCloud = /* @__PURE__ */ react.default.forwardRef(function VirtualPrivateCloud({ children, size = 16, ...rest }, ref) {
665
+ return react.default.createElement(require_Icon.Icon, {
658
666
  width: size,
659
667
  height: size,
660
668
  ref,
@@ -662,15 +670,17 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
662
670
  viewBox: "0 0 32 32",
663
671
  fill: "currentColor",
664
672
  ...rest
665
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
666
- fill: "none",
667
- d: "M16,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,20Zm-1.125-5h2.25V6h-2.25Z",
668
- "data-icon-path": "inner-path"
669
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.3494,4H4.6506l-.0019.0034L15.998,25.8286h.004L27.3513,4.0034ZM14.875,6h2.25v9h-2.25ZM16,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.855,2.481a1.001,1.001,0,0,1,.0322.98l-13,25a1,1,0,0,1-1.7744,0l-13-25A1,1,0,0,1,3,2H29A1.0007,1.0007,0,0,1,29.855,2.481ZM4.6487,4.0033,15.998,25.8286h.004L27.3513,4.0033,27.3493,4H4.6507Z" }), children);
673
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20V17a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm-6-3a2,2,0,0,1,4,0v3H14ZM12,28V22h8l.0012,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.8288,10.1152A10.0067,10.0067,0,0,0,17.89,2.1816,10.0025,10.0025,0,0,0,6.17,10.1152,7.502,7.502,0,0,0,7.4912,25H8V23H7.4953a5.5019,5.5019,0,0,1-.9694-10.9165l1.3488-.2441.2591-1.3457a8.0109,8.0109,0,0,1,15.7312,0l.259,1.3457,1.3489.2441A5.5019,5.5019,0,0,1,24.5076,23H24v2h.5076a7.502,7.502,0,0,0,1.3212-14.8848Z" }), children);
670
674
  });
671
- if (process.env.NODE_ENV !== "production") WarningAltInvertedFilled.propTypes = require_iconPropTypes.iconPropTypes;
672
- const WarningDiamond = react.default.forwardRef(function WarningDiamond({ children, size = 16, ...rest }, ref) {
673
- return react.default.createElement(require_Icon_js, {
675
+ if (process.env.NODE_ENV !== "production") VirtualPrivateCloud.propTypes = require_iconPropTypes.iconPropTypes;
676
+ const VirtualPrivateCloudAlt = /* @__PURE__ */ react.default.forwardRef(function VirtualPrivateCloudAlt({ children, size = 16, ...rest }, ref) {
677
+ if (process.env.NODE_ENV !== "production") {
678
+ if (!didWarnAboutDeprecation["VirtualPrivateCloudAlt"]) {
679
+ didWarnAboutDeprecation["VirtualPrivateCloudAlt"] = true;
680
+ console.warn("Icon name was requested by the product team to be renamed to and replaced by ibm-cloud--vpc. As a result, the VirtualPrivateCloudAlt component will be removed in the next major version of @carbon/icons-react.");
681
+ }
682
+ }
683
+ return react.default.createElement(require_Icon.Icon, {
674
684
  width: size,
675
685
  height: size,
676
686
  ref,
@@ -678,51 +688,51 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
678
688
  viewBox: "0 0 32 32",
679
689
  fill: "currentColor",
680
690
  ...rest
681
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,20c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 9H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,30c-.5335,0-1.0672-.2031-1.4732-.6094L2.6094,17.4732c-.8126-.8123-.8126-2.1342,0-2.9465L14.5268,2.6094c.8121-.8126,2.1344-.8126,2.9465,0l11.9173,11.9173c.8126.8123.8126,2.1342,0,2.9465l-11.9173,11.9173c-.406.4063-.9398.6094-1.4732.6094Zm0-26.0008c-.0215,0-.0427.0083-.0591.0244L4.0236,15.9409c-.0325.0327-.0325.0855,0,.1182l11.9173,11.9173c.0327.0322.0855.0322.1182,0l11.9173-11.9173c.0325-.0327.0325-.0855,0-.1182l-11.9173-11.9173c-.0164-.0161-.0376-.0244-.0591-.0244Z" }), children);
691
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.4141,22,10,8.5859V2H2v8H8.5859L22,23.4141V30h8V22ZM8,8H4V4H8ZM28,28H24V24h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,6a3.9915,3.9915,0,0,0-7.8579-1H13V7h9.1421A3.9945,3.9945,0,0,0,25,9.8579V19h2V9.8579A3.9962,3.9962,0,0,0,30,6ZM26,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,25H9.8579A3.9945,3.9945,0,0,0,7,22.1421V13H5v9.1421A3.9915,3.9915,0,1,0,9.8579,27H19ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z" }), children);
682
692
  });
683
- if (process.env.NODE_ENV !== "production") WarningDiamond.propTypes = require_iconPropTypes.iconPropTypes;
684
- const WarningFilled = react.default.forwardRef(function WarningFilled({ children, size = 16, ...rest }, ref) {
685
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
693
+ if (process.env.NODE_ENV !== "production") VirtualPrivateCloudAlt.propTypes = require_iconPropTypes.iconPropTypes;
694
+ const VisualInspection = /* @__PURE__ */ react.default.forwardRef(function VisualInspection({ children, size = 16, ...rest }, ref) {
695
+ return react.default.createElement(require_Icon.Icon, {
686
696
  width: size,
687
697
  height: size,
688
698
  ref,
689
699
  xmlns: "http://www.w3.org/2000/svg",
690
- viewBox: "0 0 16 16",
700
+ viewBox: "0 0 32 32",
691
701
  fill: "currentColor",
692
702
  ...rest
693
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.2,1,1,4.2,1,8s3.2,7,7,7s7-3.1,7-7S11.9,1,8,1z M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2 c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
694
- d: "M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8 c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z",
695
- "data-icon-path": "inner-path",
696
- opacity: "0"
697
- }), children);
698
- if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon_js, {
703
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,24.5859l-5.1147-5.1147c.9407-1.3201,1.3683-3.0299.9602-4.8428-.4971-2.2083-2.2783-3.9913-4.4888-4.4786-4.3566-.9604-8.1675,2.8505-7.207,7.2071.4873,2.2105,2.2703,3.9918,4.4787,4.4888,1.8129.408,3.5228-.0197,4.8429-.9605l5.1147,5.1147,1.4141-1.4141h0ZM17.0848,19.8568c-3.0406.805-5.7481-1.9051-4.9404-4.9449.3548-1.3352,1.4352-2.4146,2.7707-2.7682,3.0406-.805,5.7481,1.9051,4.9404,4.9449-.3548,1.3352-1.4352,2.4146-2.7707,2.7682ZM29.0663,16.3569l-.0654-.1709c-1.9897-5.2383-7.5781-9.1865-13.0005-9.1865s-11.0107,3.9482-12.9995,9.1841l-.0664.1733c-.1978.5166-.7764.7739-1.2915.5767-.5161-.1978-.7739-.7759-.5767-1.2915l.0654-.1709c2.2671-5.9688,8.6597-10.4717,14.8687-10.4717s12.6016,4.5029,14.8696,10.4741l.0645.1685M16.0004,27c-6.2088-.0002-12.6006-4.5031-14.8691-10.4741l-.064-.166c-.1987-.5151.0581-1.0942.5732-1.293.5146-.1982,1.0938.0576,1.293.5732l.0659.1709c1.9907,5.2405,7.5788,9.1887,13.001,9.189v2Z" }), children);
704
+ });
705
+ if (process.env.NODE_ENV !== "production") VisualInspection.propTypes = require_iconPropTypes.iconPropTypes;
706
+ const VisualRecognition = /* @__PURE__ */ react.default.forwardRef(function VisualRecognition({ children, size = 16, ...rest }, ref) {
707
+ return react.default.createElement(require_Icon.Icon, {
699
708
  width: size,
700
709
  height: size,
701
710
  ref,
702
711
  xmlns: "http://www.w3.org/2000/svg",
703
- viewBox: "0 0 20 20",
712
+ viewBox: "0 0 32 32",
704
713
  fill: "currentColor",
705
714
  ...rest
706
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M9.2,5h1.5v7H9.2V5z M10,16c-0.6,0-1-0.4-1-1s0.4-1,1-1 s1,0.4,1,1S10.6,16,10,16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
707
- d: "M9.2,5h1.5v7H9.2V5z M10,16c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S10.6,16,10,16z",
708
- "data-icon-path": "inner-path",
709
- opacity: "0"
710
- }), children);
711
- if (size === 24 || size === "24" || size === "24px") return react.default.createElement(require_Icon_js, {
715
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
716
+ cx: "23",
717
+ cy: "12",
718
+ r: "2"
719
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,5H16.24A8,8,0,1,0,6,16.92V27a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V7A2,2,0,0,0,28,5ZM4,10A6,6,0,0,1,15.19,7H8V9h7.91A6.64,6.64,0,0,1,16,10a6.64,6.64,0,0,1-.09,1H10v2h5.19A6,6,0,0,1,4,10ZM28,27H8l5-5,1.59,1.59a2,2,0,0,0,2.82,0L23,18l5,5Zm0-6.83-3.59-3.59a2,2,0,0,0-2.82,0L16,22.17l-1.59-1.59a2,2,0,0,0-2.82,0L8,24.17V17.74A8.24,8.24,0,0,0,10,18a8,8,0,0,0,8-8,7.9,7.9,0,0,0-.59-3H28Z" }), children);
720
+ });
721
+ if (process.env.NODE_ENV !== "production") VisualRecognition.propTypes = require_iconPropTypes.iconPropTypes;
722
+ const Vlan = /* @__PURE__ */ react.default.forwardRef(function Vlan({ children, size = 16, ...rest }, ref) {
723
+ return react.default.createElement(require_Icon.Icon, {
712
724
  width: size,
713
725
  height: size,
714
726
  ref,
715
727
  xmlns: "http://www.w3.org/2000/svg",
716
- viewBox: "0 0 24 24",
728
+ viewBox: "0 0 32 32",
717
729
  fill: "currentColor",
718
730
  ...rest
719
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11C23,5.9,18.1,1,12,1z M11.1,6h1.8v8h-1.8V6z M12,19.2 c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S12.7,19.2,12,19.2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
720
- fill: "none",
721
- d: "M13.2,18c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2S13.2,17.3,13.2,18z M12.9,6 h-1.8v8h1.8V6z",
722
- "data-icon-path": "inner-path",
723
- opacity: "0"
724
- }), children);
725
- return react.default.createElement(require_Icon_js, {
731
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,17V15H17V11h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H13a2.0023,2.0023,0,0,0-2,2V9a2.0023,2.0023,0,0,0,2,2h2v4H2v2H8v4H6a2.0023,2.0023,0,0,0-2,2v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V23a2.0023,2.0023,0,0,0-2-2H10V17H22v4H20a2.0023,2.0023,0,0,0-2,2v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V23a2.0023,2.0023,0,0,0-2-2H24V17ZM13,4h6V9H13ZM12,28H6V23h6Zm14,0H20V23h6Z" }), children);
732
+ });
733
+ if (process.env.NODE_ENV !== "production") Vlan.propTypes = require_iconPropTypes.iconPropTypes;
734
+ const VlanIbm = /* @__PURE__ */ react.default.forwardRef(function VlanIbm({ children, size = 16, ...rest }, ref) {
735
+ return react.default.createElement(require_Icon.Icon, {
726
736
  width: size,
727
737
  height: size,
728
738
  ref,
@@ -730,16 +740,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
730
740
  viewBox: "0 0 32 32",
731
741
  fill: "currentColor",
732
742
  ...rest
733
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14C30,8.3,23.7,2,16,2z M14.9,8h2.2v11h-2.2V8z M16,25 c-0.8,0-1.5-0.7-1.5-1.5S15.2,22,16,22c0.8,0,1.5,0.7,1.5,1.5S16.8,25,16,25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
734
- fill: "none",
735
- d: "M17.5,23.5c0,0.8-0.7,1.5-1.5,1.5c-0.8,0-1.5-0.7-1.5-1.5S15.2,22,16,22 C16.8,22,17.5,22.7,17.5,23.5z M17.1,8h-2.2v11h2.2V8z",
736
- "data-icon-path": "inner-path",
737
- opacity: "0"
743
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,22Zm0,6a2,2,0,1,1,2-2A2.002,2.002,0,0,1,16,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,5a3,3,0,1,0-4,2.8154V15H17V9H15v6H6V7.8159a3.0007,3.0007,0,1,0-2,0V15a2.002,2.002,0,0,0,2,2h9v3h2V17h9a2.002,2.002,0,0,0,2-2V7.8159A2.9958,2.9958,0,0,0,30,5ZM5,4A1,1,0,1,1,4,5,1.0013,1.0013,0,0,1,5,4ZM27,6a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,27,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
744
+ cx: "16",
745
+ cy: "5",
746
+ r: "2"
738
747
  }), children);
739
748
  });
740
- if (process.env.NODE_ENV !== "production") WarningFilled.propTypes = require_iconPropTypes.iconPropTypes;
741
- const WarningHex = react.default.forwardRef(function WarningHex({ children, size = 16, ...rest }, ref) {
742
- return react.default.createElement(require_Icon_js, {
749
+ if (process.env.NODE_ENV !== "production") VlanIbm.propTypes = require_iconPropTypes.iconPropTypes;
750
+ const VmdkDisk = /* @__PURE__ */ react.default.forwardRef(function VmdkDisk({ children, size = 16, ...rest }, ref) {
751
+ return react.default.createElement(require_Icon.Icon, {
743
752
  width: size,
744
753
  height: size,
745
754
  ref,
@@ -747,11 +756,22 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
747
756
  viewBox: "0 0 32 32",
748
757
  fill: "currentColor",
749
758
  ...rest
750
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 8H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,29H9a1,1,0,0,1-.8638-.4961l-7-12a1,1,0,0,1,0-1.0078l7-12A1,1,0,0,1,9,3H23a1,1,0,0,1,.8638.4961l7,12a1,1,0,0,1,0,1.0078l-7,12A1,1,0,0,1,23,29ZM9.5742,27H22.4258l6.4165-11L22.4258,5H9.5742L3.1577,16Z" }), children);
759
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
760
+ cx: "10.5",
761
+ cy: "24.5",
762
+ r: "1.5"
763
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
764
+ d: "M19.5 14.964H21.5V20.035H19.5z",
765
+ transform: "rotate(-45 20.5 17.5)"
766
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
767
+ cx: "16",
768
+ cy: "13",
769
+ r: "2"
770
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6a7,7,0,0,0,0,14V18a5,5,0,1,1,5-5h2A7,7,0,0,0,16,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4A2,2,0,0,0,26,2Zm0,26H6V4H26Z" }), children);
751
771
  });
752
- if (process.env.NODE_ENV !== "production") WarningHex.propTypes = require_iconPropTypes.iconPropTypes;
753
- const WarningHexFilled = react.default.forwardRef(function WarningHexFilled({ children, size = 16, ...rest }, ref) {
754
- return react.default.createElement(require_Icon_js, {
772
+ if (process.env.NODE_ENV !== "production") VmdkDisk.propTypes = require_iconPropTypes.iconPropTypes;
773
+ const VoiceActivate = /* @__PURE__ */ react.default.forwardRef(function VoiceActivate({ children, size = 16, ...rest }, ref) {
774
+ return react.default.createElement(require_Icon.Icon, {
755
775
  width: size,
756
776
  height: size,
757
777
  ref,
@@ -759,15 +779,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
759
779
  viewBox: "0 0 32 32",
760
780
  fill: "currentColor",
761
781
  ...rest
762
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
763
- fill: "none",
764
- d: "M14.875,8h2.25V19h-2.25ZM16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Z",
765
- "data-icon-path": "inner-path"
766
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.8508,15.4487,23.8867,3.5322A1.0687,1.0687,0,0,0,22.9643,3H9.0357a1.0687,1.0687,0,0,0-.9224.5322L1.1492,15.4487a1.0933,1.0933,0,0,0,0,1.1026L8.1133,28.4678A1.0687,1.0687,0,0,0,9.0357,29H22.9643a1.0687,1.0687,0,0,0,.9224-.5322l6.9641-11.9165A1.0933,1.0933,0,0,0,30.8508,15.4487ZM14.875,8h2.25V19h-2.25ZM16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Z" }), children);
782
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V27H20a5.0055,5.0055,0,0,1-5-5V20.7207l-2.3162-.772a1,1,0,0,1-.5412-1.4631L15,13.7229V11a9.01,9.01,0,0,1,9-9h5V4H24a7.0078,7.0078,0,0,0-7,7v3a.9991.9991,0,0,1-.1426.5144l-2.3586,3.9312,1.8174.6057A1,1,0,0,1,17,20v2a3.0033,3.0033,0,0,0,3,3h5a1,1,0,0,1,1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 12H23V14H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.3325,25.2168a7.0007,7.0007,0,0,1,0-10.4341l1.334,1.49a5,5,0,0,0,0,7.4537Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.3994,28.8008a11.0019,11.0019,0,0,1,0-17.6006L7.6,12.8a9.0009,9.0009,0,0,0,0,14.4014Z" }), children);
767
783
  });
768
- if (process.env.NODE_ENV !== "production") WarningHexFilled.propTypes = require_iconPropTypes.iconPropTypes;
769
- const WarningMultiple = react.default.forwardRef(function WarningMultiple({ children, size = 16, ...rest }, ref) {
770
- return react.default.createElement(require_Icon_js, {
784
+ if (process.env.NODE_ENV !== "production") VoiceActivate.propTypes = require_iconPropTypes.iconPropTypes;
785
+ const VoiceMode = /* @__PURE__ */ react.default.forwardRef(function VoiceMode({ children, size = 16, ...rest }, ref) {
786
+ return react.default.createElement(require_Icon.Icon, {
771
787
  width: size,
772
788
  height: size,
773
789
  ref,
@@ -775,15 +791,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
775
791
  viewBox: "0 0 32 32",
776
792
  fill: "currentColor",
777
793
  ...rest
778
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29,23h-4v-2h2.3821l-7.8821-15.7639-1.1055,2.2112-1.7891-.8945,2-4c.1694-.3387.532-.5527.8945-.5527s.7251.214.8945.5527l9.5,19c.1548.3101.1384.6782-.0439.973-.1821.2948-.5039.4742-.8506.4742Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
779
- cx: "14",
780
- cy: "25",
781
- r: "1.25"
782
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 15H15V22H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m25,30H3c-.3499,0-.6743-.1829-.8555-.4823s-.1926-.6718-.0303-.9817L13.1143,7.536c.1726-.3296.5292-.536.8857-.536s.7131.2064.8857.536l11,21c.1624.3099.1509.6823-.0303.9817s-.5056.4823-.8555.4823Zm-20.3474-2h18.6948L14,10.1552,4.6526,28Z" }), children);
794
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,29h-2V3h2v26ZM23,6h-2v20h2V6ZM11,6h-2v20h2V6ZM5,11h-2v10h2v-10ZM29,11h-2v10h2.0031s-.0031-10-.0031-10Z" }), children);
783
795
  });
784
- if (process.env.NODE_ENV !== "production") WarningMultiple.propTypes = require_iconPropTypes.iconPropTypes;
785
- const WarningOther = react.default.forwardRef(function WarningOther({ children, size = 16, ...rest }, ref) {
786
- return react.default.createElement(require_Icon_js, {
796
+ if (process.env.NODE_ENV !== "production") VoiceMode.propTypes = require_iconPropTypes.iconPropTypes;
797
+ const Voicemail = /* @__PURE__ */ react.default.forwardRef(function Voicemail({ children, size = 16, ...rest }, ref) {
798
+ return react.default.createElement(require_Icon.Icon, {
787
799
  width: size,
788
800
  height: size,
789
801
  ref,
@@ -791,11 +803,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
791
803
  viewBox: "0 0 32 32",
792
804
  fill: "currentColor",
793
805
  ...rest
794
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 20H30V22H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 24H30V26H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 28H30V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,18a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,14,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 7H15V16H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,4A10.0111,10.0111,0,0,1,24,14h2A12,12,0,1,0,14,26V24A10,10,0,0,1,14,4Z" }), children);
806
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10a6,6,0,0,0-4.46,10H12.46A6,6,0,1,0,8,22H24a6,6,0,0,0,0-12ZM4,16a4,4,0,1,1,4,4A4,4,0,0,1,4,16Zm20,4a4,4,0,1,1,4-4A4,4,0,0,1,24,20Z" }), children);
795
807
  });
796
- if (process.env.NODE_ENV !== "production") WarningOther.propTypes = require_iconPropTypes.iconPropTypes;
797
- const WarningSquare = react.default.forwardRef(function WarningSquare({ children, size = 16, ...rest }, ref) {
798
- return react.default.createElement(require_Icon_js, {
808
+ if (process.env.NODE_ENV !== "production") Voicemail.propTypes = require_iconPropTypes.iconPropTypes;
809
+ const VolumeBlockStorage = /* @__PURE__ */ react.default.forwardRef(function VolumeBlockStorage({ children, size = 16, ...rest }, ref) {
810
+ return react.default.createElement(require_Icon.Icon, {
799
811
  width: size,
800
812
  height: size,
801
813
  ref,
@@ -803,11 +815,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
803
815
  viewBox: "0 0 32 32",
804
816
  fill: "currentColor",
805
817
  ...rest
806
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,20a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 9H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z" }), children);
818
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,21H10V14h7Zm-5-2h3V16H12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30H10V23h7Zm-5-2h3V25H12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,21H19V14h7Zm-5-2h3V16H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H19V23h7Zm-5-2h3V25H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,28H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h7.5857A1.9865,1.9865,0,0,1,13,4.5859L16.4143,8H28a2.0023,2.0023,0,0,1,2,2v8H28V10H15.5857l-4-4H4V26H8Z" }), children);
807
819
  });
808
- if (process.env.NODE_ENV !== "production") WarningSquare.propTypes = require_iconPropTypes.iconPropTypes;
809
- const WarningSquareFilled = react.default.forwardRef(function WarningSquareFilled({ children, size = 16, ...rest }, ref) {
810
- return react.default.createElement(require_Icon_js, {
820
+ if (process.env.NODE_ENV !== "production") VolumeBlockStorage.propTypes = require_iconPropTypes.iconPropTypes;
821
+ const VolumeDown = /* @__PURE__ */ react.default.forwardRef(function VolumeDown({ children, size = 16, ...rest }, ref) {
822
+ return react.default.createElement(require_Icon.Icon, {
811
823
  width: size,
812
824
  height: size,
813
825
  ref,
@@ -815,15 +827,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
815
827
  viewBox: "0 0 32 32",
816
828
  fill: "currentColor",
817
829
  ...rest
818
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.0022,4H5.998A1.998,1.998,0,0,0,4,5.998V26.002A1.998,1.998,0,0,0,5.998,28H26.0022A1.9979,1.9979,0,0,0,28,26.002V5.998A1.9979,1.9979,0,0,0,26.0022,4ZM14.8752,8h2.25V18h-2.25ZM16,24a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
819
- fill: "none",
820
- d: "M14.8751,8h2.25V18h-2.25ZM16,24a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,24Z",
821
- "data-icon-path": "inner-path"
822
- }), children);
830
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.1,10.66,23.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30a1,1,0,0,1-.71-.3L11.67,22H5a1,1,0,0,1-1-1H4V11a1,1,0,0,1,1-1h6.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,21,3V29A1,1,0,0,1,20,30ZM6,20h6a1.17,1.17,0,0,1,.79.3L19,26.57V5.43L12.79,11.7A1.17,1.17,0,0,1,12,12H6Z" }), children);
823
831
  });
824
- if (process.env.NODE_ENV !== "production") WarningSquareFilled.propTypes = require_iconPropTypes.iconPropTypes;
825
- const Watch = react.default.forwardRef(function Watch({ children, size = 16, ...rest }, ref) {
826
- return react.default.createElement(require_Icon_js, {
832
+ if (process.env.NODE_ENV !== "production") VolumeDown.propTypes = require_iconPropTypes.iconPropTypes;
833
+ const VolumeDownAlt = /* @__PURE__ */ react.default.forwardRef(function VolumeDownAlt({ children, size = 16, ...rest }, ref) {
834
+ return react.default.createElement(require_Icon.Icon, {
827
835
  width: size,
828
836
  height: size,
829
837
  ref,
@@ -831,17 +839,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
831
839
  viewBox: "0 0 32 32",
832
840
  fill: "currentColor",
833
841
  ...rest
834
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h1v6h2V24h6v6h2V24h1a2,2,0,0,0,2-2V10A2,2,0,0,0,22,8ZM10,22V10H22V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 14H27V18H25z" }), children);
842
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 15H32V17H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30ZM4,20h6a1.2008,1.2008,0,0,1,.7939.2969L17,26.5684V5.4316l-6.2061,6.2715A1.2013,1.2013,0,0,1,10,12H4Z" }), children);
835
843
  });
836
- if (process.env.NODE_ENV !== "production") Watch.propTypes = require_iconPropTypes.iconPropTypes;
837
- const Watson = react.default.forwardRef(function Watson({ children, size = 16, ...rest }, ref) {
838
- if (process.env.NODE_ENV !== "production") {
839
- if (!didWarnAboutDeprecation["Watson"]) {
840
- didWarnAboutDeprecation["Watson"] = true;
841
- console.warn("Icon represents the old avatar for the Watson brand, which is retired since the watsonx brand launch. Replaced by the icon watsonx. As a result, the Watson component will be removed in the next major version of @carbon/icons-react.");
842
- }
843
- }
844
- return react.default.createElement(require_Icon_js, {
844
+ if (process.env.NODE_ENV !== "production") VolumeDownAlt.propTypes = require_iconPropTypes.iconPropTypes;
845
+ const VolumeDownFilled = /* @__PURE__ */ react.default.forwardRef(function VolumeDownFilled({ children, size = 16, ...rest }, ref) {
846
+ return react.default.createElement(require_Icon.Icon, {
845
847
  width: size,
846
848
  height: size,
847
849
  ref,
@@ -849,17 +851,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
849
851
  viewBox: "0 0 32 32",
850
852
  fill: "currentColor",
851
853
  ...rest
852
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.74,9.49h0A11.41,11.41,0,0,0,16,8h0a.76.76,0,1,0,0,1.51,10.15,10.15,0,0,1,1.91.21c-2.26,1.08-4.76,3.58-6.73,7a22.48,22.48,0,0,0-2,4.44A9.58,9.58,0,0,1,7,17.22a3.43,3.43,0,0,1,.28-2.66v0h0c.79-1.37,2.44-2.15,4.63-2.2a.76.76,0,0,0,.74-.78.75.75,0,0,0-.78-.74C9.19,10.88,7.1,11.92,6,13.74H6v0s0,0,0,0a4.84,4.84,0,0,0-.44,3.79,12,12,0,0,0,3.2,5.22A11.36,11.36,0,0,0,8.52,26a10,10,0,0,1-2-3.48A.75.75,0,0,0,5.57,22a.76.76,0,0,0-.49,1,11.45,11.45,0,0,0,5.18,6.38h0A11.42,11.42,0,0,0,16,30.92a11.74,11.74,0,0,0,3-.39,11.48,11.48,0,0,0,2.77-21ZM18.58,29.06a9.9,9.9,0,0,1-7.56-1h0c-.86-.49-1.21-2-.94-4a18.85,18.85,0,0,0,2.48,1.72,13.92,13.92,0,0,0,6.93,2,11,11,0,0,0,2.42-.28A9.78,9.78,0,0,1,18.58,29.06Zm6.06-4.66c-2,2-6.66,2.74-11.32.05a17.36,17.36,0,0,1-2.89-2.12,21.08,21.08,0,0,1,2.08-4.91c2.94-5.08,6.83-7.57,8.47-6.62h0A10,10,0,0,1,24.64,24.4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.16,11.72,1.14,10a.76.76,0,1,0-.76,1.31L3.4,13a.86.86,0,0,0,.38.1.77.77,0,0,0,.66-.38A.76.76,0,0,0,4.16,11.72Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.29,7.59A.74.74,0,0,0,8.94,8a.75.75,0,0,0,.38-.1.76.76,0,0,0,.28-1l-1.74-3a.76.76,0,0,0-1-.27.75.75,0,0,0-.28,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6.08a.76.76,0,0,0,.76-.76V1.83a.76.76,0,0,0-1.52,0V5.32A.76.76,0,0,0,16,6.08Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.68,7.87a.75.75,0,0,0,1-.28l1.75-3a.75.75,0,0,0-.28-1,.76.76,0,0,0-1,.27l-1.74,3A.76.76,0,0,0,22.68,7.87Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.9,10.25a.76.76,0,0,0-1-.27l-3,1.74a.76.76,0,0,0-.28,1,.77.77,0,0,0,.66.38.86.86,0,0,0,.38-.1l3-1.75A.76.76,0,0,0,31.9,10.25Z" }), children);
854
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.1,10.66,23.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,30a1,1,0,0,1-.71-.3L11.67,22H5a1,1,0,0,1-1-1H4V11a1,1,0,0,1,1-1h6.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,21,3V29A1,1,0,0,1,20,30Z" }), children);
853
855
  });
854
- if (process.env.NODE_ENV !== "production") Watson.propTypes = require_iconPropTypes.iconPropTypes;
855
- const WatsonMachineLearning = react.default.forwardRef(function WatsonMachineLearning({ children, size = 16, ...rest }, ref) {
856
- if (process.env.NODE_ENV !== "production") {
857
- if (!didWarnAboutDeprecation["WatsonMachineLearning"]) {
858
- didWarnAboutDeprecation["WatsonMachineLearning"] = true;
859
- console.warn("Icon design is defunct, replaced with the existing icon ibm-watson--machine-learning. As a result, the WatsonMachineLearning component will be removed in the next major version of @carbon/icons-react.");
860
- }
861
- }
862
- return react.default.createElement(require_Icon_js, {
856
+ if (process.env.NODE_ENV !== "production") VolumeDownFilled.propTypes = require_iconPropTypes.iconPropTypes;
857
+ const VolumeDownFilledAlt = /* @__PURE__ */ react.default.forwardRef(function VolumeDownFilledAlt({ children, size = 16, ...rest }, ref) {
858
+ return react.default.createElement(require_Icon.Icon, {
863
859
  width: size,
864
860
  height: size,
865
861
  ref,
@@ -867,11 +863,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
867
863
  viewBox: "0 0 32 32",
868
864
  fill: "currentColor",
869
865
  ...rest
870
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,26H20V17.76l-3.23,3.88a1,1,0,0,1-1.54,0L12,17.76V26H10V15a1,1,0,0,1,.66-.94,1,1,0,0,1,1.11.3L16,19.44l4.23-5.08a1,1,0,0,1,1.11-.3A1,1,0,0,1,22,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.16,14.65l-3-1.75a.76.76,0,1,0-.76,1.32L3.4,16a.76.76,0,1,0,.76-1.31Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.29,10.52a.73.73,0,0,0,1,.27.75.75,0,0,0,.28-1l-1.74-3a.76.76,0,1,0-1.32.76Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,9a.76.76,0,0,0,.76-.76V4.76a.76.76,0,1,0-1.52,0V8.25A.76.76,0,0,0,16,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.68,10.79a.75.75,0,0,0,.37.11.76.76,0,0,0,.66-.38l1.75-3a.76.76,0,0,0-1.32-.76l-1.74,3A.75.75,0,0,0,22.68,10.79Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.9,13.18a.76.76,0,0,0-1-.28l-3,1.75A.76.76,0,0,0,28.6,16l3-1.74A.77.77,0,0,0,31.9,13.18Z" }), children);
866
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 15H32V17H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30Z" }), children);
871
867
  });
872
- if (process.env.NODE_ENV !== "production") WatsonMachineLearning.propTypes = require_iconPropTypes.iconPropTypes;
873
- const Watsonx = react.default.forwardRef(function Watsonx({ children, size = 16, ...rest }, ref) {
874
- return react.default.createElement(require_Icon_js, {
868
+ if (process.env.NODE_ENV !== "production") VolumeDownFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
869
+ const VolumeFileStorage = /* @__PURE__ */ react.default.forwardRef(function VolumeFileStorage({ children, size = 16, ...rest }, ref) {
870
+ return react.default.createElement(require_Icon.Icon, {
875
871
  width: size,
876
872
  height: size,
877
873
  ref,
@@ -879,14 +875,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
879
875
  viewBox: "0 0 32 32",
880
876
  fill: "currentColor",
881
877
  ...rest
882
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
883
- strokeWidth: "0",
884
- d: "m29.312,22.9189c1.1042-2.1201,1.688-4.5127,1.688-6.9189C31,7.729,24.271,1,16,1c-3.3738,0-6.5815,1.1191-9.2046,3.1665-.2441-.106-.5125-.1665-.7954-.1665-1.1045,0-2,.8955-2,2s.8955,2,2,2,2-.8955,2-2c0-.0762-.0142-.1489-.0225-.2227,2.2812-1.7964,5.0793-2.7773,8.0225-2.7773.9727,0,1.9172.1157,2.8293.3193-3.3938.9258-5.8994,4.0273-5.8994,7.7109,0,.7891.1167,1.5503.332,2.27-.6985-.2021-1.4285-.3306-2.1919-.3306-3.7039,0-6.8191,2.5342-7.7256,5.957-.218-.9424-.3445-1.9189-.3445-2.9268,0-2.1162.4919-4.1328,1.4619-5.9951l-1.7739-.9238c-1.1042,2.1201-1.688,4.5127-1.688,6.9189,0,8.271,6.729,15,15,15,3.3738,0,6.5815-1.1191,9.2046-3.1665.2441.106.5125.1665.7954.1665,1.1045,0,2-.8955,2-2s-.8955-2-2-2-2,.8955-2,2c0,.0762.0142.1489.0225.2231-1.0796.8496-2.2776,1.5098-3.5493,1.9771.3315-.6641.5269-1.4072.5269-2.2002,0-1.6304-.7959-3.0669-2.0068-3.9805.0457-.3472.0769-.6978.0769-1.0498,0-.7856-.1257-1.54-.3381-2.2573.6995.2012,1.4346.3179,2.198.3179,3.7039,0,6.8191-2.5342,7.7256-5.957.218.9424.3445,1.9189.3445,2.9268,0,2.1162-.4919,4.1328-1.4619,5.9951l1.7739.9238Zm-17.7935,5.2646c-1.8389-.6807-3.49-1.7529-4.8325-3.1338-1.0366-1.1143-1.616-2.5527-1.616-4.0801,0-3.3081,2.6917-6,6-6s6,2.6919,6,6c0,.0498-.0125.0977-.0134.1475-.3413-.0737-.6936-.1172-1.0566-.1172-2.7571,0-5,2.2432-5,5,0,.7861.1924,1.5234.5186,2.1836Zm7.4814-2.1836c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Zm1.9299-8.9697c-3.3083,0-6-2.6919-6-6s2.6917-6,6-6c1.4294,0,2.7422.5039,3.7742,1.3418.3027.2739.5918.561.8677.8618.8479,1.0352,1.3582,2.3569,1.3582,3.7964,0,3.3081-2.6917,6-6,6Z"
885
- }), children);
878
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.707,17.293l-5-5A1,1,0,0,0,20,12H14a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V18A1,1,0,0,0,25.707,17.293ZM23.5857,18H20V14.4141ZM14,28V14h4v4a2,2,0,0,0,2,2h4v8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,27H4a2.0023,2.0023,0,0,1-2-2V5A2.0023,2.0023,0,0,1,4,3h7.5857A1.9865,1.9865,0,0,1,13,3.5859L16.4143,7H28a2.0023,2.0023,0,0,1,2,2v8H28V9H15.5857l-4-4H4V25H8Z" }), children);
886
879
  });
887
- if (process.env.NODE_ENV !== "production") Watsonx.propTypes = require_iconPropTypes.iconPropTypes;
888
- const WatsonxAi = react.default.forwardRef(function WatsonxAi({ children, size = 16, ...rest }, ref) {
889
- return react.default.createElement(require_Icon_js, {
880
+ if (process.env.NODE_ENV !== "production") VolumeFileStorage.propTypes = require_iconPropTypes.iconPropTypes;
881
+ const VolumeMute = /* @__PURE__ */ react.default.forwardRef(function VolumeMute({ children, size = 16, ...rest }, ref) {
882
+ return react.default.createElement(require_Icon.Icon, {
890
883
  width: size,
891
884
  height: size,
892
885
  ref,
@@ -894,17 +887,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
894
887
  viewBox: "0 0 32 32",
895
888
  fill: "currentColor",
896
889
  ...rest
897
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m26,24c-1.1046,0-2,.8954-2,2,0,.0764.0142.1488.0225.2229-2.2808,1.7963-5.0792,2.7771-8.0225,2.7771-4.2617,0-8-3.9722-8-8.5,0-4.687,3.813-8.5,8.5-8.5h.5v-2h-.5c-5.7896,0-10.5,4.7104-10.5,10.5,0,1.8839.5304,3.6896,1.4371,5.2565-2.7133-2.3843-4.4371-5.869-4.4371-9.7565,0-2.1152.4917-4.1328,1.4619-5.9956l-1.7744-.9238c-1.104,2.1211-1.6875,4.5137-1.6875,6.9194,0,8.271,6.729,15,15,15,3.3744,0,6.5818-1.1193,9.2048-3.1662.244.106.5123.1662.7952.1662,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
898
- d: "M11 20H13V22H11z",
899
- transform: "rotate(90 12 21)"
900
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
901
- d: "M19 10H21V12H19z",
902
- transform: "rotate(90 20 11)"
903
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-3.3744,0-6.5818,1.1193-9.2048,3.1662-.244-.106-.5123-.1662-.7952-.1662-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2c0-.0764-.0142-.1488-.0225-.2229,2.2808-1.7963,5.0792-2.7771,8.0225-2.7771,4.2617,0,8,3.9722,8,8.5,0,4.687-3.813,8.5-8.5,8.5h-.5v2h.5c5.7896,0,10.5-4.7104,10.5-10.5,0-1.8853-.5322-3.6917-1.4401-5.2593,2.715,2.3843,4.4401,5.8704,4.4401,9.7593,0,2.1152-.4917,4.1328-1.4619,5.9956l1.7744.9238c1.104-2.1211,1.6875-4.5137,1.6875-6.9194C31,7.729,24.271,1,16,1Z" }), children);
890
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 12.41 29.59 11 26 14.59 22.41 11 21 12.41 24.59 16 21 19.59 22.41 21 26 17.41 29.59 21 31 19.59 27.41 16 31 12.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30ZM4,20h6a1.17,1.17,0,0,1,.79.3L17,26.57V5.43L10.79,11.7A1.17,1.17,0,0,1,10,12H4Z" }), children);
904
891
  });
905
- if (process.env.NODE_ENV !== "production") WatsonxAi.propTypes = require_iconPropTypes.iconPropTypes;
906
- const WatsonxData = react.default.forwardRef(function WatsonxData({ children, size = 16, ...rest }, ref) {
907
- return react.default.createElement(require_Icon_js, {
892
+ if (process.env.NODE_ENV !== "production") VolumeMute.propTypes = require_iconPropTypes.iconPropTypes;
893
+ const VolumeMuteFilled = /* @__PURE__ */ react.default.forwardRef(function VolumeMuteFilled({ children, size = 16, ...rest }, ref) {
894
+ return react.default.createElement(require_Icon.Icon, {
908
895
  width: size,
909
896
  height: size,
910
897
  ref,
@@ -912,20 +899,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
912
899
  viewBox: "0 0 32 32",
913
900
  fill: "currentColor",
914
901
  ...rest
915
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m26,24c-1.1046,0-2,.8954-2,2,0,.0764.0142.1488.0225.2229-2.2808,1.7963-5.0792,2.7771-8.0225,2.7771-2.7746,0-5.3432-.881-7.4566-2.3676.2576.0261.517.0444.7798.0444,4.2329,0,7.6768-3.4438,7.6768-7.6768h-2c0,3.1304-2.5464,5.6768-5.6768,5.6768-2.2111,0-4.1977-1.2816-5.1318-3.2725-.1365-.2972-.2595-.6007-.3738-.9094.6602.322,1.3998.5051,2.1824.5051,2.7568,0,5-2.2432,5-5v-2h-2v2c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-2.1152.4917-4.1328,1.4619-5.9956l-1.7744-.9238c-1.104,2.1211-1.6875,4.5137-1.6875,6.9194,0,8.271,6.729,15,15,15,3.3744,0,6.5818-1.1193,9.2048-3.1662.244.106.5123.1662.7952.1662,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
916
- d: "M21 21H23V23H21z",
917
- transform: "rotate(90 22 22)"
918
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
919
- d: "M15 15H17V17H15z",
920
- transform: "rotate(90 16 16)"
921
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
922
- d: "M9 9H11V11H9z",
923
- transform: "rotate(-90 10 10)"
924
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-3.3744,0-6.5818,1.1193-9.2048,3.1662-.244-.106-.5123-.1662-.7952-.1662-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2c0-.0764-.0142-.1488-.0225-.2229,2.2808-1.7963,5.0792-2.7771,8.0225-2.7771,2.7708,0,5.3363.8784,7.4481,2.3613-.249-.0242-.5005-.038-.7547-.038-4.2329,0-7.6768,3.4438-7.6768,7.6768h2c0-3.1304,2.5464-5.6768,5.6768-5.6768,2.0554,0,3.9068,1.0953,4.9186,2.8651.2153.4283.4053.8701.5729,1.3237-.6615-.3234-1.4005-.5121-2.1849-.5121-2.7568,0-5,2.2432-5,5v2h2v-2c0-1.6543,1.3457-3,3-3s3,1.3457,3,3c0,2.1152-.4917,4.1328-1.4619,5.9956l1.7744.9238c1.104-2.1211,1.6875-4.5137,1.6875-6.9194C31,7.729,24.271,1,16,1Z" }), children);
902
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 12.41 29.59 11 26 14.59 22.41 11 21 12.41 24.59 16 21 19.59 22.41 21 26 17.41 29.59 21 31 19.59 27.41 16 31 12.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30Z" }), children);
925
903
  });
926
- if (process.env.NODE_ENV !== "production") WatsonxData.propTypes = require_iconPropTypes.iconPropTypes;
927
- const WatsonxGovernance = react.default.forwardRef(function WatsonxGovernance({ children, size = 16, ...rest }, ref) {
928
- return react.default.createElement(require_Icon_js, {
904
+ if (process.env.NODE_ENV !== "production") VolumeMuteFilled.propTypes = require_iconPropTypes.iconPropTypes;
905
+ const VolumeObjectStorage = /* @__PURE__ */ react.default.forwardRef(function VolumeObjectStorage({ children, size = 16, ...rest }, ref) {
906
+ return react.default.createElement(require_Icon.Icon, {
929
907
  width: size,
930
908
  height: size,
931
909
  ref,
@@ -933,20 +911,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
933
911
  viewBox: "0 0 32 32",
934
912
  fill: "currentColor",
935
913
  ...rest
936
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m26,24c-1.1046,0-2,.8954-2,2,0,.0764.0142.1488.0225.2229-2.2808,1.7963-5.0792,2.7771-8.0225,2.7771-7.1685,0-13-5.8315-13-13,0-2.1152.4917-4.1328,1.4619-5.9956l-1.7744-.9238c-1.104,2.1211-1.6875,4.5137-1.6875,6.9194,0,8.271,6.729,15,15,15,3.3744,0,6.5818-1.1193,9.2048-3.1662.244.106.5123.1662.7952.1662,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
937
- d: "M11 23H13V25H11z",
938
- transform: "rotate(90 12 24)"
939
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
940
- d: "M11 9H13V11H11z",
941
- transform: "rotate(90 12 10)"
942
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
943
- d: "M11 16H13V18H11z",
944
- transform: "rotate(90 12 17)"
945
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-3.3744,0-6.5818,1.1193-9.2048,3.1662-.244-.106-.5123-.1662-.7952-.1662-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2c0-.0764-.0142-.1488-.0225-.2229,2.2808-1.7963,5.0792-2.7771,8.0225-2.7771,1.6543,0,3,1.3457,3,3s-1.3457,3-3,3h-1v2h1c2.7568,0,5-2.2432,5-5,0-.2399-.0203-.4748-.0531-.7057.9663,1.1348,1.5531,2.6021,1.5531,4.2057,0,3.584-2.916,6.5-6.5,6.5h-1v2h1c4.687,0,8.5-3.813,8.5-8.5,0-.7654-.1111-1.5036-.3017-2.2096,1.1321,1.6206,1.8017,3.587,1.8017,5.7096,0,5.5142-4.4858,10-10,10h-1v2h1c6.6167,0,12-5.3833,12-12,0-.8995-.1058-1.774-.2944-2.6176.8207,1.7031,1.2944,3.6038,1.2944,5.6176,0,2.1152-.4917,4.1328-1.4619,5.9956l1.7744.9238c1.104-2.1211,1.6875-4.5137,1.6875-6.9194C31,7.729,24.271,1,16,1Z" }), children);
914
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,24a2.98,2.98,0,0,0-2.0376.8115l-4.0037-2.4023a2.0478,2.0478,0,0,0,0-.8184l4.0037-2.4023a3.2463,3.2463,0,1,0-.9211-1.7793l-4.0037,2.4023a3,3,0,1,0,0,4.377l4.0037,2.4023A2.9729,2.9729,0,0,0,20,27a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0008,1.0008,0,0,1,23,16Zm-9,7a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,14,23Zm9,5a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,23,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,28H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h7.5857A1.9865,1.9865,0,0,1,13,4.5859L16.4143,8H28a2.0023,2.0023,0,0,1,2,2v8H28V10H15.5857l-4-4H4V26H8Z" }), children);
946
915
  });
947
- if (process.env.NODE_ENV !== "production") WatsonxGovernance.propTypes = require_iconPropTypes.iconPropTypes;
948
- const WaveDirection = react.default.forwardRef(function WaveDirection({ children, size = 16, ...rest }, ref) {
949
- return react.default.createElement(require_Icon_js, {
916
+ if (process.env.NODE_ENV !== "production") VolumeObjectStorage.propTypes = require_iconPropTypes.iconPropTypes;
917
+ const VolumeUp = /* @__PURE__ */ react.default.forwardRef(function VolumeUp({ children, size = 16, ...rest }, ref) {
918
+ return react.default.createElement(require_Icon.Icon, {
950
919
  width: size,
951
920
  height: size,
952
921
  ref,
@@ -954,15 +923,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
954
923
  viewBox: "0 0 32 32",
955
924
  fill: "currentColor",
956
925
  ...rest
957
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H17a7.0078,7.0078,0,0,1-7-7,6.6832,6.6832,0,0,1,2.0244-4.6967A6.7126,6.7126,0,0,0,10.0093,18C5.0425,18.0466,4,24.5513,4,30H2C2,18.4907,6.3452,16.0342,9.9907,16a10.0962,10.0962,0,0,1,4.4785,1.117,1,1,0,0,1,.0616,1.73A4.8773,4.8773,0,0,0,17,28h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,24V22a8,8,0,1,0-8-8H8A10,10,0,1,1,18,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
958
- cx: "18",
959
- cy: "8",
960
- r: "1"
961
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17.5859l-2.3-2.3007A2.9665,2.9665,0,0,0,21,14a3.0033,3.0033,0,0,0-3-3,2.9609,2.9609,0,0,0-1.2854.3008L14.4141,9,13,10.4141l2.3,2.3007A2.9665,2.9665,0,0,0,15,14a3.0033,3.0033,0,0,0,3,3,2.9609,2.9609,0,0,0,1.2854-.3008L21.5859,19ZM17,14a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,17,14Z" }), children);
926
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.16,8.08,25.63,9.37a10,10,0,0,1-.29,13.23L26.81,24a12,12,0,0,0,.35-15.88Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30ZM4,20h6.08a1,1,0,0,1,.71.3L17,26.57V5.43L10.79,11.7a1,1,0,0,1-.71.3H4Z" }), children);
962
927
  });
963
- if (process.env.NODE_ENV !== "production") WaveDirection.propTypes = require_iconPropTypes.iconPropTypes;
964
- const WaveHeight = react.default.forwardRef(function WaveHeight({ children, size = 16, ...rest }, ref) {
965
- return react.default.createElement(require_Icon_js, {
928
+ if (process.env.NODE_ENV !== "production") VolumeUp.propTypes = require_iconPropTypes.iconPropTypes;
929
+ const VolumeUpAlt = /* @__PURE__ */ react.default.forwardRef(function VolumeUpAlt({ children, size = 16, ...rest }, ref) {
930
+ return react.default.createElement(require_Icon.Icon, {
966
931
  width: size,
967
932
  height: size,
968
933
  ref,
@@ -970,11 +935,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
970
935
  viewBox: "0 0 32 32",
971
936
  fill: "currentColor",
972
937
  ...rest
973
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 2H30V4H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 8H28V10H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 14H30V16H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 20H28V22H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28H24a10.0349,10.0349,0,0,1-6.9268-17.2622A11.9629,11.9629,0,0,0,12.9937,10a6.9027,6.9027,0,0,0-6.0308,3.42C4.9966,16.4348,4,21.34,4,28H2c0-7.0542,1.106-12.3274,3.2871-15.6726A8.906,8.906,0,0,1,12.9937,8h.0068a14.762,14.762,0,0,1,6.4619,1.592,1,1,0,0,1,.0869,1.7222A8.0249,8.0249,0,0,0,24,26h6Z" }), children);
938
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 15 28 15 28 11 26 11 26 15 22 15 22 17 26 17 26 21 28 21 28 17 32 17 32 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30ZM4,20h6a1.2008,1.2008,0,0,1,.7939.2969L17,26.5684V5.4316l-6.2061,6.2715A1.2013,1.2013,0,0,1,10,12H4Z" }), children);
974
939
  });
975
- if (process.env.NODE_ENV !== "production") WaveHeight.propTypes = require_iconPropTypes.iconPropTypes;
976
- const WavePeriod = react.default.forwardRef(function WavePeriod({ children, size = 16, ...rest }, ref) {
977
- return react.default.createElement(require_Icon_js, {
940
+ if (process.env.NODE_ENV !== "production") VolumeUpAlt.propTypes = require_iconPropTypes.iconPropTypes;
941
+ const VolumeUpFilled = /* @__PURE__ */ react.default.forwardRef(function VolumeUpFilled({ children, size = 16, ...rest }, ref) {
942
+ return react.default.createElement(require_Icon.Icon, {
978
943
  width: size,
979
944
  height: size,
980
945
  ref,
@@ -982,11 +947,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
982
947
  viewBox: "0 0 32 32",
983
948
  fill: "currentColor",
984
949
  ...rest
985
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H17a7.0078,7.0078,0,0,1-7-7,6.6832,6.6832,0,0,1,2.0244-4.6967A6.7935,6.7935,0,0,0,10.0093,18C5.0425,18.0466,4,24.5513,4,30H2C2,18.4907,6.3452,16.0342,9.9907,16a10.0717,10.0717,0,0,1,4.4785,1.117,1,1,0,0,1,.0616,1.73A4.8773,4.8773,0,0,0,17,28h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 8H19V16H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,5.4141,26.5859,4,24.3242,6.2617A9.95,9.95,0,0,0,19,4.0508V2H17V4.0508A10.0132,10.0132,0,0,0,8,14h2a8,8,0,1,1,8,8v2A9.9928,9.9928,0,0,0,25.7383,7.6758Z" }), children);
950
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.16,8.08,25.63,9.37a10,10,0,0,1-.29,13.23L26.81,24a12,12,0,0,0,.35-15.88Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.58,12a6,6,0,0,1-.18,7.94l1.47,1.36a8,8,0,0,0,.23-10.59Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a1,1,0,0,1-.71-.3L9.67,22H3a1,1,0,0,1-1-1H2V11a1,1,0,0,1,1-1H9.67l7.62-7.7a1,1,0,0,1,1.41,0A1,1,0,0,1,19,3V29A1,1,0,0,1,18,30Z" }), children);
986
951
  });
987
- if (process.env.NODE_ENV !== "production") WavePeriod.propTypes = require_iconPropTypes.iconPropTypes;
988
- const Waveform = react.default.forwardRef(function Waveform({ children, size = 16, ...rest }, ref) {
989
- return react.default.createElement(require_Icon_js, {
952
+ if (process.env.NODE_ENV !== "production") VolumeUpFilled.propTypes = require_iconPropTypes.iconPropTypes;
953
+ const VolumeUpFilledAlt = /* @__PURE__ */ react.default.forwardRef(function VolumeUpFilledAlt({ children, size = 16, ...rest }, ref) {
954
+ return react.default.createElement(require_Icon.Icon, {
990
955
  width: size,
991
956
  height: size,
992
957
  ref,
@@ -994,11 +959,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
994
959
  viewBox: "0 0 32 32",
995
960
  fill: "currentColor",
996
961
  ...rest
997
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,19h-2v-6h2v6ZM4,10h-2v12h2v-12ZM14,10h-2v12h2v-12ZM24,10h-2v12h2v-12ZM9,6h-2v20h2V6ZM29,6h-2v20h2V6Z" }), children);
962
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 15 28 15 28 11 26 11 26 15 22 15 22 17 26 17 26 21 28 21 28 17 32 17 32 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30a.997.997,0,0,1-.7109-.2969L9.666,22H3a.9993.9993,0,0,1-1-.9988V11a.9993.9993,0,0,1,.9988-1H9.666l7.623-7.7031A1,1,0,0,1,19,3V29A1.0007,1.0007,0,0,1,18,30Z" }), children);
998
963
  });
999
- if (process.env.NODE_ENV !== "production") Waveform.propTypes = require_iconPropTypes.iconPropTypes;
1000
- const WeatherFrontCold = react.default.forwardRef(function WeatherFrontCold({ children, size = 16, ...rest }, ref) {
1001
- return react.default.createElement(require_Icon_js, {
964
+ if (process.env.NODE_ENV !== "production") VolumeUpFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
965
+ const Vpn = /* @__PURE__ */ react.default.forwardRef(function Vpn({ children, size = 16, ...rest }, ref) {
966
+ return react.default.createElement(require_Icon.Icon, {
1002
967
  width: size,
1003
968
  height: size,
1004
969
  ref,
@@ -1006,11 +971,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1006
971
  viewBox: "0 0 32 32",
1007
972
  fill: "currentColor",
1008
973
  ...rest
1009
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.1655,2a13.0289,13.0289,0,0,0-12.542,9.5791l-1.1767,4.3154A11.0237,11.0237,0,0,1,3.8345,24H2v2H3.8345c.2975,0,.5918-.0171.8853-.0371l7.9291,2.9736A1,1,0,0,0,14,28V21.0923a12.9311,12.9311,0,0,0,.9121-1.313l6.3628-1.8179a1,1,0,0,0,.5059-1.5864L17.7843,11.38a10.9268,10.9268,0,0,1,1.1516-2.3472l5.7477,1.916A1,1,0,0,0,26,10V4.2251A10.8956,10.8956,0,0,1,28.1655,4H30V2ZM8.3354,25.1826A13.047,13.047,0,0,0,12,23.0943v3.4624Zm7.74-7.8154c.1107-.3105.2136-.625.3013-.9463l.732-2.6846L19.28,16.4512ZM24,8.6123l-3.7411-1.247A11.0712,11.0712,0,0,1,24,4.8306Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4 10 8.586 3.414 2 2 3.414 8.586 10 4 10 4 12 12 12 12 4 10 4z" }), children);
974
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,23H12V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H14Zm0-7h4V11H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 19 24.32 9 22 9 22 23 24 23 24 13 27.68 23 30 23 30 9 28 9 28 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 9 6 22 4 9 2 9 4.52 23 7.48 23 10 9 8 9z" }), children);
1010
975
  });
1011
- if (process.env.NODE_ENV !== "production") WeatherFrontCold.propTypes = require_iconPropTypes.iconPropTypes;
1012
- const WeatherFrontStationary = react.default.forwardRef(function WeatherFrontStationary({ children, size = 16, ...rest }, ref) {
1013
- return react.default.createElement(require_Icon_js, {
976
+ if (process.env.NODE_ENV !== "production") Vpn.propTypes = require_iconPropTypes.iconPropTypes;
977
+ const VpnConnection = /* @__PURE__ */ react.default.forwardRef(function VpnConnection({ children, size = 16, ...rest }, ref) {
978
+ return react.default.createElement(require_Icon.Icon, {
1014
979
  width: size,
1015
980
  height: size,
1016
981
  ref,
@@ -1018,11 +983,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1018
983
  viewBox: "0 0 32 32",
1019
984
  fill: "currentColor",
1020
985
  ...rest
1021
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.1655,2a12.9848,12.9848,0,0,0-8.4074,3.1065A3.9947,3.9947,0,1,0,15.583,11.728l-1.1362,4.1665c-.0725.2657-.1579.5254-.2489.7818a3.9864,3.9864,0,0,0-5.1547,6.0054A10.9541,10.9541,0,0,1,3.8345,24H2v2H3.8345c.2975,0,.5918-.0171.8853-.0371l7.9291,2.9736A1,1,0,0,0,14,28V21.0923a12.9311,12.9311,0,0,0,.9121-1.313l6.3628-1.8179a1,1,0,0,0,.5059-1.5864L17.7843,11.38a10.9268,10.9268,0,0,1,1.1516-2.3472l5.7477,1.916A1,1,0,0,0,26,10V4.2251A10.8956,10.8956,0,0,1,28.1655,4H30V2ZM17,6a1.98,1.98,0,0,1,1.3237.53A12.9413,12.9413,0,0,0,16.24,9.8482,1.9988,1.9988,0,0,1,17,6ZM10,20a1.9879,1.9879,0,0,1,3.3374-1.4717,11.0157,11.0157,0,0,1-2.5959,3.0147A1.9975,1.9975,0,0,1,10,20ZM8.3354,25.1826A13.047,13.047,0,0,0,12,23.0943v3.4624Zm7.74-7.8154c.1107-.3105.2136-.625.3013-.9463l.732-2.6846L19.28,16.4512ZM24,8.6123l-3.7411-1.247A11.0712,11.0712,0,0,1,24,4.8306Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 22 22 24 26.586 24 22 28.586 23.414 30 28 25.414 28 30 30 30 30 22 22 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2 2 4 6.586 4 2 8.586 3.414 10 8 5.414 8 10 10 10 10 2 2 2z" }), children);
986
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,7a1.9919,1.9919,0,0,0-1.7227,1H22A6,6,0,0,0,10,8H5.7227a2,2,0,1,0,0,2H10v4H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2H22V10h4.2773A1.9966,1.9966,0,1,0,28,7ZM12,8a4,4,0,0,1,8,0v6H12V10h5V8Zm12,8V28H8V16Z" }), children);
1022
987
  });
1023
- if (process.env.NODE_ENV !== "production") WeatherFrontStationary.propTypes = require_iconPropTypes.iconPropTypes;
1024
- const WeatherFrontWarm = react.default.forwardRef(function WeatherFrontWarm({ children, size = 16, ...rest }, ref) {
1025
- return react.default.createElement(require_Icon_js, {
988
+ if (process.env.NODE_ENV !== "production") VpnConnection.propTypes = require_iconPropTypes.iconPropTypes;
989
+ const VpnPolicy = /* @__PURE__ */ react.default.forwardRef(function VpnPolicy({ children, size = 16, ...rest }, ref) {
990
+ return react.default.createElement(require_Icon.Icon, {
1026
991
  width: size,
1027
992
  height: size,
1028
993
  ref,
@@ -1030,11 +995,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1030
995
  viewBox: "0 0 32 32",
1031
996
  fill: "currentColor",
1032
997
  ...rest
1033
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.1655,2a13.0289,13.0289,0,0,0-12.542,9.5791l-1.1767,4.3154A11.0237,11.0237,0,0,1,3.8345,24H2v2H3.8345a12.9139,12.9139,0,0,0,3.4687-.4819,3.9979,3.9979,0,1,0,6.5818-4.2866,12.9671,12.9671,0,0,0,1.6209-2.5269,3.9944,3.9944,0,1,0,2.3772-7.5991,10.95,10.95,0,0,1,1.7253-3.01,3.9825,3.9825,0,0,0,6.9058-3.9648A10.9435,10.9435,0,0,1,28.1655,4H30V2ZM11,26a1.9983,1.9983,0,0,1-1.8118-1.1655,13.0811,13.0811,0,0,0,3.2969-2.1426A1.9773,1.9773,0,0,1,11,26Zm8-11a1.9926,1.9926,0,0,1-2.759,1.8467c.0442-.1426.0959-.2813.1355-.4258L17.301,13.03A1.9976,1.9976,0,0,1,19,15Zm6-9a1.9942,1.9942,0,0,1-3.9011.5894,11.0511,11.0511,0,0,1,3.3623-1.9385A1.995,1.995,0,0,1,25,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4 10 8.586 3.414 2 2 3.414 8.586 10 4 10 4 12 12 12 12 4 10 4z" }), children);
998
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15A6,6,0,1,0,20,19.46V29l4-1.8838L28,29V19.46A5.98,5.98,0,0,0,30,15ZM26,25.8477l-2-.9415-2,.9415V20.65a5.8877,5.8877,0,0,0,4,0ZM24,19a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,2A6.0066,6.0066,0,0,0,8,8v6H6a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H17V28H6V16h9V14H10V8a4,4,0,0,1,7.92-.8008l1.96-.3984A6.0167,6.0167,0,0,0,14,2Z" }), children);
1034
999
  });
1035
- if (process.env.NODE_ENV !== "production") WeatherFrontWarm.propTypes = require_iconPropTypes.iconPropTypes;
1036
- const WeatherStation = react.default.forwardRef(function WeatherStation({ children, size = 16, ...rest }, ref) {
1037
- return react.default.createElement(require_Icon_js, {
1000
+ if (process.env.NODE_ENV !== "production") VpnPolicy.propTypes = require_iconPropTypes.iconPropTypes;
1001
+ const Wallet = /* @__PURE__ */ react.default.forwardRef(function Wallet({ children, size = 16, ...rest }, ref) {
1002
+ return react.default.createElement(require_Icon.Icon, {
1038
1003
  width: size,
1039
1004
  height: size,
1040
1005
  ref,
@@ -1042,23 +1007,20 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1042
1007
  viewBox: "0 0 32 32",
1043
1008
  fill: "currentColor",
1044
1009
  ...rest
1045
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,28V17h1a2.0023,2.0023,0,0,0,2-2V11a2.0023,2.0023,0,0,0-2-2H14a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h1V28H2v2H30V28ZM14,11h4l.0015,4H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.3325,18.2168a7.0007,7.0007,0,0,1,0-10.4341l1.334,1.49a5,5,0,0,0,0,7.4537Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.667,18.2168l-1.334-1.49a4.9995,4.9995,0,0,0,0-7.4537l1.334-1.49a7,7,0,0,1,0,10.4341Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.3994,21.8008a11.0019,11.0019,0,0,1,0-17.6006L7.6,5.8a9.0009,9.0009,0,0,0,0,14.4014Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.6006,21.8008l-1.2012-1.6a9.001,9.001,0,0,0,0-14.4019l1.2012-1.6a11.002,11.002,0,0,1,0,17.6011Z" }), children);
1010
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 17H24V19H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H4V5H26V3H4A2,2,0,0,0,2,5V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM4,26V10H28v3H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h8v3ZM28,15v6H20V15Z" }), children);
1046
1011
  });
1047
- if (process.env.NODE_ENV !== "production") WeatherStation.propTypes = require_iconPropTypes.iconPropTypes;
1048
- const WebServicesCluster = react.default.forwardRef(function WebServicesCluster({ children, size = 16, ...rest }, ref) {
1049
- return react.default.createElement(require_Icon_js, {
1012
+ if (process.env.NODE_ENV !== "production") Wallet.propTypes = require_iconPropTypes.iconPropTypes;
1013
+ const Warning = /* @__PURE__ */ react.default.forwardRef(function Warning({ children, size = 16, ...rest }, ref) {
1014
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1050
1015
  width: size,
1051
1016
  height: size,
1052
1017
  ref,
1053
1018
  xmlns: "http://www.w3.org/2000/svg",
1054
- viewBox: "0 0 32 32",
1019
+ viewBox: "0 0 16 16",
1055
1020
  fill: "currentColor",
1056
1021
  ...rest
1057
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,26c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,20c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,14c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,20c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1058
- });
1059
- if (process.env.NODE_ENV !== "production") WebServicesCluster.propTypes = require_iconPropTypes.iconPropTypes;
1060
- const WebServicesContainer = react.default.forwardRef(function WebServicesContainer({ children, size = 16, ...rest }, ref) {
1061
- return react.default.createElement(require_Icon_js, {
1022
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M8,14c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S11.3,14,8,14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5 4H8.5V9H7.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10.2c-0.4,0-0.8,0.3-0.8,0.8s0.3,0.8,0.8,0.8c0.4,0,0.8-0.3,0.8-0.8S8.4,10.2,8,10.2z" }), children);
1023
+ return react.default.createElement(require_Icon.Icon, {
1062
1024
  width: size,
1063
1025
  height: size,
1064
1026
  ref,
@@ -1066,23 +1028,20 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1066
1028
  viewBox: "0 0 32 32",
1067
1029
  fill: "currentColor",
1068
1030
  ...rest
1069
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.5046,11.6367l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1031
+ }, /* @__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: "M15 8H17V19H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,22Z" }), children);
1070
1032
  });
1071
- if (process.env.NODE_ENV !== "production") WebServicesContainer.propTypes = require_iconPropTypes.iconPropTypes;
1072
- const WebServicesDefinition = react.default.forwardRef(function WebServicesDefinition({ children, size = 16, ...rest }, ref) {
1073
- return react.default.createElement(require_Icon_js, {
1033
+ if (process.env.NODE_ENV !== "production") Warning.propTypes = require_iconPropTypes.iconPropTypes;
1034
+ const WarningAlt = /* @__PURE__ */ react.default.forwardRef(function WarningAlt({ children, size = 16, ...rest }, ref) {
1035
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1074
1036
  width: size,
1075
1037
  height: size,
1076
1038
  ref,
1077
1039
  xmlns: "http://www.w3.org/2000/svg",
1078
- viewBox: "0 0 32 32",
1040
+ viewBox: "0 0 16 16",
1079
1041
  fill: "currentColor",
1080
1042
  ...rest
1081
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 17H16V19H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H18V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21,23h-10c-.5522,0-1-.4478-1-1v-12c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v12c0,.5522-.4478,1-1,1Zm-9-2h8v-10h-8v10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1082
- });
1083
- if (process.env.NODE_ENV !== "production") WebServicesDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1084
- const WebServicesService = react.default.forwardRef(function WebServicesService({ children, size = 16, ...rest }, ref) {
1085
- return react.default.createElement(require_Icon_js, {
1043
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.5,14h-13c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.3,0-0.5l6.5-12C7.7,1,8,0.9,8.2,1.1c0.1,0,0.2,0.1,0.2,0.2l6.5,12 c0.1,0.2,0.1,0.3,0,0.5C14.9,13.9,14.7,14,14.5,14z M2.3,13h11.3L8,2.5L2.3,13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.5 6H8.5V9.5H7.5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10.8c-0.4,0-0.8,0.3-0.8,0.8s0.3,0.8,0.8,0.8c0.4,0,0.8-0.3,0.8-0.8S8.4,10.8,8,10.8z" }), children);
1044
+ return react.default.createElement(require_Icon.Icon, {
1086
1045
  width: size,
1087
1046
  height: size,
1088
1047
  ref,
@@ -1090,11 +1049,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1090
1049
  viewBox: "0 0 32 32",
1091
1050
  fill: "currentColor",
1092
1051
  ...rest
1093
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23,18h-2v-7h-7v-2h8c.5522,0,1,.4478,1,1v8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18,23h-8c-.5522,0-1-.4478-1-1v-8c0-.5522.4478-1,1-1h8c.5522,0,1,.4478,1,1v8c0,.5522-.4478,1-1,1Zm-7-2h6v-6h-6v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1052
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V21H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z" }), children);
1094
1053
  });
1095
- if (process.env.NODE_ENV !== "production") WebServicesService.propTypes = require_iconPropTypes.iconPropTypes;
1096
- const WebServicesTask = react.default.forwardRef(function WebServicesTask({ children, size = 16, ...rest }, ref) {
1097
- return react.default.createElement(require_Icon_js, {
1054
+ if (process.env.NODE_ENV !== "production") WarningAlt.propTypes = require_iconPropTypes.iconPropTypes;
1055
+ const WarningAltFilled = /* @__PURE__ */ react.default.forwardRef(function WarningAltFilled({ children, size = 16, ...rest }, ref) {
1056
+ return react.default.createElement(require_Icon.Icon, {
1098
1057
  width: size,
1099
1058
  height: size,
1100
1059
  ref,
@@ -1102,11 +1061,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1102
1061
  viewBox: "0 0 32 32",
1103
1062
  fill: "currentColor",
1104
1063
  ...rest
1105
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20.18 18.41 18.59 17 20 20 23 25 18 23.59 16.59 20 20.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15,23h-4c-.5522,0-1-.4478-1-1v-12c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v6h-2v-5h-8v10h3v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1064
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1065
+ fill: "none",
1066
+ d: "M16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Zm-1.125-5h2.25V12h-2.25Z",
1067
+ "data-icon-path": "inner-path"
1068
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.002,6.1714h-.004L4.6487,27.9966,4.6506,28H27.3494l.0019-.0034ZM14.875,12h2.25v9h-2.25ZM16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z" }), children);
1106
1069
  });
1107
- if (process.env.NODE_ENV !== "production") WebServicesTask.propTypes = require_iconPropTypes.iconPropTypes;
1108
- const WebServicesTaskDefinitionVersion = react.default.forwardRef(function WebServicesTaskDefinitionVersion({ children, size = 16, ...rest }, ref) {
1109
- return react.default.createElement(require_Icon_js, {
1070
+ if (process.env.NODE_ENV !== "production") WarningAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
1071
+ const WarningAltInverted = /* @__PURE__ */ react.default.forwardRef(function WarningAltInverted({ children, size = 16, ...rest }, ref) {
1072
+ return react.default.createElement(require_Icon.Icon, {
1110
1073
  width: size,
1111
1074
  height: size,
1112
1075
  ref,
@@ -1114,11 +1077,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1114
1077
  viewBox: "0 0 32 32",
1115
1078
  fill: "currentColor",
1116
1079
  ...rest
1117
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 15 22.25 15 20 22.0312 17.7917 15.0003 16 15.0003 18.5 23 21.5 23 24 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,23h-5c-.5522,0-1-.4478-1-1v-12c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v4h-2v-3h-8v10h4v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1080
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,17a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H17V15H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.855,2.481a1.001,1.001,0,0,1,.0322.98l-13,25a1,1,0,0,1-1.7744,0l-13-25A1,1,0,0,1,3,2H29A1.0007,1.0007,0,0,1,29.855,2.481ZM4.6487,4.0033,15.998,25.8286h.004L27.3513,4.0033,27.3493,4H4.6507Z" }), children);
1118
1081
  });
1119
- if (process.env.NODE_ENV !== "production") WebServicesTaskDefinitionVersion.propTypes = require_iconPropTypes.iconPropTypes;
1120
- const Webhook = react.default.forwardRef(function Webhook({ children, size = 16, ...rest }, ref) {
1121
- return react.default.createElement(require_Icon_js, {
1082
+ if (process.env.NODE_ENV !== "production") WarningAltInverted.propTypes = require_iconPropTypes.iconPropTypes;
1083
+ const WarningAltInvertedFilled = /* @__PURE__ */ react.default.forwardRef(function WarningAltInvertedFilled({ children, size = 16, ...rest }, ref) {
1084
+ return react.default.createElement(require_Icon.Icon, {
1122
1085
  width: size,
1123
1086
  height: size,
1124
1087
  ref,
@@ -1126,11 +1089,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1126
1089
  viewBox: "0 0 32 32",
1127
1090
  fill: "currentColor",
1128
1091
  ...rest
1129
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,26a3,3,0,1,0-2.8164-4H13v1a5,5,0,1,1-5-5V16a7,7,0,1,0,6.9287,8h6.2549A2.9914,2.9914,0,0,0,24,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,16a7.024,7.024,0,0,0-2.57.4873l-3.1656-5.5395a3.0469,3.0469,0,1,0-1.7326.9985l4.1189,7.2085.8686-.4976a5.0006,5.0006,0,1,1-1.851,6.8418L17.937,26.501A7.0005,7.0005,0,1,0,24,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.532,20.0537a3.03,3.03,0,1,0,1.7326.9985C11.74,18.47,13.86,14.7607,13.89,14.708l.4976-.8682-.8677-.497a5,5,0,1,1,6.812-1.8438l1.7315,1.002a7.0008,7.0008,0,1,0-10.3462,2.0356c-.457.7427-1.1021,1.8716-2.0737,3.5728Z" }), children);
1092
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1093
+ fill: "none",
1094
+ d: "M16,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,20Zm-1.125-5h2.25V6h-2.25Z",
1095
+ "data-icon-path": "inner-path"
1096
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.3494,4H4.6506l-.0019.0034L15.998,25.8286h.004L27.3513,4.0034ZM14.875,6h2.25v9h-2.25ZM16,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.855,2.481a1.001,1.001,0,0,1,.0322.98l-13,25a1,1,0,0,1-1.7744,0l-13-25A1,1,0,0,1,3,2H29A1.0007,1.0007,0,0,1,29.855,2.481ZM4.6487,4.0033,15.998,25.8286h.004L27.3513,4.0033,27.3493,4H4.6507Z" }), children);
1130
1097
  });
1131
- if (process.env.NODE_ENV !== "production") Webhook.propTypes = require_iconPropTypes.iconPropTypes;
1132
- const Websheet = react.default.forwardRef(function Websheet({ children, size = 16, ...rest }, ref) {
1133
- return react.default.createElement(require_Icon_js, {
1098
+ if (process.env.NODE_ENV !== "production") WarningAltInvertedFilled.propTypes = require_iconPropTypes.iconPropTypes;
1099
+ const WarningDiamond = /* @__PURE__ */ react.default.forwardRef(function WarningDiamond({ children, size = 16, ...rest }, ref) {
1100
+ return react.default.createElement(require_Icon.Icon, {
1134
1101
  width: size,
1135
1102
  height: size,
1136
1103
  ref,
@@ -1138,15 +1105,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1138
1105
  viewBox: "0 0 32 32",
1139
1106
  fill: "currentColor",
1140
1107
  ...rest
1141
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1142
- cx: "24",
1143
- cy: "24",
1144
- r: "2"
1145
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30a6,6,0,1,1,6-6A6.0069,6.0069,0,0,1,24,30Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,24,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" }), children);
1108
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,20c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5h0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 9H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,30c-.5335,0-1.0672-.2031-1.4732-.6094L2.6094,17.4732c-.8126-.8123-.8126-2.1342,0-2.9465L14.5268,2.6094c.8121-.8126,2.1344-.8126,2.9465,0l11.9173,11.9173c.8126.8123.8126,2.1342,0,2.9465l-11.9173,11.9173c-.406.4063-.9398.6094-1.4732.6094Zm0-26.0008c-.0215,0-.0427.0083-.0591.0244L4.0236,15.9409c-.0325.0327-.0325.0855,0,.1182l11.9173,11.9173c.0327.0322.0855.0322.1182,0l11.9173-11.9173c.0325-.0327.0325-.0855,0-.1182l-11.9173-11.9173c-.0164-.0161-.0376-.0244-.0591-.0244Z" }), children);
1146
1109
  });
1147
- if (process.env.NODE_ENV !== "production") Websheet.propTypes = require_iconPropTypes.iconPropTypes;
1148
- const Wheat = react.default.forwardRef(function Wheat({ children, size = 16, ...rest }, ref) {
1149
- return react.default.createElement(require_Icon_js, {
1110
+ if (process.env.NODE_ENV !== "production") WarningDiamond.propTypes = require_iconPropTypes.iconPropTypes;
1111
+ const WarningDiamondFill = /* @__PURE__ */ react.default.forwardRef(function WarningDiamondFill({ children, size = 16, ...rest }, ref) {
1112
+ return react.default.createElement(require_Icon.Icon, {
1150
1113
  width: size,
1151
1114
  height: size,
1152
1115
  ref,
@@ -1154,51 +1117,51 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1154
1117
  viewBox: "0 0 32 32",
1155
1118
  fill: "currentColor",
1156
1119
  ...rest
1157
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,3V5.5857l-4,4V1H15V9.5857l-4-4V3H9V19a7.004,7.004,0,0,0,6,6.92V30h2V25.92A7.004,7.004,0,0,0,23,19V3ZM15,23.8987A5.008,5.008,0,0,1,11,19v-2.586l4,4Zm0-6.313-4-4V8.4138l4,4Zm2-5.1719,4-4v5.1719l-4,4Zm0,11.4849V20.4138l4-4V19A5.008,5.008,0,0,1,17,23.8987Z" }), children);
1120
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.5858,2.6042L2.6042,14.5858c-.781.781-.781,2.0474,0,2.8284l11.9816,11.9816c.781.781,2.0474.781,2.8284,0l11.9816-11.9816c.781-.781.781-2.0474,0-2.8284L17.4142,2.6042c-.781-.781-2.0474-.781-2.8284,0ZM15,9h2v9h-2v-9ZM16,23c-.83,0-1.5-.67-1.5-1.5s.67-1.5,1.5-1.5,1.5.67,1.5,1.5-.67,1.5-1.5,1.5Z" }), children);
1158
1121
  });
1159
- if (process.env.NODE_ENV !== "production") Wheat.propTypes = require_iconPropTypes.iconPropTypes;
1160
- const WhileLoop = react.default.forwardRef(function WhileLoop({ children, size = 16, ...rest }, ref) {
1161
- return react.default.createElement(require_Icon_js, {
1122
+ if (process.env.NODE_ENV !== "production") WarningDiamondFill.propTypes = require_iconPropTypes.iconPropTypes;
1123
+ const WarningFilled = /* @__PURE__ */ react.default.forwardRef(function WarningFilled({ children, size = 16, ...rest }, ref) {
1124
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1162
1125
  width: size,
1163
1126
  height: size,
1164
1127
  ref,
1165
1128
  xmlns: "http://www.w3.org/2000/svg",
1166
- viewBox: "0 0 32 32",
1129
+ viewBox: "0 0 16 16",
1167
1130
  fill: "currentColor",
1168
1131
  ...rest
1169
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,23h7v7h-2v-3.3518c-1.6447,2.0408-4.1525,3.3516-7.0002,3.3516l-9.9998.0002c-5,0-9-4-9-9v-8h2v8c0,3.8999,3.1,7,7,7h10c2.4032,0,4.4943-1.1841,5.7518-3h-3.7518v-2ZM9,7h-3.7518c1.2575-1.8159,3.3486-3,5.7518-3h10c3.9,0,7,3.1001,7,7v8h2v-8c0-5-4-9-9-9l-9.9998.0002c-2.8477,0-5.3555,1.3108-7.0002,3.3516V2h-2v7h7v-2ZM13.957,22l1.5303-6.3457.7739-3.1641h.0347l.7393,3.1641,1.5308,6.3457h2.562l2.8721-12.0029h-2.167l-1.2207,5.7607-.7568,3.6797h-.0518l-.8423-3.6797-1.376-5.7607h-2.5107l-1.3755,5.7607-.8599,3.6797h-.0518l-.7393-3.6797-1.1865-5.7607h-2.27l2.7856,12.0029h2.5796Z" }), children);
1170
- });
1171
- if (process.env.NODE_ENV !== "production") WhileLoop.propTypes = require_iconPropTypes.iconPropTypes;
1172
- const WhitePaper = react.default.forwardRef(function WhitePaper({ children, size = 16, ...rest }, ref) {
1173
- return react.default.createElement(require_Icon_js, {
1132
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.2,1,1,4.2,1,8s3.2,7,7,7s7-3.1,7-7S11.9,1,8,1z M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2 c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1133
+ d: "M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8 c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z",
1134
+ "data-icon-path": "inner-path",
1135
+ opacity: "0"
1136
+ }), children);
1137
+ if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon.Icon, {
1174
1138
  width: size,
1175
1139
  height: size,
1176
1140
  ref,
1177
1141
  xmlns: "http://www.w3.org/2000/svg",
1178
- viewBox: "0 0 32 32",
1142
+ viewBox: "0 0 20 20",
1179
1143
  fill: "currentColor",
1180
1144
  ...rest
1181
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 27.1798 19.41 24.5899 18 26 22 30 30 22 28.5899 20.59 22 27.1798z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 17H16V19H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 12H21V14H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 7H21V9H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,30H6c-1.103,0-2-.8972-2-2V4c0-1.1028.897-2,2-2h18c1.103,0,2,.8972,2,2v15h-2V4H6v24h10v2Z" }), children);
1182
- });
1183
- if (process.env.NODE_ENV !== "production") WhitePaper.propTypes = require_iconPropTypes.iconPropTypes;
1184
- const Wifi = react.default.forwardRef(function Wifi({ children, size = 16, ...rest }, ref) {
1185
- return react.default.createElement(require_Icon_js, {
1145
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M9.2,5h1.5v7H9.2V5z M10,16c-0.6,0-1-0.4-1-1s0.4-1,1-1 s1,0.4,1,1S10.6,16,10,16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1146
+ d: "M9.2,5h1.5v7H9.2V5z M10,16c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S10.6,16,10,16z",
1147
+ "data-icon-path": "inner-path",
1148
+ opacity: "0"
1149
+ }), children);
1150
+ if (size === 24 || size === "24" || size === "24px") return react.default.createElement(require_Icon.Icon, {
1186
1151
  width: size,
1187
1152
  height: size,
1188
1153
  ref,
1189
1154
  xmlns: "http://www.w3.org/2000/svg",
1190
- viewBox: "0 0 32 32",
1155
+ viewBox: "0 0 24 24",
1191
1156
  fill: "currentColor",
1192
1157
  ...rest
1193
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1194
- cx: "16",
1195
- cy: "25",
1196
- r: "2"
1197
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.47,19.2334l1.4136,1.4131a5.9688,5.9688,0,0,1,8.2229-.0093L21.52,19.2236a7.9629,7.9629,0,0,0-11.05.01Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.229,14.9927l1.4136,1.4135a11.955,11.955,0,0,1,16.7041-.01L25.76,14.9829a13.9514,13.9514,0,0,0-19.5313.01Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,10.7412a19.94,19.94,0,0,0-28,0v.0225L3.4043,12.168a17.9336,17.9336,0,0,1,25.1811-.01L30,10.7432Z" }), children);
1198
- });
1199
- if (process.env.NODE_ENV !== "production") Wifi.propTypes = require_iconPropTypes.iconPropTypes;
1200
- const WifiController = react.default.forwardRef(function WifiController({ children, size = 16, ...rest }, ref) {
1201
- return react.default.createElement(require_Icon_js, {
1158
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11C23,5.9,18.1,1,12,1z M11.1,6h1.8v8h-1.8V6z M12,19.2 c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S12.7,19.2,12,19.2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1159
+ fill: "none",
1160
+ d: "M13.2,18c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2S13.2,17.3,13.2,18z M12.9,6 h-1.8v8h1.8V6z",
1161
+ "data-icon-path": "inner-path",
1162
+ opacity: "0"
1163
+ }), children);
1164
+ return react.default.createElement(require_Icon.Icon, {
1202
1165
  width: size,
1203
1166
  height: size,
1204
1167
  ref,
@@ -1206,19 +1169,16 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1206
1169
  viewBox: "0 0 32 32",
1207
1170
  fill: "currentColor",
1208
1171
  ...rest
1209
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,30H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v6A2,2,0,0,0,6,30Zm0-8H26v6H6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1210
- cx: "9",
1211
- cy: "25",
1212
- r: "1"
1213
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1214
- cx: "16",
1215
- cy: "14.5",
1216
- r: "1.5"
1217
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.7832,10.3325a7.0007,7.0007,0,0,1,10.4341,0l-1.49,1.334a5,5,0,0,0-7.4537,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.1992,7.3994a11.0019,11.0019,0,0,1,17.6006,0L23.2,8.6a9.0009,9.0009,0,0,0-14.4014.0005Z" }), children);
1172
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14C30,8.3,23.7,2,16,2z M14.9,8h2.2v11h-2.2V8z M16,25 c-0.8,0-1.5-0.7-1.5-1.5S15.2,22,16,22c0.8,0,1.5,0.7,1.5,1.5S16.8,25,16,25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1173
+ fill: "none",
1174
+ d: "M17.5,23.5c0,0.8-0.7,1.5-1.5,1.5c-0.8,0-1.5-0.7-1.5-1.5S15.2,22,16,22 C16.8,22,17.5,22.7,17.5,23.5z M17.1,8h-2.2v11h2.2V8z",
1175
+ "data-icon-path": "inner-path",
1176
+ opacity: "0"
1177
+ }), children);
1218
1178
  });
1219
- if (process.env.NODE_ENV !== "production") WifiController.propTypes = require_iconPropTypes.iconPropTypes;
1220
- const WifiNotSecure = react.default.forwardRef(function WifiNotSecure({ children, size = 16, ...rest }, ref) {
1221
- return react.default.createElement(require_Icon_js, {
1179
+ if (process.env.NODE_ENV !== "production") WarningFilled.propTypes = require_iconPropTypes.iconPropTypes;
1180
+ const WarningHex = /* @__PURE__ */ react.default.forwardRef(function WarningHex({ children, size = 16, ...rest }, ref) {
1181
+ return react.default.createElement(require_Icon.Icon, {
1222
1182
  width: size,
1223
1183
  height: size,
1224
1184
  ref,
@@ -1226,11 +1186,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1226
1186
  viewBox: "0 0 32 32",
1227
1187
  fill: "currentColor",
1228
1188
  ...rest
1229
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20H14V17a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm0,8H12V22h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a8.9709,8.9709,0,0,0-6.3608,2.6392l1.4133,1.4135a6.9887,6.9887,0,0,1,9.895,0l1.4135-1.4135A8.9717,8.9717,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.105,7.105,7.5188,8.5186a11.9808,11.9808,0,0,1,16.9624,0L25.8949,7.105a13.9782,13.9782,0,0,0-19.79,0Z" }), children);
1189
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 8H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,29H9a1,1,0,0,1-.8638-.4961l-7-12a1,1,0,0,1,0-1.0078l7-12A1,1,0,0,1,9,3H23a1,1,0,0,1,.8638.4961l7,12a1,1,0,0,1,0,1.0078l-7,12A1,1,0,0,1,23,29ZM9.5742,27H22.4258l6.4165-11L22.4258,5H9.5742L3.1577,16Z" }), children);
1230
1190
  });
1231
- if (process.env.NODE_ENV !== "production") WifiNotSecure.propTypes = require_iconPropTypes.iconPropTypes;
1232
- const WifiOff = react.default.forwardRef(function WifiOff({ children, size = 16, ...rest }, ref) {
1233
- return react.default.createElement(require_Icon_js, {
1191
+ if (process.env.NODE_ENV !== "production") WarningHex.propTypes = require_iconPropTypes.iconPropTypes;
1192
+ const WarningHexFilled = /* @__PURE__ */ react.default.forwardRef(function WarningHexFilled({ children, size = 16, ...rest }, ref) {
1193
+ return react.default.createElement(require_Icon.Icon, {
1234
1194
  width: size,
1235
1195
  height: size,
1236
1196
  ref,
@@ -1238,15 +1198,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1238
1198
  viewBox: "0 0 32 32",
1239
1199
  fill: "currentColor",
1240
1200
  ...rest
1241
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1242
- cx: "16",
1243
- cy: "25",
1244
- r: "2"
1245
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4141,28.5859,2,2,28.5859,3.4141,30,14.0962,19.3179a5.9359,5.9359,0,0,1,6.01,1.3193L21.52,19.2236a7.9669,7.9669,0,0,0-5.125-2.2041l3.3875-3.3877a11.9908,11.9908,0,0,1,4.5647,2.7647L25.76,14.9829A13.975,13.975,0,0,0,21.334,12.08L24.3308,9.083a17.9364,17.9364,0,0,1,4.2546,3.0747L30,10.7432v-.002a20.02,20.02,0,0,0-4.1895-3.1377Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.68,13.0776l2.0415-2.0415C16.481,11.0234,16.2437,11,16,11a13.9447,13.9447,0,0,0-9.771,3.9927l1.4136,1.4136A11.97,11.97,0,0,1,14.68,13.0776Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7a17.87,17.87,0,0,1,4.2324.5254L21.875,5.8828A19.9537,19.9537,0,0,0,2,10.7412v.0225L3.4043,12.168A17.9193,17.9193,0,0,1,16,7Z" }), children);
1201
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1202
+ fill: "none",
1203
+ d: "M14.875,8h2.25V19h-2.25ZM16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Z",
1204
+ "data-icon-path": "inner-path"
1205
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30.8508,15.4487,23.8867,3.5322A1.0687,1.0687,0,0,0,22.9643,3H9.0357a1.0687,1.0687,0,0,0-.9224.5322L1.1492,15.4487a1.0933,1.0933,0,0,0,0,1.1026L8.1133,28.4678A1.0687,1.0687,0,0,0,9.0357,29H22.9643a1.0687,1.0687,0,0,0,.9224-.5322l6.9641-11.9165A1.0933,1.0933,0,0,0,30.8508,15.4487ZM14.875,8h2.25V19h-2.25ZM16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Z" }), children);
1246
1206
  });
1247
- if (process.env.NODE_ENV !== "production") WifiOff.propTypes = require_iconPropTypes.iconPropTypes;
1248
- const WifiSecure = react.default.forwardRef(function WifiSecure({ children, size = 16, ...rest }, ref) {
1249
- return react.default.createElement(require_Icon_js, {
1207
+ if (process.env.NODE_ENV !== "production") WarningHexFilled.propTypes = require_iconPropTypes.iconPropTypes;
1208
+ const WarningMultiple = /* @__PURE__ */ react.default.forwardRef(function WarningMultiple({ children, size = 16, ...rest }, ref) {
1209
+ return react.default.createElement(require_Icon.Icon, {
1250
1210
  width: size,
1251
1211
  height: size,
1252
1212
  ref,
@@ -1254,11 +1214,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1254
1214
  viewBox: "0 0 32 32",
1255
1215
  fill: "currentColor",
1256
1216
  ...rest
1257
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20V17a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm-6-3a2,2,0,0,1,4,0v3H14ZM12,28V22h8v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.105,7.105,7.5188,8.5186a11.9808,11.9808,0,0,1,16.9624,0L25.8949,7.105a13.9782,13.9782,0,0,0-19.79,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a8.9709,8.9709,0,0,0-6.3608,2.6392l1.4133,1.4135a6.9887,6.9887,0,0,1,9.895,0l1.4135-1.4135A8.9717,8.9717,0,0,0,16,8Z" }), children);
1217
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m29,23h-4v-2h2.3821l-7.8821-15.7639-1.1055,2.2112-1.7891-.8945,2-4c.1694-.3387.532-.5527.8945-.5527s.7251.214.8945.5527l9.5,19c.1548.3101.1384.6782-.0439.973-.1821.2948-.5039.4742-.8506.4742Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1218
+ cx: "14",
1219
+ cy: "25",
1220
+ r: "1.25"
1221
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 15H15V22H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m25,30H3c-.3499,0-.6743-.1829-.8555-.4823s-.1926-.6718-.0303-.9817L13.1143,7.536c.1726-.3296.5292-.536.8857-.536s.7131.2064.8857.536l11,21c.1624.3099.1509.6823-.0303.9817s-.5056.4823-.8555.4823Zm-20.3474-2h18.6948L14,10.1552,4.6526,28Z" }), children);
1258
1222
  });
1259
- if (process.env.NODE_ENV !== "production") WifiSecure.propTypes = require_iconPropTypes.iconPropTypes;
1260
- const WifiBridge = react.default.forwardRef(function WifiBridge({ children, size = 16, ...rest }, ref) {
1261
- return react.default.createElement(require_Icon_js, {
1223
+ if (process.env.NODE_ENV !== "production") WarningMultiple.propTypes = require_iconPropTypes.iconPropTypes;
1224
+ const WarningOther = /* @__PURE__ */ react.default.forwardRef(function WarningOther({ children, size = 16, ...rest }, ref) {
1225
+ return react.default.createElement(require_Icon.Icon, {
1262
1226
  width: size,
1263
1227
  height: size,
1264
1228
  ref,
@@ -1266,11 +1230,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1266
1230
  viewBox: "0 0 32 32",
1267
1231
  fill: "currentColor",
1268
1232
  ...rest
1269
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.9492,20.95l-1.414-1.4141a5,5,0,0,0,0-7.0715L6.9492,11.05a7,7,0,0,1,0,9.9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.4854,24.4854,9.0713,23.0713a10.0011,10.0011,0,0,0,0-14.1426l1.4141-1.4141a12.0006,12.0006,0,0,1,0,16.9708Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.0508,20.95a7,7,0,0,1,0-9.9l1.414,1.4146a5,5,0,0,0,0,7.0715Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.5146,24.4854a12.0006,12.0006,0,0,1,0-16.9708l1.4141,1.4141a10.0011,10.0011,0,0,0,0,14.1426Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3,15H2V4H0V28H2V17H3a1,1,0,0,0,0-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4V15H29a1,1,0,0,0,0,2h1V28h2V4Z" }), children);
1233
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 20H30V22H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 24H30V26H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 28H30V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,18a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,14,18Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 7H15V16H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,4A10.0111,10.0111,0,0,1,24,14h2A12,12,0,1,0,14,26V24A10,10,0,0,1,14,4Z" }), children);
1270
1234
  });
1271
- if (process.env.NODE_ENV !== "production") WifiBridge.propTypes = require_iconPropTypes.iconPropTypes;
1272
- const WifiBridgeAlt = react.default.forwardRef(function WifiBridgeAlt({ children, size = 16, ...rest }, ref) {
1273
- return react.default.createElement(require_Icon_js, {
1235
+ if (process.env.NODE_ENV !== "production") WarningOther.propTypes = require_iconPropTypes.iconPropTypes;
1236
+ const WarningSquare = /* @__PURE__ */ react.default.forwardRef(function WarningSquare({ children, size = 16, ...rest }, ref) {
1237
+ return react.default.createElement(require_Icon.Icon, {
1274
1238
  width: size,
1275
1239
  height: size,
1276
1240
  ref,
@@ -1278,11 +1242,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1278
1242
  viewBox: "0 0 32 32",
1279
1243
  fill: "currentColor",
1280
1244
  ...rest
1281
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,26H11a5.0057,5.0057,0,0,0-5-5V19A7.0078,7.0078,0,0,1,13,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,26H16A10.0113,10.0113,0,0,0,6,16V14A12.0137,12.0137,0,0,1,18,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,13a7.0078,7.0078,0,0,1-7-7h2a5.0057,5.0057,0,0,0,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18A12.0137,12.0137,0,0,1,14,6h2A10.0113,10.0113,0,0,0,26,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.707,24.293a.9994.9994,0,0,0-1.414,0L2,28.5859,3.4143,30,7.707,25.707A.9994.9994,0,0,0,7.707,24.293Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5859,2,24.293,6.293a1,1,0,0,0,1.414,1.414L30,3.4141Z" }), children);
1245
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,20a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,16,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 9H17V18H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z" }), children);
1282
1246
  });
1283
- if (process.env.NODE_ENV !== "production") WifiBridgeAlt.propTypes = require_iconPropTypes.iconPropTypes;
1284
- const Wikis = react.default.forwardRef(function Wikis({ children, size = 16, ...rest }, ref) {
1285
- return react.default.createElement(require_Icon_js, {
1247
+ if (process.env.NODE_ENV !== "production") WarningSquare.propTypes = require_iconPropTypes.iconPropTypes;
1248
+ const WarningSquareFilled = /* @__PURE__ */ react.default.forwardRef(function WarningSquareFilled({ children, size = 16, ...rest }, ref) {
1249
+ return react.default.createElement(require_Icon.Icon, {
1286
1250
  width: size,
1287
1251
  height: size,
1288
1252
  ref,
@@ -1290,11 +1254,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1290
1254
  viewBox: "0 0 32 32",
1291
1255
  fill: "currentColor",
1292
1256
  ...rest
1293
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM28,15H22A24.26,24.26,0,0,0,19.21,4.45,12,12,0,0,1,28,15ZM16,28a5,5,0,0,1-.67,0A21.85,21.85,0,0,1,12,17H20a21.85,21.85,0,0,1-3.3,11A5,5,0,0,1,16,28ZM12,15a21.85,21.85,0,0,1,3.3-11,6,6,0,0,1,1.34,0A21.85,21.85,0,0,1,20,15Zm.76-10.55A24.26,24.26,0,0,0,10,15h-6A12,12,0,0,1,12.79,4.45ZM4.05,17h6a24.26,24.26,0,0,0,2.75,10.55A12,12,0,0,1,4.05,17ZM19.21,27.55A24.26,24.26,0,0,0,22,17h6A12,12,0,0,1,19.21,27.55Z" }), children);
1257
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.0022,4H5.998A1.998,1.998,0,0,0,4,5.998V26.002A1.998,1.998,0,0,0,5.998,28H26.0022A1.9979,1.9979,0,0,0,28,26.002V5.998A1.9979,1.9979,0,0,0,26.0022,4ZM14.8752,8h2.25V18h-2.25ZM16,24a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1258
+ fill: "none",
1259
+ d: "M14.8751,8h2.25V18h-2.25ZM16,24a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,24Z",
1260
+ "data-icon-path": "inner-path"
1261
+ }), children);
1294
1262
  });
1295
- if (process.env.NODE_ENV !== "production") Wikis.propTypes = require_iconPropTypes.iconPropTypes;
1296
- const WindGusts = react.default.forwardRef(function WindGusts({ children, size = 16, ...rest }, ref) {
1297
- return react.default.createElement(require_Icon_js, {
1263
+ if (process.env.NODE_ENV !== "production") WarningSquareFilled.propTypes = require_iconPropTypes.iconPropTypes;
1264
+ const Watch = /* @__PURE__ */ react.default.forwardRef(function Watch({ children, size = 16, ...rest }, ref) {
1265
+ return react.default.createElement(require_Icon.Icon, {
1298
1266
  width: size,
1299
1267
  height: size,
1300
1268
  ref,
@@ -1302,11 +1270,17 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1302
1270
  viewBox: "0 0 32 32",
1303
1271
  fill: "currentColor",
1304
1272
  ...rest
1305
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3164,8.0513l-18-6A1,1,0,0,0,10.4,2.2L4,7V2H2V30H4V11l6.4,4.8a1,1,0,0,0,.9165.1489l18-6a1,1,0,0,0,0-1.8974ZM10,13,4.6665,9,10,5Zm4-.0542-2,.667V4.3872l2,.667Zm4-1.333-2,.6665V5.7207l2,.6665Zm2-.667V7.0542L25.8379,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,22a4,4,0,0,0-8,0h2a2,2,0,1,1,2,2H8v2h8A4.0045,4.0045,0,0,0,20,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,22a4.0045,4.0045,0,0,0-4,4h2a2,2,0,1,1,2,2H12v2H26a4,4,0,0,0,0-8Z" }), children);
1273
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h1v6h2V24h6v6h2V24h1a2,2,0,0,0,2-2V10A2,2,0,0,0,22,8ZM10,22V10H22V22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 14H27V18H25z" }), children);
1306
1274
  });
1307
- if (process.env.NODE_ENV !== "production") WindGusts.propTypes = require_iconPropTypes.iconPropTypes;
1308
- const WindPower = react.default.forwardRef(function WindPower({ children, size = 16, ...rest }, ref) {
1309
- return react.default.createElement(require_Icon_js, {
1275
+ if (process.env.NODE_ENV !== "production") Watch.propTypes = require_iconPropTypes.iconPropTypes;
1276
+ const Watson = /* @__PURE__ */ react.default.forwardRef(function Watson({ children, size = 16, ...rest }, ref) {
1277
+ if (process.env.NODE_ENV !== "production") {
1278
+ if (!didWarnAboutDeprecation["Watson"]) {
1279
+ didWarnAboutDeprecation["Watson"] = true;
1280
+ console.warn("Icon represents the old avatar for the Watson brand, which is retired since the watsonx brand launch. Replaced by the icon watsonx. As a result, the Watson component will be removed in the next major version of @carbon/icons-react.");
1281
+ }
1282
+ }
1283
+ return react.default.createElement(require_Icon.Icon, {
1310
1284
  width: size,
1311
1285
  height: size,
1312
1286
  ref,
@@ -1314,11 +1288,17 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1314
1288
  viewBox: "0 0 32 32",
1315
1289
  fill: "currentColor",
1316
1290
  ...rest
1317
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,28V15.8159a3.0059,3.0059,0,0,0,1.47-1.1186L27.063,17l.5176-1.9321-8.6045-2.3052a2.985,2.985,0,0,0-2.63-2.7275L14.1938,2l-1.9316.5186,2.1318,7.956a2.9588,2.9588,0,0,0-1.093,3.8115L7,20.5859,8.415,22l6.3-6.3A2.8938,2.8938,0,0,0,15,15.8154V28H2v2H30V28Zm0-15a1,1,0,1,1-1-1A1.0008,1.0008,0,0,1,17,13Z" }), children);
1291
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.74,9.49h0A11.41,11.41,0,0,0,16,8h0a.76.76,0,1,0,0,1.51,10.15,10.15,0,0,1,1.91.21c-2.26,1.08-4.76,3.58-6.73,7a22.48,22.48,0,0,0-2,4.44A9.58,9.58,0,0,1,7,17.22a3.43,3.43,0,0,1,.28-2.66v0h0c.79-1.37,2.44-2.15,4.63-2.2a.76.76,0,0,0,.74-.78.75.75,0,0,0-.78-.74C9.19,10.88,7.1,11.92,6,13.74H6v0s0,0,0,0a4.84,4.84,0,0,0-.44,3.79,12,12,0,0,0,3.2,5.22A11.36,11.36,0,0,0,8.52,26a10,10,0,0,1-2-3.48A.75.75,0,0,0,5.57,22a.76.76,0,0,0-.49,1,11.45,11.45,0,0,0,5.18,6.38h0A11.42,11.42,0,0,0,16,30.92a11.74,11.74,0,0,0,3-.39,11.48,11.48,0,0,0,2.77-21ZM18.58,29.06a9.9,9.9,0,0,1-7.56-1h0c-.86-.49-1.21-2-.94-4a18.85,18.85,0,0,0,2.48,1.72,13.92,13.92,0,0,0,6.93,2,11,11,0,0,0,2.42-.28A9.78,9.78,0,0,1,18.58,29.06Zm6.06-4.66c-2,2-6.66,2.74-11.32.05a17.36,17.36,0,0,1-2.89-2.12,21.08,21.08,0,0,1,2.08-4.91c2.94-5.08,6.83-7.57,8.47-6.62h0A10,10,0,0,1,24.64,24.4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.16,11.72,1.14,10a.76.76,0,1,0-.76,1.31L3.4,13a.86.86,0,0,0,.38.1.77.77,0,0,0,.66-.38A.76.76,0,0,0,4.16,11.72Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.29,7.59A.74.74,0,0,0,8.94,8a.75.75,0,0,0,.38-.1.76.76,0,0,0,.28-1l-1.74-3a.76.76,0,0,0-1-.27.75.75,0,0,0-.28,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6.08a.76.76,0,0,0,.76-.76V1.83a.76.76,0,0,0-1.52,0V5.32A.76.76,0,0,0,16,6.08Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.68,7.87a.75.75,0,0,0,1-.28l1.75-3a.75.75,0,0,0-.28-1,.76.76,0,0,0-1,.27l-1.74,3A.76.76,0,0,0,22.68,7.87Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.9,10.25a.76.76,0,0,0-1-.27l-3,1.74a.76.76,0,0,0-.28,1,.77.77,0,0,0,.66.38.86.86,0,0,0,.38-.1l3-1.75A.76.76,0,0,0,31.9,10.25Z" }), children);
1318
1292
  });
1319
- if (process.env.NODE_ENV !== "production") WindPower.propTypes = require_iconPropTypes.iconPropTypes;
1320
- const WindStream = react.default.forwardRef(function WindStream({ children, size = 16, ...rest }, ref) {
1321
- return react.default.createElement(require_Icon_js, {
1293
+ if (process.env.NODE_ENV !== "production") Watson.propTypes = require_iconPropTypes.iconPropTypes;
1294
+ const WatsonMachineLearning = /* @__PURE__ */ react.default.forwardRef(function WatsonMachineLearning({ children, size = 16, ...rest }, ref) {
1295
+ if (process.env.NODE_ENV !== "production") {
1296
+ if (!didWarnAboutDeprecation["WatsonMachineLearning"]) {
1297
+ didWarnAboutDeprecation["WatsonMachineLearning"] = true;
1298
+ console.warn("Icon design is defunct, replaced with the existing icon ibm-watson--machine-learning. As a result, the WatsonMachineLearning component will be removed in the next major version of @carbon/icons-react.");
1299
+ }
1300
+ }
1301
+ return react.default.createElement(require_Icon.Icon, {
1322
1302
  width: size,
1323
1303
  height: size,
1324
1304
  ref,
@@ -1326,11 +1306,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1326
1306
  viewBox: "0 0 32 32",
1327
1307
  fill: "currentColor",
1328
1308
  ...rest
1329
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,2,23.5859,3.4141,26.1719,6h-5.09a16.93,16.93,0,0,0-6.3139,1.2158L10.4893,8.9272A14.93,14.93,0,0,1,4.9185,10H2v2H4.9185a16.93,16.93,0,0,0,6.3139-1.2158l4.2783-1.7114A14.93,14.93,0,0,1,21.0815,8h5.09l-2.586,2.5859L25,12l5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,11l-1.4141,1.4141L22.1719,15H18.9014a16.9422,16.9422,0,0,0-5.9693,1.0825l-2.5664.9624A14.9456,14.9456,0,0,1,5.0986,18H2v2H5.0986a16.9422,16.9422,0,0,0,5.9693-1.0825l2.5664-.9624A14.9456,14.9456,0,0,1,18.9014,17h3.2705l-2.586,2.5859L21,21l5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,20l-1.4141,1.4141L18.1719,24H16.5967a16.9879,16.9879,0,0,0-5.3765.8721l-1.0727.3584A14.9852,14.9852,0,0,1,5.4033,26H2v2H5.4033a16.9879,16.9879,0,0,0,5.3765-.8721l1.0727-.3584A14.9852,14.9852,0,0,1,16.5967,26h1.5752l-2.586,2.5859L17,30l5-5Z" }), children);
1309
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,26H20V17.76l-3.23,3.88a1,1,0,0,1-1.54,0L12,17.76V26H10V15a1,1,0,0,1,.66-.94,1,1,0,0,1,1.11.3L16,19.44l4.23-5.08a1,1,0,0,1,1.11-.3A1,1,0,0,1,22,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.16,14.65l-3-1.75a.76.76,0,1,0-.76,1.32L3.4,16a.76.76,0,1,0,.76-1.31Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.29,10.52a.73.73,0,0,0,1,.27.75.75,0,0,0,.28-1l-1.74-3a.76.76,0,1,0-1.32.76Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,9a.76.76,0,0,0,.76-.76V4.76a.76.76,0,1,0-1.52,0V8.25A.76.76,0,0,0,16,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.68,10.79a.75.75,0,0,0,.37.11.76.76,0,0,0,.66-.38l1.75-3a.76.76,0,0,0-1.32-.76l-1.74,3A.75.75,0,0,0,22.68,10.79Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.9,13.18a.76.76,0,0,0-1-.28l-3,1.75A.76.76,0,0,0,28.6,16l3-1.74A.77.77,0,0,0,31.9,13.18Z" }), children);
1330
1310
  });
1331
- if (process.env.NODE_ENV !== "production") WindStream.propTypes = require_iconPropTypes.iconPropTypes;
1332
- const WatsonHealthWindowAuto = react.default.forwardRef(function WatsonHealthWindowAuto({ children, size = 16, ...rest }, ref) {
1333
- return react.default.createElement(require_Icon_js, {
1311
+ if (process.env.NODE_ENV !== "production") WatsonMachineLearning.propTypes = require_iconPropTypes.iconPropTypes;
1312
+ const Watsonx = /* @__PURE__ */ react.default.forwardRef(function Watsonx({ children, size = 16, ...rest }, ref) {
1313
+ return react.default.createElement(require_Icon.Icon, {
1334
1314
  width: size,
1335
1315
  height: size,
1336
1316
  ref,
@@ -1338,23 +1318,14 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1338
1318
  viewBox: "0 0 32 32",
1339
1319
  fill: "currentColor",
1340
1320
  ...rest
1341
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 4H17V7H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 15H28V17H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 25H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 15H7V17H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1342
- d: "M7.55 7.04H9.55V10.04H7.55z",
1343
- transform: "rotate(-45 8.55 8.548)"
1344
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1345
- d: "M21.96 7.55H24.96V9.55H21.96z",
1346
- transform: "rotate(-45 23.454 8.555)"
1347
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1348
- d: "M22.45 21.95H24.45V24.95H22.45z",
1349
- transform: "rotate(-45 23.452 23.446)"
1350
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1351
- d: "M7.05 22.45H10.05V24.45H7.05z",
1352
- transform: "rotate(-45 8.544 23.451)"
1353
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 30H28V32H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 0H28V2H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Zm-4,6a4,4,0,0,1,4-4v8A4,4,0,0,1,12,16Z" }), children);
1321
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1322
+ strokeWidth: "0",
1323
+ d: "m29.312,22.9189c1.1042-2.1201,1.688-4.5127,1.688-6.9189C31,7.729,24.271,1,16,1c-3.3738,0-6.5815,1.1191-9.2046,3.1665-.2441-.106-.5125-.1665-.7954-.1665-1.1045,0-2,.8955-2,2s.8955,2,2,2,2-.8955,2-2c0-.0762-.0142-.1489-.0225-.2227,2.2812-1.7964,5.0793-2.7773,8.0225-2.7773.9727,0,1.9172.1157,2.8293.3193-3.3938.9258-5.8994,4.0273-5.8994,7.7109,0,.7891.1167,1.5503.332,2.27-.6985-.2021-1.4285-.3306-2.1919-.3306-3.7039,0-6.8191,2.5342-7.7256,5.957-.218-.9424-.3445-1.9189-.3445-2.9268,0-2.1162.4919-4.1328,1.4619-5.9951l-1.7739-.9238c-1.1042,2.1201-1.688,4.5127-1.688,6.9189,0,8.271,6.729,15,15,15,3.3738,0,6.5815-1.1191,9.2046-3.1665.2441.106.5125.1665.7954.1665,1.1045,0,2-.8955,2-2s-.8955-2-2-2-2,.8955-2,2c0,.0762.0142.1489.0225.2231-1.0796.8496-2.2776,1.5098-3.5493,1.9771.3315-.6641.5269-1.4072.5269-2.2002,0-1.6304-.7959-3.0669-2.0068-3.9805.0457-.3472.0769-.6978.0769-1.0498,0-.7856-.1257-1.54-.3381-2.2573.6995.2012,1.4346.3179,2.198.3179,3.7039,0,6.8191-2.5342,7.7256-5.957.218.9424.3445,1.9189.3445,2.9268,0,2.1162-.4919,4.1328-1.4619,5.9951l1.7739.9238Zm-17.7935,5.2646c-1.8389-.6807-3.49-1.7529-4.8325-3.1338-1.0366-1.1143-1.616-2.5527-1.616-4.0801,0-3.3081,2.6917-6,6-6s6,2.6919,6,6c0,.0498-.0125.0977-.0134.1475-.3413-.0737-.6936-.1172-1.0566-.1172-2.7571,0-5,2.2432-5,5,0,.7861.1924,1.5234.5186,2.1836Zm7.4814-2.1836c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Zm1.9299-8.9697c-3.3083,0-6-2.6919-6-6s2.6917-6,6-6c1.4294,0,2.7422.5039,3.7742,1.3418.3027.2739.5918.561.8677.8618.8479,1.0352,1.3582,2.3569,1.3582,3.7964,0,3.3081-2.6917,6-6,6Z"
1324
+ }), children);
1354
1325
  });
1355
- if (process.env.NODE_ENV !== "production") WatsonHealthWindowAuto.propTypes = require_iconPropTypes.iconPropTypes;
1356
- const WatsonHealthWindowBase = react.default.forwardRef(function WatsonHealthWindowBase({ children, size = 16, ...rest }, ref) {
1357
- return react.default.createElement(require_Icon_js, {
1326
+ if (process.env.NODE_ENV !== "production") Watsonx.propTypes = require_iconPropTypes.iconPropTypes;
1327
+ const WatsonxAi = /* @__PURE__ */ react.default.forwardRef(function WatsonxAi({ children, size = 16, ...rest }, ref) {
1328
+ return react.default.createElement(require_Icon.Icon, {
1358
1329
  width: size,
1359
1330
  height: size,
1360
1331
  ref,
@@ -1362,23 +1333,17 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1362
1333
  viewBox: "0 0 32 32",
1363
1334
  fill: "currentColor",
1364
1335
  ...rest
1365
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V5H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 13H28V15H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 23H17V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 13H7V15H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1366
- d: "M7.55 5.03H9.55V8.030000000000001H7.55z",
1367
- transform: "rotate(-45 8.56 6.544)"
1368
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1369
- d: "M21.96 5.54H24.96V7.54H21.96z",
1370
- transform: "rotate(-45 23.469 6.539)"
1371
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1372
- d: "M22.46 19.94H24.46V22.94H22.46z",
1373
- transform: "rotate(-45 23.462 21.442)"
1336
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m26,24c-1.1046,0-2,.8954-2,2,0,.0764.0142.1488.0225.2229-2.2808,1.7963-5.0792,2.7771-8.0225,2.7771-4.2617,0-8-3.9722-8-8.5,0-4.687,3.813-8.5,8.5-8.5h.5v-2h-.5c-5.7896,0-10.5,4.7104-10.5,10.5,0,1.8839.5304,3.6896,1.4371,5.2565-2.7133-2.3843-4.4371-5.869-4.4371-9.7565,0-2.1152.4917-4.1328,1.4619-5.9956l-1.7744-.9238c-1.104,2.1211-1.6875,4.5137-1.6875,6.9194,0,8.271,6.729,15,15,15,3.3744,0,6.5818-1.1193,9.2048-3.1662.244.106.5123.1662.7952.1662,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1337
+ d: "M11 20H13V22H11z",
1338
+ transform: "rotate(90 12 21)"
1374
1339
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1375
- d: "M7.04 20.45H10.04V22.45H7.04z",
1376
- transform: "rotate(-45 8.554 21.447)"
1377
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 28H28V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,20a6,6,0,1,0-6-6A6,6,0,0,0,16,20Zm0-10v8a4,4,0,0,1,0-8Z" }), children);
1340
+ d: "M19 10H21V12H19z",
1341
+ transform: "rotate(90 20 11)"
1342
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-3.3744,0-6.5818,1.1193-9.2048,3.1662-.244-.106-.5123-.1662-.7952-.1662-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2c0-.0764-.0142-.1488-.0225-.2229,2.2808-1.7963,5.0792-2.7771,8.0225-2.7771,4.2617,0,8,3.9722,8,8.5,0,4.687-3.813,8.5-8.5,8.5h-.5v2h.5c5.7896,0,10.5-4.7104,10.5-10.5,0-1.8853-.5322-3.6917-1.4401-5.2593,2.715,2.3843,4.4401,5.8704,4.4401,9.7593,0,2.1152-.4917,4.1328-1.4619,5.9956l1.7744.9238c1.104-2.1211,1.6875-4.5137,1.6875-6.9194C31,7.729,24.271,1,16,1Z" }), children);
1378
1343
  });
1379
- if (process.env.NODE_ENV !== "production") WatsonHealthWindowBase.propTypes = require_iconPropTypes.iconPropTypes;
1380
- const WatsonHealthWindowBlackSaturation = react.default.forwardRef(function WatsonHealthWindowBlackSaturation({ children, size = 16, ...rest }, ref) {
1381
- return react.default.createElement(require_Icon_js, {
1344
+ if (process.env.NODE_ENV !== "production") WatsonxAi.propTypes = require_iconPropTypes.iconPropTypes;
1345
+ const WatsonxData = /* @__PURE__ */ react.default.forwardRef(function WatsonxData({ children, size = 16, ...rest }, ref) {
1346
+ return react.default.createElement(require_Icon.Icon, {
1382
1347
  width: size,
1383
1348
  height: size,
1384
1349
  ref,
@@ -1386,20 +1351,20 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1386
1351
  viewBox: "0 0 32 32",
1387
1352
  fill: "currentColor",
1388
1353
  ...rest
1389
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V5H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 15H30V17H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 27H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H5V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1390
- d: "M6.225 5.729H8.228V8.732H6.225z",
1391
- transform: "rotate(-45 7.227 7.23)"
1354
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m26,24c-1.1046,0-2,.8954-2,2,0,.0764.0142.1488.0225.2229-2.2808,1.7963-5.0792,2.7771-8.0225,2.7771-2.7746,0-5.3432-.881-7.4566-2.3676.2576.0261.517.0444.7798.0444,4.2329,0,7.6768-3.4438,7.6768-7.6768h-2c0,3.1304-2.5464,5.6768-5.6768,5.6768-2.2111,0-4.1977-1.2816-5.1318-3.2725-.1365-.2972-.2595-.6007-.3738-.9094.6602.322,1.3998.5051,2.1824.5051,2.7568,0,5-2.2432,5-5v-2h-2v2c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-2.1152.4917-4.1328,1.4619-5.9956l-1.7744-.9238c-1.104,2.1211-1.6875,4.5137-1.6875,6.9194,0,8.271,6.729,15,15,15,3.3744,0,6.5818-1.1193,9.2048-3.1662.244.106.5123.1662.7952.1662,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1355
+ d: "M21 21H23V23H21z",
1356
+ transform: "rotate(90 22 22)"
1392
1357
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1393
- d: "M23.267 6.227H26.267V8.227H23.267z",
1394
- transform: "rotate(-45 24.767 7.227)"
1358
+ d: "M15 15H17V17H15z",
1359
+ transform: "rotate(90 16 16)"
1395
1360
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1396
- d: "M23.769 23.269H25.770999999999997V26.270999999999997H23.769z",
1397
- transform: "rotate(-44.999 24.77 24.77)"
1398
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.47 25.126 7.591 23 9 24.419 6.884 26.54 5.47 25.126z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 13H17V15H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 13H21V15H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 11H19V13H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 15H19V17H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 19H19V21H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 17H17V19H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 17H21V19H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7a9,9,0,1,0,9,9A9.01,9.01,0,0,0,16,7ZM9,16a7.004,7.004,0,0,1,6-6.92V11h2V9.08a6.9231,6.9231,0,0,1,2,.605V11h1.89c.0374.0366.074.0732.11.11V13h1.3149a6.931,6.931,0,0,1,.6053,2H21v2h1.92a6.931,6.931,0,0,1-.6053,2H21v1.89c-.0364.0372-.073.0738-.11.11H19v1.3149a6.9231,6.9231,0,0,1-2,.605V21H15v1.92A7.004,7.004,0,0,1,9,16Z" }), children);
1361
+ d: "M9 9H11V11H9z",
1362
+ transform: "rotate(-90 10 10)"
1363
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-3.3744,0-6.5818,1.1193-9.2048,3.1662-.244-.106-.5123-.1662-.7952-.1662-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2c0-.0764-.0142-.1488-.0225-.2229,2.2808-1.7963,5.0792-2.7771,8.0225-2.7771,2.7708,0,5.3363.8784,7.4481,2.3613-.249-.0242-.5005-.038-.7547-.038-4.2329,0-7.6768,3.4438-7.6768,7.6768h2c0-3.1304,2.5464-5.6768,5.6768-5.6768,2.0554,0,3.9068,1.0953,4.9186,2.8651.2153.4283.4053.8701.5729,1.3237-.6615-.3234-1.4005-.5121-2.1849-.5121-2.7568,0-5,2.2432-5,5v2h2v-2c0-1.6543,1.3457-3,3-3s3,1.3457,3,3c0,2.1152-.4917,4.1328-1.4619,5.9956l1.7744.9238c1.104-2.1211,1.6875-4.5137,1.6875-6.9194C31,7.729,24.271,1,16,1Z" }), children);
1399
1364
  });
1400
- if (process.env.NODE_ENV !== "production") WatsonHealthWindowBlackSaturation.propTypes = require_iconPropTypes.iconPropTypes;
1401
- const WatsonHealthWindowOverlay = react.default.forwardRef(function WatsonHealthWindowOverlay({ children, size = 16, ...rest }, ref) {
1402
- return react.default.createElement(require_Icon_js, {
1365
+ if (process.env.NODE_ENV !== "production") WatsonxData.propTypes = require_iconPropTypes.iconPropTypes;
1366
+ const WatsonxGovernance = /* @__PURE__ */ react.default.forwardRef(function WatsonxGovernance({ children, size = 16, ...rest }, ref) {
1367
+ return react.default.createElement(require_Icon.Icon, {
1403
1368
  width: size,
1404
1369
  height: size,
1405
1370
  ref,
@@ -1407,23 +1372,20 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1407
1372
  viewBox: "0 0 32 32",
1408
1373
  fill: "currentColor",
1409
1374
  ...rest
1410
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H17V9H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 17H28V19H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 27H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 17H7V19H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1411
- d: "M7.55 9.03H9.55V12.03H7.55z",
1412
- transform: "rotate(-45 8.558 10.545)"
1413
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1414
- d: "M21.96 9.54H24.96V11.54H21.96z",
1415
- transform: "rotate(-45 23.466 10.54)"
1375
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m26,24c-1.1046,0-2,.8954-2,2,0,.0764.0142.1488.0225.2229-2.2808,1.7963-5.0792,2.7771-8.0225,2.7771-7.1685,0-13-5.8315-13-13,0-2.1152.4917-4.1328,1.4619-5.9956l-1.7744-.9238c-1.104,2.1211-1.6875,4.5137-1.6875,6.9194,0,8.271,6.729,15,15,15,3.3744,0,6.5818-1.1193,9.2048-3.1662.244.106.5123.1662.7952.1662,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1376
+ d: "M11 23H13V25H11z",
1377
+ transform: "rotate(90 12 24)"
1416
1378
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1417
- d: "M22.46 23.94H24.46V26.94H22.46z",
1418
- transform: "rotate(-45 23.459 25.443)"
1379
+ d: "M11 9H13V11H11z",
1380
+ transform: "rotate(90 12 10)"
1419
1381
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1420
- d: "M7.04 24.45H10.04V26.45H7.04z",
1421
- transform: "rotate(-45 8.55 25.448)"
1422
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 2H28V4H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24a6,6,0,1,0-6-6A6,6,0,0,0,16,24Zm0-10v8a4,4,0,0,1,0-8Z" }), children);
1382
+ d: "M11 16H13V18H11z",
1383
+ transform: "rotate(90 12 17)"
1384
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-3.3744,0-6.5818,1.1193-9.2048,3.1662-.244-.106-.5123-.1662-.7952-.1662-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2c0-.0764-.0142-.1488-.0225-.2229,2.2808-1.7963,5.0792-2.7771,8.0225-2.7771,1.6543,0,3,1.3457,3,3s-1.3457,3-3,3h-1v2h1c2.7568,0,5-2.2432,5-5,0-.2399-.0203-.4748-.0531-.7057.9663,1.1348,1.5531,2.6021,1.5531,4.2057,0,3.584-2.916,6.5-6.5,6.5h-1v2h1c4.687,0,8.5-3.813,8.5-8.5,0-.7654-.1111-1.5036-.3017-2.2096,1.1321,1.6206,1.8017,3.587,1.8017,5.7096,0,5.5142-4.4858,10-10,10h-1v2h1c6.6167,0,12-5.3833,12-12,0-.8995-.1058-1.774-.2944-2.6176.8207,1.7031,1.2944,3.6038,1.2944,5.6176,0,2.1152-.4917,4.1328-1.4619,5.9956l1.7744.9238c1.104-2.1211,1.6875-4.5137,1.6875-6.9194C31,7.729,24.271,1,16,1Z" }), children);
1423
1385
  });
1424
- if (process.env.NODE_ENV !== "production") WatsonHealthWindowOverlay.propTypes = require_iconPropTypes.iconPropTypes;
1425
- const WatsonHealthWindowPreset = react.default.forwardRef(function WatsonHealthWindowPreset({ children, size = 16, ...rest }, ref) {
1426
- return react.default.createElement(require_Icon_js, {
1386
+ if (process.env.NODE_ENV !== "production") WatsonxGovernance.propTypes = require_iconPropTypes.iconPropTypes;
1387
+ const WaveDirection = /* @__PURE__ */ react.default.forwardRef(function WaveDirection({ children, size = 16, ...rest }, ref) {
1388
+ return react.default.createElement(require_Icon.Icon, {
1427
1389
  width: size,
1428
1390
  height: size,
1429
1391
  ref,
@@ -1431,23 +1393,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1431
1393
  viewBox: "0 0 32 32",
1432
1394
  fill: "currentColor",
1433
1395
  ...rest
1434
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H17V8H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 15H26V17H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 24H17V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 15H8V17H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1435
- d: "M8.586 8.586H10.586V10.586H8.586z",
1436
- transform: "rotate(-45 9.586 9.586)"
1437
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1438
- d: "M21.414 8.586H23.414V10.586H21.414z",
1439
- transform: "rotate(-45 22.414 9.586)"
1440
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1441
- d: "M21.414 21.414H23.414V23.414H21.414z",
1442
- transform: "rotate(-45 22.414 22.414)"
1443
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1444
- d: "M8.586 21.414H10.586V23.414H8.586z",
1445
- transform: "rotate(-45 9.586 22.414)"
1446
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,0-6-6A6,6,0,0,0,16,22Zm0-10v8a4,4,0,0,1,0-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z" }), children);
1396
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H17a7.0078,7.0078,0,0,1-7-7,6.6832,6.6832,0,0,1,2.0244-4.6967A6.7126,6.7126,0,0,0,10.0093,18C5.0425,18.0466,4,24.5513,4,30H2C2,18.4907,6.3452,16.0342,9.9907,16a10.0962,10.0962,0,0,1,4.4785,1.117,1,1,0,0,1,.0616,1.73A4.8773,4.8773,0,0,0,17,28h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,24V22a8,8,0,1,0-8-8H8A10,10,0,1,1,18,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1397
+ cx: "18",
1398
+ cy: "8",
1399
+ r: "1"
1400
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17.5859l-2.3-2.3007A2.9665,2.9665,0,0,0,21,14a3.0033,3.0033,0,0,0-3-3,2.9609,2.9609,0,0,0-1.2854.3008L14.4141,9,13,10.4141l2.3,2.3007A2.9665,2.9665,0,0,0,15,14a3.0033,3.0033,0,0,0,3,3,2.9609,2.9609,0,0,0,1.2854-.3008L21.5859,19ZM17,14a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,17,14Z" }), children);
1447
1401
  });
1448
- if (process.env.NODE_ENV !== "production") WatsonHealthWindowPreset.propTypes = require_iconPropTypes.iconPropTypes;
1449
- const Windy = react.default.forwardRef(function Windy({ children, size = 16, ...rest }, ref) {
1450
- return react.default.createElement(require_Icon_js, {
1402
+ if (process.env.NODE_ENV !== "production") WaveDirection.propTypes = require_iconPropTypes.iconPropTypes;
1403
+ const WaveHeight = /* @__PURE__ */ react.default.forwardRef(function WaveHeight({ children, size = 16, ...rest }, ref) {
1404
+ return react.default.createElement(require_Icon.Icon, {
1451
1405
  width: size,
1452
1406
  height: size,
1453
1407
  ref,
@@ -1455,11 +1409,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1455
1409
  viewBox: "0 0 32 32",
1456
1410
  fill: "currentColor",
1457
1411
  ...rest
1458
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,15H8V13H21a3,3,0,1,0-3-3H16a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,28a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H4V18H23a5,5,0,0,1,0,10Z" }), children);
1412
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 2H30V4H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 8H28V10H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 14H30V16H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 20H28V22H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,28H24a10.0349,10.0349,0,0,1-6.9268-17.2622A11.9629,11.9629,0,0,0,12.9937,10a6.9027,6.9027,0,0,0-6.0308,3.42C4.9966,16.4348,4,21.34,4,28H2c0-7.0542,1.106-12.3274,3.2871-15.6726A8.906,8.906,0,0,1,12.9937,8h.0068a14.762,14.762,0,0,1,6.4619,1.592,1,1,0,0,1,.0869,1.7222A8.0249,8.0249,0,0,0,24,26h6Z" }), children);
1459
1413
  });
1460
- if (process.env.NODE_ENV !== "production") Windy.propTypes = require_iconPropTypes.iconPropTypes;
1461
- const WindyDust = react.default.forwardRef(function WindyDust({ children, size = 16, ...rest }, ref) {
1462
- return react.default.createElement(require_Icon_js, {
1414
+ if (process.env.NODE_ENV !== "production") WaveHeight.propTypes = require_iconPropTypes.iconPropTypes;
1415
+ const WavePeriod = /* @__PURE__ */ react.default.forwardRef(function WavePeriod({ children, size = 16, ...rest }, ref) {
1416
+ return react.default.createElement(require_Icon.Icon, {
1463
1417
  width: size,
1464
1418
  height: size,
1465
1419
  ref,
@@ -1467,11 +1421,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1467
1421
  viewBox: "0 0 32 32",
1468
1422
  fill: "currentColor",
1469
1423
  ...rest
1470
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,28a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H22V18h1a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18H20V20H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H14V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 18H8V20H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,15H20V13h1a3,3,0,1,0-3-3H16a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H18V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 13H12V15H8z" }), children);
1424
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H17a7.0078,7.0078,0,0,1-7-7,6.6832,6.6832,0,0,1,2.0244-4.6967A6.7935,6.7935,0,0,0,10.0093,18C5.0425,18.0466,4,24.5513,4,30H2C2,18.4907,6.3452,16.0342,9.9907,16a10.0717,10.0717,0,0,1,4.4785,1.117,1,1,0,0,1,.0616,1.73A4.8773,4.8773,0,0,0,17,28h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 8H19V16H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,5.4141,26.5859,4,24.3242,6.2617A9.95,9.95,0,0,0,19,4.0508V2H17V4.0508A10.0132,10.0132,0,0,0,8,14h2a8,8,0,1,1,8,8v2A9.9928,9.9928,0,0,0,25.7383,7.6758Z" }), children);
1471
1425
  });
1472
- if (process.env.NODE_ENV !== "production") WindyDust.propTypes = require_iconPropTypes.iconPropTypes;
1473
- const WindySnow = react.default.forwardRef(function WindySnow({ children, size = 16, ...rest }, ref) {
1474
- return react.default.createElement(require_Icon_js, {
1426
+ if (process.env.NODE_ENV !== "production") WavePeriod.propTypes = require_iconPropTypes.iconPropTypes;
1427
+ const Waveform = /* @__PURE__ */ react.default.forwardRef(function Waveform({ children, size = 16, ...rest }, ref) {
1428
+ return react.default.createElement(require_Icon.Icon, {
1475
1429
  width: size,
1476
1430
  height: size,
1477
1431
  ref,
@@ -1479,11 +1433,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1479
1433
  viewBox: "0 0 32 32",
1480
1434
  fill: "currentColor",
1481
1435
  ...rest
1482
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,28a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H6V18H25a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,15H10V13H23a3,3,0,1,0-3-3H18a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 23H13V25H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 25H15V27H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 27H17V29H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 23H17V25H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 27H13V29H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 4H8V6H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H10V8H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 8H12V10H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4H12V6H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 8H8V10H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H4V28H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 28H6V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 30H8V32H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 26H8V28H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 30H4V32H2z" }), children);
1436
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,19h-2v-6h2v6ZM4,10h-2v12h2v-12ZM14,10h-2v12h2v-12ZM24,10h-2v12h2v-12ZM9,6h-2v20h2V6ZM29,6h-2v20h2V6Z" }), children);
1483
1437
  });
1484
- if (process.env.NODE_ENV !== "production") WindySnow.propTypes = require_iconPropTypes.iconPropTypes;
1485
- const WindyStrong = react.default.forwardRef(function WindyStrong({ children, size = 16, ...rest }, ref) {
1486
- return react.default.createElement(require_Icon_js, {
1438
+ if (process.env.NODE_ENV !== "production") Waveform.propTypes = require_iconPropTypes.iconPropTypes;
1439
+ const WeatherFrontCold = /* @__PURE__ */ react.default.forwardRef(function WeatherFrontCold({ children, size = 16, ...rest }, ref) {
1440
+ return react.default.createElement(require_Icon.Icon, {
1487
1441
  width: size,
1488
1442
  height: size,
1489
1443
  ref,
@@ -1491,11 +1445,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1491
1445
  viewBox: "0 0 32 32",
1492
1446
  fill: "currentColor",
1493
1447
  ...rest
1494
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H4V20h9a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,25a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H2V15H25a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,12H6V10H21a3,3,0,1,0-3-3H16a5,5,0,1,1,5,5Z" }), children);
1448
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.1655,2a13.0289,13.0289,0,0,0-12.542,9.5791l-1.1767,4.3154A11.0237,11.0237,0,0,1,3.8345,24H2v2H3.8345c.2975,0,.5918-.0171.8853-.0371l7.9291,2.9736A1,1,0,0,0,14,28V21.0923a12.9311,12.9311,0,0,0,.9121-1.313l6.3628-1.8179a1,1,0,0,0,.5059-1.5864L17.7843,11.38a10.9268,10.9268,0,0,1,1.1516-2.3472l5.7477,1.916A1,1,0,0,0,26,10V4.2251A10.8956,10.8956,0,0,1,28.1655,4H30V2ZM8.3354,25.1826A13.047,13.047,0,0,0,12,23.0943v3.4624Zm7.74-7.8154c.1107-.3105.2136-.625.3013-.9463l.732-2.6846L19.28,16.4512ZM24,8.6123l-3.7411-1.247A11.0712,11.0712,0,0,1,24,4.8306Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4 10 8.586 3.414 2 2 3.414 8.586 10 4 10 4 12 12 12 12 4 10 4z" }), children);
1495
1449
  });
1496
- if (process.env.NODE_ENV !== "production") WindyStrong.propTypes = require_iconPropTypes.iconPropTypes;
1497
- const WinterWarning = react.default.forwardRef(function WinterWarning({ children, size = 16, ...rest }, ref) {
1498
- return react.default.createElement(require_Icon_js, {
1450
+ if (process.env.NODE_ENV !== "production") WeatherFrontCold.propTypes = require_iconPropTypes.iconPropTypes;
1451
+ const WeatherFrontStationary = /* @__PURE__ */ react.default.forwardRef(function WeatherFrontStationary({ children, size = 16, ...rest }, ref) {
1452
+ return react.default.createElement(require_Icon.Icon, {
1499
1453
  width: size,
1500
1454
  height: size,
1501
1455
  ref,
@@ -1503,14 +1457,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1503
1457
  viewBox: "0 0 32 32",
1504
1458
  fill: "currentColor",
1505
1459
  ...rest
1506
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.684 19.051 19.167 19.891 13 15.486 13 7.369 15.555 5.665 14.445 4.001 12 5.631 9.555 4.001 8.445 5.665 11 7.369 11 14.057 6 10.486 6 8 4 8 4 10.279 1.684 11.051 2.316 12.949 4.833 12.11 10.28 16.001 4.833 19.891 2.316 19.051 1.684 20.949 4 21.721 4 24 6 24 6 21.515 11 17.944 11 24.631 8.445 26.335 9.555 27.999 12 26.368 14.445 27.999 15.555 26.335 13 24.631 13 17.943 18 21.515 18 24 20 24 20 21.721 22.316 20.949 21.684 19.051z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1507
- fill: "none",
1508
- d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"
1509
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), children);
1460
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.1655,2a12.9848,12.9848,0,0,0-8.4074,3.1065A3.9947,3.9947,0,1,0,15.583,11.728l-1.1362,4.1665c-.0725.2657-.1579.5254-.2489.7818a3.9864,3.9864,0,0,0-5.1547,6.0054A10.9541,10.9541,0,0,1,3.8345,24H2v2H3.8345c.2975,0,.5918-.0171.8853-.0371l7.9291,2.9736A1,1,0,0,0,14,28V21.0923a12.9311,12.9311,0,0,0,.9121-1.313l6.3628-1.8179a1,1,0,0,0,.5059-1.5864L17.7843,11.38a10.9268,10.9268,0,0,1,1.1516-2.3472l5.7477,1.916A1,1,0,0,0,26,10V4.2251A10.8956,10.8956,0,0,1,28.1655,4H30V2ZM17,6a1.98,1.98,0,0,1,1.3237.53A12.9413,12.9413,0,0,0,16.24,9.8482,1.9988,1.9988,0,0,1,17,6ZM10,20a1.9879,1.9879,0,0,1,3.3374-1.4717,11.0157,11.0157,0,0,1-2.5959,3.0147A1.9975,1.9975,0,0,1,10,20ZM8.3354,25.1826A13.047,13.047,0,0,0,12,23.0943v3.4624Zm7.74-7.8154c.1107-.3105.2136-.625.3013-.9463l.732-2.6846L19.28,16.4512ZM24,8.6123l-3.7411-1.247A11.0712,11.0712,0,0,1,24,4.8306Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 22 22 24 26.586 24 22 28.586 23.414 30 28 25.414 28 30 30 30 30 22 22 22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2 2 4 6.586 4 2 8.586 3.414 10 8 5.414 8 10 10 10 10 2 2 2z" }), children);
1510
1461
  });
1511
- if (process.env.NODE_ENV !== "production") WinterWarning.propTypes = require_iconPropTypes.iconPropTypes;
1512
- const WintryMix = react.default.forwardRef(function WintryMix({ children, size = 16, ...rest }, ref) {
1513
- return react.default.createElement(require_Icon_js, {
1462
+ if (process.env.NODE_ENV !== "production") WeatherFrontStationary.propTypes = require_iconPropTypes.iconPropTypes;
1463
+ const WeatherFrontWarm = /* @__PURE__ */ react.default.forwardRef(function WeatherFrontWarm({ children, size = 16, ...rest }, ref) {
1464
+ return react.default.createElement(require_Icon.Icon, {
1514
1465
  width: size,
1515
1466
  height: size,
1516
1467
  ref,
@@ -1518,11 +1469,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1518
1469
  viewBox: "0 0 32 32",
1519
1470
  fill: "currentColor",
1520
1471
  ...rest
1521
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 28H19V30H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 30H21V32H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H21V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 30H17V32H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 16H15V18H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 18H17V20H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 20H19V22H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 16H19V18H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 20H15V22H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,10,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.5321,6.5321,0,0,0,2,15.5V22l1,2,1-2V20.18a6.4891,6.4891,0,0,0,3.4294,1.7246L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418.977.977,0,0,0-.489-.0894V20H8.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,20h-.542v.0083A.9955.9955,0,0,0,22,21v3l1,2,1-2V21.9746a6.4473,6.4473,0,0,0,2-.4761V26l1,2,1-2V20.18A6.4876,6.4876,0,0,0,24.8008,9.1362Z" }), children);
1472
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.1655,2a13.0289,13.0289,0,0,0-12.542,9.5791l-1.1767,4.3154A11.0237,11.0237,0,0,1,3.8345,24H2v2H3.8345a12.9139,12.9139,0,0,0,3.4687-.4819,3.9979,3.9979,0,1,0,6.5818-4.2866,12.9671,12.9671,0,0,0,1.6209-2.5269,3.9944,3.9944,0,1,0,2.3772-7.5991,10.95,10.95,0,0,1,1.7253-3.01,3.9825,3.9825,0,0,0,6.9058-3.9648A10.9435,10.9435,0,0,1,28.1655,4H30V2ZM11,26a1.9983,1.9983,0,0,1-1.8118-1.1655,13.0811,13.0811,0,0,0,3.2969-2.1426A1.9773,1.9773,0,0,1,11,26Zm8-11a1.9926,1.9926,0,0,1-2.759,1.8467c.0442-.1426.0959-.2813.1355-.4258L17.301,13.03A1.9976,1.9976,0,0,1,19,15Zm6-9a1.9942,1.9942,0,0,1-3.9011.5894,11.0511,11.0511,0,0,1,3.3623-1.9385A1.995,1.995,0,0,1,25,6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4 10 8.586 3.414 2 2 3.414 8.586 10 4 10 4 12 12 12 12 4 10 4z" }), children);
1522
1473
  });
1523
- if (process.env.NODE_ENV !== "production") WintryMix.propTypes = require_iconPropTypes.iconPropTypes;
1524
- const WirelessCheckout = react.default.forwardRef(function WirelessCheckout({ children, size = 16, ...rest }, ref) {
1525
- return react.default.createElement(require_Icon_js, {
1474
+ if (process.env.NODE_ENV !== "production") WeatherFrontWarm.propTypes = require_iconPropTypes.iconPropTypes;
1475
+ const WeatherStation = /* @__PURE__ */ react.default.forwardRef(function WeatherStation({ children, size = 16, ...rest }, ref) {
1476
+ return react.default.createElement(require_Icon.Icon, {
1526
1477
  width: size,
1527
1478
  height: size,
1528
1479
  ref,
@@ -1530,11 +1481,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1530
1481
  viewBox: "0 0 32 32",
1531
1482
  fill: "currentColor",
1532
1483
  ...rest
1533
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,28V26A10,10,0,0,0,28,16h2A12,12,0,0,1,18,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23V21a5,5,0,0,0,5-5h2A7,7,0,0,1,18,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11H21V7a3,3,0,0,0-3-3H12A3,3,0,0,0,9,7v4H3a1,1,0,0,0-1,1.15L3.88,24.3a2,2,0,0,0,2,1.7H15V24H5.86L4.17,13H27ZM11,7a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v4H11Z" }), children);
1484
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,28V17h1a2.0023,2.0023,0,0,0,2-2V11a2.0023,2.0023,0,0,0-2-2H14a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h1V28H2v2H30V28ZM14,11h4l.0015,4H14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.3325,18.2168a7.0007,7.0007,0,0,1,0-10.4341l1.334,1.49a5,5,0,0,0,0,7.4537Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.667,18.2168l-1.334-1.49a4.9995,4.9995,0,0,0,0-7.4537l1.334-1.49a7,7,0,0,1,0,10.4341Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.3994,21.8008a11.0019,11.0019,0,0,1,0-17.6006L7.6,5.8a9.0009,9.0009,0,0,0,0,14.4014Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.6006,21.8008l-1.2012-1.6a9.001,9.001,0,0,0,0-14.4019l1.2012-1.6a11.002,11.002,0,0,1,0,17.6011Z" }), children);
1534
1485
  });
1535
- if (process.env.NODE_ENV !== "production") WirelessCheckout.propTypes = require_iconPropTypes.iconPropTypes;
1536
- const Wmv = react.default.forwardRef(function Wmv({ children, size = 16, ...rest }, ref) {
1537
- return react.default.createElement(require_Icon_js, {
1486
+ if (process.env.NODE_ENV !== "production") WeatherStation.propTypes = require_iconPropTypes.iconPropTypes;
1487
+ const WebServicesCluster = /* @__PURE__ */ react.default.forwardRef(function WebServicesCluster({ children, size = 16, ...rest }, ref) {
1488
+ return react.default.createElement(require_Icon.Icon, {
1538
1489
  width: size,
1539
1490
  height: size,
1540
1491
  ref,
@@ -1542,11 +1493,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1542
1493
  viewBox: "0 0 32 32",
1543
1494
  fill: "currentColor",
1544
1495
  ...rest
1545
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 9 27 22 25 9 23 9 25.52 23 28.48 23 31 9 29 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 9 17.48 14 17 15.98 16.54 14 15 9 13 9 13 23 15 23 15 15 14.84 13 15.42 15 17 19.63 18.58 15 19.16 13 19 15 19 23 21 23 21 9 19 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.2 9 8.86 17 8.6 21.54 8.19 18 7.51 12.54 5.49 12.54 4.81 18 4.4 21.54 4.14 17 3.8 9 2 9 3 23 5.27 23 6.03 18.07 6.49 14 6.5 13.97 6.51 14 6.97 18.07 7.73 23 10 23 11 9 9.2 9z" }), children);
1496
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,26c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,20c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,14c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,20c-.2559,0-.512-.0977-.707-.2928l-3-3c-.1953-.1953-.293-.4512-.293-.7071s.0977-.5118.293-.7072l3-3c.1951-.1952.451-.2928.707-.2928s.512.0977.707.2928l3,3c.1953.1953.293.4512.293.7071s-.0977.5118-.293.7072l-3,3c-.1951.1952-.4512.2928-.707.2928Zm-1.5857-4l1.5857,1.5858,1.5857-1.5858-1.5857-1.5858-1.5857,1.5858Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1546
1497
  });
1547
- if (process.env.NODE_ENV !== "production") Wmv.propTypes = require_iconPropTypes.iconPropTypes;
1548
- const WordCloud = react.default.forwardRef(function WordCloud({ children, size = 16, ...rest }, ref) {
1549
- return react.default.createElement(require_Icon_js, {
1498
+ if (process.env.NODE_ENV !== "production") WebServicesCluster.propTypes = require_iconPropTypes.iconPropTypes;
1499
+ const WebServicesContainer = /* @__PURE__ */ react.default.forwardRef(function WebServicesContainer({ children, size = 16, ...rest }, ref) {
1500
+ return react.default.createElement(require_Icon.Icon, {
1550
1501
  width: size,
1551
1502
  height: size,
1552
1503
  ref,
@@ -1554,11 +1505,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1554
1505
  viewBox: "0 0 32 32",
1555
1506
  fill: "currentColor",
1556
1507
  ...rest
1557
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 16H22V18H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 20H18V22H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7h0a8.0233,8.0233,0,0,1,7.8649,6.4935l.2591,1.346,1.3488.244A5.5019,5.5019,0,0,1,24.5076,26H7.4954a5.5019,5.5019,0,0,1-.9695-10.9165l1.3488-.244.2591-1.346A8.0256,8.0256,0,0,1,16,7m0-2a10.0244,10.0244,0,0,0-9.83,8.1155A7.5019,7.5019,0,0,0,7.4911,28H24.5076a7.5019,7.5019,0,0,0,1.3213-14.8845A10.0229,10.0229,0,0,0,15.9883,5Z" }), children);
1508
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22.5046,11.6367l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1558
1509
  });
1559
- if (process.env.NODE_ENV !== "production") WordCloud.propTypes = require_iconPropTypes.iconPropTypes;
1560
- const WorkflowAutomation = react.default.forwardRef(function WorkflowAutomation({ children, size = 16, ...rest }, ref) {
1561
- return react.default.createElement(require_Icon_js, {
1510
+ if (process.env.NODE_ENV !== "production") WebServicesContainer.propTypes = require_iconPropTypes.iconPropTypes;
1511
+ const WebServicesDefinition = /* @__PURE__ */ react.default.forwardRef(function WebServicesDefinition({ children, size = 16, ...rest }, ref) {
1512
+ return react.default.createElement(require_Icon.Icon, {
1562
1513
  width: size,
1563
1514
  height: size,
1564
1515
  ref,
@@ -1566,21 +1517,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1566
1517
  viewBox: "0 0 32 32",
1567
1518
  fill: "currentColor",
1568
1519
  ...rest
1569
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("switch", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("foreignObject", {
1570
- width: "1",
1571
- height: "1",
1572
- x: "0",
1573
- y: "0",
1574
- requiredExtensions: "http://ns.adobe.com/AdobeIllustrator/10.0/"
1575
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", { children: [
1576
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,27c-3.6,0-7.1-1.8-9.2-5H12v-2H4v8h2v-3.7c2.5,3,6.1,4.7,10,4.7V27z" }),
1577
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,23v-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.7V15h-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.8H17v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5 l1.4,1.4l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V29h2v-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.8 H31z M24,25c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S25.7,25,24,25z" }),
1578
- /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10h5.2C21.9,4.9,15.1,3.5,10,6.8c-3.1,2-5,5.5-5,9.2H3C3,8.8,8.8,3,16,3c3.9,0,7.5,1.7,10,4.7V4h2v8h-8V10z" })
1579
- ] })] }), children);
1520
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 17H16V19H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H18V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21,23h-10c-.5522,0-1-.4478-1-1v-12c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v12c0,.5522-.4478,1-1,1Zm-9-2h8v-10h-8v10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1580
1521
  });
1581
- if (process.env.NODE_ENV !== "production") WorkflowAutomation.propTypes = require_iconPropTypes.iconPropTypes;
1582
- const Workspace = react.default.forwardRef(function Workspace({ children, size = 16, ...rest }, ref) {
1583
- return react.default.createElement(require_Icon_js, {
1522
+ if (process.env.NODE_ENV !== "production") WebServicesDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1523
+ const WebServicesService = /* @__PURE__ */ react.default.forwardRef(function WebServicesService({ children, size = 16, ...rest }, ref) {
1524
+ return react.default.createElement(require_Icon.Icon, {
1584
1525
  width: size,
1585
1526
  height: size,
1586
1527
  ref,
@@ -1588,11 +1529,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1588
1529
  viewBox: "0 0 32 32",
1589
1530
  fill: "currentColor",
1590
1531
  ...rest
1591
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,17v8H6V17H16m0-2H6a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V17a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,6v5H17V6H27m0-2H17a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,17v5H22V17h5m0-2H22a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2h5a2,2,0,0,0,2-2V17a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,6v5H6V6h5m0-2H6A2,2,0,0,0,4,6v5a2,2,0,0,0,2,2h5a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
1532
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m23,18h-2v-7h-7v-2h8c.5522,0,1,.4478,1,1v8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18,23h-8c-.5522,0-1-.4478-1-1v-8c0-.5522.4478-1,1-1h8c.5522,0,1,.4478,1,1v8c0,.5522-.4478,1-1,1Zm-7-2h6v-6h-6v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1592
1533
  });
1593
- if (process.env.NODE_ENV !== "production") Workspace.propTypes = require_iconPropTypes.iconPropTypes;
1594
- const WorkspaceImport = react.default.forwardRef(function WorkspaceImport({ children, size = 16, ...rest }, ref) {
1595
- return react.default.createElement(require_Icon_js, {
1534
+ if (process.env.NODE_ENV !== "production") WebServicesService.propTypes = require_iconPropTypes.iconPropTypes;
1535
+ const WebServicesTask = /* @__PURE__ */ react.default.forwardRef(function WebServicesTask({ children, size = 16, ...rest }, ref) {
1536
+ return react.default.createElement(require_Icon.Icon, {
1596
1537
  width: size,
1597
1538
  height: size,
1598
1539
  ref,
@@ -1600,11 +1541,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1600
1541
  viewBox: "0 0 32 32",
1601
1542
  fill: "currentColor",
1602
1543
  ...rest
1603
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,6v5H17V6H27m0-2H17a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,25H6V17h6V15H6a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 20 16.828 20 19.414 17.414 18 16 13 21 18 26 19.414 24.586 16.828 22 30 22 30 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,6v5H6V6h5m0-2H6A2,2,0,0,0,4,6v5a2,2,0,0,0,2,2h5a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
1544
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20.18 18.41 18.59 17 20 20 23 25 18 23.59 16.59 20 20.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m15,23h-4c-.5522,0-1-.4478-1-1v-12c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v6h-2v-5h-8v10h3v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1604
1545
  });
1605
- if (process.env.NODE_ENV !== "production") WorkspaceImport.propTypes = require_iconPropTypes.iconPropTypes;
1606
- const Worship = react.default.forwardRef(function Worship({ children, size = 16, ...rest }, ref) {
1607
- return react.default.createElement(require_Icon_js, {
1546
+ if (process.env.NODE_ENV !== "production") WebServicesTask.propTypes = require_iconPropTypes.iconPropTypes;
1547
+ const WebServicesTaskDefinitionVersion = /* @__PURE__ */ react.default.forwardRef(function WebServicesTaskDefinitionVersion({ children, size = 16, ...rest }, ref) {
1548
+ return react.default.createElement(require_Icon.Icon, {
1608
1549
  width: size,
1609
1550
  height: size,
1610
1551
  ref,
@@ -1612,11 +1553,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1612
1553
  viewBox: "0 0 32 32",
1613
1554
  fill: "currentColor",
1614
1555
  ...rest
1615
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.5859,17,22,21.5859v0h0l-5-5a2.002,2.002,0,0,0-2.8286,0L9.585,21.1709A2.0031,2.0031,0,0,0,9.585,24l4.0009,4H6v2H16a1,1,0,0,0,.707-1.707L11,22.585,15.5852,18l5.7078,5.707a.9995.9995,0,0,0,1.414,0L28,18.4141Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.5,17A3.5,3.5,0,1,1,25,13.5,3.5042,3.5042,0,0,1,21.5,17Zm0-5A1.5,1.5,0,1,0,23,13.5,1.5017,1.5017,0,0,0,21.5,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,10.5977l12-6.462,12.5264,6.7452.9472-1.7618-13-7a1.0045,1.0045,0,0,0-.9472,0l-13,7A1,1,0,0,0,2,10V30H4Z" }), children);
1556
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 15 22.25 15 20 22.0312 17.7917 15.0003 16 15.0003 18.5 23 21.5 23 24 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,23h-5c-.5522,0-1-.4478-1-1v-12c0-.5522.4478-1,1-1h10c.5522,0,1,.4478,1,1v4h-2v-3h-8v10h4v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,1c-.1741,0-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5081-.4961.8638v14c0,.3557.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l11-6.4166-1.0078-1.7275-10.4961,6.1227-11-6.4166v-12.8513L16,3.1577l11,6.4166v7.4257h2v-8c0-.3557-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362Z" }), children);
1616
1557
  });
1617
- if (process.env.NODE_ENV !== "production") Worship.propTypes = require_iconPropTypes.iconPropTypes;
1618
- const WorshipChristian = react.default.forwardRef(function WorshipChristian({ children, size = 16, ...rest }, ref) {
1619
- return react.default.createElement(require_Icon_js, {
1558
+ if (process.env.NODE_ENV !== "production") WebServicesTaskDefinitionVersion.propTypes = require_iconPropTypes.iconPropTypes;
1559
+ const Webhook = /* @__PURE__ */ react.default.forwardRef(function Webhook({ children, size = 16, ...rest }, ref) {
1560
+ return react.default.createElement(require_Icon.Icon, {
1620
1561
  width: size,
1621
1562
  height: size,
1622
1563
  ref,
@@ -1624,11 +1565,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1624
1565
  viewBox: "0 0 32 32",
1625
1566
  fill: "currentColor",
1626
1567
  ...rest
1627
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30H15a2.0021,2.0021,0,0,1-2-2V14H8a2.0021,2.0021,0,0,1-2-2V10A2.0021,2.0021,0,0,1,8,8h5V4a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2V8h5a2.0021,2.0021,0,0,1,2,2v2a2.0021,2.0021,0,0,1-2,2H19V28A2.0021,2.0021,0,0,1,17,30ZM8,10v2h7V28h2V12h7V10H17V4H15v6Z" }), children);
1568
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,26a3,3,0,1,0-2.8164-4H13v1a5,5,0,1,1-5-5V16a7,7,0,1,0,6.9287,8h6.2549A2.9914,2.9914,0,0,0,24,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,16a7.024,7.024,0,0,0-2.57.4873l-3.1656-5.5395a3.0469,3.0469,0,1,0-1.7326.9985l4.1189,7.2085.8686-.4976a5.0006,5.0006,0,1,1-1.851,6.8418L17.937,26.501A7.0005,7.0005,0,1,0,24,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.532,20.0537a3.03,3.03,0,1,0,1.7326.9985C11.74,18.47,13.86,14.7607,13.89,14.708l.4976-.8682-.8677-.497a5,5,0,1,1,6.812-1.8438l1.7315,1.002a7.0008,7.0008,0,1,0-10.3462,2.0356c-.457.7427-1.1021,1.8716-2.0737,3.5728Z" }), children);
1628
1569
  });
1629
- if (process.env.NODE_ENV !== "production") WorshipChristian.propTypes = require_iconPropTypes.iconPropTypes;
1630
- const WorshipJewish = react.default.forwardRef(function WorshipJewish({ children, size = 16, ...rest }, ref) {
1631
- return react.default.createElement(require_Icon_js, {
1570
+ if (process.env.NODE_ENV !== "production") Webhook.propTypes = require_iconPropTypes.iconPropTypes;
1571
+ const Websheet = /* @__PURE__ */ react.default.forwardRef(function Websheet({ children, size = 16, ...rest }, ref) {
1572
+ return react.default.createElement(require_Icon.Icon, {
1632
1573
  width: size,
1633
1574
  height: size,
1634
1575
  ref,
@@ -1636,11 +1577,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1636
1577
  viewBox: "0 0 32 32",
1637
1578
  fill: "currentColor",
1638
1579
  ...rest
1639
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.291,16l3.585-6.5181A1,1,0,0,0,27,8H19.8911L16.876,2.5181a1,1,0,0,0-1.752,0L12.1089,8H5a1,1,0,0,0-.876,1.4819L7.709,16,4.124,22.5181A1,1,0,0,0,5,24h7.1089l3.0151,5.4819a1,1,0,0,0,1.752,0L19.8911,24H27a1,1,0,0,0,.876-1.4819Zm-5.5823,6L16,26.9248,13.2913,22h-6.6l3.3-6-3.3-6h6.6L16,5.0752,18.7087,10h6.6l-3.3,6,3.3,6Z" }), children);
1580
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1581
+ cx: "24",
1582
+ cy: "24",
1583
+ r: "2"
1584
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30a6,6,0,1,1,6-6A6.0069,6.0069,0,0,1,24,30Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,24,20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" }), children);
1640
1585
  });
1641
- if (process.env.NODE_ENV !== "production") WorshipJewish.propTypes = require_iconPropTypes.iconPropTypes;
1642
- const WorshipMuslim = react.default.forwardRef(function WorshipMuslim({ children, size = 16, ...rest }, ref) {
1643
- return react.default.createElement(require_Icon_js, {
1586
+ if (process.env.NODE_ENV !== "production") Websheet.propTypes = require_iconPropTypes.iconPropTypes;
1587
+ const Wheat = /* @__PURE__ */ react.default.forwardRef(function Wheat({ children, size = 16, ...rest }, ref) {
1588
+ return react.default.createElement(require_Icon.Icon, {
1644
1589
  width: size,
1645
1590
  height: size,
1646
1591
  ref,
@@ -1648,11 +1593,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1648
1593
  viewBox: "0 0 32 32",
1649
1594
  fill: "currentColor",
1650
1595
  ...rest
1651
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,18a.9986.9986,0,0,1-.5415-.1594L22,14.9688l-4.4585,2.8718a1,1,0,0,1-1.5088-1.095l1.35-5.1318L14.3105,8.69a1,1,0,0,1,.5508-1.7146l4.3745-.6128,1.8663-3.8032A1.0008,1.0008,0,0,1,21.9878,2a1.0171,1.0171,0,0,1,.8989.5378L24.88,6.3625l4.2622.6133A1,1,0,0,1,29.69,8.69l-3.0723,2.9239,1.35,5.1318A1,1,0,0,1,27,18Zm-5-5.2207a.999.999,0,0,1,.5415.1594l2.8369,1.8272-.8457-3.2149a1.0006,1.0006,0,0,1,.2778-.9787l2.0074-1.91-2.73-.3929a.9994.9994,0,0,1-.7441-.5275L22.0269,5.2151,20.7979,7.72a1.0008,1.0008,0,0,1-.7593.55L17.19,8.6687l2,1.9036a1.0006,1.0006,0,0,1,.2778.9787l-.8457,3.2149,2.8369-1.8272A.999.999,0,0,1,22,12.7793Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.8169,30A13.8137,13.8137,0,0,1,9.0752,4.1277a1,1,0,0,1,1.3613,1.3611A11.8091,11.8091,0,0,0,26.5107,21.5635a1,1,0,0,1,1.3619,1.3611A13.8411,13.8411,0,0,1,15.8169,30ZM7.3271,7.9727a11.81,11.81,0,0,0,16.7,16.7,13.8086,13.8086,0,0,1-16.7-16.7Z" }), children);
1596
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,3V5.5857l-4,4V1H15V9.5857l-4-4V3H9V19a7.004,7.004,0,0,0,6,6.92V30h2V25.92A7.004,7.004,0,0,0,23,19V3ZM15,23.8987A5.008,5.008,0,0,1,11,19v-2.586l4,4Zm0-6.313-4-4V8.4138l4,4Zm2-5.1719,4-4v5.1719l-4,4Zm0,11.4849V20.4138l4-4V19A5.008,5.008,0,0,1,17,23.8987Z" }), children);
1652
1597
  });
1653
- if (process.env.NODE_ENV !== "production") WorshipMuslim.propTypes = require_iconPropTypes.iconPropTypes;
1654
- const QX = react.default.forwardRef(function QX({ children, size = 16, ...rest }, ref) {
1655
- return react.default.createElement(require_Icon_js, {
1598
+ if (process.env.NODE_ENV !== "production") Wheat.propTypes = require_iconPropTypes.iconPropTypes;
1599
+ const WhileLoop = /* @__PURE__ */ react.default.forwardRef(function WhileLoop({ children, size = 16, ...rest }, ref) {
1600
+ return react.default.createElement(require_Icon.Icon, {
1656
1601
  width: size,
1657
1602
  height: size,
1658
1603
  ref,
@@ -1660,11 +1605,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1660
1605
  viewBox: "0 0 32 32",
1661
1606
  fill: "currentColor",
1662
1607
  ...rest
1663
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 18 9 16 15 14 9 12 9 14.75 16 12 23 14 23 16 17 18 23 20 23 17.25 16 20 9z" }), children);
1608
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,23h7v7h-2v-3.3518c-1.6447,2.0408-4.1525,3.3516-7.0002,3.3516l-9.9998.0002c-5,0-9-4-9-9v-8h2v8c0,3.8999,3.1,7,7,7h10c2.4032,0,4.4943-1.1841,5.7518-3h-3.7518v-2ZM9,7h-3.7518c1.2575-1.8159,3.3486-3,5.7518-3h10c3.9,0,7,3.1001,7,7v8h2v-8c0-5-4-9-9-9l-9.9998.0002c-2.8477,0-5.3555,1.3108-7.0002,3.3516V2h-2v7h7v-2ZM13.957,22l1.5303-6.3457.7739-3.1641h.0347l.7393,3.1641,1.5308,6.3457h2.562l2.8721-12.0029h-2.167l-1.2207,5.7607-.7568,3.6797h-.0518l-.8423-3.6797-1.376-5.7607h-2.5107l-1.3755,5.7607-.8599,3.6797h-.0518l-.7393-3.6797-1.1865-5.7607h-2.27l2.7856,12.0029h2.5796Z" }), children);
1664
1609
  });
1665
- if (process.env.NODE_ENV !== "production") QX.propTypes = require_iconPropTypes.iconPropTypes;
1666
- const XAxis = react.default.forwardRef(function XAxis({ children, size = 16, ...rest }, ref) {
1667
- return react.default.createElement(require_Icon_js, {
1610
+ if (process.env.NODE_ENV !== "production") WhileLoop.propTypes = require_iconPropTypes.iconPropTypes;
1611
+ const WhitePaper = /* @__PURE__ */ react.default.forwardRef(function WhitePaper({ children, size = 16, ...rest }, ref) {
1612
+ return react.default.createElement(require_Icon.Icon, {
1668
1613
  width: size,
1669
1614
  height: size,
1670
1615
  ref,
@@ -1672,11 +1617,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1672
1617
  viewBox: "0 0 32 32",
1673
1618
  fill: "currentColor",
1674
1619
  ...rest
1675
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,20l-1.4141,1.4141L24.1719,24H6V4H4V24a2.0023,2.0023,0,0,0,2,2H24.1719l-2.586,2.5859L23,30l5-5Z" }), children);
1620
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 27.1798 19.41 24.5899 18 26 22 30 30 22 28.5899 20.59 22 27.1798z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 17H16V19H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 12H21V14H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 7H21V9H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,30H6c-1.103,0-2-.8972-2-2V4c0-1.1028.897-2,2-2h18c1.103,0,2,.8972,2,2v15h-2V4H6v24h10v2Z" }), children);
1676
1621
  });
1677
- if (process.env.NODE_ENV !== "production") XAxis.propTypes = require_iconPropTypes.iconPropTypes;
1678
- const Xls = react.default.forwardRef(function Xls({ children, size = 16, ...rest }, ref) {
1679
- return react.default.createElement(require_Icon_js, {
1622
+ if (process.env.NODE_ENV !== "production") WhitePaper.propTypes = require_iconPropTypes.iconPropTypes;
1623
+ const Wifi = /* @__PURE__ */ react.default.forwardRef(function Wifi({ children, size = 16, ...rest }, ref) {
1624
+ return react.default.createElement(require_Icon.Icon, {
1680
1625
  width: size,
1681
1626
  height: size,
1682
1627
  ref,
@@ -1684,11 +1629,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1684
1629
  viewBox: "0 0 32 32",
1685
1630
  fill: "currentColor",
1686
1631
  ...rest
1687
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,23H22V21h6V17H24a2.002,2.002,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h6v2H24v4h4a2.002,2.002,0,0,1,2,2v4A2.0023,2.0023,0,0,1,28,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 21 14 9 12 9 12 23 20 23 20 21 14 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9 8 9 6 15 4 9 2 9 4.752 16 2 23 4 23 6 17 8 23 10 23 7.245 16 10 9z" }), children);
1632
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1633
+ cx: "16",
1634
+ cy: "25",
1635
+ r: "2"
1636
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.47,19.2334l1.4136,1.4131a5.9688,5.9688,0,0,1,8.2229-.0093L21.52,19.2236a7.9629,7.9629,0,0,0-11.05.01Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.229,14.9927l1.4136,1.4135a11.955,11.955,0,0,1,16.7041-.01L25.76,14.9829a13.9514,13.9514,0,0,0-19.5313.01Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,10.7412a19.94,19.94,0,0,0-28,0v.0225L3.4043,12.168a17.9336,17.9336,0,0,1,25.1811-.01L30,10.7432Z" }), children);
1688
1637
  });
1689
- if (process.env.NODE_ENV !== "production") Xls.propTypes = require_iconPropTypes.iconPropTypes;
1690
- const Xml = react.default.forwardRef(function Xml({ children, size = 16, ...rest }, ref) {
1691
- return react.default.createElement(require_Icon_js, {
1638
+ if (process.env.NODE_ENV !== "production") Wifi.propTypes = require_iconPropTypes.iconPropTypes;
1639
+ const WifiController = /* @__PURE__ */ react.default.forwardRef(function WifiController({ children, size = 16, ...rest }, ref) {
1640
+ return react.default.createElement(require_Icon.Icon, {
1692
1641
  width: size,
1693
1642
  height: size,
1694
1643
  ref,
@@ -1696,11 +1645,19 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1696
1645
  viewBox: "0 0 32 32",
1697
1646
  fill: "currentColor",
1698
1647
  ...rest
1699
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 21 24 9 22 9 22 23 30 23 30 21 24 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 9 16.48 14 16 15.98 15.54 14 14 9 12 9 12 23 14 23 14 15 13.84 13 14.42 15 16 19.63 17.58 15 18.16 13 18 15 18 23 20 23 20 9 18 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9 8 9 6 15 4 9 2 9 4.75 16 2 23 4 23 6 17 8 23 10 23 7.25 16 10 9z" }), children);
1648
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,30H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v6A2,2,0,0,0,6,30Zm0-8H26v6H6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1649
+ cx: "9",
1650
+ cy: "25",
1651
+ r: "1"
1652
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1653
+ cx: "16",
1654
+ cy: "14.5",
1655
+ r: "1.5"
1656
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.7832,10.3325a7.0007,7.0007,0,0,1,10.4341,0l-1.49,1.334a5,5,0,0,0-7.4537,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.1992,7.3994a11.0019,11.0019,0,0,1,17.6006,0L23.2,8.6a9.0009,9.0009,0,0,0-14.4014.0005Z" }), children);
1700
1657
  });
1701
- if (process.env.NODE_ENV !== "production") Xml.propTypes = require_iconPropTypes.iconPropTypes;
1702
- const QY = react.default.forwardRef(function QY({ children, size = 16, ...rest }, ref) {
1703
- return react.default.createElement(require_Icon_js, {
1658
+ if (process.env.NODE_ENV !== "production") WifiController.propTypes = require_iconPropTypes.iconPropTypes;
1659
+ const WifiNotSecure = /* @__PURE__ */ react.default.forwardRef(function WifiNotSecure({ children, size = 16, ...rest }, ref) {
1660
+ return react.default.createElement(require_Icon.Icon, {
1704
1661
  width: size,
1705
1662
  height: size,
1706
1663
  ref,
@@ -1708,11 +1665,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1708
1665
  viewBox: "0 0 32 32",
1709
1666
  fill: "currentColor",
1710
1667
  ...rest
1711
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 18 9 16 16 14 9 12 9 15 18 15 23 17 23 17 18 20 9z" }), children);
1668
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20H14V17a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm0,8H12V22h8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a8.9709,8.9709,0,0,0-6.3608,2.6392l1.4133,1.4135a6.9887,6.9887,0,0,1,9.895,0l1.4135-1.4135A8.9717,8.9717,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.105,7.105,7.5188,8.5186a11.9808,11.9808,0,0,1,16.9624,0L25.8949,7.105a13.9782,13.9782,0,0,0-19.79,0Z" }), children);
1712
1669
  });
1713
- if (process.env.NODE_ENV !== "production") QY.propTypes = require_iconPropTypes.iconPropTypes;
1714
- const YAxis = react.default.forwardRef(function YAxis({ children, size = 16, ...rest }, ref) {
1715
- return react.default.createElement(require_Icon_js, {
1670
+ if (process.env.NODE_ENV !== "production") WifiNotSecure.propTypes = require_iconPropTypes.iconPropTypes;
1671
+ const WifiOff = /* @__PURE__ */ react.default.forwardRef(function WifiOff({ children, size = 16, ...rest }, ref) {
1672
+ return react.default.createElement(require_Icon.Icon, {
1716
1673
  width: size,
1717
1674
  height: size,
1718
1675
  ref,
@@ -1720,11 +1677,15 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1720
1677
  viewBox: "0 0 32 32",
1721
1678
  fill: "currentColor",
1722
1679
  ...rest
1723
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26V7.8281l2.5859,2.586L12,9,7,4,2,9l1.4141,1.4141L6,7.8281V26a2.0023,2.0023,0,0,0,2,2H28V26Z" }), children);
1680
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1681
+ cx: "16",
1682
+ cy: "25",
1683
+ r: "2"
1684
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,3.4141,28.5859,2,2,28.5859,3.4141,30,14.0962,19.3179a5.9359,5.9359,0,0,1,6.01,1.3193L21.52,19.2236a7.9669,7.9669,0,0,0-5.125-2.2041l3.3875-3.3877a11.9908,11.9908,0,0,1,4.5647,2.7647L25.76,14.9829A13.975,13.975,0,0,0,21.334,12.08L24.3308,9.083a17.9364,17.9364,0,0,1,4.2546,3.0747L30,10.7432v-.002a20.02,20.02,0,0,0-4.1895-3.1377Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.68,13.0776l2.0415-2.0415C16.481,11.0234,16.2437,11,16,11a13.9447,13.9447,0,0,0-9.771,3.9927l1.4136,1.4136A11.97,11.97,0,0,1,14.68,13.0776Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7a17.87,17.87,0,0,1,4.2324.5254L21.875,5.8828A19.9537,19.9537,0,0,0,2,10.7412v.0225L3.4043,12.168A17.9193,17.9193,0,0,1,16,7Z" }), children);
1724
1685
  });
1725
- if (process.env.NODE_ENV !== "production") YAxis.propTypes = require_iconPropTypes.iconPropTypes;
1726
- const QZ = react.default.forwardRef(function QZ({ children, size = 16, ...rest }, ref) {
1727
- return react.default.createElement(require_Icon_js, {
1686
+ if (process.env.NODE_ENV !== "production") WifiOff.propTypes = require_iconPropTypes.iconPropTypes;
1687
+ const WifiSecure = /* @__PURE__ */ react.default.forwardRef(function WifiSecure({ children, size = 16, ...rest }, ref) {
1688
+ return react.default.createElement(require_Icon.Icon, {
1728
1689
  width: size,
1729
1690
  height: size,
1730
1691
  ref,
@@ -1732,11 +1693,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1732
1693
  viewBox: "0 0 32 32",
1733
1694
  fill: "currentColor",
1734
1695
  ...rest
1735
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z" }), children);
1696
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20V17a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm-6-3a2,2,0,0,1,4,0v3H14ZM12,28V22h8v6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.105,7.105,7.5188,8.5186a11.9808,11.9808,0,0,1,16.9624,0L25.8949,7.105a13.9782,13.9782,0,0,0-19.79,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a8.9709,8.9709,0,0,0-6.3608,2.6392l1.4133,1.4135a6.9887,6.9887,0,0,1,9.895,0l1.4135-1.4135A8.9717,8.9717,0,0,0,16,8Z" }), children);
1736
1697
  });
1737
- if (process.env.NODE_ENV !== "production") QZ.propTypes = require_iconPropTypes.iconPropTypes;
1738
- const ZLpar = react.default.forwardRef(function ZLpar({ children, size = 16, ...rest }, ref) {
1739
- return react.default.createElement(require_Icon_js, {
1698
+ if (process.env.NODE_ENV !== "production") WifiSecure.propTypes = require_iconPropTypes.iconPropTypes;
1699
+ const WifiBridge = /* @__PURE__ */ react.default.forwardRef(function WifiBridge({ children, size = 16, ...rest }, ref) {
1700
+ return react.default.createElement(require_Icon.Icon, {
1740
1701
  width: size,
1741
1702
  height: size,
1742
1703
  ref,
@@ -1744,11 +1705,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1744
1705
  viewBox: "0 0 32 32",
1745
1706
  fill: "currentColor",
1746
1707
  ...rest
1747
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10h4c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v1h-3c-1.1046,0-2,.8954-2,2V15h-3V5c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2V27c0,1.1046,.8954,2,2,2H12c1.1046,0,2-.8954,2-2v-10h3v8c0,1.1046,.8954,2,2,2h3v1c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v1h-3v-8h3v1c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v1h-3V7h3v1c0,1.1046,.8954,2,2,2Zm0-6h4v4s-4,0-4,0V4ZM11.3992,12l-7.3992,5.9194V6.0806l7.3992,5.9194Zm.6013,2.0801l.0007,11.8403-7.4004-5.9204,7.3997-5.9199Zm-.0002-4.1606L5.8508,5h6.1492l.0002,4.9194ZM4,22.0806l6.1492,4.9194H4v-4.9194Zm20,1.9194h4v4h-4v-4Zm0-10h4v4h-4v-4Z" }), children);
1708
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.9492,20.95l-1.414-1.4141a5,5,0,0,0,0-7.0715L6.9492,11.05a7,7,0,0,1,0,9.9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.4854,24.4854,9.0713,23.0713a10.0011,10.0011,0,0,0,0-14.1426l1.4141-1.4141a12.0006,12.0006,0,0,1,0,16.9708Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.0508,20.95a7,7,0,0,1,0-9.9l1.414,1.4146a5,5,0,0,0,0,7.0715Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.5146,24.4854a12.0006,12.0006,0,0,1,0-16.9708l1.4141,1.4141a10.0011,10.0011,0,0,0,0,14.1426Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3,15H2V4H0V28H2V17H3a1,1,0,0,0,0-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4V15H29a1,1,0,0,0,0,2h1V28h2V4Z" }), children);
1748
1709
  });
1749
- if (process.env.NODE_ENV !== "production") ZLpar.propTypes = require_iconPropTypes.iconPropTypes;
1750
- const ZSystems = react.default.forwardRef(function ZSystems({ children, size = 16, ...rest }, ref) {
1751
- return react.default.createElement(require_Icon_js, {
1710
+ if (process.env.NODE_ENV !== "production") WifiBridge.propTypes = require_iconPropTypes.iconPropTypes;
1711
+ const WifiBridgeAlt = /* @__PURE__ */ react.default.forwardRef(function WifiBridgeAlt({ children, size = 16, ...rest }, ref) {
1712
+ return react.default.createElement(require_Icon.Icon, {
1752
1713
  width: size,
1753
1714
  height: size,
1754
1715
  ref,
@@ -1756,11 +1717,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1756
1717
  viewBox: "0 0 32 32",
1757
1718
  fill: "currentColor",
1758
1719
  ...rest
1759
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3h-8c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2h8c1.1028,0,2-.8975,2-2V5c0-1.1025-.8972-2-2-2Zm.0002,6.9194l-6.1494-4.9194h6.1492l.0002,4.9194Zm-.6011,2.0806l-7.3992,5.9194V6.0806l7.3992,5.9194Zm.6013,2.0801l.0007,11.8403-7.4004-5.9204,7.3997-5.9199Zm-8.0005,8.0005l6.1492,4.9194h-6.1492v-4.9194Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,3H5c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2H13c1.1028,0,2-.8975,2-2V5c0-1.1025-.8972-2-2-2Zm.0002,6.9194L6.8508,5h6.1492l.0002,4.9194Zm-.6011,2.0806l-7.3992,5.9194V6.0806l7.3992,5.9194Zm.6013,2.0801l.0007,11.8403-7.4004-5.9204,7.3997-5.9199ZM5,22.0806l6.1492,4.9194H5v-4.9194Z" }), children);
1720
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,26H11a5.0057,5.0057,0,0,0-5-5V19A7.0078,7.0078,0,0,1,13,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,26H16A10.0113,10.0113,0,0,0,6,16V14A12.0137,12.0137,0,0,1,18,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,13a7.0078,7.0078,0,0,1-7-7h2a5.0057,5.0057,0,0,0,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,18A12.0137,12.0137,0,0,1,14,6h2A10.0113,10.0113,0,0,0,26,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.707,24.293a.9994.9994,0,0,0-1.414,0L2,28.5859,3.4143,30,7.707,25.707A.9994.9994,0,0,0,7.707,24.293Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5859,2,24.293,6.293a1,1,0,0,0,1.414,1.414L30,3.4141Z" }), children);
1760
1721
  });
1761
- if (process.env.NODE_ENV !== "production") ZSystems.propTypes = require_iconPropTypes.iconPropTypes;
1762
- const ZAxis = react.default.forwardRef(function ZAxis({ children, size = 16, ...rest }, ref) {
1763
- return react.default.createElement(require_Icon_js, {
1722
+ if (process.env.NODE_ENV !== "production") WifiBridgeAlt.propTypes = require_iconPropTypes.iconPropTypes;
1723
+ const Wikis = /* @__PURE__ */ react.default.forwardRef(function Wikis({ children, size = 16, ...rest }, ref) {
1724
+ return react.default.createElement(require_Icon.Icon, {
1764
1725
  width: size,
1765
1726
  height: size,
1766
1727
  ref,
@@ -1768,11 +1729,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1768
1729
  viewBox: "0 0 32 32",
1769
1730
  fill: "currentColor",
1770
1731
  ...rest
1771
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 22 26 25.586 17 16.586 17 10 17 6 17 5.828 19.586 8.414 21 7 16 2 11 7 12.414 8.414 15 5.828 15 6 15 10 15 16.586 6 25.586 6 22 4 22 4 29 11 29 11 27 7.414 27 16 18.414 24.586 27 21 27 21 29 28 29 28 22 26 22z" }), children);
1732
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM28,15H22A24.26,24.26,0,0,0,19.21,4.45,12,12,0,0,1,28,15ZM16,28a5,5,0,0,1-.67,0A21.85,21.85,0,0,1,12,17H20a21.85,21.85,0,0,1-3.3,11A5,5,0,0,1,16,28ZM12,15a21.85,21.85,0,0,1,3.3-11,6,6,0,0,1,1.34,0A21.85,21.85,0,0,1,20,15Zm.76-10.55A24.26,24.26,0,0,0,10,15h-6A12,12,0,0,1,12.79,4.45ZM4.05,17h6a24.26,24.26,0,0,0,2.75,10.55A12,12,0,0,1,4.05,17ZM19.21,27.55A24.26,24.26,0,0,0,22,17h6A12,12,0,0,1,19.21,27.55Z" }), children);
1772
1733
  });
1773
- if (process.env.NODE_ENV !== "production") ZAxis.propTypes = require_iconPropTypes.iconPropTypes;
1774
- const ZHyperLink = react.default.forwardRef(function ZHyperLink({ children, size = 16, ...rest }, ref) {
1775
- return react.default.createElement(require_Icon_js, {
1734
+ if (process.env.NODE_ENV !== "production") Wikis.propTypes = require_iconPropTypes.iconPropTypes;
1735
+ const WindGusts = /* @__PURE__ */ react.default.forwardRef(function WindGusts({ children, size = 16, ...rest }, ref) {
1736
+ return react.default.createElement(require_Icon.Icon, {
1776
1737
  width: size,
1777
1738
  height: size,
1778
1739
  ref,
@@ -1780,11 +1741,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1780
1741
  viewBox: "0 0 32 32",
1781
1742
  fill: "currentColor",
1782
1743
  ...rest
1783
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,5v22c0,1.1-.9,2-2,2h-8c-1.1,0-2-.9-2-2v-4h2v4h8V5h-8v4h-2v-4c0-1.1.9-2,2-2h8c1.1,0,2,.9,2,2ZM13,27H5V5h8v4h2v-4c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2v-4h-2v4ZM13.1,12.7l-1.4-1.4-4.7,4.7,4.7,4.7,1.4-1.4-2.3-2.3h10.4l-2.3,2.3,1.4,1.4,4.7-4.7-4.7-4.7-1.4,1.4,2.3,2.3h-10.4l2.3-2.3Z" }), children);
1744
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3164,8.0513l-18-6A1,1,0,0,0,10.4,2.2L4,7V2H2V30H4V11l6.4,4.8a1,1,0,0,0,.9165.1489l18-6a1,1,0,0,0,0-1.8974ZM10,13,4.6665,9,10,5Zm4-.0542-2,.667V4.3872l2,.667Zm4-1.333-2,.6665V5.7207l2,.6665Zm2-.667V7.0542L25.8379,9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,22a4,4,0,0,0-8,0h2a2,2,0,1,1,2,2H8v2h8A4.0045,4.0045,0,0,0,20,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,22a4.0045,4.0045,0,0,0-4,4h2a2,2,0,1,1,2,2H12v2H26a4,4,0,0,0,0-8Z" }), children);
1784
1745
  });
1785
- if (process.env.NODE_ENV !== "production") ZHyperLink.propTypes = require_iconPropTypes.iconPropTypes;
1786
- const Zip = react.default.forwardRef(function Zip({ children, size = 16, ...rest }, ref) {
1787
- return react.default.createElement(require_Icon_js, {
1746
+ if (process.env.NODE_ENV !== "production") WindGusts.propTypes = require_iconPropTypes.iconPropTypes;
1747
+ const WindPower = /* @__PURE__ */ react.default.forwardRef(function WindPower({ children, size = 16, ...rest }, ref) {
1748
+ return react.default.createElement(require_Icon.Icon, {
1788
1749
  width: size,
1789
1750
  height: size,
1790
1751
  ref,
@@ -1792,12 +1753,42 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1792
1753
  viewBox: "0 0 32 32",
1793
1754
  fill: "currentColor",
1794
1755
  ...rest
1795
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,9H22V23h2V18h4a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9Zm0,7H24V11h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 9 12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9 2 9 2 11 8 11 2 21 2 23 10 23 10 21 4 21 10 11 10 9z" }), children);
1756
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,28V15.8159a3.0059,3.0059,0,0,0,1.47-1.1186L27.063,17l.5176-1.9321-8.6045-2.3052a2.985,2.985,0,0,0-2.63-2.7275L14.1938,2l-1.9316.5186,2.1318,7.956a2.9588,2.9588,0,0,0-1.093,3.8115L7,20.5859,8.415,22l6.3-6.3A2.8938,2.8938,0,0,0,15,15.8154V28H2v2H30V28Zm0-15a1,1,0,1,1-1-1A1.0008,1.0008,0,0,1,17,13Z" }), children);
1796
1757
  });
1797
- if (process.env.NODE_ENV !== "production") Zip.propTypes = require_iconPropTypes.iconPropTypes;
1798
- exports.QX = QX;
1799
- exports.QY = QY;
1800
- exports.QZ = QZ;
1758
+ if (process.env.NODE_ENV !== "production") WindPower.propTypes = require_iconPropTypes.iconPropTypes;
1759
+ exports.UserProfile = UserProfile;
1760
+ exports.UserProfileAlt = UserProfileAlt;
1761
+ exports.UserRole = UserRole;
1762
+ exports.UserService = UserService;
1763
+ exports.UserServiceDesk = UserServiceDesk;
1764
+ exports.UserSettings = UserSettings;
1765
+ exports.UserSimulation = UserSimulation;
1766
+ exports.UserSpeaker = UserSpeaker;
1767
+ exports.UserSponsor = UserSponsor;
1768
+ exports.UserXRay = UserXRay;
1769
+ exports.UvIndex = UvIndex;
1770
+ exports.UvIndexAlt = UvIndexAlt;
1771
+ exports.UvIndexFilled = UvIndexFilled;
1772
+ exports.ValueVariable = ValueVariable;
1773
+ exports.ValueVariableAlt = ValueVariableAlt;
1774
+ exports.Van = Van;
1775
+ exports.VegetationAsset = VegetationAsset;
1776
+ exports.VegetationEncroachment = VegetationEncroachment;
1777
+ exports.VegetationHeight = VegetationHeight;
1778
+ exports.VehicleApi = VehicleApi;
1779
+ exports.VehicleConnected = VehicleConnected;
1780
+ exports.VehicleInsights = VehicleInsights;
1781
+ exports.VehicleServices = VehicleServices;
1782
+ exports.Version = Version;
1783
+ exports.VersionMajor = VersionMajor;
1784
+ exports.VersionMinor = VersionMinor;
1785
+ exports.VersionPatch = VersionPatch;
1786
+ exports.VerticalFold = VerticalFold;
1787
+ exports.VerticalView = VerticalView;
1788
+ exports.Video = Video;
1789
+ exports.VideoAdd = VideoAdd;
1790
+ exports.VideoChat = VideoChat;
1791
+ exports.VideoFilled = VideoFilled;
1801
1792
  exports.VideoOff = VideoOff;
1802
1793
  exports.VideoOffFilled = VideoOffFilled;
1803
1794
  exports.VideoPlayer = VideoPlayer;
@@ -1846,6 +1837,7 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1846
1837
  exports.WarningAltInverted = WarningAltInverted;
1847
1838
  exports.WarningAltInvertedFilled = WarningAltInvertedFilled;
1848
1839
  exports.WarningDiamond = WarningDiamond;
1840
+ exports.WarningDiamondFill = WarningDiamondFill;
1849
1841
  exports.WarningFilled = WarningFilled;
1850
1842
  exports.WarningHex = WarningHex;
1851
1843
  exports.WarningHexFilled = WarningHexFilled;
@@ -1855,11 +1847,6 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1855
1847
  exports.WarningSquareFilled = WarningSquareFilled;
1856
1848
  exports.Watch = Watch;
1857
1849
  exports.Watson = Watson;
1858
- exports.WatsonHealthWindowAuto = WatsonHealthWindowAuto;
1859
- exports.WatsonHealthWindowBase = WatsonHealthWindowBase;
1860
- exports.WatsonHealthWindowBlackSaturation = WatsonHealthWindowBlackSaturation;
1861
- exports.WatsonHealthWindowOverlay = WatsonHealthWindowOverlay;
1862
- exports.WatsonHealthWindowPreset = WatsonHealthWindowPreset;
1863
1850
  exports.WatsonMachineLearning = WatsonMachineLearning;
1864
1851
  exports.Watsonx = Watsonx;
1865
1852
  exports.WatsonxAi = WatsonxAi;
@@ -1894,38 +1881,11 @@ var require_bucket_20 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1894
1881
  exports.Wikis = Wikis;
1895
1882
  exports.WindGusts = WindGusts;
1896
1883
  exports.WindPower = WindPower;
1897
- exports.WindStream = WindStream;
1898
- exports.Windy = Windy;
1899
- exports.WindyDust = WindyDust;
1900
- exports.WindySnow = WindySnow;
1901
- exports.WindyStrong = WindyStrong;
1902
- exports.WinterWarning = WinterWarning;
1903
- exports.WintryMix = WintryMix;
1904
- exports.WirelessCheckout = WirelessCheckout;
1905
- exports.Wmv = Wmv;
1906
- exports.WordCloud = WordCloud;
1907
- exports.WorkflowAutomation = WorkflowAutomation;
1908
- exports.Workspace = Workspace;
1909
- exports.WorkspaceImport = WorkspaceImport;
1910
- exports.Worship = Worship;
1911
- exports.WorshipChristian = WorshipChristian;
1912
- exports.WorshipJewish = WorshipJewish;
1913
- exports.WorshipMuslim = WorshipMuslim;
1914
- exports.XAxis = XAxis;
1915
- exports.Xls = Xls;
1916
- exports.Xml = Xml;
1917
- exports.YAxis = YAxis;
1918
- exports.ZAxis = ZAxis;
1919
- exports.ZHyperLink = ZHyperLink;
1920
- exports.ZLpar = ZLpar;
1921
- exports.ZSystems = ZSystems;
1922
- exports.Zip = Zip;
1923
1884
  }));
1924
-
1925
1885
  //#endregion
1926
- Object.defineProperty(exports, 'default', {
1927
- enumerable: true,
1928
- get: function () {
1929
- return require_bucket_20();
1930
- }
1931
- });
1886
+ Object.defineProperty(exports, "default", {
1887
+ enumerable: true,
1888
+ get: function() {
1889
+ return require_bucket_20();
1890
+ }
1891
+ });