@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
@@ -6,10 +6,9 @@
6
6
  */
7
7
 
8
8
  import { Icon } from "../Icon.js";
9
- import { iconPropTypes } from "../iconPropTypes-B1cP964Y.js";
9
+ import { iconPropTypes } from "../iconPropTypes-BElKp6Sn.js";
10
10
  import React from "react";
11
11
  import { jsx } from "react/jsx-runtime";
12
-
13
12
  //#region ../../node_modules/@carbon/icons-react/es/generated/bucket-11.js
14
13
  /**
15
14
  * Copyright IBM Corp. 2016, 2023
@@ -19,7 +18,248 @@ import { jsx } from "react/jsx-runtime";
19
18
  *
20
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
21
20
  */
22
- const KubernetesWorkerNode = React.forwardRef(function KubernetesWorkerNode({ children, size = 16, ...rest }, ref) {
21
+ const didWarnAboutDeprecation = {};
22
+ const JsError = /* @__PURE__ */ React.forwardRef(function JsError({ children, size = 16, ...rest }, ref) {
23
+ return React.createElement(Icon, {
24
+ width: size,
25
+ height: size,
26
+ ref,
27
+ xmlns: "http://www.w3.org/2000/svg",
28
+ viewBox: "0 0 32 32",
29
+ fill: "currentColor",
30
+ ...rest
31
+ }, /* @__PURE__ */ jsx("path", { d: "m20.3335,30h-2.667c-.9189,0-1.6665-.7476-1.6665-1.6665v-2.3335h2v2h2v-8h2v8.3335c0,.9189-.7476,1.6665-1.6665,1.6665Z" }), /* @__PURE__ */ jsx("path", { d: "m28.3335,30h-4.3335v-2h4v-2h-2c-1.103,0-2-.897-2-2v-2.3335c0-.9189.7476-1.6665,1.6665-1.6665h4.3335v2h-4v2h2c1.103,0,2,.897,2,2v2.3335c0,.9189-.7476,1.6665-1.6665,1.6665Z" }), /* @__PURE__ */ jsx("path", { d: "m16,18c-.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__ */ jsx("path", { d: "M15 7H17V16H15z" }), /* @__PURE__ */ jsx("path", { d: "m14,26h-4.5c-.3538,0-.6809-.1868-.8608-.4912L2.1392,14.5088c-.0928-.1569-.1392-.3329-.1392-.5088s.0464-.3519.1392-.5088L8.6392,2.4912c.1799-.3044.5071-.4912.8608-.4912h13c.3538,0,.6809.1868.8608.4912l6.5,11c.0928.1569.1392.3328.1392.5088s-.0464.3519-.1392.5088l-2,3.3845-1.7217-1.0173,1.6992-2.876-5.9089-10h-11.8589l-5.9089,10,5.9089,10h3.9294v2Z" }), children);
32
+ });
33
+ JsError.propTypes = iconPropTypes;
34
+ const Json = /* @__PURE__ */ React.forwardRef(function Json({ children, size = 16, ...rest }, ref) {
35
+ return React.createElement(Icon, {
36
+ width: size,
37
+ height: size,
38
+ ref,
39
+ xmlns: "http://www.w3.org/2000/svg",
40
+ viewBox: "0 0 32 32",
41
+ fill: "currentColor",
42
+ ...rest
43
+ }, /* @__PURE__ */ jsx("path", { d: "M31 11 31 21 29 21 27 15 27 21 25 21 25 11 27 11 29 17 29 11 31 11z" }), /* @__PURE__ */ jsx("path", { d: "M21.3335,21h-2.667A1.6684,1.6684,0,0,1,17,19.3335v-6.667A1.6684,1.6684,0,0,1,18.6665,11h2.667A1.6684,1.6684,0,0,1,23,12.6665v6.667A1.6684,1.6684,0,0,1,21.3335,21ZM19,19h2V13H19Z" }), /* @__PURE__ */ jsx("path", { d: "M13.3335,21H9V19h4V17H11a2.002,2.002,0,0,1-2-2V12.6665A1.6684,1.6684,0,0,1,10.6665,11H15v2H11v2h2a2.002,2.002,0,0,1,2,2v2.3335A1.6684,1.6684,0,0,1,13.3335,21Z" }), /* @__PURE__ */ jsx("path", { d: "M5.3335,21H2.6665A1.6684,1.6684,0,0,1,1,19.3335V17H3v2H5V11H7v8.3335A1.6684,1.6684,0,0,1,5.3335,21Z" }), children);
44
+ });
45
+ Json.propTypes = iconPropTypes;
46
+ const JsonReference = /* @__PURE__ */ React.forwardRef(function JsonReference({ children, size = 16, ...rest }, ref) {
47
+ return React.createElement(Icon, {
48
+ width: size,
49
+ height: size,
50
+ ref,
51
+ xmlns: "http://www.w3.org/2000/svg",
52
+ viewBox: "0 0 32 32",
53
+ fill: "currentColor",
54
+ ...rest
55
+ }, /* @__PURE__ */ jsx("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ jsx("path", { d: "M29 12 27 6 25 6 25 16 27 16 27 10 29 16 31 16 31 6 29 6 29 12z" }), /* @__PURE__ */ jsx("path", { d: "M21.3335,6h-2.667A1.6683,1.6683,0,0,0,17,7.6665v6.667A1.6684,1.6684,0,0,0,18.6665,16h2.667A1.6683,1.6683,0,0,0,23,14.3335V7.6665A1.6683,1.6683,0,0,0,21.3335,6ZM21,14H19V8h2Z" }), /* @__PURE__ */ jsx("path", { d: "M9,7.6665V10a2.002,2.002,0,0,0,2,2h2v2H9v2h4.3335A1.6683,1.6683,0,0,0,15,14.3335V12a2.002,2.002,0,0,0-2-2H11V8h4V6H10.6665A1.6683,1.6683,0,0,0,9,7.6665Z" }), /* @__PURE__ */ jsx("path", { d: "M5,14H3V12H1v2.3335A1.6684,1.6684,0,0,0,2.6665,16h2.667A1.6683,1.6683,0,0,0,7,14.3335V6H5Z" }), children);
56
+ });
57
+ JsonReference.propTypes = iconPropTypes;
58
+ const JumpLink = /* @__PURE__ */ React.forwardRef(function JumpLink({ children, size = 16, ...rest }, ref) {
59
+ return React.createElement(Icon, {
60
+ width: size,
61
+ height: size,
62
+ ref,
63
+ xmlns: "http://www.w3.org/2000/svg",
64
+ viewBox: "0 0 32 32",
65
+ fill: "currentColor",
66
+ ...rest
67
+ }, /* @__PURE__ */ jsx("path", { d: "M13.4141,17.5859,18,22.1719V8H8V6H18a2.0024,2.0024,0,0,1,2,2V22.1719l4.5859-4.586L26,19l-7,7-7-7Z" }), children);
68
+ });
69
+ JumpLink.propTypes = iconPropTypes;
70
+ const KeepDry = /* @__PURE__ */ React.forwardRef(function KeepDry({ children, size = 16, ...rest }, ref) {
71
+ return React.createElement(Icon, {
72
+ width: size,
73
+ height: size,
74
+ ref,
75
+ xmlns: "http://www.w3.org/2000/svg",
76
+ viewBox: "0 0 32 32",
77
+ fill: "currentColor",
78
+ ...rest
79
+ }, /* @__PURE__ */ jsx("path", { d: "M25,10a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L24.17.4141a1.0381,1.0381,0,0,1,1.6592,0L28.3154,4.11A3.9693,3.9693,0,0,1,29,6.223,3.8978,3.8978,0,0,1,25,10Zm0-7.2368L23.3438,5.2257A1.89,1.89,0,0,0,23,6.223a2.014,2.014,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z" }), /* @__PURE__ */ jsx("path", { d: "M29.9854,15.83a13.9726,13.9726,0,0,0-1.8147-4.8323L26.4329,12.001a12.092,12.092,0,0,1,1.07,2.2124A5.4079,5.4079,0,0,0,26,14a6.5439,6.5439,0,0,0-3.939,1.333,14.5177,14.5177,0,0,0-3.0456-8.9341A13.8858,13.8858,0,0,0,17,4.4014V2H15V4.0464A14.3808,14.3808,0,0,0,2.0146,15.83,1,1,0,0,0,3.51,16.86,4.8551,4.8551,0,0,1,6,16a4.8653,4.8653,0,0,1,4.1406,2.5107,1.0393,1.0393,0,0,0,1.7188,0A5.02,5.02,0,0,1,15,16.1255V25.5a2.5,2.5,0,0,1-5,0V25H8v.5a4.5,4.5,0,0,0,9,0V16.1255a5.02,5.02,0,0,1,3.1406,2.3852.9994.9994,0,0,0,1.7188,0A4.8653,4.8653,0,0,1,26,16a4.8551,4.8551,0,0,1,2.49.86,1,1,0,0,0,1.4957-1.03ZM9.939,15.333A6.5439,6.5439,0,0,0,6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4413,12.4413,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333ZM16,14a6.5526,6.5526,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0564-9.1763,3.4307,2.6768,4.009,6.9487,4.0522,9.1728A6.552,6.552,0,0,0,16,14Z" }), children);
80
+ });
81
+ KeepDry.propTypes = iconPropTypes;
82
+ const Key = /* @__PURE__ */ React.forwardRef(function Key({ children, size = 16, ...rest }, ref) {
83
+ return React.createElement(Icon, {
84
+ width: size,
85
+ height: size,
86
+ ref,
87
+ xmlns: "http://www.w3.org/2000/svg",
88
+ viewBox: "0 0 32 32",
89
+ fill: "currentColor",
90
+ ...rest
91
+ }, /* @__PURE__ */ jsx("path", {
92
+ strokeWidth: "0",
93
+ d: "M30 9 28.0001 9 26 16 24.0001 9 22 9 25 17.9996 25 23 27 23 27 18 27.0001 18 30 9z"
94
+ }), /* @__PURE__ */ jsx("path", {
95
+ strokeWidth: "0",
96
+ d: "M21 11 21 9 13 9 13 23 21 23 21 21 15 21 15 17 20 17 20 15 15 15 15 11 21 11z"
97
+ }), /* @__PURE__ */ jsx("path", {
98
+ strokeWidth: "0",
99
+ d: "M11 9 8.8941 9 5 15.5527 5 9 3 9 3 23 5 23 5 18.7062 5.9277 17.2208 8.8941 23 11 23 7.1093 15.4308 11 9z"
100
+ }), children);
101
+ });
102
+ Key.propTypes = iconPropTypes;
103
+ const KeyValues = /* @__PURE__ */ React.forwardRef(function KeyValues({ children, size = 16, ...rest }, ref) {
104
+ return React.createElement(Icon, {
105
+ width: size,
106
+ height: size,
107
+ ref,
108
+ xmlns: "http://www.w3.org/2000/svg",
109
+ viewBox: "0 0 32 32",
110
+ fill: "currentColor",
111
+ ...rest
112
+ }, /* @__PURE__ */ jsx("path", { d: "M8,7h-4v-2h4v2ZM25,5h-15v2h15v-2ZM10,10h-6v2h6v-2ZM24,10h-12v2h12v-2ZM7,15h-3v2h3v-2ZM27,15H9v2h18v-2ZM11,20h-7v2h7v-2ZM25,20h-12v2h12v-2ZM8,25h-4v2h4v-2ZM28,25H10v2h18v-2Z" }), children);
113
+ });
114
+ KeyValues.propTypes = iconPropTypes;
115
+ const Keyboard = /* @__PURE__ */ React.forwardRef(function Keyboard({ children, size = 16, ...rest }, ref) {
116
+ return React.createElement(Icon, {
117
+ width: size,
118
+ height: size,
119
+ ref,
120
+ xmlns: "http://www.w3.org/2000/svg",
121
+ viewBox: "0 0 32 32",
122
+ fill: "currentColor",
123
+ ...rest
124
+ }, /* @__PURE__ */ jsx("path", { d: "M28,26H4a2,2,0,0,1-2-2V10A2,2,0,0,1,4,8H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,10V24H28V10Z" }), /* @__PURE__ */ jsx("path", { d: "M10 20H21V22H10z" }), /* @__PURE__ */ jsx("path", { d: "M6 12H8V14H6z" }), /* @__PURE__ */ jsx("path", { d: "M10 12H12V14H10z" }), /* @__PURE__ */ jsx("path", { d: "M14 12H16V14H14z" }), /* @__PURE__ */ jsx("path", { d: "M18 12H20V14H18z" }), /* @__PURE__ */ jsx("path", { d: "M6 20H8V22H6z" }), /* @__PURE__ */ jsx("path", { d: "M6 16H8V18H6z" }), /* @__PURE__ */ jsx("path", { d: "M10 16H12V18H10z" }), /* @__PURE__ */ jsx("path", { d: "M14 16H16V18H14z" }), /* @__PURE__ */ jsx("path", { d: "M22 12H26V14H22z" }), /* @__PURE__ */ jsx("path", { d: "M22 16H26V18H22z" }), /* @__PURE__ */ jsx("path", { d: "M18 16H20V18H18z" }), /* @__PURE__ */ jsx("path", { d: "M23 20H26V22H23z" }), children);
125
+ });
126
+ Keyboard.propTypes = iconPropTypes;
127
+ const Keychain = /* @__PURE__ */ React.forwardRef(function Keychain({ children, size = 16, ...rest }, ref) {
128
+ return React.createElement(Icon, {
129
+ width: size,
130
+ height: size,
131
+ ref,
132
+ xmlns: "http://www.w3.org/2000/svg",
133
+ viewBox: "0 0 32 32",
134
+ fill: "currentColor",
135
+ ...rest
136
+ }, /* @__PURE__ */ jsx("path", { d: "M23,5c-1.05,0-2.07.23-3,.68-.93-.45-1.95-.68-3-.68-3.86,0-7,3.14-7,7,0,.48.05.96.15,1.43L2,21.59v5.41h4v-2h-2v-2.59l7.66-7.65.76-.76c-.28-.63-.42-1.3-.42-2,0-2.76,2.24-5,5-5,.35,0,.69.03,1.02.11-2.06,2.05-2.2,4.7-1.87,6.33l-8.15,8.15v5.41h5.41l8.16-8.15c.46.1.94.15,1.43.15,3.86,0,7-3.14,7-7s-3.14-7-7-7ZM23,17c-.7,0-1.37-.14-1.99-.42l-.72.71-.03.03-7.67,7.68h-2.59v-2.59l7.96-7.96.43-.44-.18-.58c-.05-.14-1.11-3.62,2.2599-5.74.01-.01.03-.02.05-.03.75-.43,1.58-.66,2.48-.66,2.76,0,5,2.24,5,5s-2.24,5-5,5ZM21.5,12c0-.8284.6716-1.5,1.5-1.5s1.5.6716,1.5,1.5-.6716,1.5-1.5,1.5-1.5-.6716-1.5-1.5Z" }), children);
137
+ });
138
+ Keychain.propTypes = iconPropTypes;
139
+ const KeyboardOff = /* @__PURE__ */ React.forwardRef(function KeyboardOff({ children, size = 16, ...rest }, ref) {
140
+ return React.createElement(Icon, {
141
+ width: size,
142
+ height: size,
143
+ ref,
144
+ xmlns: "http://www.w3.org/2000/svg",
145
+ viewBox: "0 0 32 32",
146
+ fill: "currentColor",
147
+ ...rest
148
+ }, /* @__PURE__ */ jsx("path", { d: "M6 12H8V14H6z" }), /* @__PURE__ */ jsx("path", { d: "M18 12H20V14H18z" }), /* @__PURE__ */ jsx("path", { d: "M6 20H8V22H6z" }), /* @__PURE__ */ jsx("path", { d: "M6 16H8V18H6z" }), /* @__PURE__ */ jsx("path", { d: "M10 16H12V18H10z" }), /* @__PURE__ */ jsx("path", { d: "M22 12H26V14H22z" }), /* @__PURE__ */ jsx("path", { d: "M22 16H26V18H22z" }), /* @__PURE__ */ jsx("path", { d: "M14.2,10H28v13h2V10c0-1.1-0.9-2-2-2H12.2L14.2,10z" }), /* @__PURE__ */ jsx("path", { d: "M30,28.6L3.4,2L2,3.4L6.6,8H4c-1.1,0-2,0.9-2,2v14c0,1.1,0.9,2,2,2h20.6l4,4L30,28.6z M4,24V10h4.6l2,2H10v2h2.6l2,2H14v2 h2.6l2,2H10v2h10.6l2,2H4z" }), children);
149
+ });
150
+ KeyboardOff.propTypes = iconPropTypes;
151
+ const KioskDevice = /* @__PURE__ */ React.forwardRef(function KioskDevice({ children, size = 16, ...rest }, ref) {
152
+ return React.createElement(Icon, {
153
+ width: size,
154
+ height: size,
155
+ ref,
156
+ xmlns: "http://www.w3.org/2000/svg",
157
+ viewBox: "0 0 32 32",
158
+ fill: "currentColor",
159
+ ...rest
160
+ }, /* @__PURE__ */ jsx("path", { d: "M26,19c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v13c0,1.1.9,2,2,2h7v9H4v2h24v-2h-9v-9h7ZM17,28h-2v-9h2v9ZM6,17V4h20v13H6ZM16,13c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1Z" }), children);
161
+ });
162
+ KioskDevice.propTypes = iconPropTypes;
163
+ const Kubelet = /* @__PURE__ */ React.forwardRef(function Kubelet({ children, size = 16, ...rest }, ref) {
164
+ return React.createElement(Icon, {
165
+ width: size,
166
+ height: size,
167
+ ref,
168
+ xmlns: "http://www.w3.org/2000/svg",
169
+ viewBox: "0 0 32 32",
170
+ fill: "currentColor",
171
+ ...rest
172
+ }, /* @__PURE__ */ jsx("path", {
173
+ strokeWidth: "0",
174
+ d: "m20.0444,27.2942l-3.0825-10.018-1.0132,3.04c-.1361.4084-.5183.6838-.9487.6838h-6s0-2,0-2h5.2793s1.772-5.3162,1.772-5.3162c.1307-.4123.5162-.6902.9487-.6838.4374.0046.8225.2891.9555.7058l3.0088,9.7783,1.0742-3.7589c.1227-.4293.5151-.7252.9615-.7252h5s0,2,0,2h-4.2456s-1.7933,6.2747-1.7933,6.2747c-.1216.4256-.5085.7207-.9511.7253h-.01c-.4389,0-.8265-.2863-.9556-.7058Z"
175
+ }), /* @__PURE__ */ jsx("path", {
176
+ strokeWidth: "0",
177
+ d: "m16,28H6c-1.1028,0-2-.8972-2-2V6c0-1.1028.8972-2,2-2h20c1.1028,0,2,.8972,2,2v9h-2V6H6v20h10v2Z"
178
+ }), children);
179
+ });
180
+ Kubelet.propTypes = iconPropTypes;
181
+ const Kubernetes = /* @__PURE__ */ React.forwardRef(function Kubernetes({ children, size = 16, ...rest }, ref) {
182
+ if (!didWarnAboutDeprecation["Kubernetes"]) {
183
+ didWarnAboutDeprecation["Kubernetes"] = true;
184
+ console.warn("The current kubernetes icon has been replaced by logo--kubernetes. As a result, the Kubernetes component will be removed in the next major version of @carbon/icons-react.");
185
+ }
186
+ return React.createElement(Icon, {
187
+ width: size,
188
+ height: size,
189
+ ref,
190
+ xmlns: "http://www.w3.org/2000/svg",
191
+ viewBox: "0 0 32 32",
192
+ fill: "currentColor",
193
+ ...rest
194
+ }, /* @__PURE__ */ jsx("path", { d: "M29.2227,17.9639,25.9194,17.21a9.7843,9.7843,0,0,0-1.5249-6.6245l2.54-2.0254L25.6875,6.9961,23.1482,9.0205A9.97,9.97,0,0,0,17,6.0508V3H15V6.0508a9.97,9.97,0,0,0-6.1482,2.97L6.3125,6.9961,5.0654,8.56l2.54,2.0254A9.7843,9.7843,0,0,0,6.0806,17.21l-3.3033.7544.4454,1.9492L6.52,19.1606a10.0359,10.0359,0,0,0,4.2688,5.358l-1.33,2.7631,1.8018.8677L12.59,25.3882a9.8113,9.8113,0,0,0,6.8208,0L20.74,28.1494l1.8018-.8682-1.33-2.7626a10.0359,10.0359,0,0,0,4.2688-5.358l3.2973.7525ZM24,16c0,.2573-.0148.5112-.0386.7627l-5-1.1416a2.9664,2.9664,0,0,0-.1376-.5942L22.82,11.84A7.9392,7.9392,0,0,1,24,16Zm-9,0a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,15,16Zm6.5758-5.7256L17.58,13.4609a3.0028,3.0028,0,0,0-.58-.2768V8.0693A7.9762,7.9762,0,0,1,21.5758,10.2744ZM15,8.0693v5.1148a3.0028,3.0028,0,0,0-.58.2768l-3.9956-3.1865A7.9762,7.9762,0,0,1,15,8.0693ZM8,16a7.9392,7.9392,0,0,1,1.18-4.16l3.9962,3.1866a2.9664,2.9664,0,0,0-.1376.5942l-5,1.1416C8.0148,16.5112,8,16.2573,8,16Zm.4835,2.7124,4.9752-1.1362a3.0132,3.0132,0,0,0,.4146.5366L11.6594,22.71A8.031,8.031,0,0,1,8.4835,18.7124ZM16,24a7.9679,7.9679,0,0,1-2.54-.42l2.2206-4.6123A2.9988,2.9988,0,0,0,16,19a2.9988,2.9988,0,0,0,.319-.0322L18.54,23.58A7.9546,7.9546,0,0,1,16,24Zm4.3406-1.29-2.2139-4.5976a3.0132,3.0132,0,0,0,.4146-.5366l4.9752,1.1362A8.031,8.031,0,0,1,20.3406,22.71Z" }), children);
195
+ });
196
+ Kubernetes.propTypes = iconPropTypes;
197
+ const KubernetesControlPlaneNode = /* @__PURE__ */ React.forwardRef(function KubernetesControlPlaneNode({ children, size = 16, ...rest }, ref) {
198
+ return React.createElement(Icon, {
199
+ width: size,
200
+ height: size,
201
+ ref,
202
+ xmlns: "http://www.w3.org/2000/svg",
203
+ viewBox: "0 0 32 32",
204
+ fill: "currentColor",
205
+ ...rest
206
+ }, /* @__PURE__ */ jsx("path", { d: "M22.951 20h-2.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h6.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h2.1843v-2Zm-5 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Zm5-10h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h2.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h6.1843v-2Zm-9 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Z" }), /* @__PURE__ */ jsx("path", { d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z" }), /* @__PURE__ */ jsx("path", {
207
+ fill: "none",
208
+ d: "M0 0h32v32H0z"
209
+ }), children);
210
+ });
211
+ KubernetesControlPlaneNode.propTypes = iconPropTypes;
212
+ const KubernetesIpAddress = /* @__PURE__ */ React.forwardRef(function KubernetesIpAddress({ children, size = 16, ...rest }, ref) {
213
+ return React.createElement(Icon, {
214
+ width: size,
215
+ height: size,
216
+ ref,
217
+ xmlns: "http://www.w3.org/2000/svg",
218
+ viewBox: "0 0 32 32",
219
+ fill: "currentColor",
220
+ ...rest
221
+ }, /* @__PURE__ */ jsx("circle", {
222
+ cx: "16",
223
+ cy: "9",
224
+ r: "2"
225
+ }), /* @__PURE__ */ jsx("circle", {
226
+ cx: "16",
227
+ cy: "16",
228
+ r: "2"
229
+ }), /* @__PURE__ */ jsx("path", { d: "m18.8157,26c-.302-.8472-.9685-1.5137-1.8157-1.8159v-2.1841h3c.2969,0,.5781-.1318.7683-.3599l5-6c.1982-.2378.2751-.5547.2078-.8569l-2-9c-.0696-.3145-.2864-.5757-.5823-.7021l-7-3c-.1257-.0542-.2598-.0811-.3938-.0811s-.2681.0269-.3938.0811l-7.0015,3c-.2959.1265-.5127.3877-.5825.7021l-1.9985,9c-.0671.3027.0098.6191.208.8569l5,6c.1902.228.4714.3599.7683.3599h3v2.1846c-.8472.3018-1.5137.9683-1.8157,1.8154H4v2h9.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h9.1843v-2h-9.1843Zm-10.7329-11.2627l1.7808-8.02,6.1365-2.6294,6.135,2.6294,1.7822,8.02-4.3855,5.2627h-7.0635l-4.3855-5.2627Zm7.9172,13.2627c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z" }), children);
230
+ });
231
+ KubernetesIpAddress.propTypes = iconPropTypes;
232
+ const KubernetesOperator = /* @__PURE__ */ React.forwardRef(function KubernetesOperator({ children, size = 16, ...rest }, ref) {
233
+ return React.createElement(Icon, {
234
+ width: size,
235
+ height: size,
236
+ ref,
237
+ xmlns: "http://www.w3.org/2000/svg",
238
+ viewBox: "0 0 32 32",
239
+ fill: "currentColor",
240
+ ...rest
241
+ }, /* @__PURE__ */ jsx("path", {
242
+ strokeWidth: "0",
243
+ d: "m19,21h-6c-1.1028,0-2-.8972-2-2v-6c0-1.1028.8972-2,2-2h6c1.1028,0,2,.8972,2,2v6c0,1.1028-.8972,2-2,2Zm-6-8v6h6v-6h-6Z"
244
+ }), /* @__PURE__ */ jsx("path", {
245
+ strokeWidth: "0",
246
+ d: "m30,16c0-7.7197-6.2803-14-14-14S2,8.2803,2,16s6.2803,14,14,14c2.7773,0,5.417-.7959,7.7012-2.3081.3948.1914.8315.3081,1.2988.3081,1.6543,0,3-1.3457,3-3,0-.4673-.1167-.9043-.3079-1.2988,1.5122-2.2842,2.3079-4.9238,2.3079-7.7012Zm-26,0c0-6.6167,5.3833-12,12-12s12,5.3833,12,12c0,2.248-.6152,4.3877-1.7744,6.2681-.375-.1689-.7881-.2681-1.2256-.2681-1.6543,0-3,1.3457-3,3,0,.4375.0991.8506.2681,1.2256-1.8801,1.1592-4.0198,1.7744-6.2681,1.7744-6.6167,0-12-5.3833-12-12Zm21,10c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
247
+ }), children);
248
+ });
249
+ KubernetesOperator.propTypes = iconPropTypes;
250
+ const KubernetesPod = /* @__PURE__ */ React.forwardRef(function KubernetesPod({ children, size = 16, ...rest }, ref) {
251
+ return React.createElement(Icon, {
252
+ width: size,
253
+ height: size,
254
+ ref,
255
+ xmlns: "http://www.w3.org/2000/svg",
256
+ viewBox: "0 0 32 32",
257
+ fill: "currentColor",
258
+ ...rest
259
+ }, /* @__PURE__ */ jsx("path", { d: "m22.5046,11.6368l-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__ */ jsx("path", { d: "m16,31c-.1741,0-.3481-.0454-.5039-.1362l-12-7c-.3071-.1792-.4961-.5081-.4961-.8638v-14c0-.3557.189-.6846.4961-.8638L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l11,6.4166-1.0078,1.7275-10.4961-6.1227-11,6.4166v12.8513l11,6.4166,11-6.4166v-7.4257h2v8c0,.3557-.189.6846-.4961.8638l-12,7c-.1558.0908-.3298.1362-.5039.1362Z" }), children);
260
+ });
261
+ KubernetesPod.propTypes = iconPropTypes;
262
+ const KubernetesWorkerNode = /* @__PURE__ */ React.forwardRef(function KubernetesWorkerNode({ children, size = 16, ...rest }, ref) {
23
263
  return React.createElement(Icon, {
24
264
  width: size,
25
265
  height: size,
@@ -34,7 +274,7 @@ const KubernetesWorkerNode = React.forwardRef(function KubernetesWorkerNode({ ch
34
274
  }), children);
35
275
  });
36
276
  KubernetesWorkerNode.propTypes = iconPropTypes;
37
- const Label = React.forwardRef(function Label({ children, size = 16, ...rest }, ref) {
277
+ const Label = /* @__PURE__ */ React.forwardRef(function Label({ children, size = 16, ...rest }, ref) {
38
278
  return React.createElement(Icon, {
39
279
  width: size,
40
280
  height: size,
@@ -46,7 +286,7 @@ const Label = React.forwardRef(function Label({ children, size = 16, ...rest },
46
286
  }, /* @__PURE__ */ jsx("path", { d: "M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2.0023,2.0023,0,0,0,23,13Zm0,8H19V19h4Z" }), /* @__PURE__ */ jsx("path", { d: "M13,9H9a2.002,2.002,0,0,0-2,2V23H9V18h4v5h2V11A2.002,2.002,0,0,0,13,9ZM9,16V11h4v5Z" }), /* @__PURE__ */ jsx("path", { d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z" }), children);
47
287
  });
48
288
  Label.propTypes = iconPropTypes;
49
- const Language = React.forwardRef(function Language({ children, size = 16, ...rest }, ref) {
289
+ const Language = /* @__PURE__ */ React.forwardRef(function Language({ children, size = 16, ...rest }, ref) {
50
290
  return React.createElement(Icon, {
51
291
  width: size,
52
292
  height: size,
@@ -58,7 +298,7 @@ const Language = React.forwardRef(function Language({ children, size = 16, ...re
58
298
  }, /* @__PURE__ */ jsx("path", { d: "M18 19H24V21H18z" }), /* @__PURE__ */ jsx("path", { d: "M18 15H30V17H18z" }), /* @__PURE__ */ jsx("path", { d: "M18 11H30V13H18z" }), /* @__PURE__ */ jsx("path", { d: "M14,21V19H9V17H7v2H2v2h8.2148a8.5914,8.5914,0,0,1-2.2159,3.9771A9.2731,9.2731,0,0,1,6.5521,23H4.3334a10.8553,10.8553,0,0,0,2.1451,3.2966A14.6584,14.6584,0,0,1,3,28.127L3.7021,30a16.42,16.42,0,0,0,4.2907-2.3362A16.4883,16.4883,0,0,0,12.2979,30L13,28.127A14.664,14.664,0,0,1,9.5228,26.3,10.3132,10.3132,0,0,0,12.2516,21Z" }), /* @__PURE__ */ jsx("path", { d: "M11.1666,13H13.333L8.75,2H6.5832L2,13H4.1664L5,11h5.3335ZM5.8331,9,7.6665,4.6,9.5,9Z" }), children);
59
299
  });
60
300
  Language.propTypes = iconPropTypes;
61
- const Laptop = React.forwardRef(function Laptop({ children, size = 16, ...rest }, ref) {
301
+ const Laptop = /* @__PURE__ */ React.forwardRef(function Laptop({ children, size = 16, ...rest }, ref) {
62
302
  return React.createElement(Icon, {
63
303
  width: size,
64
304
  height: size,
@@ -73,7 +313,7 @@ const Laptop = React.forwardRef(function Laptop({ children, size = 16, ...rest }
73
313
  }), /* @__PURE__ */ jsx("path", { d: "M2 26.005H30V28.005H2z" }), children);
74
314
  });
75
315
  Laptop.propTypes = iconPropTypes;
76
- const Lasso = React.forwardRef(function Lasso({ children, size = 16, ...rest }, ref) {
316
+ const Lasso = /* @__PURE__ */ React.forwardRef(function Lasso({ children, size = 16, ...rest }, ref) {
77
317
  return React.createElement(Icon, {
78
318
  width: size,
79
319
  height: size,
@@ -85,7 +325,7 @@ const Lasso = React.forwardRef(function Lasso({ children, size = 16, ...rest },
85
325
  }, /* @__PURE__ */ jsx("path", { d: "M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z" }), children);
86
326
  });
87
327
  Lasso.propTypes = iconPropTypes;
88
- const LassoPolygon = React.forwardRef(function LassoPolygon({ children, size = 16, ...rest }, ref) {
328
+ const LassoPolygon = /* @__PURE__ */ React.forwardRef(function LassoPolygon({ children, size = 16, ...rest }, ref) {
89
329
  return React.createElement(Icon, {
90
330
  width: size,
91
331
  height: size,
@@ -97,7 +337,7 @@ const LassoPolygon = React.forwardRef(function LassoPolygon({ children, size = 1
97
337
  }, /* @__PURE__ */ jsx("path", { d: "M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z" }), children);
98
338
  });
99
339
  LassoPolygon.propTypes = iconPropTypes;
100
- const Launch = React.forwardRef(function Launch({ children, size = 16, ...rest }, ref) {
340
+ const Launch = /* @__PURE__ */ React.forwardRef(function Launch({ children, size = 16, ...rest }, ref) {
101
341
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
102
342
  width: size,
103
343
  height: size,
@@ -118,7 +358,7 @@ const Launch = React.forwardRef(function Launch({ children, size = 16, ...rest }
118
358
  }, /* @__PURE__ */ jsx("path", { d: "M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z" }), /* @__PURE__ */ jsx("path", { d: "M20 2 20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z" }), children);
119
359
  });
120
360
  Launch.propTypes = iconPropTypes;
121
- const WatsonHealthLaunchStudy_1 = React.forwardRef(function WatsonHealthLaunchStudy_1({ children, size = 16, ...rest }, ref) {
361
+ const WatsonHealthLaunchStudy_1 = /* @__PURE__ */ React.forwardRef(function WatsonHealthLaunchStudy_1({ children, size = 16, ...rest }, ref) {
122
362
  return React.createElement(Icon, {
123
363
  width: size,
124
364
  height: size,
@@ -134,7 +374,7 @@ const WatsonHealthLaunchStudy_1 = React.forwardRef(function WatsonHealthLaunchSt
134
374
  }), /* @__PURE__ */ jsx("path", { d: "M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ jsx("path", { d: "M20.59 10.59 17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H20V26H8z" }), children);
135
375
  });
136
376
  WatsonHealthLaunchStudy_1.propTypes = iconPropTypes;
137
- const WatsonHealthLaunchStudy_2 = React.forwardRef(function WatsonHealthLaunchStudy_2({ children, size = 16, ...rest }, ref) {
377
+ const WatsonHealthLaunchStudy_2 = /* @__PURE__ */ React.forwardRef(function WatsonHealthLaunchStudy_2({ children, size = 16, ...rest }, ref) {
138
378
  return React.createElement(Icon, {
139
379
  width: size,
140
380
  height: size,
@@ -150,7 +390,7 @@ const WatsonHealthLaunchStudy_2 = React.forwardRef(function WatsonHealthLaunchSt
150
390
  }), /* @__PURE__ */ jsx("path", { d: "M26,4v6H6V4H26m0-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ jsx("path", { d: "M20.59 21.41 17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z" }), /* @__PURE__ */ jsx("path", { d: "M8 6H20V8H8z" }), children);
151
391
  });
152
392
  WatsonHealthLaunchStudy_2.propTypes = iconPropTypes;
153
- const WatsonHealthLaunchStudy_3 = React.forwardRef(function WatsonHealthLaunchStudy_3({ children, size = 16, ...rest }, ref) {
393
+ const WatsonHealthLaunchStudy_3 = /* @__PURE__ */ React.forwardRef(function WatsonHealthLaunchStudy_3({ children, size = 16, ...rest }, ref) {
154
394
  return React.createElement(Icon, {
155
395
  width: size,
156
396
  height: size,
@@ -166,7 +406,7 @@ const WatsonHealthLaunchStudy_3 = React.forwardRef(function WatsonHealthLaunchSt
166
406
  }), /* @__PURE__ */ jsx("path", { d: "M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ jsx("path", { d: "M20.59 4.59 17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z" }), /* @__PURE__ */ jsx("path", { d: "M20.59 10.59 16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H20V26H8z" }), children);
167
407
  });
168
408
  WatsonHealthLaunchStudy_3.propTypes = iconPropTypes;
169
- const Layers = React.forwardRef(function Layers({ children, size = 16, ...rest }, ref) {
409
+ const Layers = /* @__PURE__ */ React.forwardRef(function Layers({ children, size = 16, ...rest }, ref) {
170
410
  return React.createElement(Icon, {
171
411
  width: size,
172
412
  height: size,
@@ -178,7 +418,7 @@ const Layers = React.forwardRef(function Layers({ children, size = 16, ...rest }
178
418
  }, /* @__PURE__ */ jsx("path", { d: "M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z" }), /* @__PURE__ */ jsx("path", { d: "M16,30a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,21.12,16,27.8643,28.5259,21.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,30Z" }), /* @__PURE__ */ jsx("path", { d: "M16,18a.9967.9967,0,0,1-.4741-.12l-13-7a1,1,0,0,1,0-1.7607l13-7a.9982.9982,0,0,1,.9482,0l13,7a1,1,0,0,1,0,1.7607l-13,7A.9967.9967,0,0,1,16,18ZM5.1094,10,16,15.8643,26.8906,10,16,4.1358Z" }), children);
179
419
  });
180
420
  Layers.propTypes = iconPropTypes;
181
- const LayersExternal = React.forwardRef(function LayersExternal({ children, size = 16, ...rest }, ref) {
421
+ const LayersExternal = /* @__PURE__ */ React.forwardRef(function LayersExternal({ children, size = 16, ...rest }, ref) {
182
422
  return React.createElement(Icon, {
183
423
  width: size,
184
424
  height: size,
@@ -202,7 +442,7 @@ const LayersExternal = React.forwardRef(function LayersExternal({ children, size
202
442
  }), children);
203
443
  });
204
444
  LayersExternal.propTypes = iconPropTypes;
205
- const Legend = React.forwardRef(function Legend({ children, size = 16, ...rest }, ref) {
445
+ const Legend = /* @__PURE__ */ React.forwardRef(function Legend({ children, size = 16, ...rest }, ref) {
206
446
  return React.createElement(Icon, {
207
447
  width: size,
208
448
  height: size,
@@ -220,7 +460,7 @@ const Legend = React.forwardRef(function Legend({ children, size = 16, ...rest }
220
460
  }), /* @__PURE__ */ jsx("path", { d: "M16 8H30V10H16z" }), /* @__PURE__ */ jsx("path", { d: "M9.5,12h-5a.5.5,0,0,1-.4473-.7236l2.5-5.0224a.5206.5206,0,0,1,.8945,0l2.5,5.0225A.5.5,0,0,1,9.5,12Z" }), children);
221
461
  });
222
462
  Legend.propTypes = iconPropTypes;
223
- const LetterAa = React.forwardRef(function LetterAa({ children, size = 16, ...rest }, ref) {
463
+ const LetterAa = /* @__PURE__ */ React.forwardRef(function LetterAa({ children, size = 16, ...rest }, ref) {
224
464
  return React.createElement(Icon, {
225
465
  width: size,
226
466
  height: size,
@@ -232,7 +472,7 @@ const LetterAa = React.forwardRef(function LetterAa({ children, size = 16, ...re
232
472
  }, /* @__PURE__ */ jsx("path", { d: "M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2,2,0,0,0,23,13Zm0,8H19V19h4Z" }), /* @__PURE__ */ jsx("path", { d: "M13,9H9a2,2,0,0,0-2,2V23H9V18h4v5h2V11A2,2,0,0,0,13,9ZM9,16V11h4v5Z" }), children);
233
473
  });
234
474
  LetterAa.propTypes = iconPropTypes;
235
- const LetterBb = React.forwardRef(function LetterBb({ children, size = 16, ...rest }, ref) {
475
+ const LetterBb = /* @__PURE__ */ React.forwardRef(function LetterBb({ children, size = 16, ...rest }, ref) {
236
476
  return React.createElement(Icon, {
237
477
  width: size,
238
478
  height: size,
@@ -244,7 +484,7 @@ const LetterBb = React.forwardRef(function LetterBb({ children, size = 16, ...re
244
484
  }, /* @__PURE__ */ jsx("path", { d: "M23,13H19V9H17V23h6a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z" }), /* @__PURE__ */ jsx("path", { d: "M15,12a3,3,0,0,0-3-3H7V23h5a3,3,0,0,0,3-3V18a3,3,0,0,0-.78-2A3,3,0,0,0,15,14ZM9,11h3a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H9Zm4,9a1,1,0,0,1-1,1H9V17h3a1,1,0,0,1,1,1Z" }), children);
245
485
  });
246
486
  LetterBb.propTypes = iconPropTypes;
247
- const LetterCc = React.forwardRef(function LetterCc({ children, size = 16, ...rest }, ref) {
487
+ const LetterCc = /* @__PURE__ */ React.forwardRef(function LetterCc({ children, size = 16, ...rest }, ref) {
248
488
  return React.createElement(Icon, {
249
489
  width: size,
250
490
  height: size,
@@ -256,7 +496,7 @@ const LetterCc = React.forwardRef(function LetterCc({ children, size = 16, ...re
256
496
  }, /* @__PURE__ */ jsx("path", { d: "M24,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v6h5Z" }), /* @__PURE__ */ jsx("path", { d: "M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h6Z" }), children);
257
497
  });
258
498
  LetterCc.propTypes = iconPropTypes;
259
- const LetterDd = React.forwardRef(function LetterDd({ children, size = 16, ...rest }, ref) {
499
+ const LetterDd = /* @__PURE__ */ React.forwardRef(function LetterDd({ children, size = 16, ...rest }, ref) {
260
500
  return React.createElement(Icon, {
261
501
  width: size,
262
502
  height: size,
@@ -268,7 +508,7 @@ const LetterDd = React.forwardRef(function LetterDd({ children, size = 16, ...re
268
508
  }, /* @__PURE__ */ jsx("path", { d: "M23,9v4H19a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6V9Zm-4,6h4v6H19Z" }), /* @__PURE__ */ jsx("path", { d: "M11,23H7V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,11,23ZM9,21h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H9Z" }), children);
269
509
  });
270
510
  LetterDd.propTypes = iconPropTypes;
271
- const LetterEe = React.forwardRef(function LetterEe({ children, size = 16, ...rest }, ref) {
511
+ const LetterEe = /* @__PURE__ */ React.forwardRef(function LetterEe({ children, size = 16, ...rest }, ref) {
272
512
  return React.createElement(Icon, {
273
513
  width: size,
274
514
  height: size,
@@ -280,7 +520,7 @@ const LetterEe = React.forwardRef(function LetterEe({ children, size = 16, ...re
280
520
  }, /* @__PURE__ */ jsx("path", { d: "M25,19V15a2.0023,2.0023,0,0,0-2-2H19a2.0023,2.0023,0,0,0-2,2v6a2.0077,2.0077,0,0,0,2,2h5V21H19V19Zm-6-4h4v2H19Z" }), /* @__PURE__ */ jsx("path", { d: "M15 11 15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z" }), children);
281
521
  });
282
522
  LetterEe.propTypes = iconPropTypes;
283
- const LetterFf = React.forwardRef(function LetterFf({ children, size = 16, ...rest }, ref) {
523
+ const LetterFf = /* @__PURE__ */ React.forwardRef(function LetterFf({ children, size = 16, ...rest }, ref) {
284
524
  return React.createElement(Icon, {
285
525
  width: size,
286
526
  height: size,
@@ -292,7 +532,7 @@ const LetterFf = React.forwardRef(function LetterFf({ children, size = 16, ...re
292
532
  }, /* @__PURE__ */ jsx("path", { d: "M16 11 16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11z" }), /* @__PURE__ */ jsx("path", { d: "M24,11V9H21a2,2,0,0,0-2,2v2H17v2h2v8h2V15h3V13H21V11Z" }), children);
293
533
  });
294
534
  LetterFf.propTypes = iconPropTypes;
295
- const LetterGg = React.forwardRef(function LetterGg({ children, size = 16, ...rest }, ref) {
535
+ const LetterGg = /* @__PURE__ */ React.forwardRef(function LetterGg({ children, size = 16, ...rest }, ref) {
296
536
  return React.createElement(Icon, {
297
537
  width: size,
298
538
  height: size,
@@ -304,7 +544,7 @@ const LetterGg = React.forwardRef(function LetterGg({ children, size = 16, ...re
304
544
  }, /* @__PURE__ */ jsx("path", { d: "M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v2H18v2h5a2,2,0,0,0,2-2V13Zm4,8H19V15h4Z" }), /* @__PURE__ */ jsx("path", { d: "M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h4V17H11V15h4Z" }), children);
305
545
  });
306
546
  LetterGg.propTypes = iconPropTypes;
307
- const LetterHh = React.forwardRef(function LetterHh({ children, size = 16, ...rest }, ref) {
547
+ const LetterHh = /* @__PURE__ */ React.forwardRef(function LetterHh({ children, size = 16, ...rest }, ref) {
308
548
  return React.createElement(Icon, {
309
549
  width: size,
310
550
  height: size,
@@ -316,7 +556,7 @@ const LetterHh = React.forwardRef(function LetterHh({ children, size = 16, ...re
316
556
  }, /* @__PURE__ */ jsx("path", { d: "M13 9 13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9z" }), /* @__PURE__ */ jsx("path", { d: "M23,13H19V9H17V23h2V15h4v8h2V15A2,2,0,0,0,23,13Z" }), children);
317
557
  });
318
558
  LetterHh.propTypes = iconPropTypes;
319
- const LetterIi = React.forwardRef(function LetterIi({ children, size = 16, ...rest }, ref) {
559
+ const LetterIi = /* @__PURE__ */ React.forwardRef(function LetterIi({ children, size = 16, ...rest }, ref) {
320
560
  return React.createElement(Icon, {
321
561
  width: size,
322
562
  height: size,
@@ -328,7 +568,7 @@ const LetterIi = React.forwardRef(function LetterIi({ children, size = 16, ...re
328
568
  }, /* @__PURE__ */ jsx("path", { d: "M10 11 13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11z" }), /* @__PURE__ */ jsx("path", { d: "M20 13H22V23H20z" }), /* @__PURE__ */ jsx("path", { d: "M20 9H22V11H20z" }), children);
329
569
  });
330
570
  LetterIi.propTypes = iconPropTypes;
331
- const LetterJj = React.forwardRef(function LetterJj({ children, size = 16, ...rest }, ref) {
571
+ const LetterJj = /* @__PURE__ */ React.forwardRef(function LetterJj({ children, size = 16, ...rest }, ref) {
332
572
  return React.createElement(Icon, {
333
573
  width: size,
334
574
  height: size,
@@ -340,7 +580,7 @@ const LetterJj = React.forwardRef(function LetterJj({ children, size = 16, ...re
340
580
  }, /* @__PURE__ */ jsx("path", { d: "M20 9H22V11H20z" }), /* @__PURE__ */ jsx("path", { d: "M20,25H17v2h3a2,2,0,0,0,2-2V13H20Z" }), /* @__PURE__ */ jsx("path", { d: "M14,23H10a2,2,0,0,1-2-2V19h2v2h4V9h2V21A2,2,0,0,1,14,23Z" }), children);
341
581
  });
342
582
  LetterJj.propTypes = iconPropTypes;
343
- const LetterKk = React.forwardRef(function LetterKk({ children, size = 16, ...rest }, ref) {
583
+ const LetterKk = /* @__PURE__ */ React.forwardRef(function LetterKk({ children, size = 16, ...rest }, ref) {
344
584
  return React.createElement(Icon, {
345
585
  width: size,
346
586
  height: size,
@@ -352,7 +592,7 @@ const LetterKk = React.forwardRef(function LetterKk({ children, size = 16, ...re
352
592
  }, /* @__PURE__ */ jsx("path", { d: "M15 9 12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9z" }), /* @__PURE__ */ jsx("path", { d: "M22.78 23 25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z" }), children);
353
593
  });
354
594
  LetterKk.propTypes = iconPropTypes;
355
- const LetterLl = React.forwardRef(function LetterLl({ children, size = 16, ...rest }, ref) {
595
+ const LetterLl = /* @__PURE__ */ React.forwardRef(function LetterLl({ children, size = 16, ...rest }, ref) {
356
596
  return React.createElement(Icon, {
357
597
  width: size,
358
598
  height: size,
@@ -364,7 +604,7 @@ const LetterLl = React.forwardRef(function LetterLl({ children, size = 16, ...re
364
604
  }, /* @__PURE__ */ jsx("path", { d: "M11 21 11 9 9 9 9 23 17 23 17 21 11 21z" }), /* @__PURE__ */ jsx("path", { d: "M23,23H21a2,2,0,0,1-2-2V9h2V21h2Z" }), children);
365
605
  });
366
606
  LetterLl.propTypes = iconPropTypes;
367
- const LetterMm = React.forwardRef(function LetterMm({ children, size = 16, ...rest }, ref) {
607
+ const LetterMm = /* @__PURE__ */ React.forwardRef(function LetterMm({ children, size = 16, ...rest }, ref) {
368
608
  return React.createElement(Icon, {
369
609
  width: size,
370
610
  height: size,
@@ -376,7 +616,7 @@ const LetterMm = React.forwardRef(function LetterMm({ children, size = 16, ...re
376
616
  }, /* @__PURE__ */ jsx("path", { d: "M24,13H16V23h2V15h2v8h2V15h2v8h2V15A2,2,0,0,0,24,13Z" }), /* @__PURE__ */ jsx("path", { d: "M12 9 10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z" }), children);
377
617
  });
378
618
  LetterMm.propTypes = iconPropTypes;
379
- const LetterNn = React.forwardRef(function LetterNn({ children, size = 16, ...rest }, ref) {
619
+ const LetterNn = /* @__PURE__ */ React.forwardRef(function LetterNn({ children, size = 16, ...rest }, ref) {
380
620
  return React.createElement(Icon, {
381
621
  width: size,
382
622
  height: size,
@@ -388,7 +628,7 @@ const LetterNn = React.forwardRef(function LetterNn({ children, size = 16, ...re
388
628
  }, /* @__PURE__ */ jsx("path", { d: "M25,23H23V15H19v8H17V13h6a2,2,0,0,1,2,2Z" }), /* @__PURE__ */ jsx("path", { d: "M13 19 9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z" }), children);
389
629
  });
390
630
  LetterNn.propTypes = iconPropTypes;
391
- const LetterOo = React.forwardRef(function LetterOo({ children, size = 16, ...rest }, ref) {
631
+ const LetterOo = /* @__PURE__ */ React.forwardRef(function LetterOo({ children, size = 16, ...rest }, ref) {
392
632
  return React.createElement(Icon, {
393
633
  width: size,
394
634
  height: size,
@@ -400,7 +640,7 @@ const LetterOo = React.forwardRef(function LetterOo({ children, size = 16, ...re
400
640
  }, /* @__PURE__ */ jsx("path", { d: "M23,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v6A2,2,0,0,1,23,23Zm-4-8v6h4V15Z" }), /* @__PURE__ */ jsx("path", { d: "M13,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h4a2,2,0,0,1,2,2V21A2,2,0,0,1,13,23ZM9,11V21h4V11Z" }), children);
401
641
  });
402
642
  LetterOo.propTypes = iconPropTypes;
403
- const LetterPp = React.forwardRef(function LetterPp({ children, size = 16, ...rest }, ref) {
643
+ const LetterPp = /* @__PURE__ */ React.forwardRef(function LetterPp({ children, size = 16, ...rest }, ref) {
404
644
  return React.createElement(Icon, {
405
645
  width: size,
406
646
  height: size,
@@ -412,7 +652,7 @@ const LetterPp = React.forwardRef(function LetterPp({ children, size = 16, ...re
412
652
  }, /* @__PURE__ */ jsx("path", { d: "M23,13H17V27h2V23h4a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z" }), /* @__PURE__ */ jsx("path", { d: "M9,23H7V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H9Zm0-7h4V11H9Z" }), children);
413
653
  });
414
654
  LetterPp.propTypes = iconPropTypes;
415
- const LetterQq = React.forwardRef(function LetterQq({ children, size = 16, ...rest }, ref) {
655
+ const LetterQq = /* @__PURE__ */ React.forwardRef(function LetterQq({ children, size = 16, ...rest }, ref) {
416
656
  return React.createElement(Icon, {
417
657
  width: size,
418
658
  height: size,
@@ -424,7 +664,7 @@ const LetterQq = React.forwardRef(function LetterQq({ children, size = 16, ...re
424
664
  }, /* @__PURE__ */ jsx("path", { d: "M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v4h2V13Zm4,8H19V15h4Z" }), /* @__PURE__ */ jsx("path", { d: "M13,9H9a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h1v2a2,2,0,0,0,2,2h2V25H12V23h1a2,2,0,0,0,2-2V11A2,2,0,0,0,13,9ZM9,21V11h4V21Z" }), children);
425
665
  });
426
666
  LetterQq.propTypes = iconPropTypes;
427
- const LetterRr = React.forwardRef(function LetterRr({ children, size = 16, ...rest }, ref) {
667
+ const LetterRr = /* @__PURE__ */ React.forwardRef(function LetterRr({ children, size = 16, ...rest }, ref) {
428
668
  return React.createElement(Icon, {
429
669
  width: size,
430
670
  height: size,
@@ -436,7 +676,7 @@ const LetterRr = React.forwardRef(function LetterRr({ children, size = 16, ...re
436
676
  }, /* @__PURE__ */ jsx("path", { d: "M16,15V11a2,2,0,0,0-2-2H8V23h2V17h1.48l2.34,6H16l-2.33-6H14A2,2,0,0,0,16,15Zm-6-4h4v4H10Z" }), /* @__PURE__ */ jsx("path", { d: "M24 13 18 13 18 23 20 23 20 15 24 15 24 13z" }), children);
437
677
  });
438
678
  LetterRr.propTypes = iconPropTypes;
439
- const LetterSs = React.forwardRef(function LetterSs({ children, size = 16, ...rest }, ref) {
679
+ const LetterSs = /* @__PURE__ */ React.forwardRef(function LetterSs({ children, size = 16, ...rest }, ref) {
440
680
  return React.createElement(Icon, {
441
681
  width: size,
442
682
  height: size,
@@ -448,7 +688,7 @@ const LetterSs = React.forwardRef(function LetterSs({ children, size = 16, ...re
448
688
  }, /* @__PURE__ */ jsx("path", { d: "M22,23H17V21h5V19H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v2h3a2,2,0,0,1,2,2v2A2,2,0,0,1,22,23Z" }), /* @__PURE__ */ jsx("path", { d: "M13,23H7V21h6V17H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,13,23Z" }), children);
449
689
  });
450
690
  LetterSs.propTypes = iconPropTypes;
451
- const LetterTt = React.forwardRef(function LetterTt({ children, size = 16, ...rest }, ref) {
691
+ const LetterTt = /* @__PURE__ */ React.forwardRef(function LetterTt({ children, size = 16, ...rest }, ref) {
452
692
  return React.createElement(Icon, {
453
693
  width: size,
454
694
  height: size,
@@ -460,7 +700,7 @@ const LetterTt = React.forwardRef(function LetterTt({ children, size = 16, ...re
460
700
  }, /* @__PURE__ */ jsx("path", { d: "M8 11 11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11z" }), /* @__PURE__ */ jsx("path", { d: "M23,15V13H20V11H18v2H16v2h2v6a2,2,0,0,0,2,2h3V21H20V15Z" }), children);
461
701
  });
462
702
  LetterTt.propTypes = iconPropTypes;
463
- const LetterUu = React.forwardRef(function LetterUu({ children, size = 16, ...rest }, ref) {
703
+ const LetterUu = /* @__PURE__ */ React.forwardRef(function LetterUu({ children, size = 16, ...rest }, ref) {
464
704
  return React.createElement(Icon, {
465
705
  width: size,
466
706
  height: size,
@@ -472,7 +712,7 @@ const LetterUu = React.forwardRef(function LetterUu({ children, size = 16, ...re
472
712
  }, /* @__PURE__ */ jsx("path", { d: "M23,23H19a2,2,0,0,1-2-2V13h2v8h4V13h2v8A2,2,0,0,1,23,23Z" }), /* @__PURE__ */ jsx("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), children);
473
713
  });
474
714
  LetterUu.propTypes = iconPropTypes;
475
- const LetterVv = React.forwardRef(function LetterVv({ children, size = 16, ...rest }, ref) {
715
+ const LetterVv = /* @__PURE__ */ React.forwardRef(function LetterVv({ children, size = 16, ...rest }, ref) {
476
716
  return React.createElement(Icon, {
477
717
  width: size,
478
718
  height: size,
@@ -484,7 +724,7 @@ const LetterVv = React.forwardRef(function LetterVv({ children, size = 16, ...re
484
724
  }, /* @__PURE__ */ jsx("path", { d: "M25 13 23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13z" }), /* @__PURE__ */ jsx("path", { d: "M13 9 11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z" }), children);
485
725
  });
486
726
  LetterVv.propTypes = iconPropTypes;
487
- const LetterWw = React.forwardRef(function LetterWw({ children, size = 16, ...rest }, ref) {
727
+ const LetterWw = /* @__PURE__ */ React.forwardRef(function LetterWw({ children, size = 16, ...rest }, ref) {
488
728
  return React.createElement(Icon, {
489
729
  width: size,
490
730
  height: size,
@@ -496,7 +736,7 @@ const LetterWw = React.forwardRef(function LetterWw({ children, size = 16, ...re
496
736
  }, /* @__PURE__ */ jsx("path", { d: "M24.3 13 23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13z" }), /* @__PURE__ */ jsx("path", { d: "M12.21 9 11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z" }), children);
497
737
  });
498
738
  LetterWw.propTypes = iconPropTypes;
499
- const LetterXx = React.forwardRef(function LetterXx({ children, size = 16, ...rest }, ref) {
739
+ const LetterXx = /* @__PURE__ */ React.forwardRef(function LetterXx({ children, size = 16, ...rest }, ref) {
500
740
  return React.createElement(Icon, {
501
741
  width: size,
502
742
  height: size,
@@ -508,7 +748,7 @@ const LetterXx = React.forwardRef(function LetterXx({ children, size = 16, ...re
508
748
  }, /* @__PURE__ */ jsx("path", { d: "M15 9 13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9z" }), /* @__PURE__ */ jsx("path", { d: "M25 13 23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z" }), children);
509
749
  });
510
750
  LetterXx.propTypes = iconPropTypes;
511
- const LetterYy = React.forwardRef(function LetterYy({ children, size = 16, ...rest }, ref) {
751
+ const LetterYy = /* @__PURE__ */ React.forwardRef(function LetterYy({ children, size = 16, ...rest }, ref) {
512
752
  return React.createElement(Icon, {
513
753
  width: size,
514
754
  height: size,
@@ -520,7 +760,7 @@ const LetterYy = React.forwardRef(function LetterYy({ children, size = 16, ...re
520
760
  }, /* @__PURE__ */ jsx("path", { d: "M15 9 13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9z" }), /* @__PURE__ */ jsx("path", { d: "M23,13l-2,7.52L19.08,13H17l3.15,9.87L19.53,25H17v2h2.26a2,2,0,0,0,1.91-1.42L25,13Z" }), children);
521
761
  });
522
762
  LetterYy.propTypes = iconPropTypes;
523
- const LetterZz = React.forwardRef(function LetterZz({ children, size = 16, ...rest }, ref) {
763
+ const LetterZz = /* @__PURE__ */ React.forwardRef(function LetterZz({ children, size = 16, ...rest }, ref) {
524
764
  return React.createElement(Icon, {
525
765
  width: size,
526
766
  height: size,
@@ -532,7 +772,7 @@ const LetterZz = React.forwardRef(function LetterZz({ children, size = 16, ...re
532
772
  }, /* @__PURE__ */ jsx("path", { d: "M25 15 25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15z" }), /* @__PURE__ */ jsx("path", { d: "M15 9 7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z" }), children);
533
773
  });
534
774
  LetterZz.propTypes = iconPropTypes;
535
- const License = React.forwardRef(function License({ children, size = 16, ...rest }, ref) {
775
+ const License = /* @__PURE__ */ React.forwardRef(function License({ children, size = 16, ...rest }, ref) {
536
776
  return React.createElement(Icon, {
537
777
  width: size,
538
778
  height: size,
@@ -544,7 +784,7 @@ const License = React.forwardRef(function License({ children, size = 16, ...rest
544
784
  }, /* @__PURE__ */ jsx("path", { d: "M10 6H22V8H10z" }), /* @__PURE__ */ jsx("path", { d: "M10 10H22V12H10z" }), /* @__PURE__ */ jsx("path", { d: "M10 24H16V26H10z" }), /* @__PURE__ */ jsx("path", { d: "M10 14H16V16H10z" }), /* @__PURE__ */ jsx("path", { d: "M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z" }), children);
545
785
  });
546
786
  License.propTypes = iconPropTypes;
547
- const LicenseDraft = React.forwardRef(function LicenseDraft({ children, size = 16, ...rest }, ref) {
787
+ const LicenseDraft = /* @__PURE__ */ React.forwardRef(function LicenseDraft({ children, size = 16, ...rest }, ref) {
548
788
  return React.createElement(Icon, {
549
789
  width: size,
550
790
  height: size,
@@ -556,7 +796,7 @@ const LicenseDraft = React.forwardRef(function LicenseDraft({ children, size = 1
556
796
  }, /* @__PURE__ */ jsx("path", { d: "M8 6H20V8H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 14H14V16H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H12V26H8z" }), /* @__PURE__ */ jsx("path", { d: "M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z" }), /* @__PURE__ */ jsx("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z" }), children);
557
797
  });
558
798
  LicenseDraft.propTypes = iconPropTypes;
559
- const LicenseGlobal = React.forwardRef(function LicenseGlobal({ children, size = 16, ...rest }, ref) {
799
+ const LicenseGlobal = /* @__PURE__ */ React.forwardRef(function LicenseGlobal({ children, size = 16, ...rest }, ref) {
560
800
  return React.createElement(Icon, {
561
801
  width: size,
562
802
  height: size,
@@ -568,7 +808,7 @@ const LicenseGlobal = React.forwardRef(function LicenseGlobal({ children, size =
568
808
  }, /* @__PURE__ */ jsx("path", { d: "M22,14a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,22,14Zm5.91,7H25.9563a12.03,12.03,0,0,0-1.2183-4.3325A6.01,6.01,0,0,1,27.91,21Zm-7.8545,0A10.0135,10.0135,0,0,1,22,16.0146,10.0121,10.0121,0,0,1,23.9448,21Zm3.89,2A10.01,10.01,0,0,1,22,27.9854,10.0121,10.0121,0,0,1,20.0552,23Zm-4.6831-6.332A12.0265,12.0265,0,0,0,18.0435,21H16.09A6.01,6.01,0,0,1,19.2617,16.668ZM16.09,23h1.9532a12.0265,12.0265,0,0,0,1.2182,4.332A6.01,6.01,0,0,1,16.09,23Zm8.6482,4.332A12.0242,12.0242,0,0,0,25.9565,23H27.91A6.0088,6.0088,0,0,1,24.7385,27.332Z" }), /* @__PURE__ */ jsx("path", { d: "M6 14H12V16H6z" }), /* @__PURE__ */ jsx("path", { d: "M6 6H18V8H6z" }), /* @__PURE__ */ jsx("path", { d: "M6 10H18V12H6z" }), /* @__PURE__ */ jsx("path", { d: "M6 24H12V26H6z" }), /* @__PURE__ */ jsx("path", { d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z" }), children);
569
809
  });
570
810
  LicenseGlobal.propTypes = iconPropTypes;
571
- const LicenseMaintenance = React.forwardRef(function LicenseMaintenance({ children, size = 16, ...rest }, ref) {
811
+ const LicenseMaintenance = /* @__PURE__ */ React.forwardRef(function LicenseMaintenance({ children, size = 16, ...rest }, ref) {
572
812
  return React.createElement(Icon, {
573
813
  width: size,
574
814
  height: size,
@@ -580,7 +820,7 @@ const LicenseMaintenance = React.forwardRef(function LicenseMaintenance({ childr
580
820
  }, /* @__PURE__ */ jsx("path", { d: "M8 14H14V16H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 6H20V8H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H14V26H8z" }), /* @__PURE__ */ jsx("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" }), /* @__PURE__ */ jsx("path", { d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z" }), children);
581
821
  });
582
822
  LicenseMaintenance.propTypes = iconPropTypes;
583
- const LicenseMaintenanceDraft = React.forwardRef(function LicenseMaintenanceDraft({ children, size = 16, ...rest }, ref) {
823
+ const LicenseMaintenanceDraft = /* @__PURE__ */ React.forwardRef(function LicenseMaintenanceDraft({ children, size = 16, ...rest }, ref) {
584
824
  return React.createElement(Icon, {
585
825
  width: size,
586
826
  height: size,
@@ -592,7 +832,7 @@ const LicenseMaintenanceDraft = React.forwardRef(function LicenseMaintenanceDraf
592
832
  }, /* @__PURE__ */ jsx("path", { d: "M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z" }), /* @__PURE__ */ jsx("path", { d: "M20,13V11H17.8579a3.94,3.94,0,0,0-.4248-1.019L18.95,8.4644,17.5356,7.05,16.019,8.5669A3.9443,3.9443,0,0,0,15,8.1421V6H13V8.1421a3.9443,3.9443,0,0,0-1.019.4248L10.4644,7.05,9.05,8.4644,10.5669,9.981A3.94,3.94,0,0,0,10.1421,11H8v2h2.1421a3.94,3.94,0,0,0,.4248,1.019L9.05,15.5356,10.4644,16.95l1.5166-1.5166A3.9443,3.9443,0,0,0,13,15.8579V18h2V15.8579a3.9443,3.9443,0,0,0,1.019-.4248L17.5356,16.95,18.95,15.5356,17.4331,14.019A3.94,3.94,0,0,0,17.8579,13Zm-6,1a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,14,14Z" }), /* @__PURE__ */ jsx("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z" }), children);
593
833
  });
594
834
  LicenseMaintenanceDraft.propTypes = iconPropTypes;
595
- const LicenseThirdParty = React.forwardRef(function LicenseThirdParty({ children, size = 16, ...rest }, ref) {
835
+ const LicenseThirdParty = /* @__PURE__ */ React.forwardRef(function LicenseThirdParty({ children, size = 16, ...rest }, ref) {
596
836
  return React.createElement(Icon, {
597
837
  width: size,
598
838
  height: size,
@@ -604,7 +844,7 @@ const LicenseThirdParty = React.forwardRef(function LicenseThirdParty({ children
604
844
  }, /* @__PURE__ */ jsx("path", { d: "M8 14H14V16H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 6H20V8H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 10H20V12H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H14V26H8z" }), /* @__PURE__ */ jsx("path", { d: "M27,25H21a3,3,0,0,0-3,3v2h2V28a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V28A3,3,0,0,0,27,25Z" }), /* @__PURE__ */ jsx("path", { d: "M24,24a4,4,0,1,0-4-4A4,4,0,0,0,24,24Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,24,18Z" }), /* @__PURE__ */ jsx("path", { d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z" }), children);
605
845
  });
606
846
  LicenseThirdParty.propTypes = iconPropTypes;
607
- const LicenseThirdPartyDraft = React.forwardRef(function LicenseThirdPartyDraft({ children, size = 16, ...rest }, ref) {
847
+ const LicenseThirdPartyDraft = /* @__PURE__ */ React.forwardRef(function LicenseThirdPartyDraft({ children, size = 16, ...rest }, ref) {
608
848
  return React.createElement(Icon, {
609
849
  width: size,
610
850
  height: size,
@@ -616,7 +856,7 @@ const LicenseThirdPartyDraft = React.forwardRef(function LicenseThirdPartyDraft(
616
856
  }, /* @__PURE__ */ jsx("path", { d: "M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z" }), /* @__PURE__ */ jsx("path", { d: "M17,15H11a3,3,0,0,0-3,3v1h2V18a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V18A3,3,0,0,0,17,15Z" }), /* @__PURE__ */ jsx("path", { d: "M14,14a4,4,0,1,0-4-4A4,4,0,0,0,14,14Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,14,8Z" }), /* @__PURE__ */ jsx("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z" }), children);
617
857
  });
618
858
  LicenseThirdPartyDraft.propTypes = iconPropTypes;
619
- const Lifesaver = React.forwardRef(function Lifesaver({ children, size = 16, ...rest }, ref) {
859
+ const Lifesaver = /* @__PURE__ */ React.forwardRef(function Lifesaver({ children, size = 16, ...rest }, ref) {
620
860
  return React.createElement(Icon, {
621
861
  width: size,
622
862
  height: size,
@@ -628,7 +868,7 @@ const Lifesaver = React.forwardRef(function Lifesaver({ children, size = 16, ...
628
868
  }, /* @__PURE__ */ jsx("path", { d: "M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z" }), children);
629
869
  });
630
870
  Lifesaver.propTypes = iconPropTypes;
631
- const Light = React.forwardRef(function Light({ children, size = 16, ...rest }, ref) {
871
+ const Light = /* @__PURE__ */ React.forwardRef(function Light({ children, size = 16, ...rest }, ref) {
632
872
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
633
873
  width: size,
634
874
  height: size,
@@ -673,7 +913,7 @@ const Light = React.forwardRef(function Light({ children, size = 16, ...rest },
673
913
  }), /* @__PURE__ */ jsx("path", { d: "M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" }), children);
674
914
  });
675
915
  Light.propTypes = iconPropTypes;
676
- const LightFilled = React.forwardRef(function LightFilled({ children, size = 16, ...rest }, ref) {
916
+ const LightFilled = /* @__PURE__ */ React.forwardRef(function LightFilled({ children, size = 16, ...rest }, ref) {
677
917
  return React.createElement(Icon, {
678
918
  width: size,
679
919
  height: size,
@@ -697,7 +937,7 @@ const LightFilled = React.forwardRef(function LightFilled({ children, size = 16,
697
937
  }), /* @__PURE__ */ jsx("path", { d: "M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" }), children);
698
938
  });
699
939
  LightFilled.propTypes = iconPropTypes;
700
- const Lightning = React.forwardRef(function Lightning({ children, size = 16, ...rest }, ref) {
940
+ const Lightning = /* @__PURE__ */ React.forwardRef(function Lightning({ children, size = 16, ...rest }, ref) {
701
941
  return React.createElement(Icon, {
702
942
  width: size,
703
943
  height: size,
@@ -709,7 +949,7 @@ const Lightning = React.forwardRef(function Lightning({ children, size = 16, ...
709
949
  }, /* @__PURE__ */ jsx("path", { d: "M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z" }), children);
710
950
  });
711
951
  Lightning.propTypes = iconPropTypes;
712
- const Link = React.forwardRef(function Link({ children, size = 16, ...rest }, ref) {
952
+ const Link = /* @__PURE__ */ React.forwardRef(function Link({ children, size = 16, ...rest }, ref) {
713
953
  return React.createElement(Icon, {
714
954
  width: size,
715
955
  height: size,
@@ -721,7 +961,7 @@ const Link = React.forwardRef(function Link({ children, size = 16, ...rest }, re
721
961
  }, /* @__PURE__ */ jsx("path", { d: "M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z" }), /* @__PURE__ */ jsx("path", { d: "M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z" }), children);
722
962
  });
723
963
  Link.propTypes = iconPropTypes;
724
- const LineThick = React.forwardRef(function LineThick({ children, size = 16, ...rest }, ref) {
964
+ const LineThick = /* @__PURE__ */ React.forwardRef(function LineThick({ children, size = 16, ...rest }, ref) {
725
965
  return React.createElement(Icon, {
726
966
  width: size,
727
967
  height: size,
@@ -733,7 +973,7 @@ const LineThick = React.forwardRef(function LineThick({ children, size = 16, ...
733
973
  }, /* @__PURE__ */ jsx("path", { d: "M4.5,24.6506L24.6506,4.5l2.8494,2.8494L7.3494,27.5l-2.8494-2.8494Z" }), children);
734
974
  });
735
975
  LineThick.propTypes = iconPropTypes;
736
- const LineThin = React.forwardRef(function LineThin({ children, size = 16, ...rest }, ref) {
976
+ const LineThin = /* @__PURE__ */ React.forwardRef(function LineThin({ children, size = 16, ...rest }, ref) {
737
977
  return React.createElement(Icon, {
738
978
  width: size,
739
979
  height: size,
@@ -745,7 +985,7 @@ const LineThin = React.forwardRef(function LineThin({ children, size = 16, ...re
745
985
  }, /* @__PURE__ */ jsx("path", { d: "M5.293,25.2929L25.293,5.2929l1.4141,1.4141L6.707,26.707l-1.4141-1.4141Z" }), children);
746
986
  });
747
987
  LineThin.propTypes = iconPropTypes;
748
- const Linux = React.forwardRef(function Linux({ children, size = 16, ...rest }, ref) {
988
+ const Linux = /* @__PURE__ */ React.forwardRef(function Linux({ children, size = 16, ...rest }, ref) {
749
989
  return React.createElement(Icon, {
750
990
  width: size,
751
991
  height: size,
@@ -757,7 +997,7 @@ const Linux = React.forwardRef(function Linux({ children, size = 16, ...rest },
757
997
  }, /* @__PURE__ */ jsx("path", { d: "M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z" }), children);
758
998
  });
759
999
  Linux.propTypes = iconPropTypes;
760
- const LinuxAlt = React.forwardRef(function LinuxAlt({ children, size = 16, ...rest }, ref) {
1000
+ const LinuxAlt = /* @__PURE__ */ React.forwardRef(function LinuxAlt({ children, size = 16, ...rest }, ref) {
761
1001
  return React.createElement(Icon, {
762
1002
  width: size,
763
1003
  height: size,
@@ -769,7 +1009,7 @@ const LinuxAlt = React.forwardRef(function LinuxAlt({ children, size = 16, ...re
769
1009
  }, /* @__PURE__ */ jsx("path", { d: "M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z" }), /* @__PURE__ */ jsx("path", { d: "M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z" }), children);
770
1010
  });
771
1011
  LinuxAlt.propTypes = iconPropTypes;
772
- const LinuxNamespace = React.forwardRef(function LinuxNamespace({ children, size = 16, ...rest }, ref) {
1012
+ const LinuxNamespace = /* @__PURE__ */ React.forwardRef(function LinuxNamespace({ children, size = 16, ...rest }, ref) {
773
1013
  return React.createElement(Icon, {
774
1014
  width: size,
775
1015
  height: size,
@@ -787,7 +1027,7 @@ const LinuxNamespace = React.forwardRef(function LinuxNamespace({ children, size
787
1027
  }), children);
788
1028
  });
789
1029
  LinuxNamespace.propTypes = iconPropTypes;
790
- const List = React.forwardRef(function List({ children, size = 16, ...rest }, ref) {
1030
+ const List = /* @__PURE__ */ React.forwardRef(function List({ children, size = 16, ...rest }, ref) {
791
1031
  return React.createElement(Icon, {
792
1032
  width: size,
793
1033
  height: size,
@@ -799,7 +1039,7 @@ const List = React.forwardRef(function List({ children, size = 16, ...rest }, re
799
1039
  }, /* @__PURE__ */ jsx("path", { d: "M10 6H28V8H10z" }), /* @__PURE__ */ jsx("path", { d: "M10 24H28V26H10z" }), /* @__PURE__ */ jsx("path", { d: "M10 15H28V17H10z" }), /* @__PURE__ */ jsx("path", { d: "M4 15H6V17H4z" }), /* @__PURE__ */ jsx("path", { d: "M4 6H6V8H4z" }), /* @__PURE__ */ jsx("path", { d: "M4 24H6V26H4z" }), children);
800
1040
  });
801
1041
  List.propTypes = iconPropTypes;
802
- const ListBoxes = React.forwardRef(function ListBoxes({ children, size = 16, ...rest }, ref) {
1042
+ const ListBoxes = /* @__PURE__ */ React.forwardRef(function ListBoxes({ children, size = 16, ...rest }, ref) {
803
1043
  return React.createElement(Icon, {
804
1044
  width: size,
805
1045
  height: size,
@@ -811,7 +1051,7 @@ const ListBoxes = React.forwardRef(function ListBoxes({ children, size = 16, ...
811
1051
  }, /* @__PURE__ */ jsx("path", { d: "M16 8H30V10H16z" }), /* @__PURE__ */ jsx("path", { d: "M16 22H30V24H16z" }), /* @__PURE__ */ jsx("path", { d: "M10,14H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,14ZM4,6v6h6.0012L10,6Z" }), /* @__PURE__ */ jsx("path", { d: "M10,28H4a2.0023,2.0023,0,0,1-2-2V20a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,28ZM4,20v6h6.0012L10,20Z" }), children);
812
1052
  });
813
1053
  ListBoxes.propTypes = iconPropTypes;
814
- const ListBulleted = React.forwardRef(function ListBulleted({ children, size = 16, ...rest }, ref) {
1054
+ const ListBulleted = /* @__PURE__ */ React.forwardRef(function ListBulleted({ children, size = 16, ...rest }, ref) {
815
1055
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
816
1056
  width: size,
817
1057
  height: size,
@@ -848,7 +1088,7 @@ const ListBulleted = React.forwardRef(function ListBulleted({ children, size = 1
848
1088
  }), /* @__PURE__ */ jsx("path", { d: "M16 22H30V24H16z" }), /* @__PURE__ */ jsx("path", { d: "M16 8H30V10H16z" }), children);
849
1089
  });
850
1090
  ListBulleted.propTypes = iconPropTypes;
851
- const ListChecked = React.forwardRef(function ListChecked({ children, size = 16, ...rest }, ref) {
1091
+ const ListChecked = /* @__PURE__ */ React.forwardRef(function ListChecked({ children, size = 16, ...rest }, ref) {
852
1092
  return React.createElement(Icon, {
853
1093
  width: size,
854
1094
  height: size,
@@ -860,7 +1100,7 @@ const ListChecked = React.forwardRef(function ListChecked({ children, size = 16,
860
1100
  }, /* @__PURE__ */ jsx("path", { d: "M16 22H30V24H16z" }), /* @__PURE__ */ jsx("path", { d: "M14 19.4 12.6 18 6 24.6 3.4 22 2 23.4 6 27.4z" }), /* @__PURE__ */ jsx("path", { d: "M16 8H30V10H16z" }), /* @__PURE__ */ jsx("path", { d: "M14 5.4 12.6 4 6 10.6 3.4 8 2 9.4 6 13.4z" }), children);
861
1101
  });
862
1102
  ListChecked.propTypes = iconPropTypes;
863
- const ListCheckedMirror = React.forwardRef(function ListCheckedMirror({ children, size = 16, ...rest }, ref) {
1103
+ const ListCheckedMirror = /* @__PURE__ */ React.forwardRef(function ListCheckedMirror({ children, size = 16, ...rest }, ref) {
864
1104
  return React.createElement(Icon, {
865
1105
  width: size,
866
1106
  height: size,
@@ -872,7 +1112,7 @@ const ListCheckedMirror = React.forwardRef(function ListCheckedMirror({ children
872
1112
  }, /* @__PURE__ */ jsx("path", { d: "M30 19.4 28.6 18 22 24.6 19.4 22 18 23.4 22 27.4z" }), /* @__PURE__ */ jsx("path", { d: "M2 22H16V24H2z" }), /* @__PURE__ */ jsx("path", { d: "M30 5.4 28.6 4 22 10.6 19.4 8 18 9.4 22 13.4z" }), /* @__PURE__ */ jsx("path", { d: "M2 8H16V10H2z" }), children);
873
1113
  });
874
1114
  ListCheckedMirror.propTypes = iconPropTypes;
875
- const ListDropdown = React.forwardRef(function ListDropdown({ children, size = 16, ...rest }, ref) {
1115
+ const ListDropdown = /* @__PURE__ */ React.forwardRef(function ListDropdown({ children, size = 16, ...rest }, ref) {
876
1116
  return React.createElement(Icon, {
877
1117
  width: size,
878
1118
  height: size,
@@ -884,7 +1124,7 @@ const ListDropdown = React.forwardRef(function ListDropdown({ children, size = 1
884
1124
  }, /* @__PURE__ */ jsx("path", { d: "M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z" }), /* @__PURE__ */ jsx("path", { d: "M15 11H17V13H15z" }), /* @__PURE__ */ jsx("path", { d: "M19 11H26V13H19z" }), /* @__PURE__ */ jsx("path", { d: "M15 17H17V19H15z" }), /* @__PURE__ */ jsx("path", { d: "M19 17H26V19H19z" }), /* @__PURE__ */ jsx("path", { d: "M15 23H17V25H15z" }), /* @__PURE__ */ jsx("path", { d: "M19 23H26V25H19z" }), children);
885
1125
  });
886
1126
  ListDropdown.propTypes = iconPropTypes;
887
- const ListNumbered = React.forwardRef(function ListNumbered({ children, size = 16, ...rest }, ref) {
1127
+ const ListNumbered = /* @__PURE__ */ React.forwardRef(function ListNumbered({ children, size = 16, ...rest }, ref) {
888
1128
  return React.createElement(Icon, {
889
1129
  width: size,
890
1130
  height: size,
@@ -896,7 +1136,7 @@ const ListNumbered = React.forwardRef(function ListNumbered({ children, size = 1
896
1136
  }, /* @__PURE__ */ jsx("path", { d: "M16 22H30V24H16z" }), /* @__PURE__ */ jsx("path", { d: "M16 8H30V10H16z" }), /* @__PURE__ */ jsx("path", { d: "M8 12 8 4 6 4 6 5 4 5 4 7 6 7 6 12 4 12 4 14 6 14 8 14 10 14 10 12 8 12z" }), /* @__PURE__ */ jsx("path", { d: "M10,28H4V24a2,2,0,0,1,2-2H8V20H4V18H8a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H6v2h4Z" }), children);
897
1137
  });
898
1138
  ListNumbered.propTypes = iconPropTypes;
899
- const ListNumberedMirror = React.forwardRef(function ListNumberedMirror({ children, size = 16, ...rest }, ref) {
1139
+ const ListNumberedMirror = /* @__PURE__ */ React.forwardRef(function ListNumberedMirror({ children, size = 16, ...rest }, ref) {
900
1140
  return React.createElement(Icon, {
901
1141
  width: size,
902
1142
  height: size,
@@ -908,7 +1148,7 @@ const ListNumberedMirror = React.forwardRef(function ListNumberedMirror({ childr
908
1148
  }, /* @__PURE__ */ jsx("path", { d: "M28,28h-6v-4c0-1.1,0.9-2,2-2h2v-2h-4v-2h4c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-2v2h4V28z" }), /* @__PURE__ */ jsx("path", { d: "M2 22H16V24H2z" }), /* @__PURE__ */ jsx("path", { d: "M26 12 26 4 24 4 24 5 22 5 22 7 24 7 24 12 22 12 22 14 24 14 26 14 28 14 28 12z" }), /* @__PURE__ */ jsx("path", { d: "M2 8H16V10H2z" }), children);
909
1149
  });
910
1150
  ListNumberedMirror.propTypes = iconPropTypes;
911
- const ListTree = React.forwardRef(function ListTree({ children, size = 16, ...rest }, ref) {
1151
+ const ListTree = /* @__PURE__ */ React.forwardRef(function ListTree({ children, size = 16, ...rest }, ref) {
912
1152
  return React.createElement(Icon, {
913
1153
  width: size,
914
1154
  height: size,
@@ -920,7 +1160,7 @@ const ListTree = React.forwardRef(function ListTree({ children, size = 16, ...re
920
1160
  }, /* @__PURE__ */ jsx("path", { d: "M7,4h-2v22c0,1.1025.897,2,2,2h5v-2h-5v-6h5v-2h-5v-6h5v-2h-5v-6ZM16,12h2v-2h-2v2ZM20,10v2h7v-2h-7ZM16,20h2v-2h-2v2ZM20,20h7v-2h-7v2ZM16,28h2v-2h-2v2ZM20,28h7v-2h-7v2Z" }), children);
921
1161
  });
922
1162
  ListTree.propTypes = iconPropTypes;
923
- const LoadBalancerApplication = React.forwardRef(function LoadBalancerApplication({ children, size = 16, ...rest }, ref) {
1163
+ const LoadBalancerApplication = /* @__PURE__ */ React.forwardRef(function LoadBalancerApplication({ children, size = 16, ...rest }, ref) {
924
1164
  return React.createElement(Icon, {
925
1165
  width: size,
926
1166
  height: size,
@@ -932,7 +1172,7 @@ const LoadBalancerApplication = React.forwardRef(function LoadBalancerApplicatio
932
1172
  }, /* @__PURE__ */ jsx("path", { d: "M4 26H8V30H4z" }), /* @__PURE__ */ jsx("path", { d: "M14 26H18V30H14z" }), /* @__PURE__ */ jsx("path", { d: "M24 26H28V30H24z" }), /* @__PURE__ */ jsx("path", { d: "M25,16H17V14H15v2H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z" }), /* @__PURE__ */ jsx("path", { d: "M9,2V12H23V2Zm2,2h2v6H11Zm10,6H15V4h6Z" }), children);
933
1173
  });
934
1174
  LoadBalancerApplication.propTypes = iconPropTypes;
935
- const LoadBalancerClassic = React.forwardRef(function LoadBalancerClassic({ children, size = 16, ...rest }, ref) {
1175
+ const LoadBalancerClassic = /* @__PURE__ */ React.forwardRef(function LoadBalancerClassic({ children, size = 16, ...rest }, ref) {
936
1176
  return React.createElement(Icon, {
937
1177
  width: size,
938
1178
  height: size,
@@ -944,7 +1184,7 @@ const LoadBalancerClassic = React.forwardRef(function LoadBalancerClassic({ chil
944
1184
  }, /* @__PURE__ */ jsx("path", { d: "M4 26H8V30H4z" }), /* @__PURE__ */ jsx("path", { d: "M14 26H18V30H14z" }), /* @__PURE__ */ jsx("path", { d: "M24 26H28V30H24z" }), /* @__PURE__ */ jsx("path", { d: "M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z" }), /* @__PURE__ */ jsx("path", { d: "M20,10V2H12v8ZM14,8V4h4V8Z" }), children);
945
1185
  });
946
1186
  LoadBalancerClassic.propTypes = iconPropTypes;
947
- const LoadBalancerGlobal = React.forwardRef(function LoadBalancerGlobal({ children, size = 16, ...rest }, ref) {
1187
+ const LoadBalancerGlobal = /* @__PURE__ */ React.forwardRef(function LoadBalancerGlobal({ children, size = 16, ...rest }, ref) {
948
1188
  return React.createElement(Icon, {
949
1189
  width: size,
950
1190
  height: size,
@@ -956,7 +1196,7 @@ const LoadBalancerGlobal = React.forwardRef(function LoadBalancerGlobal({ childr
956
1196
  }, /* @__PURE__ */ jsx("path", { d: "M4 26H8V30H4z" }), /* @__PURE__ */ jsx("path", { d: "M14 26H18V30H14z" }), /* @__PURE__ */ jsx("path", { d: "M24 26H28V30H24z" }), /* @__PURE__ */ jsx("path", { d: "M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z" }), /* @__PURE__ */ jsx("path", { d: "M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,4Z" }), children);
957
1197
  });
958
1198
  LoadBalancerGlobal.propTypes = iconPropTypes;
959
- const LoadBalancerListener = React.forwardRef(function LoadBalancerListener({ children, size = 16, ...rest }, ref) {
1199
+ const LoadBalancerListener = /* @__PURE__ */ React.forwardRef(function LoadBalancerListener({ children, size = 16, ...rest }, ref) {
960
1200
  return React.createElement(Icon, {
961
1201
  width: size,
962
1202
  height: size,
@@ -968,7 +1208,7 @@ const LoadBalancerListener = React.forwardRef(function LoadBalancerListener({ ch
968
1208
  }, /* @__PURE__ */ jsx("path", { d: "M15 8H17V10H15z" }), /* @__PURE__ */ jsx("path", { d: "M19 8H21V10H19z" }), /* @__PURE__ */ jsx("path", { d: "M11 8H13V10H11z" }), /* @__PURE__ */ jsx("path", { d: "M25,16H17V13H15v3H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z" }), /* @__PURE__ */ jsx("path", { d: "M4 26H8V30H4z" }), /* @__PURE__ */ jsx("path", { d: "M14 26H18V30H14z" }), /* @__PURE__ */ jsx("path", { d: "M24 26H28V30H24z" }), /* @__PURE__ */ jsx("path", { d: "M11 3H21V5H11z" }), children);
969
1209
  });
970
1210
  LoadBalancerListener.propTypes = iconPropTypes;
971
- const LoadBalancerLocal = React.forwardRef(function LoadBalancerLocal({ children, size = 16, ...rest }, ref) {
1211
+ const LoadBalancerLocal = /* @__PURE__ */ React.forwardRef(function LoadBalancerLocal({ children, size = 16, ...rest }, ref) {
972
1212
  return React.createElement(Icon, {
973
1213
  width: size,
974
1214
  height: size,
@@ -980,7 +1220,7 @@ const LoadBalancerLocal = React.forwardRef(function LoadBalancerLocal({ children
980
1220
  }, /* @__PURE__ */ jsx("path", { d: "M25,16H17V10H15v6H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z" }), /* @__PURE__ */ jsx("path", { d: "M4 26H8V30H4z" }), /* @__PURE__ */ jsx("path", { d: "M14 26H18V30H14z" }), /* @__PURE__ */ jsx("path", { d: "M24 26H28V30H24z" }), /* @__PURE__ */ jsx("path", { d: "M11 5H21V7H11z" }), children);
981
1221
  });
982
1222
  LoadBalancerLocal.propTypes = iconPropTypes;
983
- const LoadBalancerNetwork = React.forwardRef(function LoadBalancerNetwork({ children, size = 16, ...rest }, ref) {
1223
+ const LoadBalancerNetwork = /* @__PURE__ */ React.forwardRef(function LoadBalancerNetwork({ children, size = 16, ...rest }, ref) {
984
1224
  return React.createElement(Icon, {
985
1225
  width: size,
986
1226
  height: size,
@@ -992,7 +1232,7 @@ const LoadBalancerNetwork = React.forwardRef(function LoadBalancerNetwork({ chil
992
1232
  }, /* @__PURE__ */ jsx("path", { d: "M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v4H7V18h8v4h2V18h8v4h2V18A2.0023,2.0023,0,0,0,25,16Z" }), /* @__PURE__ */ jsx("path", { d: "M20,10V2H12v8h8ZM14,8V4h4V8Z" }), /* @__PURE__ */ jsx("path", { d: "M26,24a2.9948,2.9948,0,0,0-2.8157,2H18.8157a2.982,2.982,0,0,0-5.6314,0H8.8157a3,3,0,1,0,0,2h4.3686a2.982,2.982,0,0,0,5.6314,0h4.3686A2.9947,2.9947,0,1,0,26,24ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z" }), children);
993
1233
  });
994
1234
  LoadBalancerNetwork.propTypes = iconPropTypes;
995
- const LoadBalancerPool = React.forwardRef(function LoadBalancerPool({ children, size = 16, ...rest }, ref) {
1235
+ const LoadBalancerPool = /* @__PURE__ */ React.forwardRef(function LoadBalancerPool({ children, size = 16, ...rest }, ref) {
996
1236
  return React.createElement(Icon, {
997
1237
  width: size,
998
1238
  height: size,
@@ -1004,7 +1244,7 @@ const LoadBalancerPool = React.forwardRef(function LoadBalancerPool({ children,
1004
1244
  }, /* @__PURE__ */ jsx("path", { d: "M10 15H22V17H10z" }), /* @__PURE__ */ jsx("path", { d: "M8.7,6.2852A2.9665,2.9665,0,0,0,9,5,3,3,0,1,0,6,8a2.96,2.96,0,0,0,1.2852-.3008L10,10.4141V13h2V9.5859ZM6,6A1,1,0,1,1,7,5,1.0009,1.0009,0,0,1,6,6Z" }), /* @__PURE__ */ jsx("path", { d: "M19,5a3,3,0,1,0-4,2.8154V13h2V7.8159A2.9957,2.9957,0,0,0,19,5ZM16,6a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,6Z" }), /* @__PURE__ */ jsx("path", { d: "M26,2a3.0033,3.0033,0,0,0-3,3,2.9665,2.9665,0,0,0,.3,1.2852L20,9.5859V13h2V10.4141l2.7148-2.7149A2.96,2.96,0,0,0,26,8a3,3,0,0,0,0-6Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,6Z" }), /* @__PURE__ */ jsx("path", { d: "M12,19H10v2.5859L7.2854,24.3008A2.9609,2.9609,0,0,0,6,24a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L12,22.4141ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Z" }), /* @__PURE__ */ jsx("path", { d: "M17,24.1841V19H15v5.1841a3,3,0,1,0,2,0ZM16,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Z" }), /* @__PURE__ */ jsx("path", { d: "M26,24a2.9609,2.9609,0,0,0-1.2854.3008L22,21.5859V19H20v3.4141l3.3,3.3007A2.9665,2.9665,0,0,0,23,27a3,3,0,1,0,3-3Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z" }), children);
1005
1245
  });
1006
1246
  LoadBalancerPool.propTypes = iconPropTypes;
1007
- const LoadBalancerVpc = React.forwardRef(function LoadBalancerVpc({ children, size = 16, ...rest }, ref) {
1247
+ const LoadBalancerVpc = /* @__PURE__ */ React.forwardRef(function LoadBalancerVpc({ children, size = 16, ...rest }, ref) {
1008
1248
  return React.createElement(Icon, {
1009
1249
  width: size,
1010
1250
  height: size,
@@ -1016,7 +1256,7 @@ const LoadBalancerVpc = React.forwardRef(function LoadBalancerVpc({ children, si
1016
1256
  }, /* @__PURE__ */ jsx("path", { d: "M8,30H2V24H8ZM4,28H6V26H4Z" }), /* @__PURE__ */ jsx("path", { d: "M19,30H13V24h6Zm-4-2h2V26H15Z" }), /* @__PURE__ */ jsx("path", { d: "M30,30H24V24h6Zm-4-2h2V26H26Z" }), /* @__PURE__ */ jsx("path", { d: "M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,16,4Z" }), /* @__PURE__ */ jsx("path", { d: "M26,16H21a4.0045,4.0045,0,0,1-4-4H15a4.0045,4.0045,0,0,1-4,4H6a2.0023,2.0023,0,0,0-2,2v4H6V18h5A5.9694,5.9694,0,0,0,15,16.46V22h2V16.46A5.9694,5.9694,0,0,0,21,18h5v4h2V18A2.0023,2.0023,0,0,0,26,16Z" }), children);
1017
1257
  });
1018
1258
  LoadBalancerVpc.propTypes = iconPropTypes;
1019
- const Location = React.forwardRef(function Location({ children, size = 16, ...rest }, ref) {
1259
+ const Location = /* @__PURE__ */ React.forwardRef(function Location({ children, size = 16, ...rest }, ref) {
1020
1260
  return React.createElement(Icon, {
1021
1261
  width: size,
1022
1262
  height: size,
@@ -1028,7 +1268,7 @@ const Location = React.forwardRef(function Location({ children, size = 16, ...re
1028
1268
  }, /* @__PURE__ */ jsx("path", { d: "M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z" }), /* @__PURE__ */ jsx("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" }), children);
1029
1269
  });
1030
1270
  Location.propTypes = iconPropTypes;
1031
- const LocationCompany = React.forwardRef(function LocationCompany({ children, size = 16, ...rest }, ref) {
1271
+ const LocationCompany = /* @__PURE__ */ React.forwardRef(function LocationCompany({ children, size = 16, ...rest }, ref) {
1032
1272
  return React.createElement(Icon, {
1033
1273
  width: size,
1034
1274
  height: size,
@@ -1040,7 +1280,7 @@ const LocationCompany = React.forwardRef(function LocationCompany({ children, si
1040
1280
  }, /* @__PURE__ */ jsx("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" }), /* @__PURE__ */ jsx("path", { d: "M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ jsx("path", { d: "M15 16H17V18H15z" }), /* @__PURE__ */ jsx("path", { d: "M15 12H17V14H15z" }), children);
1041
1281
  });
1042
1282
  LocationCompany.propTypes = iconPropTypes;
1043
- const LocationCompanyFilled = React.forwardRef(function LocationCompanyFilled({ children, size = 16, ...rest }, ref) {
1283
+ const LocationCompanyFilled = /* @__PURE__ */ React.forwardRef(function LocationCompanyFilled({ children, size = 16, ...rest }, ref) {
1044
1284
  return React.createElement(Icon, {
1045
1285
  width: size,
1046
1286
  height: size,
@@ -1055,7 +1295,7 @@ const LocationCompanyFilled = React.forwardRef(function LocationCompanyFilled({
1055
1295
  }), /* @__PURE__ */ jsx("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm1,16H15V16h2Zm0-4H15V12h2Zm4,4H19V10H13v8H11V10a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2Z" }), children);
1056
1296
  });
1057
1297
  LocationCompanyFilled.propTypes = iconPropTypes;
1058
- const LocationCurrent = React.forwardRef(function LocationCurrent({ children, size = 16, ...rest }, ref) {
1298
+ const LocationCurrent = /* @__PURE__ */ React.forwardRef(function LocationCurrent({ children, size = 16, ...rest }, ref) {
1059
1299
  return React.createElement(Icon, {
1060
1300
  width: size,
1061
1301
  height: size,
@@ -1067,7 +1307,7 @@ const LocationCurrent = React.forwardRef(function LocationCurrent({ children, si
1067
1307
  }, /* @__PURE__ */ jsx("path", { d: "M4,12.9835a1,1,0,0,0,.6289.9448l9.6015,3.8409,3.8407,9.6019A1,1,0,0,0,19,28h.0162a1.0009,1.0009,0,0,0,.9238-.6582l8-22.0007A1,1,0,0,0,26.658,4.0594l-22,8A1.0011,1.0011,0,0,0,4,12.9835Z" }), children);
1068
1308
  });
1069
1309
  LocationCurrent.propTypes = iconPropTypes;
1070
- const LocationFilled = React.forwardRef(function LocationFilled({ children, size = 16, ...rest }, ref) {
1310
+ const LocationFilled = /* @__PURE__ */ React.forwardRef(function LocationFilled({ children, size = 16, ...rest }, ref) {
1071
1311
  return React.createElement(Icon, {
1072
1312
  width: size,
1073
1313
  height: size,
@@ -1084,7 +1324,7 @@ const LocationFilled = React.forwardRef(function LocationFilled({ children, size
1084
1324
  }), children);
1085
1325
  });
1086
1326
  LocationFilled.propTypes = iconPropTypes;
1087
- const LocationHazard = React.forwardRef(function LocationHazard({ children, size = 16, ...rest }, ref) {
1327
+ const LocationHazard = /* @__PURE__ */ React.forwardRef(function LocationHazard({ children, size = 16, ...rest }, ref) {
1088
1328
  return React.createElement(Icon, {
1089
1329
  width: size,
1090
1330
  height: size,
@@ -1100,7 +1340,7 @@ const LocationHazard = React.forwardRef(function LocationHazard({ children, size
1100
1340
  }), /* @__PURE__ */ jsx("path", { d: "M15 7H17V16H15z" }), /* @__PURE__ */ jsx("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" }), children);
1101
1341
  });
1102
1342
  LocationHazard.propTypes = iconPropTypes;
1103
- const LocationHazardFilled = React.forwardRef(function LocationHazardFilled({ children, size = 16, ...rest }, ref) {
1343
+ const LocationHazardFilled = /* @__PURE__ */ React.forwardRef(function LocationHazardFilled({ children, size = 16, ...rest }, ref) {
1104
1344
  return React.createElement(Icon, {
1105
1345
  width: size,
1106
1346
  height: size,
@@ -1115,7 +1355,7 @@ const LocationHazardFilled = React.forwardRef(function LocationHazardFilled({ ch
1115
1355
  }), /* @__PURE__ */ jsx("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2ZM14.875,7h2.25v9h-2.25ZM16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Z" }), children);
1116
1356
  });
1117
1357
  LocationHazardFilled.propTypes = iconPropTypes;
1118
- const LocationHeart = React.forwardRef(function LocationHeart({ children, size = 16, ...rest }, ref) {
1358
+ const LocationHeart = /* @__PURE__ */ React.forwardRef(function LocationHeart({ children, size = 16, ...rest }, ref) {
1119
1359
  return React.createElement(Icon, {
1120
1360
  width: size,
1121
1361
  height: size,
@@ -1127,7 +1367,7 @@ const LocationHeart = React.forwardRef(function LocationHeart({ children, size =
1127
1367
  }, /* @__PURE__ */ jsx("path", { d: "M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z" }), /* @__PURE__ */ jsx("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" }), children);
1128
1368
  });
1129
1369
  LocationHeart.propTypes = iconPropTypes;
1130
- const LocationHeartFilled = React.forwardRef(function LocationHeartFilled({ children, size = 16, ...rest }, ref) {
1370
+ const LocationHeartFilled = /* @__PURE__ */ React.forwardRef(function LocationHeartFilled({ children, size = 16, ...rest }, ref) {
1131
1371
  return React.createElement(Icon, {
1132
1372
  width: size,
1133
1373
  height: size,
@@ -1142,7 +1382,7 @@ const LocationHeartFilled = React.forwardRef(function LocationHeartFilled({ chil
1142
1382
  }), /* @__PURE__ */ jsx("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm4.2109,11.7021L16.002,18l-4.2129-4.2979a2.7992,2.7992,0,0,1,0-3.8964,2.6619,2.6619,0,0,1,3.8159,0l.397.4057.393-.4057a2.6619,2.6619,0,0,1,3.8159,0A2.7992,2.7992,0,0,1,20.2109,13.7021Z" }), children);
1143
1383
  });
1144
1384
  LocationHeartFilled.propTypes = iconPropTypes;
1145
- const LocationInfo = React.forwardRef(function LocationInfo({ children, size = 16, ...rest }, ref) {
1385
+ const LocationInfo = /* @__PURE__ */ React.forwardRef(function LocationInfo({ children, size = 16, ...rest }, ref) {
1146
1386
  return React.createElement(Icon, {
1147
1387
  width: size,
1148
1388
  height: size,
@@ -1163,7 +1403,7 @@ const LocationInfo = React.forwardRef(function LocationInfo({ children, size = 1
1163
1403
  }), children);
1164
1404
  });
1165
1405
  LocationInfo.propTypes = iconPropTypes;
1166
- const LocationInfoFilled = React.forwardRef(function LocationInfoFilled({ children, size = 16, ...rest }, ref) {
1406
+ const LocationInfoFilled = /* @__PURE__ */ React.forwardRef(function LocationInfoFilled({ children, size = 16, ...rest }, ref) {
1167
1407
  return React.createElement(Icon, {
1168
1408
  width: size,
1169
1409
  height: size,
@@ -1182,7 +1422,7 @@ const LocationInfoFilled = React.forwardRef(function LocationInfoFilled({ childr
1182
1422
  }), children);
1183
1423
  });
1184
1424
  LocationInfoFilled.propTypes = iconPropTypes;
1185
- const LocationPerson = React.forwardRef(function LocationPerson({ children, size = 16, ...rest }, ref) {
1425
+ const LocationPerson = /* @__PURE__ */ React.forwardRef(function LocationPerson({ children, size = 16, ...rest }, ref) {
1186
1426
  return React.createElement(Icon, {
1187
1427
  width: size,
1188
1428
  height: size,
@@ -1194,7 +1434,7 @@ const LocationPerson = React.forwardRef(function LocationPerson({ children, size
1194
1434
  }, /* @__PURE__ */ jsx("path", { d: "M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ jsx("path", { d: "M16,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,14Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,16,10Z" }), /* @__PURE__ */ jsx("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" }), children);
1195
1435
  });
1196
1436
  LocationPerson.propTypes = iconPropTypes;
1197
- const LocationPersonFilled = React.forwardRef(function LocationPersonFilled({ children, size = 16, ...rest }, ref) {
1437
+ const LocationPersonFilled = /* @__PURE__ */ React.forwardRef(function LocationPersonFilled({ children, size = 16, ...rest }, ref) {
1198
1438
  return React.createElement(Icon, {
1199
1439
  width: size,
1200
1440
  height: size,
@@ -1213,7 +1453,7 @@ const LocationPersonFilled = React.forwardRef(function LocationPersonFilled({ ch
1213
1453
  }), /* @__PURE__ */ jsx("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,6a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,8Zm4,11H18V17H14v2H12V17a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z" }), children);
1214
1454
  });
1215
1455
  LocationPersonFilled.propTypes = iconPropTypes;
1216
- const LocationSave = React.forwardRef(function LocationSave({ children, size = 16, ...rest }, ref) {
1456
+ const LocationSave = /* @__PURE__ */ React.forwardRef(function LocationSave({ children, size = 16, ...rest }, ref) {
1217
1457
  return React.createElement(Icon, {
1218
1458
  width: size,
1219
1459
  height: size,
@@ -1225,7 +1465,7 @@ const LocationSave = React.forwardRef(function LocationSave({ children, size = 1
1225
1465
  }, /* @__PURE__ */ jsx("path", { d: "M18,30h2V28a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v2h2V28a3.0033,3.0033,0,0,0-3-3H21a3.0033,3.0033,0,0,0-3,3Z" }), /* @__PURE__ */ jsx("path", { d: "M24,24a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,24,24Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,24,18Z" }), /* @__PURE__ */ jsx("path", { d: "M25.3418,10.06l-22-8A1,1,0,0,0,2.06,3.3415l8,22A1.001,1.001,0,0,0,10.9839,26H11a1,1,0,0,0,.9287-.6289L15.77,15.7692l9.6016-3.8408a1,1,0,0,0-.0293-1.8687ZM14.6284,14.0709v0l-.3979.1591-.1591.3979,0,0-3.0269,7.5678L4.6719,4.6715l17.5244,6.3726Z" }), children);
1226
1466
  });
1227
1467
  LocationSave.propTypes = iconPropTypes;
1228
- const LocationStar = React.forwardRef(function LocationStar({ children, size = 16, ...rest }, ref) {
1468
+ const LocationStar = /* @__PURE__ */ React.forwardRef(function LocationStar({ children, size = 16, ...rest }, ref) {
1229
1469
  return React.createElement(Icon, {
1230
1470
  width: size,
1231
1471
  height: size,
@@ -1237,7 +1477,7 @@ const LocationStar = React.forwardRef(function LocationStar({ children, size = 1
1237
1477
  }, /* @__PURE__ */ jsx("path", { d: "M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z" }), /* @__PURE__ */ jsx("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" }), children);
1238
1478
  });
1239
1479
  LocationStar.propTypes = iconPropTypes;
1240
- const LocationStarFilled = React.forwardRef(function LocationStarFilled({ children, size = 16, ...rest }, ref) {
1480
+ const LocationStarFilled = /* @__PURE__ */ React.forwardRef(function LocationStarFilled({ children, size = 16, ...rest }, ref) {
1241
1481
  return React.createElement(Icon, {
1242
1482
  width: size,
1243
1483
  height: size,
@@ -1252,7 +1492,7 @@ const LocationStarFilled = React.forwardRef(function LocationStarFilled({ childr
1252
1492
  }), /* @__PURE__ */ jsx("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm3.6,16L16,15.7085,12.4,18l.6-4.0742-3-2.7529,4.2-.5064L16,7l1.9116,3.6665L22,11.1729l-3,2.7529Z" }), children);
1253
1493
  });
1254
1494
  LocationStarFilled.propTypes = iconPropTypes;
1255
- const Locked = React.forwardRef(function Locked({ children, size = 16, ...rest }, ref) {
1495
+ const Locked = /* @__PURE__ */ React.forwardRef(function Locked({ children, size = 16, ...rest }, ref) {
1256
1496
  return React.createElement(Icon, {
1257
1497
  width: size,
1258
1498
  height: size,
@@ -1264,7 +1504,7 @@ const Locked = React.forwardRef(function Locked({ children, size = 16, ...rest }
1264
1504
  }, /* @__PURE__ */ jsx("path", { d: "M24,14H22V8A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14ZM12,8a4,4,0,0,1,8,0v6H12ZM24,28H8V16H24Z" }), children);
1265
1505
  });
1266
1506
  Locked.propTypes = iconPropTypes;
1267
- const LockedAndBlocked = React.forwardRef(function LockedAndBlocked({ children, size = 16, ...rest }, ref) {
1507
+ const LockedAndBlocked = /* @__PURE__ */ React.forwardRef(function LockedAndBlocked({ children, size = 16, ...rest }, ref) {
1268
1508
  return React.createElement(Icon, {
1269
1509
  width: size,
1270
1510
  height: size,
@@ -1276,7 +1516,7 @@ const LockedAndBlocked = React.forwardRef(function LockedAndBlocked({ children,
1276
1516
  }, /* @__PURE__ */ jsx("path", { d: "M30.4461,20.1005c-.1386-.0692-.2914-.1052-.4464-.1053h-10c-.5522,0-1.0001.4474-1.0002.9998,0,.1338.0268.2662.0789.3895l5.0268,10.0581c.1694.3388.5158.5527.8946.5527.3788,0,.7253-.2139.8947-.5527l5-10c.2468-.4944.046-1.0953-.4484-1.342h0ZM8,16h16v2h2v-2c0-1.1046-.8954-2-2-2h-2v-6c0-3.3137-2.6863-6-6-6s-6,2.6863-6,6v6h-2c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h11v-2h-11v-12ZM12,8c0-2.2092,1.7908-4,4-4s4,1.7908,4,4v6h-8v-6Z" }), children);
1277
1517
  });
1278
1518
  LockedAndBlocked.propTypes = iconPropTypes;
1279
- const LogicalPartition = React.forwardRef(function LogicalPartition({ children, size = 16, ...rest }, ref) {
1519
+ const LogicalPartition = /* @__PURE__ */ React.forwardRef(function LogicalPartition({ children, size = 16, ...rest }, ref) {
1280
1520
  return React.createElement(Icon, {
1281
1521
  width: size,
1282
1522
  height: size,
@@ -1292,7 +1532,7 @@ const LogicalPartition = React.forwardRef(function LogicalPartition({ children,
1292
1532
  }), /* @__PURE__ */ jsx("path", { d: "M27,22v-4c0-1.1046-.8954-2-2-2h-8v-4h9c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H6c-1.1046,0-2,.8954-2,2v6c0,1.1046,.8954,2,2,2H15v4H7c-1.1046,0-2,.8954-2,2v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4H15v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4h8v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1Zm-19,6H4v-4h4v4Zm10-4v4h-4v-4h4ZM6,10V4H26v6H6ZM28,28h-4v-4h4v4Z" }), children);
1293
1533
  });
1294
1534
  LogicalPartition.propTypes = iconPropTypes;
1295
- const Login = React.forwardRef(function Login({ children, size = 16, ...rest }, ref) {
1535
+ const Login = /* @__PURE__ */ React.forwardRef(function Login({ children, size = 16, ...rest }, ref) {
1296
1536
  return React.createElement(Icon, {
1297
1537
  width: size,
1298
1538
  height: size,
@@ -1304,7 +1544,7 @@ const Login = React.forwardRef(function Login({ children, size = 16, ...rest },
1304
1544
  }, /* @__PURE__ */ jsx("path", { d: "M26,30H14a2,2,0,0,1-2-2V25h2v3H26V4H14V7H12V4a2,2,0,0,1,2-2H26a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z" }), /* @__PURE__ */ jsx("path", { d: "M14.59 20.59 18.17 17 4 17 4 15 18.17 15 14.59 11.41 16 10 22 16 16 22 14.59 20.59z" }), children);
1305
1545
  });
1306
1546
  Login.propTypes = iconPropTypes;
1307
- const LogoAngular = React.forwardRef(function LogoAngular({ children, size = 16, ...rest }, ref) {
1547
+ const LogoAngular = /* @__PURE__ */ React.forwardRef(function LogoAngular({ children, size = 16, ...rest }, ref) {
1308
1548
  return React.createElement(Icon, {
1309
1549
  width: size,
1310
1550
  height: size,
@@ -1316,7 +1556,7 @@ const LogoAngular = React.forwardRef(function LogoAngular({ children, size = 16,
1316
1556
  }, /* @__PURE__ */ jsx("path", { d: "M13.5,16h4.9L16,10.8L13.5,16z" }), /* @__PURE__ */ jsx("path", { d: "M16,3L3,7.6l2.7,15.8L16,29l10.3-5.6L29,7.6L16,3z M21.1,21.6l-1.5-3.2h-7.1l-1.5,3.2H8.6L16,5.3l7.4,16.2H21.1z" }), children);
1317
1557
  });
1318
1558
  LogoAngular.propTypes = iconPropTypes;
1319
- const LogoAnsibleCommunity = React.forwardRef(function LogoAnsibleCommunity({ children, size = 16, ...rest }, ref) {
1559
+ const LogoAnsibleCommunity = /* @__PURE__ */ React.forwardRef(function LogoAnsibleCommunity({ children, size = 16, ...rest }, ref) {
1320
1560
  return React.createElement(Icon, {
1321
1561
  width: size,
1322
1562
  height: size,
@@ -1328,7 +1568,7 @@ const LogoAnsibleCommunity = React.forwardRef(function LogoAnsibleCommunity({ ch
1328
1568
  }, /* @__PURE__ */ jsx("path", { d: "M27.8,27.7L17.5,3.1C17.2,2.4,16.6,2,15.9,2c-0.7,0-1.3,0.4-1.6,1.1L3,30h3.9l4.5-11.1l13.3,10.7c0.5,0.4,0.9,0.6,1.4,0.6 c1,0,1.9-0.7,1.9-1.8C28,28.2,27.9,28,27.8,27.7z M15.9,7.5l6.7,16.4L12.5,16L15.9,7.5z" }), children);
1329
1569
  });
1330
1570
  LogoAnsibleCommunity.propTypes = iconPropTypes;
1331
- const LogoBluesky = React.forwardRef(function LogoBluesky({ children, size = 16, ...rest }, ref) {
1571
+ const LogoBluesky = /* @__PURE__ */ React.forwardRef(function LogoBluesky({ children, size = 16, ...rest }, ref) {
1332
1572
  return React.createElement(Icon, {
1333
1573
  width: size,
1334
1574
  height: size,
@@ -1340,7 +1580,7 @@ const LogoBluesky = React.forwardRef(function LogoBluesky({ children, size = 16,
1340
1580
  }, /* @__PURE__ */ jsx("path", { d: "M9.2,6.9c2.7,2.1,5.7,6.3,6.8,8.5,1.1-2.2,4-6.4,6.8-8.5,2-1.5,5.2-2.6,5.2,1s-.4,6.2-.7,7c-.9,3.1-4,3.8-6.8,3.4,4.8.8,6.1,3.6,3.4,6.3-5.1,5.2-7.3-1.3-7.8-3,0-.3-.1-.5-.1-.3,0-.1,0,0-.1.3-.6,1.7-2.8,8.2-7.8,3-2.7-2.7-1.4-5.5,3.4-6.3-2.8.5-5.9-.3-6.8-3.4-.2-.9-.7-6.3-.7-7,0-3.7,3.2-2.5,5.2-1,0,0,0,0,0,0Z" }), children);
1341
1581
  });
1342
1582
  LogoBluesky.propTypes = iconPropTypes;
1343
- const LogoDigg = React.forwardRef(function LogoDigg({ children, size = 16, ...rest }, ref) {
1583
+ const LogoDigg = /* @__PURE__ */ React.forwardRef(function LogoDigg({ children, size = 16, ...rest }, ref) {
1344
1584
  return React.createElement(Icon, {
1345
1585
  width: size,
1346
1586
  height: size,
@@ -1352,7 +1592,7 @@ const LogoDigg = React.forwardRef(function LogoDigg({ children, size = 16, ...re
1352
1592
  }, /* @__PURE__ */ jsx("path", { d: "M6.48,7.6v3.92H2V21H9.28V7.6Zm0,11.2H4.8v-5H6.48Z" }), /* @__PURE__ */ jsx("path", { d: "M10.4 11.52H13.2V21.04H10.4z" }), /* @__PURE__ */ jsx("path", { d: "M10.4 7.6H13.2V10.399999999999999H10.4z" }), /* @__PURE__ */ jsx("path", { d: "M14.32,11.52V21H18.8v1.12H14.32V24.4H21.6V11.52ZM18.8,18.8H17.12v-5H18.8Z" }), /* @__PURE__ */ jsx("path", { d: "M22.72,11.52V21H27.2v1.12H22.72V24.4H30V11.52ZM27.2,18.8H25.52v-5H27.2Z" }), children);
1353
1593
  });
1354
1594
  LogoDigg.propTypes = iconPropTypes;
1355
- const LogoDiscord = React.forwardRef(function LogoDiscord({ children, size = 16, ...rest }, ref) {
1595
+ const LogoDiscord = /* @__PURE__ */ React.forwardRef(function LogoDiscord({ children, size = 16, ...rest }, ref) {
1356
1596
  return React.createElement(Icon, {
1357
1597
  width: size,
1358
1598
  height: size,
@@ -1364,7 +1604,7 @@ const LogoDiscord = React.forwardRef(function LogoDiscord({ children, size = 16,
1364
1604
  }, /* @__PURE__ */ jsx("path", { d: "M25.7,7.1C23.9,6.3,22,5.7,20,5.3c0,0-0.1,0-0.1,0c-0.2,0.4-0.5,1-0.7,1.5c-2.2-0.3-4.3-0.3-6.4,0c-0.2-0.5-0.5-1-0.7-1.5 c0,0-0.1,0-0.1,0c-2,0.3-3.9,0.9-5.7,1.8c0,0,0,0,0,0c-3.6,5.4-4.6,10.7-4.1,15.9c0,0,0,0.1,0,0.1c2.4,1.8,4.7,2.8,7,3.5 c0,0,0.1,0,0.1,0c0.5-0.7,1-1.5,1.4-2.3c0,0,0-0.1,0-0.1c-0.8-0.3-1.5-0.6-2.2-1c-0.1,0-0.1-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.3 c0,0,0.1,0,0.1,0c4.6,2.1,9.5,2.1,14.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0,0,0.1,0,0.1c-0.7,0.4-1.4,0.8-2.2,1 c0,0-0.1,0.1,0,0.1c0.4,0.8,0.9,1.6,1.4,2.3c0,0,0.1,0,0.1,0c2.3-0.7,4.6-1.8,7-3.5c0,0,0,0,0-0.1C30.5,17,28.9,11.8,25.7,7.1 C25.7,7.1,25.7,7.1,25.7,7.1z M11.4,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C13.9,18.6,12.8,19.9,11.4,19.9z M20.7,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C23.2,18.6,22.1,19.9,20.7,19.9z" }), children);
1365
1605
  });
1366
1606
  LogoDiscord.propTypes = iconPropTypes;
1367
- const LogoFacebook = React.forwardRef(function LogoFacebook({ children, size = 16, ...rest }, ref) {
1607
+ const LogoFacebook = /* @__PURE__ */ React.forwardRef(function LogoFacebook({ children, size = 16, ...rest }, ref) {
1368
1608
  return React.createElement(Icon, {
1369
1609
  width: size,
1370
1610
  height: size,
@@ -1376,7 +1616,7 @@ const LogoFacebook = React.forwardRef(function LogoFacebook({ children, size = 1
1376
1616
  }, /* @__PURE__ */ jsx("path", { d: "M26.67,4H5.33A1.34,1.34,0,0,0,4,5.33V26.67A1.34,1.34,0,0,0,5.33,28H16.82V18.72H13.7V15.09h3.12V12.42c0-3.1,1.89-4.79,4.67-4.79.93,0,1.86,0,2.79.14V11H22.37c-1.51,0-1.8.72-1.8,1.77v2.31h3.6l-.47,3.63H20.57V28h6.1A1.34,1.34,0,0,0,28,26.67V5.33A1.34,1.34,0,0,0,26.67,4Z" }), children);
1377
1617
  });
1378
1618
  LogoFacebook.propTypes = iconPropTypes;
1379
- const LogoFigma = React.forwardRef(function LogoFigma({ children, size = 16, ...rest }, ref) {
1619
+ const LogoFigma = /* @__PURE__ */ React.forwardRef(function LogoFigma({ children, size = 16, ...rest }, ref) {
1380
1620
  return React.createElement(Icon, {
1381
1621
  width: size,
1382
1622
  height: size,
@@ -1388,7 +1628,7 @@ const LogoFigma = React.forwardRef(function LogoFigma({ children, size = 16, ...
1388
1628
  }, /* @__PURE__ */ jsx("path", { d: "M23.6,11.6c1-0.6,1.7-1.5,2.1-2.6c0.4-1.1,0.4-2.2,0.1-3.3c-0.3-1.1-1-2-1.9-2.7c-0.9-0.7-2.1-1-3.2-1h-9.2 c-1.2,0-2.3,0.4-3.2,1C7.2,3.7,6.6,4.7,6.2,5.7C5.9,6.8,5.9,8,6.3,9c0.4,1.1,1.1,2,2.1,2.6c-0.7,0.5-1.4,1.1-1.8,1.9 C6.2,14.3,6,15.1,6,16c0,0.9,0.2,1.7,0.6,2.5c0.4,0.8,1,1.4,1.8,1.9c-1,0.6-1.7,1.5-2.1,2.6c-0.4,1.1-0.4,2.2-0.1,3.3 c0.3,1.1,1,2,2,2.7c0.9,0.7,2.1,1,3.2,1c1.4,0,2.8-0.6,3.9-1.5c1-1,1.6-2.3,1.6-3.7v-4.8c1,0.9,2.3,1.4,3.6,1.4h0.1 c1.2,0,2.3-0.4,3.2-1c0.9-0.7,1.6-1.6,1.9-2.7c0.3-1.1,0.3-2.2-0.1-3.3C25.3,13.1,24.5,12.2,23.6,11.6z M16.9,3.7h3.7 c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2s0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2 c-0.4,0.3-0.8,0.6-1.2,0.8c-0.5,0.2-1,0.2-1.4,0.2h-3.7V3.7z M11.4,3.7h3.7v7h-3.7c-0.9,0-1.8-0.4-2.4-1.1C8.3,9,8,8.1,8,7.2 s0.4-1.8,1-2.4C9.6,4.2,10.5,3.8,11.4,3.7L11.4,3.7z M7.8,16c0-0.9,0.4-1.8,1.1-2.5c0.7-0.7,1.6-1,2.6-1h3.7v7h-3.7 c-1,0-1.9-0.4-2.6-1C8.2,17.8,7.8,16.9,7.8,16L7.8,16z M15.1,24.7c0,1-0.4,1.9-1.1,2.5c-0.7,0.7-1.6,1-2.6,1c-0.5,0-1,0-1.4-0.2 c-0.5-0.2-0.9-0.4-1.2-0.7c-0.4-0.3-0.6-0.7-0.8-1.2c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.8,0.8-1.2 c0.4-0.3,0.8-0.6,1.2-0.8c0.5-0.2,1-0.2,1.4-0.2h3.7L15.1,24.7z M20.6,19.5h-0.1c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.7-1-1.5-1-2.4 c0-0.9,0.4-1.8,1-2.4c0.6-0.7,1.5-1,2.4-1.1h0.1c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2 c0.2,0.4,0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8C21.6,19.5,21.1,19.5,20.6,19.5 L20.6,19.5z" }), children);
1389
1629
  });
1390
1630
  LogoFigma.propTypes = iconPropTypes;
1391
- const LogoFlickr = React.forwardRef(function LogoFlickr({ children, size = 16, ...rest }, ref) {
1631
+ const LogoFlickr = /* @__PURE__ */ React.forwardRef(function LogoFlickr({ children, size = 16, ...rest }, ref) {
1392
1632
  return React.createElement(Icon, {
1393
1633
  width: size,
1394
1634
  height: size,
@@ -1408,7 +1648,7 @@ const LogoFlickr = React.forwardRef(function LogoFlickr({ children, size = 16, .
1408
1648
  }), children);
1409
1649
  });
1410
1650
  LogoFlickr.propTypes = iconPropTypes;
1411
- const LogoGit = React.forwardRef(function LogoGit({ children, size = 16, ...rest }, ref) {
1651
+ const LogoGit = /* @__PURE__ */ React.forwardRef(function LogoGit({ children, size = 16, ...rest }, ref) {
1412
1652
  return React.createElement(Icon, {
1413
1653
  width: size,
1414
1654
  height: size,
@@ -1420,7 +1660,7 @@ const LogoGit = React.forwardRef(function LogoGit({ children, size = 16, ...rest
1420
1660
  }, /* @__PURE__ */ jsx("path", { d: "M29.5242,14.8021L17.2022,2.5241c-.7013-.6988-1.8032-.6988-2.5045,0h0l-2.5045,2.4955,3.2057,3.1943c.8014-.2995,1.6029,0,2.2039.4991.6011.5989.8014,1.3975.5009,2.1961l3.1055,3.0945c.8014-.2995,1.6029,0,2.2039.4991.8014.7986.8014,2.1961,0,2.9947h0c-.8014.7986-2.2039.7986-3.0054,0-.6011-.5989-.8014-1.4973-.5009-2.2959l-2.9052-2.8948v7.5865c1.102.4991,1.5027,1.7968,1.0018,2.8948-.1002.1996-.2004.3993-.4007.5989-.8014.7986-2.2039.7986-3.0054,0h0c-.8014-.7986-.8014-2.1961,0-2.9947h0c.2004-.1996.4007-.3993.7013-.4991v-7.6863c-.3005-.0998-.5009-.2995-.7013-.4991-.6011-.5989-.8014-1.4973-.5009-2.2959l-3.2057-3.1943L2.4759,14.7023c-.7013.6988-.7013,1.7968,0,2.5954h0l12.2218,12.1783c.7013.6988,1.8032.6988,2.5045,0l12.2218-12.1783c.7013-.6988.7013-1.7968,0-2.5954" }), children);
1421
1661
  });
1422
1662
  LogoGit.propTypes = iconPropTypes;
1423
- const LogoGithub = React.forwardRef(function LogoGithub({ children, size = 16, ...rest }, ref) {
1663
+ const LogoGithub = /* @__PURE__ */ React.forwardRef(function LogoGithub({ children, size = 16, ...rest }, ref) {
1424
1664
  return React.createElement(Icon, {
1425
1665
  width: size,
1426
1666
  height: size,
@@ -1435,7 +1675,7 @@ const LogoGithub = React.forwardRef(function LogoGithub({ children, size = 16, .
1435
1675
  }), children);
1436
1676
  });
1437
1677
  LogoGithub.propTypes = iconPropTypes;
1438
- const LogoGitlab = React.forwardRef(function LogoGitlab({ children, size = 16, ...rest }, ref) {
1678
+ const LogoGitlab = /* @__PURE__ */ React.forwardRef(function LogoGitlab({ children, size = 16, ...rest }, ref) {
1439
1679
  return React.createElement(Icon, {
1440
1680
  width: size,
1441
1681
  height: size,
@@ -1447,7 +1687,7 @@ const LogoGitlab = React.forwardRef(function LogoGitlab({ children, size = 16, .
1447
1687
  }, /* @__PURE__ */ jsx("path", { d: "m28.5678,12.8926l-.0366-.0934-3.5388-9.2356c-.072-.181-.1995-.3346-.3642-.4386-.3375-.2095-.7699-.1863-1.083.0582-.1512.1228-.2608.2892-.3141.4765l-2.3894,7.3105h-9.6756l-2.3894-7.3105c-.0518-.1884-.1617-.3556-.3141-.4779-.3131-.2445-.7455-.2677-1.083-.0582-.1643.1045-.2917.2579-.3642.4386l-3.5456,9.2315-.0352.0934c-1.0465,2.7345-.1578,5.8315,2.1796,7.5948l.0122.0095.0325.023,5.3908,4.037,2.667,2.0185,1.6246,1.2265c.3905.2965.9308.2965,1.3213,0l1.6246-1.2265,2.667-2.0185,5.4233-4.0614.0135-.0108c2.3319-1.7635,3.219-4.8551,2.1769-7.5867Z" }), children);
1448
1688
  });
1449
1689
  LogoGitlab.propTypes = iconPropTypes;
1450
- const LogoGlassdoor = React.forwardRef(function LogoGlassdoor({ children, size = 16, ...rest }, ref) {
1690
+ const LogoGlassdoor = /* @__PURE__ */ React.forwardRef(function LogoGlassdoor({ children, size = 16, ...rest }, ref) {
1451
1691
  return React.createElement(Icon, {
1452
1692
  width: size,
1453
1693
  height: size,
@@ -1459,7 +1699,7 @@ const LogoGlassdoor = React.forwardRef(function LogoGlassdoor({ children, size =
1459
1699
  }, /* @__PURE__ */ jsx("path", { d: "M10.8281,28H21.1719a3.43,3.43,0,0,0,3.43-3.43V10.3306h-3.43V24.57H7.3981A3.43,3.43,0,0,0,10.8281,28Z" }), /* @__PURE__ */ jsx("path", { d: "M21.1719,4H10.8281a3.43,3.43,0,0,0-3.43,3.43v14.24h3.43V7.43H24.6019A3.43,3.43,0,0,0,21.1719,4Z" }), children);
1460
1700
  });
1461
1701
  LogoGlassdoor.propTypes = iconPropTypes;
1462
- const LogoInstagram = React.forwardRef(function LogoInstagram({ children, size = 16, ...rest }, ref) {
1702
+ const LogoInstagram = /* @__PURE__ */ React.forwardRef(function LogoInstagram({ children, size = 16, ...rest }, ref) {
1463
1703
  return React.createElement(Icon, {
1464
1704
  width: size,
1465
1705
  height: size,
@@ -1475,7 +1715,7 @@ const LogoInstagram = React.forwardRef(function LogoInstagram({ children, size =
1475
1715
  }), /* @__PURE__ */ jsx("path", { d: "M16,9.8378A6.1622,6.1622,0,1,0,22.1622,16,6.1622,6.1622,0,0,0,16,9.8378ZM16,20a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" }), /* @__PURE__ */ jsx("path", { d: "M16,6.1622c3.2041,0,3.5837.0122,4.849.07a6.6418,6.6418,0,0,1,2.2283.4132,3.9748,3.9748,0,0,1,2.2774,2.2774,6.6418,6.6418,0,0,1,.4132,2.2283c.0577,1.2653.07,1.6449.07,4.849s-.0122,3.5837-.07,4.849a6.6418,6.6418,0,0,1-.4132,2.2283,3.9748,3.9748,0,0,1-2.2774,2.2774,6.6418,6.6418,0,0,1-2.2283.4132c-1.2652.0577-1.6446.07-4.849.07s-3.5838-.0122-4.849-.07a6.6418,6.6418,0,0,1-2.2283-.4132,3.9748,3.9748,0,0,1-2.2774-2.2774,6.6418,6.6418,0,0,1-.4132-2.2283c-.0577-1.2653-.07-1.6449-.07-4.849s.0122-3.5837.07-4.849a6.6418,6.6418,0,0,1,.4132-2.2283A3.9748,3.9748,0,0,1,8.9227,6.6453a6.6418,6.6418,0,0,1,2.2283-.4132c1.2653-.0577,1.6449-.07,4.849-.07M16,4c-3.259,0-3.6677.0138-4.9476.0722A8.8068,8.8068,0,0,0,8.14,4.63,6.1363,6.1363,0,0,0,4.63,8.14a8.8068,8.8068,0,0,0-.5578,2.9129C4.0138,12.3323,4,12.741,4,16s.0138,3.6677.0722,4.9476A8.8074,8.8074,0,0,0,4.63,23.8605a6.1363,6.1363,0,0,0,3.51,3.51,8.8068,8.8068,0,0,0,2.9129.5578C12.3323,27.9862,12.741,28,16,28s3.6677-.0138,4.9476-.0722a8.8074,8.8074,0,0,0,2.9129-.5578,6.1363,6.1363,0,0,0,3.51-3.51,8.8074,8.8074,0,0,0,.5578-2.9129C27.9862,19.6677,28,19.259,28,16s-.0138-3.6677-.0722-4.9476A8.8068,8.8068,0,0,0,27.37,8.14a6.1363,6.1363,0,0,0-3.51-3.5095,8.8074,8.8074,0,0,0-2.9129-.5578C19.6677,4.0138,19.259,4,16,4Z" }), children);
1476
1716
  });
1477
1717
  LogoInstagram.propTypes = iconPropTypes;
1478
- const LogoInvision = React.forwardRef(function LogoInvision({ children, size = 16, ...rest }, ref) {
1718
+ const LogoInvision = /* @__PURE__ */ React.forwardRef(function LogoInvision({ children, size = 16, ...rest }, ref) {
1479
1719
  return React.createElement(Icon, {
1480
1720
  width: size,
1481
1721
  height: size,
@@ -1487,7 +1727,7 @@ const LogoInvision = React.forwardRef(function LogoInvision({ children, size = 1
1487
1727
  }, /* @__PURE__ */ jsx("path", { d: "M4,4v24h24V4H4z M12.1,9c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c0,0,0,0,0,0c-0.8,0-1.4-0.6-1.4-1.4 C10.8,9.6,11.4,9,12.1,9z M21.5,22.2c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1l0.7-2.4c0.1-0.2,0.1-0.5,0.1-0.7 c0-0.8-0.5-1.3-1.2-1.3c-1,0-1.6,0.7-1.9,2L15.9,22h-2.3l0.4-1.7c-0.7,1.1-1.6,1.8-2.8,1.8c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1 l1.1-4.3H8.7L9.2,13h3.9l-1.5,6.1c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4,0.2,0.5,0.5,0.6c0.2,0,1.6,0,2.4-1.8l1-4.1h-1.6l0.5-1.8h3.5 l-0.5,2.1c0.6-1.2,1.9-2.2,3.1-2.2c1.3,0,2.4,0.9,2.4,2.7c0,0.5-0.1,1-0.2,1.5l-0.7,2.4c-0.1,0.2-0.1,0.4-0.1,0.6 c0,0.4,0.2,0.6,0.5,0.6c0.3,0,0.7-0.2,1.2-1.5l0.9,0.4C23.7,21.4,22.7,22.2,21.5,22.2z" }), children);
1488
1728
  });
1489
1729
  LogoInvision.propTypes = iconPropTypes;
1490
- const LogoJupyter = React.forwardRef(function LogoJupyter({ children, size = 16, ...rest }, ref) {
1730
+ const LogoJupyter = /* @__PURE__ */ React.forwardRef(function LogoJupyter({ children, size = 16, ...rest }, ref) {
1491
1731
  return React.createElement(Icon, {
1492
1732
  width: size,
1493
1733
  height: size,
@@ -1499,222 +1739,5 @@ const LogoJupyter = React.forwardRef(function LogoJupyter({ children, size = 16,
1499
1739
  }, /* @__PURE__ */ jsx("path", { d: "M26.0766,3.5878a1.69,1.69,0,1,1-1.76-1.5853,1.67,1.67,0,0,1,1.76,1.5853Z" }), /* @__PURE__ */ jsx("path", { d: "M16.2191,23.1113c-4.4866,0-8.43-1.61-10.4688-3.9882a11.1618,11.1618,0,0,0,20.9377,0C24.6541,21.5011,20.7257,23.1113,16.2191,23.1113Z" }), /* @__PURE__ */ jsx("path", { d: "M16.2191,7.6483c4.4867,0,8.43,1.61,10.4689,3.9881a11.1618,11.1618,0,0,0-20.9377,0C7.7892,9.2535,11.7126,7.6483,16.2191,7.6483Z" }), /* @__PURE__ */ jsx("path", { d: "M10.0427,27.7388a2.1085,2.1085,0,1,1-.2031-.7976,2.1278,2.1278,0,0,1,.2031.7976Z" }), /* @__PURE__ */ jsx("path", { d: "M6.26,7.1064A1.2263,1.2263,0,1,1,7.4517,5.83,1.2415,1.2415,0,0,1,6.26,7.1064Z" }), children);
1500
1740
  });
1501
1741
  LogoJupyter.propTypes = iconPropTypes;
1502
- const LogoKeybase = React.forwardRef(function LogoKeybase({ children, size = 16, ...rest }, ref) {
1503
- return React.createElement(Icon, {
1504
- width: size,
1505
- height: size,
1506
- ref,
1507
- xmlns: "http://www.w3.org/2000/svg",
1508
- viewBox: "0 0 32 32",
1509
- fill: "currentColor",
1510
- ...rest
1511
- }, /* @__PURE__ */ jsx("path", { d: "M14.1233,26.9328a1.1122,1.1122,0,1,1-1.1121-1.1122,1.112,1.112,0,0,1,1.1121,1.1122" }), /* @__PURE__ */ jsx("path", { d: "M21.0257,26.9328a1.1122,1.1122,0,1,1-1.1122-1.1122,1.1121,1.1121,0,0,1,1.1122,1.1122" }), /* @__PURE__ */ jsx("path", {
1512
- d: "M9.999 5.797H10.973V6.771H9.999z",
1513
- transform: "rotate(-86.462 10.486 6.284)"
1514
- }), /* @__PURE__ */ jsx("path", { d: "M26.4275,16.3825l-.0013.001a13.0868,13.0868,0,0,0-5.1431-4.1825c-.3754-.1667-.7543-.3142-1.1354-.4454.0128-.0314.0277-.0615.04-.0933a4.83,4.83,0,0,0-2.9861-6.319,5.9368,5.9368,0,0,0-1.9962-.3558c-.0366-.1253-.1165-.6743.58-2.1571L14.3742,2q-.17.236-.3368.4661c-.384.5309-.7549,1.0444-1.1029,1.55a2.1657,2.1657,0,0,0-1.4486-.6771L9.8543,3.2377H9.852l-.0025,0c-.0429-.0025-.0864-.0039-.1293-.0039A2.1877,2.1877,0,0,0,7.54,5.2825L7.4388,6.9169l0,.003,0,.0028A2.1882,2.1882,0,0,0,9.4854,9.23l1.1673.0723a5.1711,5.1711,0,0,0,.47,2.688,13.1954,13.1954,0,0,0-4.2637,2.9C3,18.7883,3,23.06,3,26.4916v2.0706l1.524-1.6163A12.3293,12.3293,0,0,0,5.8548,30H7.8367A10.7091,10.7091,0,0,1,5.878,25.51l2.2353-2.3708L6.963,26.745l2.03-1.4774c3.5858-2.61,7.8678-3.2093,12.7263-1.7826a4.6276,4.6276,0,0,0,5.2189-1.468c.0441-.0628.0828-.128.1228-.1926a9.6141,9.6141,0,0,1,.1638,1.7454,12.4214,12.4214,0,0,1-1.61,6.43h1.877A14.4022,14.4022,0,0,0,28.87,23.57,12.2666,12.2666,0,0,0,26.4275,16.3825ZM13.8455,5.9257a1.5872,1.5872,0,0,0,1.3983.7068,4.2111,4.2111,0,0,1,1.44.2719,3.17,3.17,0,0,1,1.0279,5.4638l-.4752-.5849-.0032-.004a1.7048,1.7048,0,0,0-3.0235.9865,3.2143,3.2143,0,0,1-1.899-3.5412,8.4815,8.4815,0,0,1,1.4374-3.466A1.642,1.642,0,0,0,13.8455,5.9257Zm3.49,9.2589-.6072.4962a.2675.2675,0,0,1-.376-.038l-.1264-.1549a.2791.2791,0,0,1,.0394-.3927l.6-.49-1.235-1.5158a.362.362,0,1,1,.5611-.4575l3.4546,4.2517a.3619.3619,0,0,1-.1988.5815.3566.3566,0,0,1-.0816.0094.3609.3609,0,0,1-.2806-.1332l-.3441-.4239-1.2215.9971a.2815.2815,0,0,1-.3965-.04l-.5532-.6775a.2786.2786,0,0,1,.04-.3919l1.2275-1.002ZM9.08,7.0184l.1014-1.6342A.5394.5394,0,0,1,9.72,4.8781l.0326.001,1.6335.1013a.5387.5387,0,0,1,.5046.5716l-.0073.1182a10.6739,10.6739,0,0,0-.9028,2.0046L9.5859,7.5886A.5407.5407,0,0,1,9.08,7.0184ZM25.5944,21.07a2.9883,2.9883,0,0,1-3.4112.8373c-4.5313-1.3305-8.6289-1.0534-12.2124.82l1.9069-5.978-7.203,7.6393a11.67,11.67,0,0,1,3.3532-8.3419,11.4953,11.4953,0,0,1,4.1073-2.6908,5.42,5.42,0,0,0,2.2411,1.2214,4.714,4.714,0,0,0,.5627.12,1.6258,1.6258,0,0,0,.2449,1.6416l.0847.1038a1.6247,1.6247,0,0,0,.2594,1.605l.5532.6777a1.6276,1.6276,0,0,0,2.29.2314l.3314-.2705a1.7079,1.7079,0,0,0,1.9867-2.6535l-1.9427-2.3911a4.88,4.88,0,0,0,.4863-.456,12.449,12.449,0,0,1,1.3829.5181,11.419,11.419,0,0,1,4.5085,3.6838C26.0987,18.7278,26.2745,20.1043,25.5944,21.07Z" }), children);
1515
- });
1516
- LogoKeybase.propTypes = iconPropTypes;
1517
- const LogoKubernetes = React.forwardRef(function LogoKubernetes({ children, size = 16, ...rest }, ref) {
1518
- return React.createElement(Icon, {
1519
- width: size,
1520
- height: size,
1521
- ref,
1522
- xmlns: "http://www.w3.org/2000/svg",
1523
- viewBox: "0 0 32 32",
1524
- fill: "currentColor",
1525
- ...rest
1526
- }, /* @__PURE__ */ jsx("path", { d: "M15.134 17.189 15.999 17.605 16.862 17.19 17.076 16.259 16.479 15.512 15.518 15.512 14.919 16.257 15.134 17.189z" }), /* @__PURE__ */ jsx("path", { d: "M14.2166,13.88l.0024.0019a.5239.5239,0,0,0,.8321-.4013l0-.003.0127-.0063L15.242,10.33c-.2173.0268-.43.0635-.6333.1094a6.2,6.2,0,0,0-2.9727,1.6176l2.5752,1.8257Z" }), /* @__PURE__ */ jsx("path", { d: "M12.8347,16.2622l.003-.001a.5241.5241,0,0,0,.206-.9008l-.0024-.002.0029-.0127-2.3515-2.1035a6.1775,6.1775,0,0,0-.8746,3.9l3.0142-.87Z" }), /* @__PURE__ */ jsx("path", { d: "M13.8645,18.501a.5229.5229,0,0,0-.6059-.3989l-.0034,0-.0049-.0063-3.0908.5249a6.2052,6.2052,0,0,0,2.4863,3.1108l1.1972-2.8935-.0087-.0117.0009-.003A.5184.5184,0,0,0,13.8645,18.501Z" }), /* @__PURE__ */ jsx("path", { d: "M16.4622,19.6431l-.0015-.0025a.53.53,0,0,0-.48-.2759.5269.5269,0,0,0-.4434.2769l-.0015.0029H15.533l-1.52,2.7481a6.2277,6.2277,0,0,0,3.38.1723c.207-.0468.41-.104.6044-.1684l-1.5234-2.7534Z" }), /* @__PURE__ */ jsx("path", { d: "M18.7371,18.09l-.0034,0a.51.51,0,0,0-.1206-.0088.5263.5263,0,0,0-.4546.7319l.001.0024-.004.0054,1.21,2.9234A6.185,6.185,0,0,0,21.86,18.61l-3.1176-.5269Z" }), /* @__PURE__ */ jsx("path", { d: "M21.2893,13.2437,18.951,15.3364l.0014.0064-.0024.0019a.5249.5249,0,0,0,.2055.9014l.0035.0005.0024.0132,3.0293.872a6.2915,6.2915,0,0,0-.9014-3.8881Z" }), /* @__PURE__ */ jsx("path", { d: "M16.9383,13.4673l0,.0029a.5161.5161,0,0,0,.1143.3037.5236.5236,0,0,0,.7192.0967l.0025-.0019.0088.0039,2.5586-1.814a6.2307,6.2307,0,0,0-3.584-1.7285l.1777,3.1357Z" }), /* @__PURE__ */ jsx("path", { d: "M30.3806,19.0376,27.9016,8.2705a1.9057,1.9057,0,0,0-1.038-1.291L16.83,2.1885a1.9332,1.9332,0,0,0-1.6656,0L5.1326,6.9819a1.9072,1.9072,0,0,0-1.0381,1.291L1.6194,19.04A1.89,1.89,0,0,0,1.88,20.499a1.8364,1.8364,0,0,0,.1088.1514l6.9439,8.6338a1.9244,1.9244,0,0,0,1.5.7158l11.1357-.0024a1.9251,1.9251,0,0,0,1.5-.7149L30.01,20.6479A1.8911,1.8911,0,0,0,30.3806,19.0376Zm-3.8115-.13a.6432.6432,0,0,1-.7812.4429l-.0039,0-.0049-.001-.0069-.0019-.0048-.002-.0572-.0117c-.0346-.0068-.07-.0142-.0981-.0215a2.4643,2.4643,0,0,1-.3589-.1328c-.0576-.0249-.1172-.0513-.1807-.0752l-.0175-.0063a5.5192,5.5192,0,0,0-1.0284-.3013.4119.4119,0,0,0-.2954.0981l-.0371.0254-.0019.0015-.002,0c-.0439-.0088-.1748-.0322-.2519-.0444a7.8166,7.8166,0,0,1-3.459,4.351c.0093.022.02.05.0307.0806a.9352.9352,0,0,0,.0669.1567l.002.002-.001.0029-.0166.042a.4148.4148,0,0,0-.03.3091,5.69,5.69,0,0,0,.5322.9517c.0376.0561.0757.1084.1128.1591a2.4,2.4,0,0,1,.2095.32c.0166.0312.0371.0752.0552.1137l.0229.0484a.6083.6083,0,1,1-1.0947.5176l-.0224-.0455c-.0186-.038-.0381-.0776-.0518-.1088a2.5059,2.5059,0,0,1-.1211-.3658c-.0166-.0595-.0337-.1215-.0537-.185l-.0059-.0166a5.5441,5.5441,0,0,0-.4052-.9922.4177.4177,0,0,0-.2627-.1709l-.0415-.0127-.0015,0-.0015-.0019c-.01-.0171-.0337-.0611-.0595-.1075-.0235-.042-.0484-.0874-.0664-.12a7.8868,7.8868,0,0,1-1.0269.3091,7.7588,7.7588,0,0,1-4.51-.3233l-.1352.2442-.002.001a.481.481,0,0,0-.2563.124,2.2827,2.2827,0,0,0-.336.7207c-.04.1172-.08.2383-.1279.3569-.0205.064-.0376.127-.0537.188a2.4747,2.4747,0,0,1-.12.3623c-.0127.03-.0313.0669-.0493.1025l-.0245.0494h0l-.0005.0024-.0019.002a.6773.6773,0,0,1-.5952.3945.5484.5484,0,0,1-.24-.0542.6426.6426,0,0,1-.2578-.86c.0088-.0171.0176-.0371.0274-.0576.0171-.0371.0346-.0757.05-.1045a2.53,2.53,0,0,1,.21-.3222c.0367-.05.0747-.1026.1118-.1578a5.8209,5.8209,0,0,0,.543-.976.5889.5889,0,0,0-.0532-.336l0-.0019,0-.002.1074-.2573a7.8224,7.8224,0,0,1-3.46-4.32l-.2593.0444-.0015-.001-.0264-.0151a.5961.5961,0,0,0-.3159-.106,5.5447,5.5447,0,0,0-1.0283.3013l-.0171.0064c-.062.0239-.1211.0488-.1782.0732a2.4949,2.4949,0,0,1-.3613.1333c-.0308.0083-.0708.0171-.1094.0249l-.0459.01-.0049.0019-.0068.002-.0049.001-.0039,0a.6078.6078,0,1,1-.2695-1.18l.0039-.001.0053-.0015.002,0,.0034-.0009.0469-.0113c.04-.01.081-.02.1133-.0258a2.4132,2.4132,0,0,1,.3808-.0357c.063-.0024.1284-.0054.1958-.0107l.0142-.0015A5.554,5.554,0,0,0,7.77,17.92a.72.72,0,0,0,.231-.227l.0244-.0318.001-.0014.0014,0,.2471-.0718a7.7765,7.7765,0,0,1,1.2246-5.4126l-.19-.17,0-.002-.0044-.0278a.5983.5983,0,0,0-.1153-.3159,5.6171,5.6171,0,0,0-.8916-.6265c-.0585-.0342-.1157-.0649-.1713-.0942a2.4731,2.4731,0,0,1-.3267-.1973c-.0264-.0195-.0586-.0459-.0894-.0713l-.0356-.0288L7.67,10.6387l-.0049-.0039A.7045.7045,0,0,1,7.4041,10.2a.5725.5725,0,0,1,.1128-.4575A.5835.5835,0,0,1,8,9.5288a.7226.7226,0,0,1,.4214.1592l.0361.0283c.0332.0259.07.0552.0972.0781a2.5254,2.5254,0,0,1,.2671.2759c.04.0469.0825.0952.1284.1441l.01.01a5.5221,5.5221,0,0,0,.7989.72.4159.4159,0,0,0,.31.0406l.043-.0069h.0019l.0015.001c.0357.0264.1484.1074.2134.1514a7.7273,7.7273,0,0,1,3.9233-2.24,7.9671,7.9671,0,0,1,1.0816-.1665l.0141-.2515.001-.0014a.6486.6486,0,0,0,.1939-.3076,5.5779,5.5779,0,0,0-.066-1.0791l-.0009-.0088c-.0093-.0664-.021-.13-.0328-.1914a2.5611,2.5611,0,0,1-.0493-.38c-.0009-.03-.0005-.0679,0-.1045l.0005-.05-.0005-.0073,0-.0093a.6088.6088,0,1,1,1.211,0l.0009.0605c.001.0386.0015.0791.0005.11a2.5348,2.5348,0,0,1-.0493.38c-.0117.0615-.0234.125-.0327.1914l-.0039.0317a5.4479,5.4479,0,0,0-.064,1.0567.4132.4132,0,0,0,.1616.2666l.0328.03.0019.0015v.0019c.0015.0435.0083.1836.0137.2637a7.79,7.79,0,0,1,2.7173.7559,7.8812,7.8812,0,0,1,2.2632,1.65l.226-.1612h.002l.0312.002a.5914.5914,0,0,0,.33-.041,5.4885,5.4885,0,0,0,.7871-.71l.0215-.022c.0454-.0478.0869-.0952.1274-.1416a2.57,2.57,0,0,1,.27-.2783c.0263-.0229.062-.05.0967-.0776l.0366-.0288a.6088.6088,0,1,1,.7544.9472l-.0435.0357c-.0307.0254-.063.0517-.0884.0708a2.4733,2.4733,0,0,1-.3266.1968c-.0562.0293-.1143.06-.1734.0947a5.6889,5.6889,0,0,0-.8921.6269.4152.4152,0,0,0-.1079.293l-.0034.044v.0019l-.0014.001c-.0162.0146-.0508.0459-.0914.082s-.0864.0772-.1186.1065a7.7983,7.7983,0,0,1,1.25,5.3994l.24.07.001.001.0171.0254a.6014.6014,0,0,0,.24.2334,5.595,5.595,0,0,0,1.063.1757l.0122.001c.0674.0059.1328.0083.1963.0108a2.4617,2.4617,0,0,1,.38.0356c.0312.0059.0713.0156.11.0254l.0644.0156A.643.643,0,0,1,26.5691,18.9077Z" }), children);
1527
- });
1528
- LogoKubernetes.propTypes = iconPropTypes;
1529
- const LogoLinkedin = React.forwardRef(function LogoLinkedin({ children, size = 16, ...rest }, ref) {
1530
- return React.createElement(Icon, {
1531
- width: size,
1532
- height: size,
1533
- ref,
1534
- xmlns: "http://www.w3.org/2000/svg",
1535
- viewBox: "0 0 32 32",
1536
- fill: "currentColor",
1537
- ...rest
1538
- }, /* @__PURE__ */ jsx("path", { d: "M26.2,4H5.8C4.8,4,4,4.8,4,5.7v20.5c0,0.9,0.8,1.7,1.8,1.7h20.4c1,0,1.8-0.8,1.8-1.7V5.7C28,4.8,27.2,4,26.2,4z M11.1,24.4 H7.6V13h3.5V24.4z M9.4,11.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1S10.5,11.4,9.4,11.4z M24.5,24.3 H21v-5.6c0-1.3,0-3.1-1.9-3.1c-1.9,0-2.1,1.5-2.1,2.9v5.7h-3.5V13h3.3v1.5h0.1c0.5-0.9,1.7-1.9,3.4-1.9c3.6,0,4.3,2.4,4.3,5.5V24.3z" }), children);
1539
- });
1540
- LogoLinkedin.propTypes = iconPropTypes;
1541
- const LogoLivestream = React.forwardRef(function LogoLivestream({ children, size = 16, ...rest }, ref) {
1542
- return React.createElement(Icon, {
1543
- width: size,
1544
- height: size,
1545
- ref,
1546
- xmlns: "http://www.w3.org/2000/svg",
1547
- viewBox: "0 0 32 32",
1548
- fill: "currentColor",
1549
- ...rest
1550
- }, /* @__PURE__ */ jsx("path", { d: "M22.49,23.71h-.76c-2.26,0-4.52,0-6.78,0a3.12,3.12,0,0,1-2.41-1A14.91,14.91,0,0,1,10,18.88c-1.3-2.6-2.54-5.22-3.82-7.82-.39-.8-.82-1.56-1.28-2.32A7.84,7.84,0,0,0,2,5.6c1.24,0,2.41,0,3.57,0a45.63,45.63,0,0,1,7,.61,8.09,8.09,0,0,1,6.34,5.09,48.51,48.51,0,0,1,2.17,7.36A26,26,0,0,0,22.49,23.71Z" }), /* @__PURE__ */ jsx("path", { d: "M28.1,26.38a2.93,2.93,0,0,1-2.74-2.64,42.08,42.08,0,0,1-.14-4.9,48,48,0,0,0-.61-7.58,3.75,3.75,0,0,0-.83-2h2.65c.54,0,.73.37.89.78A12.1,12.1,0,0,1,28,13.28c.29,2.72.31,5.45.33,8.18a10.94,10.94,0,0,0,0,1.15c.09.78.4,1.1,1.17,1.08.5,0,.5-.06.5-.06v2.69A8.62,8.62,0,0,1,28.1,26.38Z" }), children);
1551
- });
1552
- LogoLivestream.propTypes = iconPropTypes;
1553
- const LogoMastodon = React.forwardRef(function LogoMastodon({ children, size = 16, ...rest }, ref) {
1554
- return React.createElement(Icon, {
1555
- width: size,
1556
- height: size,
1557
- ref,
1558
- xmlns: "http://www.w3.org/2000/svg",
1559
- viewBox: "0 0 32 32",
1560
- fill: "currentColor",
1561
- ...rest
1562
- }, /* @__PURE__ */ jsx("path", { d: "m29.0581,11.1929c0-6.0742-3.9797-7.8545-3.9797-7.8545-2.0066-.9214-5.4522-1.3091-9.0318-1.3384h-.0879c-3.5798.0293-7.023.417-9.0296,1.3384,0,0-3.98,1.7803-3.98,7.8545,0,1.3911-.0271,3.0537.0171,4.8174.1445,5.9404,1.0889,11.7945,6.5811,13.2481,2.5322.6704,4.7063.8105,6.4573.7144,3.1755-.1758,4.958-1.1333,4.958-1.1333l-.1047-2.3037s-2.269.7153-4.8176.6284c-2.5249-.0869-5.1902-.2725-5.5986-3.3726-.0378-.272-.0566-.563-.0566-.8691,0,0,2.4785.606,5.6196.75,1.9207.0879,3.7219-.1128,5.5515-.3311,3.5083-.4189,6.563-2.5806,6.9468-4.5557.605-3.1113.5552-7.5928.5552-7.5928Zm-4.6943,7.8257h-2.9138v-7.1382c0-1.5049-.6331-2.2686-1.8997-2.2686-1.4002,0-2.1018.9058-2.1018,2.6973v3.9077h-2.8967v-3.9077c0-1.7915-.7019-2.6973-2.1021-2.6973-1.2666,0-1.8997.7637-1.8997,2.2686v7.1382h-2.9138v-7.3545c0-1.5029.3828-2.6978,1.1516-3.5811.7927-.8838,1.8308-1.3369,3.1196-1.3369,1.491,0,2.6204.5732,3.367,1.7192l.7256,1.2168.7261-1.2168c.7463-1.146,1.8755-1.7192,3.3667-1.7192,1.2886,0,2.3267.4531,3.1196,1.3369.7686.8833,1.1514,2.0781,1.1514,3.5811v7.3545Z" }), children);
1563
- });
1564
- LogoMastodon.propTypes = iconPropTypes;
1565
- const LogoMedium = React.forwardRef(function LogoMedium({ children, size = 16, ...rest }, ref) {
1566
- return React.createElement(Icon, {
1567
- width: size,
1568
- height: size,
1569
- ref,
1570
- xmlns: "http://www.w3.org/2000/svg",
1571
- viewBox: "0 0 32 32",
1572
- fill: "currentColor",
1573
- ...rest
1574
- }, /* @__PURE__ */ jsx("path", { d: "M30,16c0,3.7-0.6,6.7-1.4,6.7c-0.8,0-1.4-3-1.4-6.7s0.6-6.7,1.4-6.7C29.4,9.3,30,12.3,30,16" }), /* @__PURE__ */ jsx("path", { d: "M26.5,16c0,4.1-1.8,7.5-3.9,7.5s-3.9-3.4-3.9-7.5s1.8-7.5,3.9-7.5S26.5,11.9,26.5,16" }), /* @__PURE__ */ jsx("path", { d: "M17.8,16c0,4.4-3.5,8-7.9,8S2,20.4,2,16s3.5-8,7.9-8S17.8,11.6,17.8,16" }), children);
1575
- });
1576
- LogoMedium.propTypes = iconPropTypes;
1577
- const LogoModelContextProtocol = React.forwardRef(function LogoModelContextProtocol({ children, size = 16, ...rest }, ref) {
1578
- return React.createElement(Icon, {
1579
- width: size,
1580
- height: size,
1581
- ref,
1582
- xmlns: "http://www.w3.org/2000/svg",
1583
- viewBox: "0 0 32 32",
1584
- fill: "currentColor",
1585
- ...rest
1586
- }, /* @__PURE__ */ jsx("path", { d: "M17.2916,25.8339c-.1264.1266-.1264.3324,0,.459l2.0453,2.0453c.3803.3801.3803.9964,0,1.3766-.19.1901-.4392.2852-.6883.2852s-.4983-.0951-.6883-.2852l-2.0454-2.0453c-.8856-.8855-.8856-2.3266,0-3.2121l9.9609-9.9609c.5515-.5516.8554-1.285.8554-2.065s-.3039-1.5134-.8554-2.0651l-.0574-.0574c-1.1387-1.1386-2.9916-1.1387-4.1303,0l-8.2027,8.2027-.1147.1147c-.1901.1901-.4392.2852-.6884.2852s-.4983-.0951-.6884-.2852c-.3802-.3801-.3802-.9964,0-1.3766l.1147-.1147,8.2029-8.2029c.5515-.5516.8553-1.285.8553-2.0651s-.3037-1.5134-.8553-2.065c-.5517-.5516-1.285-.8554-2.0651-.8554s-1.5134.3037-2.065.8554L5.168,15.8159c-.3801.3801-.9966.3801-1.3767,0s-.3802-.9965,0-1.3767L14.8049,3.4256c.9194-.9193,2.1417-1.4256,3.4417-1.4256s2.5226.5063,3.4419,1.4256c.9193.9193,1.4255,2.1416,1.4255,3.4417,0,.2332-.0169.4637-.049.6906,1.4645-.2075,3.0061.2505,4.1301,1.3745l.0574.0574c.9194.9193,1.4258,2.1416,1.4258,3.4418s-.5064,2.5224-1.4258,3.4417l-9.9608,9.9608ZM24.4417,13.0625c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1454c-1.1384,1.1387-2.9912,1.1387-4.1301.0002-.5516-.5517-.8554-1.2851-.8554-2.0651s.3038-1.5134.8554-2.0651l8.1453-8.1455c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1455c-.9194.9194-1.4257,2.1418-1.4257,3.4418s.5063,2.5224,1.4257,3.4419c.9489.9488,2.1953,1.4231,3.4417,1.4231s2.4929-.4744,3.4418-1.4233l8.1454-8.1454Z" }), children);
1587
- });
1588
- LogoModelContextProtocol.propTypes = iconPropTypes;
1589
- const LogoNpm = React.forwardRef(function LogoNpm({ children, size = 16, ...rest }, ref) {
1590
- return React.createElement(Icon, {
1591
- width: size,
1592
- height: size,
1593
- ref,
1594
- xmlns: "http://www.w3.org/2000/svg",
1595
- viewBox: "0 0 32 32",
1596
- fill: "currentColor",
1597
- ...rest
1598
- }, /* @__PURE__ */ jsx("path", { d: "M4,28V4h24v24H4z M8.5,8.5v15H16v-12h4.5v12h3v-15H8.5z" }), children);
1599
- });
1600
- LogoNpm.propTypes = iconPropTypes;
1601
- const LogoOpenshift = React.forwardRef(function LogoOpenshift({ children, size = 16, ...rest }, ref) {
1602
- return React.createElement(Icon, {
1603
- width: size,
1604
- height: size,
1605
- ref,
1606
- xmlns: "http://www.w3.org/2000/svg",
1607
- viewBox: "0 0 32 32",
1608
- fill: "currentColor",
1609
- ...rest
1610
- }, /* @__PURE__ */ jsx("path", { d: "M26.4612,15.7968A12.1352,12.1352,0,0,0,25.2821,11.48L29,10.13a11.9879,11.9879,0,0,0-1.0281-1.7382l-1.7431.635a11.9884,11.9884,0,0,0-21.71,7.9129l1.7477-.6412a12.19,12.19,0,0,0,.3309,1.9846L2.8838,19.6384A12.1451,12.1451,0,0,0,4.7565,23.7l1.9663-.7163.0026.0039a11.8856,11.8856,0,0,0,4.67,3.8909A12.013,12.013,0,0,0,27.34,21.0743a11.8725,11.8725,0,0,0,1.08-5.992Zm-2.92,3.4967a7.8,7.8,0,0,1-10.3533,3.7744,7.7207,7.7207,0,0,1-2.2714-1.6128l-1.9846.7235a7.84,7.84,0,0,1-2.0742-3.9895l.0009-.0008,3.7242-1.3566a7.8175,7.8175,0,0,1-.1232-2.0653l-1.7517.6362A7.7729,7.7729,0,0,1,19.7645,8.94h.0067a7.7442,7.7442,0,0,1,2.2646,1.615L23.78,9.921a7.8014,7.8014,0,0,1,1.229,1.6558l-3.71,1.3595a7.8245,7.8245,0,0,1,.9766,4.3882l1.9685-.7151A7.6714,7.6714,0,0,1,23.5411,19.2935Z" }), children);
1611
- });
1612
- LogoOpenshift.propTypes = iconPropTypes;
1613
- const LogoPinterest = React.forwardRef(function LogoPinterest({ children, size = 16, ...rest }, ref) {
1614
- return React.createElement(Icon, {
1615
- width: size,
1616
- height: size,
1617
- ref,
1618
- xmlns: "http://www.w3.org/2000/svg",
1619
- viewBox: "0 0 32 32",
1620
- fill: "currentColor",
1621
- ...rest
1622
- }, /* @__PURE__ */ jsx("path", { d: "M16,2a14,14,0,0,0-5.1,27,13.24,13.24,0,0,1,0-4l1.65-7A5.05,5.05,0,0,1,12.17,16c0-1.94,1.13-3.4,2.53-3.4a1.76,1.76,0,0,1,1.77,2c0,1.2-.76,3-1.16,4.66a2,2,0,0,0,2.08,2.53c2.48,0,4.4-2.63,4.4-6.41a5.53,5.53,0,0,0-5.85-5.7,6.06,6.06,0,0,0-6.32,6.08,5.42,5.42,0,0,0,1,3.19.44.44,0,0,1,.1.4c-.11.44-.35,1.4-.39,1.59s-.21.31-.47.19c-1.75-.82-2.84-3.37-2.84-5.43,0-4.41,3.21-8.47,9.25-8.47,4.85,0,8.63,3.46,8.63,8.09,0,4.82-3,8.7-7.27,8.7a3.76,3.76,0,0,1-3.21-1.6l-.87,3.33a15.55,15.55,0,0,1-1.74,3.67A14.17,14.17,0,0,0,16,30,14,14,0,0,0,16,2" }), children);
1623
- });
1624
- LogoPinterest.propTypes = iconPropTypes;
1625
- const LogoPython = React.forwardRef(function LogoPython({ children, size = 16, ...rest }, ref) {
1626
- return React.createElement(Icon, {
1627
- width: size,
1628
- height: size,
1629
- ref,
1630
- xmlns: "http://www.w3.org/2000/svg",
1631
- viewBox: "0 0 32 32",
1632
- fill: "currentColor",
1633
- ...rest
1634
- }, /* @__PURE__ */ jsx("path", { d: "M23.4882,9.14v2.9663a4.2843,4.2843,0,0,1-4.173,4.2352H12.6431a3.4077,3.4077,0,0,0-3.34,3.3945v6.3607c0,1.81,1.5742,2.8751,3.34,3.3945a11.1762,11.1762,0,0,0,6.6721,0c1.6817-.4869,3.34-1.4668,3.34-3.3945V23.55H15.983v-.8486H25.9951c1.9414,0,2.6648-1.3542,3.34-3.3867a11.4642,11.4642,0,0,0,0-6.7889c-.48-1.9327-1.3961-3.3867-3.34-3.3867ZM19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z" }), /* @__PURE__ */ jsx("path", {
1635
- fill: "none",
1636
- d: "M19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"
1637
- }), /* @__PURE__ */ jsx("path", { d: "M15.8351,2a19.0717,19.0717,0,0,0-3.192.2725c-2.8268.4994-3.34,1.5447-3.34,3.4723V8.2909h6.68V9.14H6.7962a4.1708,4.1708,0,0,0-4.173,3.3867,12.4855,12.4855,0,0,0,0,6.7889c.4748,1.9776,1.6088,3.3867,3.55,3.3867H8.47V19.65a4.2449,4.2449,0,0,1,4.173-4.15h6.6721a3.3654,3.3654,0,0,0,3.34-3.3944V5.745a3.729,3.729,0,0,0-3.34-3.4723A20.8377,20.8377,0,0,0,15.8351,2ZM12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z" }), /* @__PURE__ */ jsx("path", {
1638
- fill: "none",
1639
- d: "M12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"
1640
- }), children);
1641
- });
1642
- LogoPython.propTypes = iconPropTypes;
1643
- const LogoQuora = React.forwardRef(function LogoQuora({ children, size = 16, ...rest }, ref) {
1644
- return React.createElement(Icon, {
1645
- width: size,
1646
- height: size,
1647
- ref,
1648
- xmlns: "http://www.w3.org/2000/svg",
1649
- viewBox: "0 0 32 32",
1650
- fill: "currentColor",
1651
- ...rest
1652
- }, /* @__PURE__ */ jsx("path", { d: "M29,23.86H27a1.72,1.72,0,0,1-1.73,1.72c-1.15,0-1.82-.86-2.58-2a11,11,0,0,0,4.79-9.1c.09-7.19-5.85-11.89-12.17-11.89S3,7.37,3,14.37,9,26.16,15.17,26.16a10.71,10.71,0,0,0,3.07-.48c1.15,2.11,2.59,3.74,5.46,3.74A5,5,0,0,0,29,23.86Zm-8.14-3.45a6.31,6.31,0,0,0-5.56-3.16,6,6,0,0,0-3.74,1.15L12.2,20a2.56,2.56,0,0,1,.86-.1c1.82,0,3,1.53,4.12,3.64a7.58,7.58,0,0,1-1.91.19C10.86,23.76,9,20.6,9,14.47s1.91-9.3,6.23-9.3,6.32,3.16,6.32,9.3A20.68,20.68,0,0,1,20.83,20.41Z" }), children);
1653
- });
1654
- LogoQuora.propTypes = iconPropTypes;
1655
- const LogoRScript = React.forwardRef(function LogoRScript({ children, size = 16, ...rest }, ref) {
1656
- return React.createElement(Icon, {
1657
- width: size,
1658
- height: size,
1659
- ref,
1660
- xmlns: "http://www.w3.org/2000/svg",
1661
- viewBox: "0 0 32 32",
1662
- fill: "currentColor",
1663
- ...rest
1664
- }, /* @__PURE__ */ jsx("path", {
1665
- fillRule: "evenodd",
1666
- d: "M30,14.7842c0-5.1782-6.2681-9.376-14-9.376S2,9.606,2,14.7842c0,4.6147,4.9814,8.4419,11.5361,9.2226v2.9917l4.7762-.0019,0-2.9741a19.3812,19.3812,0,0,0,3.3418-.6646L23.593,27l5.3975-.0024-3.253-5.4849C28.3625,19.8086,30,17.4263,30,14.7842Zm-22.4983.7c0-3.54,4.7644-6.41,10.6414-6.41s10.2138,1.9629,10.2138,6.41A5.4694,5.4694,0,0,1,24.9587,20.61a3.2252,3.2252,0,0,0-.2978-.1749,10.4735,10.4735,0,0,0-1.34-.5048s4.1743-.31,4.1743-4.4659-4.3684-4.2343-4.3684-4.2343H13.5361V21.2554C9.97,20.22,7.5017,18.0283,7.5017,15.4839Zm13.7422,1.8452-2.8928.001.0014-2.6812,2.8914.0015a1.2476,1.2476,0,0,1,1.34,1.3149A1.3232,1.3232,0,0,1,21.2439,17.3291Zm-2.9326,3.4946h1.2825a.8785.8785,0,0,1,.6406.291,3.2917,3.2917,0,0,1,.51.63,22.4033,22.4033,0,0,1-2.4326.1455Z"
1667
- }), children);
1668
- });
1669
- LogoRScript.propTypes = iconPropTypes;
1670
- const LogoReact = React.forwardRef(function LogoReact({ children, size = 16, ...rest }, ref) {
1671
- return React.createElement(Icon, {
1672
- width: size,
1673
- height: size,
1674
- ref,
1675
- xmlns: "http://www.w3.org/2000/svg",
1676
- viewBox: "0 0 32 32",
1677
- fill: "currentColor",
1678
- ...rest
1679
- }, /* @__PURE__ */ jsx("path", { d: "M25,11.6c-0.3-0.1-0.6-0.2-0.9-0.3c0-0.2,0.1-0.4,0.1-0.6c0.7-3.3,0.2-6-1.3-6.9c-1.5-0.8-3.9,0-6.3,2.1 c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2-0.1-0.3-0.3-0.5-0.4C13,3.9,10.5,3,9,3.9c-1.5,0.8-1.9,3.4-1.3,6.5c0.1,0.3,0.1,0.6,0.2,0.9 c-0.4,0.1-0.7,0.2-1,0.3c-3,1-4.9,2.7-4.9,4.3c0,1.7,2,3.5,5.1,4.5c0.2,0.1,0.5,0.2,0.8,0.2c-0.1,0.3-0.2,0.7-0.2,1 c-0.6,3.1-0.1,5.5,1.3,6.4c1.5,0.9,4,0,6.5-2.2c0.2-0.2,0.4-0.4,0.6-0.5c0.2,0.2,0.5,0.5,0.8,0.7c2.4,2.1,4.7,2.9,6.2,2 c1.5-0.9,2-3.5,1.4-6.7c0-0.2-0.1-0.5-0.2-0.8c0.2-0.1,0.4-0.1,0.5-0.2c3.2-1.1,5.3-2.8,5.3-4.5C30,14.3,28,12.7,25,11.6z M17.5,6.9 c2.1-1.8,4-2.5,4.9-2c0.9,0.5,1.3,2.7,0.7,5.6c0,0.2-0.1,0.4-0.1,0.6c-1.2-0.3-2.5-0.5-3.7-0.6c-0.7-1-1.5-2-2.4-3 C17.1,7.3,17.3,7.1,17.5,6.9L17.5,6.9z M10.3,17.4c0.3,0.5,0.5,1,0.8,1.5c0.3,0.5,0.6,1,0.9,1.4c-0.9-0.1-1.7-0.2-2.6-0.4 C9.6,19.1,9.9,18.3,10.3,17.4z M10.3,14.6c-0.4-0.8-0.6-1.6-0.9-2.4c0.8-0.2,1.7-0.3,2.5-0.4c-0.3,0.5-0.6,0.9-0.9,1.4 C10.8,13.6,10.5,14.1,10.3,14.6L10.3,14.6z M10.9,16c0.4-0.8,0.8-1.5,1.2-2.3c0.4-0.7,0.9-1.5,1.4-2.2c0.8-0.1,1.7-0.1,2.6-0.1 c0.9,0,1.7,0,2.6,0.1c0.5,0.7,0.9,1.4,1.3,2.2c0.4,0.7,0.8,1.5,1.2,2.3c-0.4,0.8-0.8,1.5-1.2,2.3c-0.4,0.7-0.9,1.5-1.3,2.2 c-0.8,0.1-1.7,0.1-2.6,0.1c-0.9,0-1.7,0-2.5-0.1c-0.5-0.7-0.9-1.4-1.4-2.2C11.7,17.5,11.3,16.8,10.9,16L10.9,16z M20.9,18.9 c0.3-0.5,0.6-1,0.8-1.5c0.4,0.8,0.7,1.6,0.9,2.5c-0.9,0.2-1.7,0.3-2.6,0.4C20.4,19.8,20.7,19.3,20.9,18.9z M21.7,14.6 c-0.3-0.5-0.5-1-0.8-1.5c-0.3-0.5-0.6-0.9-0.8-1.4c0.9,0.1,1.7,0.3,2.6,0.4C22.4,13,22.1,13.8,21.7,14.6z M16,8.3 c0.6,0.6,1.1,1.3,1.6,2c-1.1-0.1-2.2-0.1-3.3,0C14.9,9.6,15.5,8.9,16,8.3z M9.6,4.9c0.9-0.5,3,0.2,5.2,2.2c0.1,0.1,0.3,0.3,0.4,0.4 c-0.9,0.9-1.7,1.9-2.4,3c-1.3,0.1-2.5,0.3-3.7,0.6c-0.1-0.3-0.1-0.6-0.2-0.9C8.3,7.5,8.7,5.4,9.6,4.9z M8.2,19.6 c-0.2-0.1-0.5-0.1-0.7-0.2c-1.4-0.5-2.5-1.1-3.3-1.7c-0.7-0.6-1-1.2-1-1.7c0-1,1.5-2.3,4.1-3.2c0.3-0.1,0.6-0.2,1-0.3 C8.6,13.7,9,14.9,9.6,16C9,17.2,8.6,18.4,8.2,19.6z M14.7,25.1c-1.1,1-2.2,1.6-3.1,2c-0.9,0.3-1.5,0.3-2,0.1 c-0.9-0.5-1.3-2.5-0.8-5.1C8.9,21.7,9,21.4,9,21c1.2,0.3,2.5,0.5,3.8,0.5c0.7,1,1.5,2,2.4,3C15,24.7,14.9,24.9,14.7,25.1z M16,23.7 c-0.6-0.6-1.1-1.3-1.7-2c0.5,0,1.1,0,1.6,0c0.6,0,1.1,0,1.7,0C17.2,22.4,16.6,23.1,16,23.7z M23.3,25.4c-0.2,0.9-0.5,1.5-0.9,1.7 c-0.9,0.5-2.8-0.2-4.8-1.9c-0.2-0.2-0.5-0.4-0.7-0.6c0.8-0.9,1.6-1.9,2.3-3c1.3-0.1,2.5-0.3,3.8-0.6c0.1,0.2,0.1,0.5,0.2,0.7 C23.5,23.1,23.5,24.4,23.3,25.4z M24.3,19.4c-0.2,0-0.3,0.1-0.5,0.1c-0.4-1.2-0.9-2.4-1.4-3.6c0.5-1.1,1-2.3,1.4-3.5 c0.3,0.1,0.6,0.2,0.8,0.3c2.6,0.9,4.2,2.2,4.2,3.2C28.8,17.1,27.1,18.5,24.3,19.4z" }), /* @__PURE__ */ jsx("path", { d: "M16,18.5c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.7,0.9-1.1c0.2-0.5,0.2-1,0.1-1.5c-0.1-0.5-0.3-0.9-0.7-1.3 c-0.3-0.4-0.8-0.6-1.3-0.7c-0.5-0.1-1,0-1.5,0.1c-0.5,0.2-0.9,0.5-1.1,0.9c-0.3,0.4-0.4,0.9-0.4,1.4c0,0.3,0.1,0.7,0.2,1 c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.5,0.4,0.8,0.5C15.3,18.4,15.7,18.5,16,18.5z" }), children);
1680
- });
1681
- LogoReact.propTypes = iconPropTypes;
1682
- const LogoRedHatAiInstructlabOnIbmCloud = React.forwardRef(function LogoRedHatAiInstructlabOnIbmCloud({ children, size = 16, ...rest }, ref) {
1683
- return React.createElement(Icon, {
1684
- width: size,
1685
- height: size,
1686
- ref,
1687
- xmlns: "http://www.w3.org/2000/svg",
1688
- viewBox: "0 0 32 32",
1689
- fill: "currentColor",
1690
- ...rest
1691
- }, /* @__PURE__ */ jsx("path", { d: "M13.2148,13.1793c.2327-.501-.4158-.9337-.9252-.8189-.3831.0863-.8737.7158-1.0126,1.0705.0842.5294,1.6957.2715,1.9378-.2516ZM12.8453,12.7614c.06.5895-.6263.5432-1.0515.5242.2484-.3642.5768-.7484,1.0515-.5242ZM16,21.8211c.9062-.0084,1.2-1.8673.4673-2.0052-.0768-.0137-.2548-.0231-.4673-.0253-.2126.0021-.3906.0116-.4674.0253-.7326.1379-.4389,1.9968.4674,2.0052ZM12.154,19.6017c1.2337-.0746,1.1996-2.8773-.0815-2.8101-1.4228.0746-1.2452,2.8903.0815,2.8101ZM26.8406,9.7584c-.52-.6715-1.2484-2.2767-2.0789-2.4473-1.2431-.2547-2.1147.3842-2.923,1.221-1.6652-1.2252-3.7147-2.3188-5.8387-2.3052-2.1241-.0137-4.1736,1.08-5.8387,2.3052-.8084-.8368-1.68-1.4757-2.9231-1.221-.8305.1705-1.5589,1.7758-2.0789,2.4473-.9073,1.1747-3.1978,3.1746-3.1588,4.7346.0484,1.9073,4.4714,7.2376,6.3776,7.5229.4211.0631.7842-.0421,1.1874-.0842.7214,1.4147,1.8981,2.4644,3.2742,3.1268,1.9797.953,4.3409.953,6.3207,0,1.376-.6624,2.5527-1.7121,3.2742-3.1268.4031.0421.7662.1473,1.1873.0842,1.9062-.2853,6.3292-5.6156,6.3777-7.5229.0389-1.56-2.2515-3.5599-3.1589-4.7346h-.0001ZM11.1285,9.2016c1.6884-1.1799,3.2167-1.8304,4.8715-1.7957,1.6547-.0347,3.183.6158,4.8714,1.7957.3747.261,1.4536,1.0516,1.6978,1.3547.5905.7305.5526,3.2515.5853,4.204h-2.1263c-.9337,0-1.8673.001-2.801,0-.3168,0-.6905.201-.9157.421-.6642.6505-.2316,1.52-.2632,2.3157-.3494-.1453-.6979-.2-1.0483-.2084-.3505.0084-.699.0632-1.0484.2084-.0316-.7958.401-1.6652-.2632-2.3157-.2252-.22-.5989-.421-.9157-.421-.9337.001-1.8673,0-2.801,0h-2.1263c.0327-.9526-.0052-3.4736.5853-4.204.2442-.3032,1.3231-1.0937,1.6978-1.3547ZM8.6855,20.9191c-1.3947-.0516-5.3871-4.9725-5.5187-6.3293-.1126-1.1673,2.2062-3.2589,2.9399-4.1998.3547-.4537,1.14-2.0147,1.641-2.0473.4168-.0263,1.3157.5378,1.5052.9052.3968.7684-.179.8516-.4274,1.4389-.5137,1.2126-.3632,2.7736-.4127,4.062-.782.1769-1.4136.5273-1.361,1.4294.0253.4453.9062,3.3241,1.141,3.7094.3074.5042.8189.7263,1.3894.7684l-.8968.2632h0ZM9.3718,20.2338c-.4716.0221-.7389-.319-.9337-.6968-.2158-.4189-1.0146-3.0568-1.0431-3.4894-.0347-.52.5684-.8505,1.0294-.8652,0,1.7273.481,3.4041.9473,5.0514h0ZM8.8455,15.1814h5.1051c.3379.0674.7642.5432.7852.9.0264.4274-.3221,2.5242-.4452,3.0189-.0569.2274-.1937.6463-.3453.8126-.5737.6305-3.1567.1979-4.0346.3084-.5968-1.6241-.8789-3.3209-1.0652-5.0399ZM16,24.7495c-2.481-.18-4.9062-1.5852-5.7861-4.0946.9337-.0937,2.0989.1274,2.9999,0,1.6063-.2263,1.34-1.7242,1.7368-2.8957.3389-.1053.6926-.1579,1.0494-.1705.3568.0126.7104.0652,1.0494.1705.3968,1.1715.1305,2.6694,1.7368,2.8957.901.1274,2.0662-.0937,2.9999,0-.8799,2.5094-3.3051,3.9146-5.7861,4.0946ZM18.0546,19.9128c-.1516-.1663-.2884-.5853-.3452-.8126-.1232-.4947-.4716-2.5915-.4453-3.0189.0211-.3568.4473-.8326.7852-.9h5.1051c-.1863,1.7189-.4684,3.4157-1.0652,5.0399-.8779-.1105-3.4609.3221-4.0346-.3084ZM23.5755,15.1825c.4611.0147,1.0641.3452,1.0294.8652-.0284.4326-.8273,3.0704-1.0431,3.4894-.1948.3779-.4621.7189-.9337.6968.4663-1.6473.9473-3.3241.9473-5.0514h.0001ZM23.3144,20.9191l-.8968-.2632c.5705-.0421,1.082-.2642,1.3894-.7684.2347-.3853,1.1157-3.2641,1.141-3.7094.0527-.9021-.5789-1.2526-1.361-1.4294-.0495-1.2883.101-2.8494-.4127-4.062-.2484-.5873-.8242-.6705-.4273-1.4389.1895-.3674,1.0884-.9315,1.5052-.9052.501.0326,1.2863,1.5936,1.641,2.0473.7336.941,3.0526,3.0325,2.9399,4.1998-.1315,1.3568-4.124,6.2777-5.5187,6.3293h0ZM20.723,13.4309c-.1389-.3547-.6295-.9842-1.0126-1.0705-.5095-.1147-1.1579.3179-.9252.8189.2421.5231,1.8536.781,1.9378.2516ZM20.2061,13.2857c-.4252.0189-1.1115.0652-1.0515-.5242.4747-.2242.8031.16,1.0515.5242ZM16,22.0274c-.6074,1.041-1.6042.2295-2.3115-.4252.3514,1.0421,1.1141,1.8438,1.985,2.1157.2104.0657.4424.0657.6529,0,.871-.2719,1.6337-1.0736,1.985-2.1157-.7073.6547-1.7042,1.4662-2.3115.4252h.0001ZM16.4631,23.3104c-.2929.1281-.6333.1281-.9262,0-.213-.0932-.4126-.2253-.5853-.3925.3663-.0379.7895-.0547,1.0484-.2895.2589.2347.682.2516,1.0483.2895-.1727.1671-.3723.2993-.5853.3925h.0001ZM19.9274,16.7916c-1.2811-.0672-1.3152,2.7355-.0814,2.8101,1.3266.0803,1.5042-2.7354.0814-2.8101Z" }), children);
1692
- });
1693
- LogoRedHatAiInstructlabOnIbmCloud.propTypes = iconPropTypes;
1694
- const LogoRedHatAnsible = React.forwardRef(function LogoRedHatAnsible({ children, size = 16, ...rest }, ref) {
1695
- return React.createElement(Icon, {
1696
- width: size,
1697
- height: size,
1698
- ref,
1699
- xmlns: "http://www.w3.org/2000/svg",
1700
- viewBox: "0 0 32 32",
1701
- fill: "currentColor",
1702
- ...rest
1703
- }, /* @__PURE__ */ jsx("path", { d: "M21.9104,20.5859h0l-5-11c-.1577-.3452-.5061-.5859-.9104-.5859s-.7529,.2407-.9104,.5859l-5,11c-.0576,.1265-.0896,.2661-.0896,.4141,0,.5522,.4478,1,1,1,.4043,0,.7527-.2407,.9104-.5859l1.9985-4.3965,6.4978,4.7876c.166,.1226,.3711,.1948,.5933,.1948,.5522,0,1-.4478,1-1,0-.1479-.032-.2881-.0896-.4141Zm-5.9104-8.1689l2.499,5.498-3.7441-2.7588,1.2451-2.7393Z" }), /* @__PURE__ */ jsx("path", { d: "M16,30c-7.7197,0-14-6.2803-14-14S8.2803,2,16,2s14,6.2803,14,14-6.2803,14-14,14Zm0-26c-6.6167,0-12,5.3833-12,12s5.3833,12,12,12,12-5.3833,12-12-5.3833-12-12-12Z" }), children);
1704
- });
1705
- LogoRedHatAnsible.propTypes = iconPropTypes;
1706
- const LogoSketch = React.forwardRef(function LogoSketch({ children, size = 16, ...rest }, ref) {
1707
- return React.createElement(Icon, {
1708
- width: size,
1709
- height: size,
1710
- ref,
1711
- xmlns: "http://www.w3.org/2000/svg",
1712
- viewBox: "0 0 32 32",
1713
- fill: "currentColor",
1714
- ...rest
1715
- }, /* @__PURE__ */ jsx("path", { d: "M16.1,3.2l7.7,0.9c0.2,0,0.3,0.1,0.4,0.2l5.7,7.7c0.2,0.2,0.2,0.5,0,0.7l-13.6,16c-0.1,0.1-0.3,0.1-0.4,0c0,0,0,0,0,0 l-13.6-16C2,12.5,2,12.2,2.1,12l5.7-7.7c0.1-0.1,0.2-0.2,0.4-0.2l7.7-0.9C16,3.2,16,3.2,16.1,3.2z M17.7,4.8c0,0-0.1,0-0.2,0 c0,0-0.1,0.1,0,0.2l0,0l4.3,5.4c0,0.1,0.1,0.1,0.1,0.2c0,0.2-0.1,0.3-0.3,0.3l0,0H10.4c-0.1,0-0.1,0-0.2-0.1 c-0.1-0.1-0.1-0.3-0.1-0.4l0,0L14.5,5c0,0,0-0.1,0-0.2c0,0-0.1,0-0.2,0l0,0l-5.9,5.9c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.2-0.2v0 l0.2-4.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1l0,0l-1.1,4.9c0,0.2-0.2,0.3-0.3,0.3l0,0l-2.8,0.6c-0.1,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.1,0.1,0.1l0,0h2.7c0.2,0,0.3,0.1,0.4,0.2l0,0l6.6,11.8c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1-0.1,0.1-0.2l0,0L8.6,12.9 c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.4l0,0h14.2c0.1,0,0.1,0,0.2,0c0.2,0.1,0.2,0.3,0.2,0.4l0,0l-5.3,11.3c0,0.1,0,0.2,0.1,0.2 c0.1,0,0.2,0,0.2-0.1l0,0L25,12.6c0.1-0.1,0.2-0.2,0.4-0.2l0,0h2.7c0.1,0,0.1,0,0.1-0.1c0-0.1,0-0.1-0.1-0.1l0,0l-2.8-0.6 c-0.2,0-0.3-0.2-0.4-0.3l0,0L24,6.3c0-0.1-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1v0l0.2,4.3c0,0.1,0,0.1-0.1,0.2 c-0.1,0.1-0.2,0.1-0.3,0l0,0L17.7,4.8z" }), children);
1716
- });
1717
- LogoSketch.propTypes = iconPropTypes;
1718
-
1719
1742
  //#endregion
1720
- export { Launch };
1743
+ export { Launch };