@carbon/ibm-products 2.89.0 → 2.90.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (919) hide show
  1. package/css/carbon.css +374 -417
  2. package/css/carbon.css.map +1 -1
  3. package/css/index-full-carbon.css +496 -430
  4. package/css/index-full-carbon.css.map +1 -1
  5. package/css/index-full-carbon.min.css +1 -1
  6. package/css/index-full-carbon.min.css.map +1 -1
  7. package/css/index-without-carbon-released-only.css +117 -13
  8. package/css/index-without-carbon-released-only.css.map +1 -1
  9. package/css/index-without-carbon-released-only.min.css +1 -1
  10. package/css/index-without-carbon-released-only.min.css.map +1 -1
  11. package/css/index-without-carbon.css +143 -13
  12. package/css/index-without-carbon.css.map +1 -1
  13. package/css/index-without-carbon.min.css +1 -1
  14. package/css/index-without-carbon.min.css.map +1 -1
  15. package/css/index.css +359 -283
  16. package/css/index.css.map +1 -1
  17. package/css/index.min.css +1 -1
  18. package/css/index.min.css.map +1 -1
  19. package/es/_virtual/_rolldown/runtime.js +13 -22
  20. package/es/components/APIKeyModal/APIKeyDownloader.js +19 -3
  21. package/es/components/APIKeyModal/APIKeyModal.js +161 -3
  22. package/es/components/AboutModal/AboutModal.js +44 -3
  23. package/es/components/ActionBar/ActionBar.js +41 -3
  24. package/es/components/ActionBar/ActionBarItem.js +30 -3
  25. package/es/components/ActionBar/ActionBarOverflowItems.js +20 -3
  26. package/es/components/ActionSet/ActionSet.js +35 -3
  27. package/es/components/AddSelect/AddSelect.js +7 -3
  28. package/es/components/AddSelect/AddSelectBody.js +3 -3
  29. package/es/components/AddSelect/AddSelectBreadcrumbs.js +1 -3
  30. package/es/components/AddSelect/AddSelectColumn.js +2 -4
  31. package/es/components/AddSelect/AddSelectFilter.js +1 -3
  32. package/es/components/AddSelect/AddSelectFormControl.js +1 -3
  33. package/es/components/AddSelect/AddSelectList.js +1 -3
  34. package/es/components/AddSelect/AddSelectMetaPanel.js +1 -3
  35. package/es/components/AddSelect/AddSelectRow.js +1 -3
  36. package/es/components/AddSelect/AddSelectSidebar.js +1 -3
  37. package/es/components/AddSelect/AddSelectSort.js +1 -3
  38. package/es/components/AddSelect/add-select-utils.js +1 -2
  39. package/es/components/AddSelect/hooks/useFocus.js +1 -3
  40. package/es/components/AddSelect/hooks/useItemSort.js +1 -3
  41. package/es/components/AddSelect/hooks/useParentSelect.js +1 -3
  42. package/es/components/AddSelect/hooks/usePath.js +1 -3
  43. package/es/components/BigNumber/BigNumber.js +52 -6
  44. package/es/components/BigNumber/BigNumberSkeleton.js +12 -9
  45. package/es/components/BigNumber/constants.js +1 -19
  46. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +37 -3
  47. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +28 -4
  48. package/es/components/Card/Card.js +20 -3
  49. package/es/components/Card/CardFooter.js +1 -3
  50. package/es/components/Card/CardHeader.js +12 -3
  51. package/es/components/Carousel/Carousel.js +33 -3
  52. package/es/components/Carousel/CarouselItem.js +7 -3
  53. package/es/components/Cascade/Cascade.js +12 -3
  54. package/es/components/Checklist/Checklist.js +65 -11
  55. package/es/components/Checklist/ChecklistChart.js +13 -7
  56. package/es/components/Checklist/ChecklistIcon.js +17 -11
  57. package/es/components/Coachmark/Coachmark.js +60 -6
  58. package/es/components/Coachmark/CoachmarkDragbar.js +17 -3
  59. package/es/components/Coachmark/CoachmarkHeader.js +13 -3
  60. package/es/components/Coachmark/CoachmarkOverlay.js +24 -6
  61. package/es/components/Coachmark/CoachmarkTagline.js +13 -3
  62. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  63. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  64. package/es/components/Coachmark/next/Coachmark/Coachmark.js +56 -9
  65. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  66. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.js +8 -3
  67. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +18 -3
  68. package/es/components/Coachmark/next/Coachmark/ContentBody.js +8 -3
  69. package/es/components/Coachmark/next/Coachmark/ContentHeader.js +13 -3
  70. package/es/components/Coachmark/next/Coachmark/context.js +1 -3
  71. package/es/components/Coachmark/utils/constants.js +15 -23
  72. package/es/components/Coachmark/utils/context.js +1 -3
  73. package/es/components/Coachmark/utils/enums.js +1 -2
  74. package/es/components/Coachmark/utils/hooks.js +3 -5
  75. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  76. package/es/components/CoachmarkButton/CoachmarkButton.js +7 -3
  77. package/es/components/CoachmarkFixed/CoachmarkFixed.js +31 -5
  78. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +14 -3
  79. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +33 -3
  80. package/es/components/CoachmarkStack/CoachmarkStack.js +43 -5
  81. package/es/components/CoachmarkStack/CoachmarkStackHome.js +41 -3
  82. package/es/components/ComboButton/ComboButton.js +5 -3
  83. package/es/components/ComboButton/ComboButtonItem/index.js +5 -3
  84. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +48 -5
  85. package/es/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  86. package/es/components/ConditionBuilder/ConditionBuilder.js +65 -4
  87. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  88. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  89. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  90. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +15 -5
  91. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +29 -3
  92. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +39 -3
  93. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +12 -5
  94. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +1 -3
  95. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  96. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +37 -15
  97. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  98. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +35 -3
  99. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -2
  100. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +37 -3
  101. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +10 -3
  102. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +10 -3
  103. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +10 -3
  104. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +10 -3
  105. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +13 -3
  106. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +10 -3
  107. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  108. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +29 -7
  109. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +10 -3
  110. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  111. package/es/components/ConditionBuilder/utils/useDataConfigs.js +1 -3
  112. package/es/components/ConditionBuilder/utils/useEvent.js +1 -3
  113. package/es/components/ConditionBuilder/utils/useTranslations.js +1 -3
  114. package/es/components/ConditionBuilder/utils/util.js +1 -3
  115. package/es/components/CreateFullPage/CreateFullPage.js +79 -3
  116. package/es/components/CreateFullPage/CreateFullPageStep.js +51 -3
  117. package/es/components/CreateInfluencer/CreateInfluencer.js +16 -3
  118. package/es/components/CreateModal/CreateModal.js +43 -3
  119. package/es/components/CreateSidePanel/CreateSidePanel.js +59 -3
  120. package/es/components/CreateTearsheet/CreateTearsheet.js +82 -4
  121. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +6 -4
  122. package/es/components/CreateTearsheet/CreateTearsheetStep.js +72 -3
  123. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +56 -3
  124. package/es/components/DataSpreadsheet/DataSpreadsheet.js +61 -3
  125. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +115 -3
  126. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +76 -3
  127. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +1 -3
  128. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +1 -3
  129. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +1 -3
  130. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +1 -3
  131. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +1 -3
  132. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +1 -3
  133. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +1 -3
  134. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +1 -3
  135. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -2
  136. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +1 -3
  137. package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
  138. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +1 -3
  139. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +1 -3
  140. package/es/components/DataSpreadsheet/utils/getCellSize.js +1 -3
  141. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -2
  142. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +1 -3
  143. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +1 -3
  144. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +1 -3
  145. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +1 -3
  146. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
  147. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
  148. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -3
  149. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +1 -3
  150. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +1 -3
  151. package/es/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
  152. package/es/components/Datagrid/Datagrid/Datagrid.js +9 -3
  153. package/es/components/Datagrid/Datagrid/DatagridBody.js +1 -3
  154. package/es/components/Datagrid/Datagrid/DatagridContent.js +3 -5
  155. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +1 -3
  156. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +1 -3
  157. package/es/components/Datagrid/Datagrid/DatagridHead.js +1 -3
  158. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +3 -5
  159. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +1 -3
  160. package/es/components/Datagrid/Datagrid/DatagridRow.js +3 -5
  161. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +1 -3
  162. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +1 -3
  163. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -3
  164. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +1 -3
  165. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -3
  166. package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -3
  167. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
  168. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +1 -3
  169. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +1 -3
  170. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +1 -3
  171. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -3
  172. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +1 -3
  173. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +1 -3
  174. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -2
  175. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +43 -3
  176. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +19 -14
  177. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +8 -10
  178. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +1 -3
  179. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -2
  180. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -2
  181. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -3
  182. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +9 -11
  183. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +1 -3
  184. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -3
  185. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  186. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +1 -3
  187. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +1 -3
  188. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +1 -3
  189. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -2
  190. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +1 -3
  191. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -2
  192. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +1 -3
  193. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +1 -3
  194. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +1 -3
  195. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -3
  196. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +1 -3
  197. package/es/components/Datagrid/common-column-ids.js +1 -2
  198. package/es/components/Datagrid/useActionsColumn.js +1 -3
  199. package/es/components/Datagrid/useColumnCenterAlign.js +1 -3
  200. package/es/components/Datagrid/useColumnOrder.js +1 -3
  201. package/es/components/Datagrid/useColumnRightAlign.js +1 -3
  202. package/es/components/Datagrid/useCustomizeColumns.js +1 -3
  203. package/es/components/Datagrid/useDatagrid.js +1 -3
  204. package/es/components/Datagrid/useDefaultStringRenderer.js +1 -3
  205. package/es/components/Datagrid/useDisableSelectRows.js +1 -2
  206. package/es/components/Datagrid/useEditableCell.js +1 -3
  207. package/es/components/Datagrid/useExpandedRow.js +1 -3
  208. package/es/components/Datagrid/useFiltering.js +1 -3
  209. package/es/components/Datagrid/useFlexResize.js +1 -3
  210. package/es/components/Datagrid/useFloatingScroll.js +1 -3
  211. package/es/components/Datagrid/useFocusRowExpander.js +1 -3
  212. package/es/components/Datagrid/useInfiniteScroll.js +1 -3
  213. package/es/components/Datagrid/useInitialColumnSort.js +1 -3
  214. package/es/components/Datagrid/useInlineEdit.js +1 -3
  215. package/es/components/Datagrid/useNestedRowExpander.js +1 -3
  216. package/es/components/Datagrid/useNestedRows.js +1 -3
  217. package/es/components/Datagrid/useOnRowClick.js +1 -3
  218. package/es/components/Datagrid/useParentDimensions.js +1 -3
  219. package/es/components/Datagrid/useResizeTable.js +1 -3
  220. package/es/components/Datagrid/useRowExpander.js +1 -3
  221. package/es/components/Datagrid/useRowIsMouseOver.js +1 -3
  222. package/es/components/Datagrid/useRowRenderer.js +1 -3
  223. package/es/components/Datagrid/useRowSize.js +1 -3
  224. package/es/components/Datagrid/useSelectAllToggle.js +4 -6
  225. package/es/components/Datagrid/useSelectRows.js +1 -3
  226. package/es/components/Datagrid/useSkeletonRows.js +1 -2
  227. package/es/components/Datagrid/useSortableColumns.js +1 -3
  228. package/es/components/Datagrid/useStickyColumn.js +1 -3
  229. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -2
  230. package/es/components/Decorator/Decorator.js +55 -3
  231. package/es/components/DecoratorBase/DecoratorBase.js +4 -3
  232. package/es/components/DecoratorBase/DecoratorIcon.js +10 -3
  233. package/es/components/DecoratorBase/utils.js +1 -2
  234. package/es/components/DecoratorDualButton/DecoratorDualButton.js +74 -3
  235. package/es/components/DecoratorLink/DecoratorLink.js +66 -3
  236. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +66 -3
  237. package/es/components/DelimitedList/DelimitedList.js +13 -3
  238. package/es/components/DescriptionList/DescriptionList.js +5 -3
  239. package/es/components/DescriptionList/DescriptionListBody.js +3 -3
  240. package/es/components/DescriptionList/DescriptionListCell.js +3 -3
  241. package/es/components/DescriptionList/DescriptionListRow.js +3 -3
  242. package/es/components/DescriptionList/constants.js +1 -2
  243. package/es/components/EditFullPage/EditFullPage.js +7 -3
  244. package/es/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  245. package/es/components/EditInPlace/EditInPlace.js +136 -28
  246. package/es/components/EditSidePanel/EditSidePanel.js +66 -3
  247. package/es/components/EditTearsheet/EditTearsheet.js +53 -3
  248. package/es/components/EditTearsheet/EditTearsheetForm.js +33 -3
  249. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +7 -3
  250. package/es/components/EditUpdateCards/EditUpdateCards.js +70 -3
  251. package/es/components/EmptyStates/EmptyState.js +41 -9
  252. package/es/components/EmptyStates/EmptyStateContent.js +21 -3
  253. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.js +1 -3
  254. package/es/components/EmptyStates/EmptyStateV2.deprecated.js +39 -3
  255. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +37 -3
  256. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +37 -3
  257. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +37 -3
  258. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +37 -3
  259. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +37 -3
  260. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +37 -3
  261. package/es/components/EmptyStates/assets/ErrorIllustration.js +1 -3
  262. package/es/components/EmptyStates/assets/NoDataIllustration.js +1 -3
  263. package/es/components/EmptyStates/assets/NoTagsIllustration.js +1 -3
  264. package/es/components/EmptyStates/assets/NotFoundIllustration.js +1 -3
  265. package/es/components/EmptyStates/assets/NotificationsIllustration.js +1 -3
  266. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +1 -3
  267. package/es/components/ExportModal/ExportModal.js +80 -3
  268. package/es/components/ExpressiveCard/ExpressiveCard.js +76 -3
  269. package/es/components/FeatureFlags/index.js +4 -3
  270. package/es/components/FilterPanel/FilterPanel.js +10 -3
  271. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +19 -3
  272. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +22 -3
  273. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +16 -3
  274. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +34 -3
  275. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +16 -3
  276. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +13 -3
  277. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +13 -4
  278. package/es/components/FilterSummary/FilterSummary.js +2 -3
  279. package/es/components/FullPageError/FullPageError.js +20 -3
  280. package/es/components/FullPageError/assets/Error403SVG.js +1 -3
  281. package/es/components/FullPageError/assets/Error404SVG.js +1 -3
  282. package/es/components/FullPageError/assets/ErrorGenericSVG.js +1 -3
  283. package/es/components/GetStartedCard/GetStartedCard.js +37 -3
  284. package/es/components/Guidebanner/Guidebanner.js +49 -5
  285. package/es/components/Guidebanner/GuidebannerElement.js +14 -3
  286. package/es/components/Guidebanner/GuidebannerElementButton.js +11 -3
  287. package/es/components/Guidebanner/GuidebannerElementLink.js +7 -3
  288. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +23 -3
  289. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +23 -3
  290. package/es/components/HTTPErrors/HTTPErrorContent.js +19 -3
  291. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +23 -3
  292. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1 -3
  293. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1 -3
  294. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1 -3
  295. package/es/components/ImportModal/ImportModal.js +88 -3
  296. package/es/components/InlineTip/InlineTip.js +56 -3
  297. package/es/components/InlineTip/InlineTipButton.js +7 -3
  298. package/es/components/InlineTip/InlineTipLink.js +7 -3
  299. package/es/components/InlineTip/utils.js +1 -2
  300. package/es/components/InterstitialScreen/InterstitialScreen.js +23 -3
  301. package/es/components/InterstitialScreen/InterstitialScreenBody.js +13 -3
  302. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +24 -3
  303. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +20 -3
  304. package/es/components/InterstitialScreen/InterstitialScreenView.js +13 -3
  305. package/es/components/InterstitialScreen/context.js +1 -3
  306. package/es/components/MultiAddSelect/MultiAddSelect.js +81 -3
  307. package/es/components/Nav/Nav.js +16 -3
  308. package/es/components/Nav/NavItem.js +37 -3
  309. package/es/components/Nav/NavItemLink.js +4 -4
  310. package/es/components/Nav/NavList.js +12 -3
  311. package/es/components/NonLinearReading/NonLinearReading.js +13 -3
  312. package/es/components/NotificationsPanel/NotificationsPanel.js +118 -3
  313. package/es/components/NotificationsPanel/utils.js +1 -2
  314. package/es/components/OptionsTile/OptionsTile.js +52 -3
  315. package/es/components/PageHeader/PageHeader.js +219 -3
  316. package/es/components/PageHeader/PageHeaderTitle.js +24 -3
  317. package/es/components/PageHeader/PageHeaderUtils.js +1 -3
  318. package/es/components/PageHeader/next/PageHeader.d.ts +2 -1
  319. package/es/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  320. package/es/components/PageHeader/next/PageHeader.js +1 -3
  321. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  322. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.js +2 -6
  323. package/es/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +1 -3
  324. package/es/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +16 -3
  325. package/es/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  326. package/es/components/PageHeader/next/PageHeaderContent.js +32 -9
  327. package/es/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  328. package/es/components/PageHeader/next/PageHeaderContentPageActions.js +21 -7
  329. package/es/components/PageHeader/next/PageHeaderContentText.js +10 -3
  330. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  331. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  332. package/es/components/PageHeader/next/PageHeaderHeroImage.js +22 -6
  333. package/es/components/PageHeader/next/PageHeaderScrollButton.js +1 -3
  334. package/es/components/PageHeader/next/PageHeaderTabBar.js +3 -5
  335. package/es/components/PageHeader/next/PageHeaderTagOverflow.js +1 -3
  336. package/es/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +1 -3
  337. package/es/components/PageHeader/next/context.d.ts +2 -2
  338. package/es/components/PageHeader/next/context.d.ts.map +1 -1
  339. package/es/components/PageHeader/next/context.js +1 -3
  340. package/es/components/PageHeader/next/index.js +1 -3
  341. package/es/components/PageHeader/next/overflowHandler.js +1 -2
  342. package/es/components/PageHeader/next/utils.js +1 -2
  343. package/es/components/ProductiveCard/ProductiveCard.js +93 -3
  344. package/es/components/RemoveModal/RemoveModal.js +58 -3
  345. package/es/components/Saving/Saving.js +43 -3
  346. package/es/components/ScrollGradient/ScrollGradient.js +12 -3
  347. package/es/components/ScrollGradient/constants.js +1 -3
  348. package/es/components/SearchBar/SearchBar.js +31 -4
  349. package/es/components/SidePanel/SidePanel.js +116 -3
  350. package/es/components/SidePanel/constants.js +1 -2
  351. package/es/components/SimpleHeader/SimpleHeader.js +15 -3
  352. package/es/components/SingleAddSelect/SingleAddSelect.js +52 -3
  353. package/es/components/StatusIcon/StatusIcon.js +16 -3
  354. package/es/components/StatusIndicator/StatusIndicator.js +21 -3
  355. package/es/components/StatusIndicator/StatusIndicatorStep.js +13 -3
  356. package/es/components/StringFormatter/StringFormatter.js +9 -3
  357. package/es/components/StringFormatter/utils/enums.js +1 -2
  358. package/es/components/TagOverflow/TagOverflow.js +65 -3
  359. package/es/components/TagOverflow/TagOverflowModal.js +1 -3
  360. package/es/components/TagOverflow/TagOverflowPopover.js +31 -3
  361. package/es/components/TagOverflow/constants.js +1 -2
  362. package/es/components/TagSet/TagSet.js +66 -3
  363. package/es/components/TagSet/TagSetModal.js +1 -3
  364. package/es/components/TagSet/TagSetOverflow.js +38 -3
  365. package/es/components/Tearsheet/Tearsheet.js +103 -4
  366. package/es/components/Tearsheet/TearsheetNarrow.js +76 -4
  367. package/es/components/Tearsheet/TearsheetPresence.js +1 -3
  368. package/es/components/Tearsheet/TearsheetShell.js +119 -3
  369. package/es/components/Tearsheet/next/StackContext.js +1 -3
  370. package/es/components/Tearsheet/next/Tearsheet.js +1 -3
  371. package/es/components/Tearsheet/next/TearsheetBody.js +1 -3
  372. package/es/components/Tearsheet/next/TearsheetFooter.js +1 -3
  373. package/es/components/Tearsheet/next/TearsheetHeader.js +1 -3
  374. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +1 -3
  375. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +1 -3
  376. package/es/components/Tearsheet/next/context.js +1 -3
  377. package/es/components/Tearsheet/usePresence.js +7 -3
  378. package/es/components/Tearsheet/usePresenceContext.js +1 -3
  379. package/es/components/Toolbar/Toolbar.js +4 -3
  380. package/es/components/Toolbar/ToolbarButton.js +12 -4
  381. package/es/components/Toolbar/ToolbarGroup.js +3 -3
  382. package/es/components/TooltipTrigger/TooltipTrigger.js +7 -3
  383. package/es/components/TruncatedList/TruncatedList.js +32 -3
  384. package/es/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  385. package/es/components/TruncatedText/TruncatedText.js +7 -6
  386. package/es/components/TruncatedText/useTruncatedText.js +1 -3
  387. package/es/components/UserAvatar/UserAvatar.js +32 -3
  388. package/es/components/UserProfileImage/UserProfileImage.js +37 -3
  389. package/es/components/WebTerminal/WebTerminal.js +27 -3
  390. package/es/components/WebTerminal/WebTerminalContentWrapper.js +6 -4
  391. package/es/components/WebTerminal/hooks/index.js +6 -4
  392. package/es/components/_Canary/Canary.js +3 -3
  393. package/es/global/js/hooks/useActiveElement.js +1 -3
  394. package/es/global/js/hooks/useClickOutside.js +1 -3
  395. package/es/global/js/hooks/useCollapsible.js +1 -3
  396. package/es/global/js/hooks/useControllableState.js +1 -3
  397. package/es/global/js/hooks/useCreateComponentFocus.js +1 -3
  398. package/es/global/js/hooks/useCreateComponentStepChange.js +1 -3
  399. package/es/global/js/hooks/useFocus.js +1 -3
  400. package/es/global/js/hooks/useIsomorphicEffect.js +1 -3
  401. package/es/global/js/hooks/useMatchMedia.js +1 -3
  402. package/es/global/js/hooks/useMergedRefs.js +1 -3
  403. package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +1 -3
  404. package/es/global/js/hooks/useOverflowString.js +1 -3
  405. package/es/global/js/hooks/usePortalTarget.js +1 -3
  406. package/es/global/js/hooks/usePrefersReducedMotion.js +1 -3
  407. package/es/global/js/hooks/usePrefix.js +1 -3
  408. package/es/global/js/hooks/usePresence.js +1 -3
  409. package/es/global/js/hooks/usePreviousValue.js +1 -3
  410. package/es/global/js/hooks/useResetCreateComponent.js +1 -3
  411. package/es/global/js/hooks/useResizeObserver.js +1 -3
  412. package/es/global/js/hooks/useRetrieveFormTitles.js +1 -3
  413. package/es/global/js/hooks/useRetrieveStepData.js +1 -3
  414. package/es/global/js/hooks/useValidCreateStepCount.js +1 -3
  415. package/es/global/js/hooks/useWindowResize.js +1 -3
  416. package/es/global/js/hooks/useWindowScroll.js +1 -3
  417. package/es/global/js/package-settings.js +1 -2
  418. package/es/global/js/utils/Wrap.js +25 -3
  419. package/es/global/js/utils/checkForOverflow.js +1 -2
  420. package/es/global/js/utils/clamp.js +1 -2
  421. package/es/global/js/utils/debounce.js +1 -2
  422. package/es/global/js/utils/deepCloneObject.js +1 -2
  423. package/es/global/js/utils/deepCompareObject.js +1 -2
  424. package/es/global/js/utils/devtools.js +1 -3
  425. package/es/global/js/utils/getFocusableElements.js +1 -2
  426. package/es/global/js/utils/getNodeTextContent.js +1 -2
  427. package/es/global/js/utils/getNumberOfHiddenSteps.js +1 -2
  428. package/es/global/js/utils/getScrollbarWidth.js +1 -2
  429. package/es/global/js/utils/getSupportedLocale.js +1 -2
  430. package/es/global/js/utils/lastIndexInArray.js +1 -2
  431. package/es/global/js/utils/makeDraggable/makeDraggable.js +1 -2
  432. package/es/global/js/utils/pconsole.js +5 -11
  433. package/es/global/js/utils/props-helper.js +1 -3
  434. package/es/global/js/utils/rangeWithCallback.js +1 -2
  435. package/es/global/js/utils/scrollableAncestor.js +1 -2
  436. package/es/global/js/utils/throttle.js +1 -2
  437. package/es/global/js/utils/useId.js +1 -3
  438. package/es/global/js/utils/uuidv4.js +1 -2
  439. package/es/global/js/utils/wait.js +1 -2
  440. package/es/index.js +2 -5
  441. package/es/node_modules/@carbon/colors/es/index.js +1 -2
  442. package/es/node_modules/@carbon/icon-helpers/es/index.js +1 -2
  443. package/es/node_modules/@carbon/icons-react/es/Icon.js +1 -3
  444. package/es/node_modules/@carbon/icons-react/es/generated/bucket-11.js +351 -328
  445. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +185 -192
  446. package/es/node_modules/@carbon/icons-react/es/{iconPropTypes-B1cP964Y.js → iconPropTypes-BElKp6Sn.js} +2 -4
  447. package/es/node_modules/classnames/index.js +1 -4
  448. package/es/settings.js +1 -3
  449. package/lib/_virtual/_rolldown/runtime.js +13 -23
  450. package/lib/components/APIKeyModal/APIKeyDownloader.js +21 -5
  451. package/lib/components/APIKeyModal/APIKeyModal.js +170 -12
  452. package/lib/components/AboutModal/AboutModal.js +51 -10
  453. package/lib/components/ActionBar/ActionBar.js +49 -11
  454. package/lib/components/ActionBar/ActionBarItem.js +33 -6
  455. package/lib/components/ActionBar/ActionBarOverflowItems.js +24 -7
  456. package/lib/components/ActionSet/ActionSet.js +40 -8
  457. package/lib/components/AddSelect/AddSelect.js +10 -6
  458. package/lib/components/AddSelect/AddSelectBody.js +19 -19
  459. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +4 -6
  460. package/lib/components/AddSelect/AddSelectColumn.js +9 -11
  461. package/lib/components/AddSelect/AddSelectFilter.js +4 -6
  462. package/lib/components/AddSelect/AddSelectFormControl.js +4 -6
  463. package/lib/components/AddSelect/AddSelectList.js +6 -8
  464. package/lib/components/AddSelect/AddSelectMetaPanel.js +3 -5
  465. package/lib/components/AddSelect/AddSelectRow.js +5 -7
  466. package/lib/components/AddSelect/AddSelectSidebar.js +5 -7
  467. package/lib/components/AddSelect/AddSelectSort.js +3 -5
  468. package/lib/components/AddSelect/add-select-utils.js +1 -3
  469. package/lib/components/AddSelect/hooks/useFocus.js +2 -4
  470. package/lib/components/AddSelect/hooks/useItemSort.js +2 -4
  471. package/lib/components/AddSelect/hooks/useParentSelect.js +2 -4
  472. package/lib/components/AddSelect/hooks/usePath.js +2 -4
  473. package/lib/components/BigNumber/BigNumber.js +59 -13
  474. package/lib/components/BigNumber/BigNumberSkeleton.js +16 -13
  475. package/lib/components/BigNumber/constants.js +1 -22
  476. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +49 -15
  477. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +33 -9
  478. package/lib/components/Card/Card.js +25 -8
  479. package/lib/components/Card/CardFooter.js +4 -6
  480. package/lib/components/Card/CardHeader.js +15 -6
  481. package/lib/components/Carousel/Carousel.js +39 -9
  482. package/lib/components/Carousel/CarouselItem.js +11 -7
  483. package/lib/components/Cascade/Cascade.js +16 -7
  484. package/lib/components/Checklist/Checklist.js +72 -18
  485. package/lib/components/Checklist/ChecklistChart.js +19 -13
  486. package/lib/components/Checklist/ChecklistIcon.js +21 -15
  487. package/lib/components/Coachmark/Coachmark.js +69 -15
  488. package/lib/components/Coachmark/CoachmarkDragbar.js +22 -8
  489. package/lib/components/Coachmark/CoachmarkHeader.js +18 -8
  490. package/lib/components/Coachmark/CoachmarkOverlay.js +35 -17
  491. package/lib/components/Coachmark/CoachmarkTagline.js +18 -8
  492. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  493. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  494. package/lib/components/Coachmark/next/Coachmark/Coachmark.js +64 -17
  495. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  496. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.js +12 -7
  497. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +22 -7
  498. package/lib/components/Coachmark/next/Coachmark/ContentBody.js +11 -6
  499. package/lib/components/Coachmark/next/Coachmark/ContentHeader.js +18 -8
  500. package/lib/components/Coachmark/next/Coachmark/context.js +4 -7
  501. package/lib/components/Coachmark/utils/constants.js +15 -23
  502. package/lib/components/Coachmark/utils/context.js +2 -4
  503. package/lib/components/Coachmark/utils/enums.js +1 -3
  504. package/lib/components/Coachmark/utils/hooks.js +5 -7
  505. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  506. package/lib/components/CoachmarkButton/CoachmarkButton.js +12 -8
  507. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +40 -14
  508. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +18 -7
  509. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +41 -11
  510. package/lib/components/CoachmarkStack/CoachmarkStack.js +52 -14
  511. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +48 -10
  512. package/lib/components/ComboButton/ComboButton.js +9 -7
  513. package/lib/components/ComboButton/ComboButtonItem/index.js +6 -4
  514. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +64 -21
  515. package/lib/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  516. package/lib/components/ConditionBuilder/ConditionBuilder.js +72 -11
  517. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  518. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  519. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  520. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +25 -15
  521. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +35 -9
  522. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +43 -7
  523. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +19 -12
  524. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +8 -10
  525. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  526. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +46 -24
  527. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  528. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +37 -5
  529. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -3
  530. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +45 -11
  531. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +14 -7
  532. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +13 -6
  533. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +14 -7
  534. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +14 -7
  535. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +15 -5
  536. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +12 -5
  537. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  538. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +40 -18
  539. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +16 -9
  540. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  541. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +4 -6
  542. package/lib/components/ConditionBuilder/utils/useEvent.js +2 -4
  543. package/lib/components/ConditionBuilder/utils/useTranslations.js +4 -6
  544. package/lib/components/ConditionBuilder/utils/util.js +2 -5
  545. package/lib/components/CreateFullPage/CreateFullPage.js +92 -16
  546. package/lib/components/CreateFullPage/CreateFullPageStep.js +58 -10
  547. package/lib/components/CreateInfluencer/CreateInfluencer.js +20 -7
  548. package/lib/components/CreateModal/CreateModal.js +48 -8
  549. package/lib/components/CreateSidePanel/CreateSidePanel.js +65 -9
  550. package/lib/components/CreateTearsheet/CreateTearsheet.js +96 -18
  551. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +9 -7
  552. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +79 -10
  553. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +62 -9
  554. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +85 -27
  555. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +128 -16
  556. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +88 -15
  557. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +2 -4
  558. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +4 -6
  559. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +3 -5
  560. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +4 -6
  561. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +4 -6
  562. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +4 -6
  563. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +4 -6
  564. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +2 -4
  565. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -3
  566. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +2 -4
  567. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +11 -13
  568. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +3 -5
  569. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +4 -6
  570. package/lib/components/DataSpreadsheet/utils/getCellSize.js +2 -4
  571. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -3
  572. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +2 -4
  573. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +2 -4
  574. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +2 -4
  575. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +3 -5
  576. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +3 -5
  577. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +5 -7
  578. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +4 -6
  579. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +3 -5
  580. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +2 -4
  581. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +3 -5
  582. package/lib/components/Datagrid/Datagrid/Datagrid.js +17 -11
  583. package/lib/components/Datagrid/Datagrid/DatagridBody.js +6 -8
  584. package/lib/components/Datagrid/Datagrid/DatagridContent.js +19 -21
  585. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +7 -9
  586. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +4 -6
  587. package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -4
  588. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -12
  589. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +4 -6
  590. package/lib/components/Datagrid/Datagrid/DatagridRow.js +7 -9
  591. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -8
  592. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +5 -7
  593. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +4 -6
  594. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +6 -8
  595. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +6 -8
  596. package/lib/components/Datagrid/Datagrid/DraggableElement.js +4 -6
  597. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +7 -5
  598. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +3 -5
  599. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +3 -5
  600. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +6 -8
  601. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +6 -8
  602. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -9
  603. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +4 -6
  604. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
  605. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +54 -14
  606. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +31 -26
  607. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +9 -11
  608. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +4 -6
  609. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -3
  610. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -3
  611. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +3 -5
  612. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -18
  613. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +3 -5
  614. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +3 -5
  615. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  616. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +4 -6
  617. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +9 -11
  618. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +4 -6
  619. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -3
  620. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +2 -5
  621. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -3
  622. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +4 -6
  623. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +4 -6
  624. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +5 -7
  625. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +3 -5
  626. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +2 -4
  627. package/lib/components/Datagrid/common-column-ids.js +1 -3
  628. package/lib/components/Datagrid/useActionsColumn.js +5 -7
  629. package/lib/components/Datagrid/useColumnCenterAlign.js +4 -6
  630. package/lib/components/Datagrid/useColumnOrder.js +3 -6
  631. package/lib/components/Datagrid/useColumnRightAlign.js +4 -6
  632. package/lib/components/Datagrid/useCustomizeColumns.js +4 -6
  633. package/lib/components/Datagrid/useDatagrid.js +11 -13
  634. package/lib/components/Datagrid/useDefaultStringRenderer.js +4 -6
  635. package/lib/components/Datagrid/useDisableSelectRows.js +1 -3
  636. package/lib/components/Datagrid/useEditableCell.js +2 -4
  637. package/lib/components/Datagrid/useExpandedRow.js +4 -6
  638. package/lib/components/Datagrid/useFiltering.js +4 -6
  639. package/lib/components/Datagrid/useFlexResize.js +2 -4
  640. package/lib/components/Datagrid/useFloatingScroll.js +4 -6
  641. package/lib/components/Datagrid/useFocusRowExpander.js +2 -4
  642. package/lib/components/Datagrid/useInfiniteScroll.js +5 -7
  643. package/lib/components/Datagrid/useInitialColumnSort.js +3 -5
  644. package/lib/components/Datagrid/useInlineEdit.js +5 -7
  645. package/lib/components/Datagrid/useNestedRowExpander.js +6 -8
  646. package/lib/components/Datagrid/useNestedRows.js +5 -7
  647. package/lib/components/Datagrid/useOnRowClick.js +3 -5
  648. package/lib/components/Datagrid/useParentDimensions.js +2 -4
  649. package/lib/components/Datagrid/useResizeTable.js +2 -4
  650. package/lib/components/Datagrid/useRowExpander.js +5 -7
  651. package/lib/components/Datagrid/useRowIsMouseOver.js +3 -5
  652. package/lib/components/Datagrid/useRowRenderer.js +2 -4
  653. package/lib/components/Datagrid/useRowSize.js +3 -5
  654. package/lib/components/Datagrid/useSelectAllToggle.js +9 -11
  655. package/lib/components/Datagrid/useSelectRows.js +8 -10
  656. package/lib/components/Datagrid/useSkeletonRows.js +1 -3
  657. package/lib/components/Datagrid/useSortableColumns.js +6 -8
  658. package/lib/components/Datagrid/useStickyColumn.js +6 -8
  659. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -3
  660. package/lib/components/Decorator/Decorator.js +65 -13
  661. package/lib/components/DecoratorBase/DecoratorBase.js +9 -8
  662. package/lib/components/DecoratorBase/DecoratorIcon.js +19 -12
  663. package/lib/components/DecoratorBase/utils.js +1 -3
  664. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +84 -13
  665. package/lib/components/DecoratorLink/DecoratorLink.js +76 -13
  666. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +76 -13
  667. package/lib/components/DelimitedList/DelimitedList.js +17 -7
  668. package/lib/components/DescriptionList/DescriptionList.js +15 -13
  669. package/lib/components/DescriptionList/DescriptionListBody.js +12 -12
  670. package/lib/components/DescriptionList/DescriptionListCell.js +12 -12
  671. package/lib/components/DescriptionList/DescriptionListRow.js +12 -12
  672. package/lib/components/DescriptionList/constants.js +1 -3
  673. package/lib/components/EditFullPage/EditFullPage.js +11 -7
  674. package/lib/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  675. package/lib/components/EditInPlace/EditInPlace.js +139 -31
  676. package/lib/components/EditSidePanel/EditSidePanel.js +73 -10
  677. package/lib/components/EditTearsheet/EditTearsheet.js +59 -9
  678. package/lib/components/EditTearsheet/EditTearsheetForm.js +39 -9
  679. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +11 -7
  680. package/lib/components/EditUpdateCards/EditUpdateCards.js +75 -8
  681. package/lib/components/EmptyStates/EmptyState.js +48 -16
  682. package/lib/components/EmptyStates/EmptyStateContent.js +24 -6
  683. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.js +2 -4
  684. package/lib/components/EmptyStates/EmptyStateV2.deprecated.js +45 -9
  685. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +44 -10
  686. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +44 -10
  687. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +44 -10
  688. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +44 -10
  689. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +44 -10
  690. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +44 -10
  691. package/lib/components/EmptyStates/assets/ErrorIllustration.js +5 -7
  692. package/lib/components/EmptyStates/assets/NoDataIllustration.js +5 -7
  693. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +5 -7
  694. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +5 -7
  695. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +5 -7
  696. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +5 -7
  697. package/lib/components/ExportModal/ExportModal.js +86 -9
  698. package/lib/components/ExpressiveCard/ExpressiveCard.js +80 -7
  699. package/lib/components/FeatureFlags/index.js +6 -5
  700. package/lib/components/FilterPanel/FilterPanel.js +19 -12
  701. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +29 -13
  702. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +33 -14
  703. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +26 -13
  704. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +44 -13
  705. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +26 -13
  706. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +22 -12
  707. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +22 -13
  708. package/lib/components/FilterSummary/FilterSummary.js +12 -13
  709. package/lib/components/FullPageError/FullPageError.js +27 -10
  710. package/lib/components/FullPageError/assets/Error403SVG.js +2 -4
  711. package/lib/components/FullPageError/assets/Error404SVG.js +2 -4
  712. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +2 -4
  713. package/lib/components/GetStartedCard/GetStartedCard.js +40 -6
  714. package/lib/components/Guidebanner/Guidebanner.js +57 -13
  715. package/lib/components/Guidebanner/GuidebannerElement.js +18 -7
  716. package/lib/components/Guidebanner/GuidebannerElementButton.js +15 -7
  717. package/lib/components/Guidebanner/GuidebannerElementLink.js +11 -7
  718. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +29 -9
  719. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +29 -9
  720. package/lib/components/HTTPErrors/HTTPErrorContent.js +21 -5
  721. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +29 -9
  722. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +3 -5
  723. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +3 -5
  724. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +3 -5
  725. package/lib/components/ImportModal/ImportModal.js +94 -9
  726. package/lib/components/InlineTip/InlineTip.js +62 -9
  727. package/lib/components/InlineTip/InlineTipButton.js +11 -7
  728. package/lib/components/InlineTip/InlineTipLink.js +11 -7
  729. package/lib/components/InlineTip/utils.js +1 -3
  730. package/lib/components/InterstitialScreen/InterstitialScreen.js +30 -10
  731. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +17 -7
  732. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +28 -7
  733. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +24 -7
  734. package/lib/components/InterstitialScreen/InterstitialScreenView.js +15 -5
  735. package/lib/components/InterstitialScreen/context.js +3 -5
  736. package/lib/components/MultiAddSelect/MultiAddSelect.js +84 -6
  737. package/lib/components/Nav/Nav.js +27 -14
  738. package/lib/components/Nav/NavItem.js +48 -14
  739. package/lib/components/Nav/NavItemLink.js +5 -5
  740. package/lib/components/Nav/NavList.js +22 -13
  741. package/lib/components/NonLinearReading/NonLinearReading.js +18 -8
  742. package/lib/components/NotificationsPanel/NotificationsPanel.js +130 -15
  743. package/lib/components/NotificationsPanel/utils.js +1 -3
  744. package/lib/components/OptionsTile/OptionsTile.js +59 -10
  745. package/lib/components/PageHeader/PageHeader.js +234 -18
  746. package/lib/components/PageHeader/PageHeaderTitle.js +28 -7
  747. package/lib/components/PageHeader/PageHeaderUtils.js +5 -7
  748. package/lib/components/PageHeader/next/PageHeader.d.ts +2 -1
  749. package/lib/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  750. package/lib/components/PageHeader/next/PageHeader.js +19 -21
  751. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  752. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.js +6 -10
  753. package/lib/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +6 -8
  754. package/lib/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +19 -6
  755. package/lib/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  756. package/lib/components/PageHeader/next/PageHeaderContent.js +36 -13
  757. package/lib/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  758. package/lib/components/PageHeader/next/PageHeaderContentPageActions.js +26 -12
  759. package/lib/components/PageHeader/next/PageHeaderContentText.js +13 -6
  760. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  761. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  762. package/lib/components/PageHeader/next/PageHeaderHeroImage.js +25 -9
  763. package/lib/components/PageHeader/next/PageHeaderScrollButton.js +6 -8
  764. package/lib/components/PageHeader/next/PageHeaderTabBar.js +7 -9
  765. package/lib/components/PageHeader/next/PageHeaderTagOverflow.js +6 -8
  766. package/lib/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +5 -7
  767. package/lib/components/PageHeader/next/context.d.ts +2 -2
  768. package/lib/components/PageHeader/next/context.d.ts.map +1 -1
  769. package/lib/components/PageHeader/next/context.js +2 -4
  770. package/lib/components/PageHeader/next/index.js +19 -21
  771. package/lib/components/PageHeader/next/overflowHandler.js +1 -3
  772. package/lib/components/PageHeader/next/utils.js +1 -3
  773. package/lib/components/ProductiveCard/ProductiveCard.js +97 -7
  774. package/lib/components/RemoveModal/RemoveModal.js +65 -10
  775. package/lib/components/Saving/Saving.js +47 -7
  776. package/lib/components/ScrollGradient/ScrollGradient.js +23 -14
  777. package/lib/components/ScrollGradient/constants.js +3 -5
  778. package/lib/components/SearchBar/SearchBar.js +35 -8
  779. package/lib/components/SidePanel/SidePanel.js +129 -16
  780. package/lib/components/SidePanel/constants.js +1 -3
  781. package/lib/components/SimpleHeader/SimpleHeader.js +20 -8
  782. package/lib/components/SingleAddSelect/SingleAddSelect.js +56 -7
  783. package/lib/components/StatusIcon/StatusIcon.js +20 -7
  784. package/lib/components/StatusIndicator/StatusIndicator.js +30 -12
  785. package/lib/components/StatusIndicator/StatusIndicatorStep.js +22 -12
  786. package/lib/components/StringFormatter/StringFormatter.js +21 -15
  787. package/lib/components/StringFormatter/utils/enums.js +1 -3
  788. package/lib/components/TagOverflow/TagOverflow.js +73 -11
  789. package/lib/components/TagOverflow/TagOverflowModal.js +6 -8
  790. package/lib/components/TagOverflow/TagOverflowPopover.js +35 -7
  791. package/lib/components/TagOverflow/constants.js +1 -3
  792. package/lib/components/TagSet/TagSet.js +73 -10
  793. package/lib/components/TagSet/TagSetModal.js +6 -8
  794. package/lib/components/TagSet/TagSetOverflow.js +42 -7
  795. package/lib/components/Tearsheet/Tearsheet.js +107 -8
  796. package/lib/components/Tearsheet/TearsheetNarrow.js +80 -8
  797. package/lib/components/Tearsheet/TearsheetPresence.js +3 -5
  798. package/lib/components/Tearsheet/TearsheetShell.js +135 -19
  799. package/lib/components/Tearsheet/next/StackContext.js +3 -5
  800. package/lib/components/Tearsheet/next/Tearsheet.js +15 -17
  801. package/lib/components/Tearsheet/next/TearsheetBody.js +6 -8
  802. package/lib/components/Tearsheet/next/TearsheetFooter.js +5 -7
  803. package/lib/components/Tearsheet/next/TearsheetHeader.js +4 -6
  804. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +5 -7
  805. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +5 -7
  806. package/lib/components/Tearsheet/next/context.js +4 -7
  807. package/lib/components/Tearsheet/usePresence.js +9 -5
  808. package/lib/components/Tearsheet/usePresenceContext.js +3 -5
  809. package/lib/components/Toolbar/Toolbar.js +9 -8
  810. package/lib/components/Toolbar/ToolbarButton.js +15 -7
  811. package/lib/components/Toolbar/ToolbarGroup.js +6 -6
  812. package/lib/components/TooltipTrigger/TooltipTrigger.js +10 -6
  813. package/lib/components/TruncatedList/TruncatedList.js +37 -8
  814. package/lib/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  815. package/lib/components/TruncatedText/TruncatedText.js +12 -11
  816. package/lib/components/TruncatedText/useTruncatedText.js +3 -5
  817. package/lib/components/UserAvatar/UserAvatar.js +38 -9
  818. package/lib/components/UserProfileImage/UserProfileImage.js +43 -9
  819. package/lib/components/WebTerminal/WebTerminal.js +33 -9
  820. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +10 -8
  821. package/lib/components/WebTerminal/hooks/index.js +7 -5
  822. package/lib/components/_Canary/Canary.js +6 -6
  823. package/lib/global/js/hooks/useActiveElement.js +2 -4
  824. package/lib/global/js/hooks/useClickOutside.js +2 -4
  825. package/lib/global/js/hooks/useCollapsible.js +2 -4
  826. package/lib/global/js/hooks/useControllableState.js +2 -4
  827. package/lib/global/js/hooks/useCreateComponentFocus.js +3 -5
  828. package/lib/global/js/hooks/useCreateComponentStepChange.js +2 -4
  829. package/lib/global/js/hooks/useFocus.js +3 -5
  830. package/lib/global/js/hooks/useIsomorphicEffect.js +2 -4
  831. package/lib/global/js/hooks/useMatchMedia.js +2 -4
  832. package/lib/global/js/hooks/useMergedRefs.js +2 -4
  833. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +3 -5
  834. package/lib/global/js/hooks/useOverflowString.js +2 -4
  835. package/lib/global/js/hooks/usePortalTarget.js +4 -6
  836. package/lib/global/js/hooks/usePrefersReducedMotion.js +3 -5
  837. package/lib/global/js/hooks/usePrefix.js +2 -4
  838. package/lib/global/js/hooks/usePresence.js +2 -4
  839. package/lib/global/js/hooks/usePreviousValue.js +2 -4
  840. package/lib/global/js/hooks/useResetCreateComponent.js +3 -5
  841. package/lib/global/js/hooks/useResizeObserver.js +3 -5
  842. package/lib/global/js/hooks/useRetrieveFormTitles.js +2 -4
  843. package/lib/global/js/hooks/useRetrieveStepData.js +2 -4
  844. package/lib/global/js/hooks/useValidCreateStepCount.js +2 -4
  845. package/lib/global/js/hooks/useWindowResize.js +3 -5
  846. package/lib/global/js/hooks/useWindowScroll.js +4 -6
  847. package/lib/global/js/package-settings.js +1 -3
  848. package/lib/global/js/utils/Wrap.js +26 -4
  849. package/lib/global/js/utils/checkForOverflow.js +1 -3
  850. package/lib/global/js/utils/clamp.js +1 -3
  851. package/lib/global/js/utils/debounce.js +1 -3
  852. package/lib/global/js/utils/deepCloneObject.js +1 -3
  853. package/lib/global/js/utils/deepCompareObject.js +1 -3
  854. package/lib/global/js/utils/devtools.js +2 -4
  855. package/lib/global/js/utils/getFocusableElements.js +1 -3
  856. package/lib/global/js/utils/getNodeTextContent.js +1 -3
  857. package/lib/global/js/utils/getNumberOfHiddenSteps.js +1 -3
  858. package/lib/global/js/utils/getScrollbarWidth.js +1 -3
  859. package/lib/global/js/utils/getSupportedLocale.js +1 -3
  860. package/lib/global/js/utils/lastIndexInArray.js +1 -3
  861. package/lib/global/js/utils/makeDraggable/makeDraggable.js +1 -3
  862. package/lib/global/js/utils/pconsole.js +4 -9
  863. package/lib/global/js/utils/props-helper.js +2 -4
  864. package/lib/global/js/utils/rangeWithCallback.js +1 -3
  865. package/lib/global/js/utils/scrollableAncestor.js +1 -3
  866. package/lib/global/js/utils/throttle.js +1 -3
  867. package/lib/global/js/utils/useId.js +3 -5
  868. package/lib/global/js/utils/uuidv4.js +1 -3
  869. package/lib/global/js/utils/wait.js +1 -3
  870. package/lib/index.js +264 -267
  871. package/lib/node_modules/@carbon/colors/lib/index.js +15 -21
  872. package/lib/node_modules/@carbon/icon-helpers/lib/index.js +7 -10
  873. package/lib/node_modules/@carbon/icons-react/lib/{Icon.js → Icon-2zUDcllO.js} +44 -17
  874. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-0.js +274 -278
  875. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-1.js +303 -316
  876. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-10.js +478 -472
  877. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-11.js +491 -468
  878. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-12.js +482 -474
  879. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-13.js +509 -547
  880. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-14.js +546 -596
  881. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-15.js +596 -538
  882. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-16.js +571 -616
  883. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-17.js +669 -654
  884. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-18.js +683 -661
  885. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-19.js +701 -718
  886. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-2.js +332 -330
  887. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-20.js +743 -783
  888. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-21.js +548 -40
  889. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-3.js +340 -349
  890. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-4.js +360 -380
  891. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-5.js +397 -405
  892. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-6.js +405 -392
  893. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-7.js +418 -437
  894. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-8.js +456 -496
  895. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-9.js +489 -480
  896. package/lib/node_modules/@carbon/icons-react/lib/{iconPropTypes-U9gLABJo.js → iconPropTypes-DaTOKOBs.js} +12 -14
  897. package/lib/node_modules/@carbon/icons-react/lib/index.js +425 -395
  898. package/lib/node_modules/classnames/index.js +7 -10
  899. package/lib/settings.js +5 -7
  900. package/package.json +17 -17
  901. package/scss/components/EditInPlace/_edit-in-place.scss +30 -6
  902. package/scss/components/PageHeader/_page-header.scss +66 -6
  903. package/scss/components/TruncatedText/_truncated-text.scss +21 -0
  904. package/telemetry.yml +12 -3
  905. package/es/components/Checklist/Checklist.types.js +0 -30
  906. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  907. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  908. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  909. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  910. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  911. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  912. package/lib/components/Checklist/Checklist.types.js +0 -32
  913. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  914. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  915. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  916. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  917. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  918. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  919. package/lib/node_modules/@carbon/icons-react/lib/chunk-CsKB0u1v.js +0 -54
@@ -5,11 +5,9 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- const require_runtime = require('../../../../../_virtual/_rolldown/runtime.js');
9
- const require_chunk_CsKB0u1v$1 = require('../chunk-CsKB0u1v.js');
10
- const require_Icon$1 = require('../Icon.js');
11
- const require_iconPropTypes_U9gLABJo$1 = require('../iconPropTypes-U9gLABJo.js');
12
-
8
+ const require_runtime = require("../../../../../_virtual/_rolldown/runtime.js");
9
+ const require_Icon_2zUDcllO$1 = require("../Icon-2zUDcllO.js");
10
+ const require_iconPropTypes_DaTOKOBs$1 = require("../iconPropTypes-DaTOKOBs.js");
13
11
  //#region ../../node_modules/@carbon/icons-react/lib/generated/bucket-19.js
14
12
  var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,13 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
21
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
22
20
  */
23
21
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
24
- const require_chunk = require_chunk_CsKB0u1v$1.default;
25
- const require_Icon_js = require_Icon$1.default;
26
- const require_iconPropTypes = require_iconPropTypes_U9gLABJo$1.default;
22
+ const require_Icon = require_Icon_2zUDcllO$1.default;
23
+ const require_iconPropTypes = require_iconPropTypes_DaTOKOBs$1.default;
27
24
  let react = require("react");
28
- react = require_chunk.__toESM(react);
25
+ react = require_Icon.__toESM(react);
29
26
  let react_jsx_runtime = require("react/jsx-runtime");
30
- const TrainHeart = react.default.forwardRef(function TrainHeart({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const TimeFilled = /* @__PURE__ */ react.default.forwardRef(function TimeFilled({ children, size = 16, ...rest }, ref) {
28
+ return react.default.createElement(require_Icon.Icon, {
32
29
  width: size,
33
30
  height: size,
34
31
  ref,
@@ -36,11 +33,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
36
33
  viewBox: "0 0 32 32",
37
34
  fill: "currentColor",
38
35
  ...rest
39
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.303,2a2.6613,2.6613,0,0,0-1.9079.8059l-.3932.4053-.397-.4053a2.6612,2.6612,0,0,0-3.8157,0,2.7991,2.7991,0,0,0,0,3.8963L25.0019,11l4.2089-4.2978a2.7991,2.7991,0,0,0,0-3.8963A2.6613,2.6613,0,0,0,27.303,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,13v3H6V10h9V8H6.1843A2.9948,2.9948,0,0,1,9,6h6V4H9A5.0057,5.0057,0,0,0,4,9V21a4.99,4.99,0,0,0,3.582,4.77L5.7693,30H7.9451l1.7143-4h8.6812l1.7143,4h2.1758L20.418,25.77A4.99,4.99,0,0,0,24,21V13Zm0,7H19v2h2.8157A2.9948,2.9948,0,0,1,19,24H9a2.9948,2.9948,0,0,1-2.8157-2H9V20H6V18H22Z" }), children);
36
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m16,2c-7.6001,0-14,6.3999-14,14s6.3999,14,14,14,14-6.3999,14-14S23.6001,2,16,2Zm4.5872,20l-5.5872-5.5898V7h2v8.582l5,5.0044-1.4128,1.4136Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
37
+ fill: "none",
38
+ d: "M20.5872 22 15 16.4099 15 7 17 7 17 15.5822 22 20.5866 20.5872 22z"
39
+ }), children);
40
40
  });
41
- if (process.env.NODE_ENV !== "production") TrainHeart.propTypes = require_iconPropTypes.iconPropTypes;
42
- const TrainProfile = react.default.forwardRef(function TrainProfile({ children, size = 16, ...rest }, ref) {
43
- return react.default.createElement(require_Icon_js, {
41
+ if (process.env.NODE_ENV !== "production") TimeFilled.propTypes = require_iconPropTypes.iconPropTypes;
42
+ const TimePlot = /* @__PURE__ */ react.default.forwardRef(function TimePlot({ children, size = 16, ...rest }, ref) {
43
+ return react.default.createElement(require_Icon.Icon, {
44
44
  width: size,
45
45
  height: size,
46
46
  ref,
@@ -48,11 +48,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
48
48
  viewBox: "0 0 32 32",
49
49
  fill: "currentColor",
50
50
  ...rest
51
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 25 2 25 2 27 4 27 4 29 6 29 6 27 11 27 11 29 13 29 13 27 18 27 18 29 20 29 20 27 25 27 25 29 27 29 27 27 30 27 30 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,16H2V14H8V12H2V10H8a2.0021,2.0021,0,0,1,2,2v2A2.0021,2.0021,0,0,1,8,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.55,14.2305,19.97,6.3657A8.9775,8.9775,0,0,0,13.8882,4H2V6H12v4a2.0023,2.0023,0,0,0,2,2h9.1565l4.0417,3.7051A2.4723,2.4723,0,0,1,25.5273,20H2v2H25.5273a4.4726,4.4726,0,0,0,3.0225-7.77ZM14,10V6.0054A6.9774,6.9774,0,0,1,18.6182,7.84L20.9746,10Z" }), children);
51
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.586 13 21 10.414 21 6 23 6 23 9.586 25 11.586 23.586 13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,18a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,22,18ZM22,4a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,22,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.63,18l7,6H30V22H16.37l-7-6H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V18Z" }), children);
52
52
  });
53
- if (process.env.NODE_ENV !== "production") TrainProfile.propTypes = require_iconPropTypes.iconPropTypes;
54
- const TrainSpeed = react.default.forwardRef(function TrainSpeed({ children, size = 16, ...rest }, ref) {
55
- return react.default.createElement(require_Icon_js, {
53
+ if (process.env.NODE_ENV !== "production") TimePlot.propTypes = require_iconPropTypes.iconPropTypes;
54
+ const Timer = /* @__PURE__ */ react.default.forwardRef(function Timer({ children, size = 16, ...rest }, ref) {
55
+ return react.default.createElement(require_Icon.Icon, {
56
56
  width: size,
57
57
  height: size,
58
58
  ref,
@@ -60,11 +60,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
60
60
  viewBox: "0 0 32 32",
61
61
  fill: "currentColor",
62
62
  ...rest
63
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 25 2 25 2 27 4 27 4 29 6 29 6 27 11 27 11 29 13 29 13 27 18 27 18 29 20 29 20 27 25 27 25 29 27 29 27 27 30 27 30 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7144,16.59,18.1494,8.64A14.9327,14.9327,0,0,0,9.6519,6H2V8H9.6519a12.9459,12.9459,0,0,1,7.3647,2.2871L18.0532,11H9v2H20.9624l7.6187,5.2378A.966.966,0,0,1,28.0342,20H2v2H28.0342a2.9661,2.9661,0,0,0,1.68-5.41Z" }), children);
63
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 11H17V20H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 2H19V4H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,9,26.58,7.59,24.33,9.84a10.94,10.94,0,1,0,1.18,1.65ZM16,26a9,9,0,1,1,9-9A9,9,0,0,1,16,26Z" }), children);
64
64
  });
65
- if (process.env.NODE_ENV !== "production") TrainSpeed.propTypes = require_iconPropTypes.iconPropTypes;
66
- const TrainTicket = react.default.forwardRef(function TrainTicket({ children, size = 16, ...rest }, ref) {
67
- return react.default.createElement(require_Icon_js, {
65
+ if (process.env.NODE_ENV !== "production") Timer.propTypes = require_iconPropTypes.iconPropTypes;
66
+ const TimingBelt = /* @__PURE__ */ react.default.forwardRef(function TimingBelt({ children, size = 16, ...rest }, ref) {
67
+ return react.default.createElement(require_Icon.Icon, {
68
68
  width: size,
69
69
  height: size,
70
70
  ref,
@@ -72,11 +72,19 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
72
72
  viewBox: "0 0 32 32",
73
73
  fill: "currentColor",
74
74
  ...rest
75
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.1257,7.125a1.125,1.125,0,1,1,0-2.25h.875V2h-12V4.875h.875a1.125,1.125,0,0,1,0,2.25h-.875V10h12V7.125Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.0007,13v3h-16V10h9V8H6.185A2.9948,2.9948,0,0,1,9.0007,6h6V4h-6a5.0057,5.0057,0,0,0-5,5V21a4.99,4.99,0,0,0,3.582,4.77L5.77,30H7.9458L9.66,26h8.6812l1.7143,4h2.1758l-1.8127-4.23A4.99,4.99,0,0,0,24.0007,21V13Zm0,7h-3v2h2.8157a2.9948,2.9948,0,0,1-2.8157,2h-10A2.9948,2.9948,0,0,1,6.185,22H9.0007V20h-3V18h16Z" }), children);
75
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
76
+ cx: "16",
77
+ cy: "24",
78
+ r: "1",
79
+ strokeWidth: "0"
80
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
81
+ strokeWidth: "0",
82
+ d: "m30,12c0-1.8237-1.2344-3.3496-2.9062-3.8286L7.2087,2.207c-.3838-.123-.7847-.207-1.2087-.207-2.2056,0-4,1.7944-4,4,0,.6025.1438,1.1689.3835,1.6816l8.1016,18.6782c.9185,2.1382,3.0442,3.6401,5.5149,3.6401,2.252,0,4.2161-1.249,5.2422-3.0889l8.002-12.5894c.4712-.6562.7559-1.4541.7559-2.3218Zm-14,6c-2.4155,0-4.4971,1.438-5.4475,3.5005l-5.0149-11.5474c.1536.0181.3042.0469.4624.0469,2.2056,0,4-1.7944,4-4,0-.3193-.0474-.6255-.1182-.9233l13.3882,4.0161c-.7771.73-1.27,1.7593-1.27,2.9072,0,2.1465,1.7029,3.8896,3.8267,3.9824l-4.0593,6.3809c-.7148-2.5146-3.0271-4.3633-5.7673-4.3633Zm12-6c0,1.1025-.8972,2-2,2s-2-.8975-2-2,.8972-2,2-2,2,.8975,2,2ZM6,4c1.1028,0,2,.8975,2,2s-.8972,2-2,2-2-.8975-2-2,.8972-2,2-2Zm10,24c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z"
83
+ }), children);
76
84
  });
77
- if (process.env.NODE_ENV !== "production") TrainTicket.propTypes = require_iconPropTypes.iconPropTypes;
78
- const TrainTime = react.default.forwardRef(function TrainTime({ children, size = 16, ...rest }, ref) {
79
- return react.default.createElement(require_Icon_js, {
85
+ if (process.env.NODE_ENV !== "production") TimingBelt.propTypes = require_iconPropTypes.iconPropTypes;
86
+ const ToggleOffFill = /* @__PURE__ */ react.default.forwardRef(function ToggleOffFill({ children, size = 16, ...rest }, ref) {
87
+ return react.default.createElement(require_Icon.Icon, {
80
88
  width: size,
81
89
  height: size,
82
90
  ref,
@@ -84,14 +92,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
84
92
  viewBox: "0 0 32 32",
85
93
  fill: "currentColor",
86
94
  ...rest
87
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
88
- fill: "none",
89
- d: "M25.496 10.088 22.874 7.466 22.874 3 25.124 3 25.124 6.534 27.088 8.498 25.496 10.088z"
90
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,1a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,24,1Zm1.4971,9.0884L22.875,7.4658V3h2.25V6.5342l1.9639,1.9634Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,16V10h9V8H6.1843A2.9948,2.9948,0,0,1,9,6h6V4H9A5.0057,5.0057,0,0,0,4,9V21a4.99,4.99,0,0,0,3.582,4.77L5.7693,30H7.9451l1.7143-4h8.6812l1.7143,4h2.1758L20.418,25.77A4.99,4.99,0,0,0,24,21V16Zm16,4H19v2h2.8157A2.9948,2.9948,0,0,1,19,24H9a2.9948,2.9948,0,0,1-2.8157-2H9V20H6V18H22Z" }), children);
95
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,8h-12c-4.4,0-8,3.6-8,8s3.6,8,8,8h12c4.4,0,8-3.6,8-8s-3.6-8-8-8ZM10,20c-2.2,0-4-1.8-4-4s1.8-4,4-4,4,1.8,4,4-1.8,4-4,4Z" }), children);
91
96
  });
92
- if (process.env.NODE_ENV !== "production") TrainTime.propTypes = require_iconPropTypes.iconPropTypes;
93
- const Tram = react.default.forwardRef(function Tram({ children, size = 16, ...rest }, ref) {
94
- return react.default.createElement(require_Icon_js, {
97
+ if (process.env.NODE_ENV !== "production") ToggleOffFill.propTypes = require_iconPropTypes.iconPropTypes;
98
+ const ToggleOnFill = /* @__PURE__ */ react.default.forwardRef(function ToggleOnFill({ children, size = 16, ...rest }, ref) {
99
+ return react.default.createElement(require_Icon.Icon, {
95
100
  width: size,
96
101
  height: size,
97
102
  ref,
@@ -99,11 +104,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
99
104
  viewBox: "0 0 32 32",
100
105
  fill: "currentColor",
101
106
  ...rest
102
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,6H17V4h6V2H9V4h6V6H11a5.0057,5.0057,0,0,0-5,5V22a4.99,4.99,0,0,0,3.582,4.77L8.1978,30h2.1757l1.2859-3h8.6812l1.2859,3h2.1757L22.418,26.77A4.99,4.99,0,0,0,26,22V11A5.0057,5.0057,0,0,0,21,6ZM11,8H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,8ZM24,21H21v2h2.8157A2.9948,2.9948,0,0,1,21,25H11a2.9948,2.9948,0,0,1-2.8157-2H11V21H8V19H24Zm0-4H8V12H24Z" }), children);
107
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,24h12c4.4,0,8-3.6,8-8s-3.6-8-8-8h-12c-4.4,0-8,3.6-8,8s3.6,8,8,8ZM22,12c2.2,0,4,1.8,4,4s-1.8,4-4,4-4-1.8-4-4,1.8-4,4-4Z" }), children);
103
108
  });
104
- if (process.env.NODE_ENV !== "production") Tram.propTypes = require_iconPropTypes.iconPropTypes;
105
- const TransformBinary = react.default.forwardRef(function TransformBinary({ children, size = 16, ...rest }, ref) {
106
- return react.default.createElement(require_Icon_js, {
109
+ if (process.env.NODE_ENV !== "production") ToggleOnFill.propTypes = require_iconPropTypes.iconPropTypes;
110
+ const ToggleOff = /* @__PURE__ */ react.default.forwardRef(function ToggleOff({ children, size = 16, ...rest }, ref) {
111
+ return react.default.createElement(require_Icon.Icon, {
107
112
  width: size,
108
113
  height: size,
109
114
  ref,
@@ -111,11 +116,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
111
116
  viewBox: "0 0 32 32",
112
117
  fill: "currentColor",
113
118
  ...rest
114
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,20h-2c-1.1,0-2-0.9-2-2v-4c0-1.1,0.9-2,2-2h2c1.1,0,2,0.9,2,2v4C25,19.1,24.1,20,23,20z M21,14v4h2v-4H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V20H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,20H9c-1.1,0-2-0.9-2-2v-4c0-1.1,0.9-2,2-2h2c1.1,0,2,0.9,2,2v4C13,19.1,12.1,20,11,20z M9,14v4h2v-4H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2v2c6.6,0,12,5.4,12,12s-5.4,12-12,12v2c7.7,0,14-6.3,14-14S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.2,25.1L7,26.7c1.2,1,2.6,1.9,4.2,2.4l0.7-1.9C10.5,26.7,9.3,26,8.2,25.1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2,18l-2,0.4C2.5,20,3.1,21.6,3.9,23l1.7-1C4.9,20.8,4.4,19.4,4.2,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.6,10L3.9,9c-0.8,1.4-1.4,3-1.6,4.6l2,0.3C4.4,12.5,4.9,11.2,5.6,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8,4.8l-0.7-1.9C9.6,3.5,8.2,4.3,7,5.3l1.3,1.5C9.3,6,10.5,5.3,11.8,4.8z" }), children);
119
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,23.991h-12c-4.4111,0-8-3.5887-8-8s3.5889-8,8-8h12c4.4111,0,8,3.5887,8,8s-3.5889,8-8,8ZM10,9.991c-3.3086,0-6,2.6917-6,6s2.6914,6,6,6h12c3.3086,0,6-2.6917,6-6s-2.6914-6-6-6c0,0-12,0-12,0ZM13,15.991c0-1.6569-1.3431-3-3-3s-3,1.3431-3,3,1.3431,3,3,3,3-1.3431,3-3Z" }), children);
115
120
  });
116
- if (process.env.NODE_ENV !== "production") TransformBinary.propTypes = require_iconPropTypes.iconPropTypes;
117
- const TransformCode = react.default.forwardRef(function TransformCode({ children, size = 16, ...rest }, ref) {
118
- return react.default.createElement(require_Icon_js, {
121
+ if (process.env.NODE_ENV !== "production") ToggleOff.propTypes = require_iconPropTypes.iconPropTypes;
122
+ const ToggleOn = /* @__PURE__ */ react.default.forwardRef(function ToggleOn({ children, size = 16, ...rest }, ref) {
123
+ return react.default.createElement(require_Icon.Icon, {
119
124
  width: size,
120
125
  height: size,
121
126
  ref,
@@ -123,11 +128,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
123
128
  viewBox: "0 0 32 32",
124
129
  fill: "currentColor",
125
130
  ...rest
126
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.9005,4.7366c-1.325.4839-2.5369,1.2001-3.5983,2.0895l-1.2829-1.5289c1.2383-1.0377,2.6521-1.8732,4.1979-2.4378l.6832,1.8772ZM3.9009,9.0146c-.8087,1.3865-1.3839,2.9225-1.6776,4.5562l1.9838.3498c.2518-1.3993.7294-2.7205,1.4221-3.9081l-1.7283-.9979ZM4.1932,18.0818l-1.9678.347c.2878,1.6357.8603,3.1745,1.6635,4.5635l1.7302-.9989c-.6884-1.1906-1.1791-2.5095-1.4258-3.9116ZM8.3065,25.1687l-1.293,1.541c1.2365,1.042,2.6556,1.8721,4.2007,2.4393l.6859-1.8845c-1.3211-.489-2.5342-1.203-3.5936-2.0958ZM29.7747,13.5712c-.2878-1.6357-.8603-3.1745-1.6635-4.5635-.8185-1.4156-1.8817-2.67-3.1246-3.7173-1.2365-1.042-2.6557-1.872-4.2007-2.4392-1.493-.5482-3.1035-.8511-4.7858-.8511v2c1.4429,0,2.8219.2625,4.0999.7355,1.321.489,2.5342,1.2031,3.5934,2.0958.4588.3867.8842.8102,1.2835,1.2573.5247.5933.9986,1.2321,1.3982,1.9213.6902,1.1904,1.1827,2.5085,1.4306,3.9084.12.6777.1943,1.3708.1943,2.0817,0,.7123-.0859,1.4019-.2086,2.0792-.2529,1.397-.7322,2.7173-1.4267,3.9049-.7058,1.2069-1.6058,2.2883-2.6725,3.1831-1.061.8899-2.2716,1.6071-3.5941,2.0923-1.2819.4703-2.6584.7405-4.0981.7405v2c1.6817,0,3.2878-.3134,4.7828-.8594,1.5458-.5646,2.9597-1.4001,4.1979-2.4378,1.2458-1.044,2.2957-2.3068,3.1183-3.7174.8087-1.3865,1.3839-2.9225,1.6776-4.5562.1418-.7889.2234-1.5988.2234-2.4292,0-.8298-.0862-1.6384-.2253-2.4288ZM12.7233,14.1082l.9186-.9185.7781-.778-1.4195-1.4117-.6503.6503-1.4218,1.4217-1.729,1.7289-1.1994,1.1993,1.1991,1.1989,1.7292,1.729,1.4218,1.4216.6504.6503,1.4195-1.4118-.7781-.7779-.9186-.9185-1.1173-1.1171-.7748-.7745.7751-.775,1.1171-1.1171ZM19.2768,17.8918l-.9186.9185-.7781.7779,1.4195,1.4118.6504-.6503,1.4218-1.4216,1.7292-1.729,1.1991-1.1989-1.1994-1.1993-1.7291-1.7289-1.4217-1.4217-.6503-.6503-1.4195,1.4117.7781.778.9186.9185,1.1171,1.1171.7751.775-.7748.7745-1.1173,1.1171Z" }), children);
131
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,7.991h12c4.4111,0,8,3.5887,8,8s-3.5889,8-8,8h-12c-4.4111,0-8-3.5887-8-8S5.5889,7.991,10,7.991ZM22,21.991c3.3086,0,6-2.6917,6-6s-2.6914-6-6-6h-12c-3.3086,0-6,2.6917-6,6s2.6914,6,6,6h12ZM19,15.991c0,1.6569,1.3431,3,3,3s3-1.3431,3-3-1.3431-3-3-3-3,1.3431-3,3Z" }), children);
127
132
  });
128
- if (process.env.NODE_ENV !== "production") TransformCode.propTypes = require_iconPropTypes.iconPropTypes;
129
- const TransformInstructions = react.default.forwardRef(function TransformInstructions({ children, size = 16, ...rest }, ref) {
130
- return react.default.createElement(require_Icon_js, {
133
+ if (process.env.NODE_ENV !== "production") ToggleOn.propTypes = require_iconPropTypes.iconPropTypes;
134
+ const ToolBox = /* @__PURE__ */ react.default.forwardRef(function ToolBox({ children, size = 16, ...rest }, ref) {
135
+ return react.default.createElement(require_Icon.Icon, {
131
136
  width: size,
132
137
  height: size,
133
138
  ref,
@@ -135,11 +140,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
135
140
  viewBox: "0 0 32 32",
136
141
  fill: "currentColor",
137
142
  ...rest
138
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V9h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H9v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5l1.4,1.4 l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V23h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8H23z M16,19 c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S17.7,19,16,19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2v2c6.6,0,12,5.4,12,12s-5.4,12-12,12v2c7.7,0,14-6.3,14-14S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.2,25.1L7,26.7c1.2,1,2.6,1.9,4.2,2.4l0.7-1.9C10.5,26.7,9.3,26,8.2,25.1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2,18l-2,0.4C2.5,20,3.1,21.6,3.9,23l1.7-1C4.9,20.8,4.4,19.4,4.2,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.6,10L3.9,9c-0.8,1.4-1.4,3-1.6,4.6l2,0.3C4.4,12.5,4.9,11.2,5.6,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8,4.8l-0.7-1.9C9.6,3.5,8.2,4.3,7,5.3l1.3,1.5C9.3,6,10.5,5.3,11.8,4.8z" }), children);
143
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,9H24V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6V9H5a3,3,0,0,0-3,3V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A3,3,0,0,0,27,9ZM10,6H22V9H10ZM28,26H4V17h8v5h8V17h8ZM14,17h4v3H14ZM4,15V12a1,1,0,0,1,1-1H27a1,1,0,0,1,1,1v3Z" }), children);
139
144
  });
140
- if (process.env.NODE_ENV !== "production") TransformInstructions.propTypes = require_iconPropTypes.iconPropTypes;
141
- const TransformLanguage = react.default.forwardRef(function TransformLanguage({ children, size = 16, ...rest }, ref) {
142
- return react.default.createElement(require_Icon_js, {
145
+ if (process.env.NODE_ENV !== "production") ToolBox.propTypes = require_iconPropTypes.iconPropTypes;
146
+ const ToolKit = /* @__PURE__ */ react.default.forwardRef(function ToolKit({ children, size = 16, ...rest }, ref) {
147
+ return react.default.createElement(require_Icon.Icon, {
143
148
  width: size,
144
149
  height: size,
145
150
  ref,
@@ -147,11 +152,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
147
152
  viewBox: "0 0 32 32",
148
153
  fill: "currentColor",
149
154
  ...rest
150
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 19H18V21H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 15H22V17H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 11H22V13H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2v2c6.6,0,12,5.4,12,12s-5.4,12-12,12v2c7.7,0,14-6.3,14-14S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.2,25.1L7,26.7c1.2,1,2.6,1.9,4.2,2.4l0.7-1.9C10.5,26.7,9.3,26,8.2,25.1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2,18l-2,0.4C2.5,20,3.1,21.6,3.9,23l1.7-1C4.9,20.8,4.4,19.4,4.2,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.6,10L3.9,9c-0.8,1.4-1.4,3-1.6,4.6l2,0.3C4.4,12.5,4.9,11.2,5.6,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8,4.8l-0.7-1.9C9.6,3.5,8.2,4.3,7,5.3l1.3,1.5C9.3,6,10.5,5.3,11.8,4.8z" }), children);
155
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.9141,24.5l4.257-4.2568-1.414-1.4141L7.5,23.0859l-.793-.7929a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l3,3a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414ZM5,28.5859,3.4141,27,6,24.4141,7.5859,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,30a6.0067,6.0067,0,0,1-6-6,5.84,5.84,0,0,1,.2109-1.5469l-8.664-8.6638A5.8483,5.8483,0,0,1,8,14,5.9757,5.9757,0,0,1,2.4228,5.8164l.5577-1.4219L6.293,7.707a1.0233,1.0233,0,0,0,1.4135,0,.999.999,0,0,0,0-1.4141L4.3936,2.979l1.4233-.5571A5.9772,5.9772,0,0,1,14,8a5.84,5.84,0,0,1-.2109,1.5469l8.664,8.6635A5.8548,5.8548,0,0,1,24,18a5.9755,5.9755,0,0,1,5.5771,8.1836L29.02,27.6055,25.707,24.293a1.0233,1.0233,0,0,0-1.4135,0,.999.999,0,0,0-.0005,1.4141L27.6055,29.02l-1.4219.5579A5.96,5.96,0,0,1,24,30ZM10.0625,11.4763,20.5234,21.9375l-.2392.6094A3.9754,3.9754,0,0,0,23.75,27.9922l-.8711-.8711a2.9992,2.9992,0,0,1,0-4.2424,3.0721,3.0721,0,0,1,4.2427.0005l.8706.8708a3.9759,3.9759,0,0,0-5.4458-3.4658l-.6094.2385-10.46-10.46.2392-.6094A3.9755,3.9755,0,0,0,8.2505,4.0078l.8706.8711a2.9992,2.9992,0,0,1,0,4.2424,3.0721,3.0721,0,0,1-4.2427-.0005L4.0078,8.25a3.975,3.975,0,0,0,5.4453,3.4656Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.1226,2.85a3.0716,3.0716,0,0,0-4.2422,0L17.4,10.33l1.4141,1.414,7.48-7.48a1.0244,1.0244,0,0,1,1.4141,0,1.002,1.002,0,0,1,0,1.4145l-7.48,7.48,1.414,1.4141,7.48-7.4795A3.0031,3.0031,0,0,0,29.1226,2.85Z" }), children);
151
156
  });
152
- if (process.env.NODE_ENV !== "production") TransformLanguage.propTypes = require_iconPropTypes.iconPropTypes;
153
- const TransformPipeline = react.default.forwardRef(function TransformPipeline({ children, size = 16, ...rest }, ref) {
154
- return react.default.createElement(require_Icon_js, {
157
+ if (process.env.NODE_ENV !== "production") ToolKit.propTypes = require_iconPropTypes.iconPropTypes;
158
+ const Tools = /* @__PURE__ */ react.default.forwardRef(function Tools({ children, size = 16, ...rest }, ref) {
159
+ return react.default.createElement(require_Icon.Icon, {
155
160
  width: size,
156
161
  height: size,
157
162
  ref,
@@ -159,11 +164,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
159
164
  viewBox: "0 0 32 32",
160
165
  fill: "currentColor",
161
166
  ...rest
162
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,11l-1.4,1.4,2.6,2.6h-5.2v-2c0-1.1-.9-2-2-2h-6c-1.1,0-2,.9-2,2v2h-3.2c-.4-1.2-1.5-2-2.8-2s-3,1.3-3,3,1.3,3,3,3,2.4-.8,2.8-2h3.2v2c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-2h5.2l-2.6,2.6,1.4,1.4,5-5-5-5ZM19,19h-6v-6h6v6Z" }), children);
167
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.1,2A9.8,9.8,0,0,0,6.7,3.6L13.1,10a2.1,2.1,0,0,1,.2,3,2.1,2.1,0,0,1-3-.2L3.7,6.4A9.84,9.84,0,0,0,2,12.1,10.14,10.14,0,0,0,12.1,22.2a10.9,10.9,0,0,0,2.6-.3l6.7,6.7a5,5,0,0,0,7.1-7.1l-6.7-6.7a10.9,10.9,0,0,0,.3-2.6A10,10,0,0,0,12.1,2Zm8,10.1a7.61,7.61,0,0,1-.3,2.1l-.3,1.1.8.8L27,22.8a2.88,2.88,0,0,1,.9,2.1A2.72,2.72,0,0,1,27,27a2.9,2.9,0,0,1-4.2,0l-6.7-6.7-.8-.8-1.1.3a7.61,7.61,0,0,1-2.1.3,8.27,8.27,0,0,1-5.7-2.3A7.63,7.63,0,0,1,4,12.1a8.33,8.33,0,0,1,.3-2.2l4.4,4.4a4.14,4.14,0,0,0,5.9.2,4.14,4.14,0,0,0-.2-5.9L10,4.2a6.45,6.45,0,0,1,2-.3,8.27,8.27,0,0,1,5.7,2.3A8.49,8.49,0,0,1,20.1,12.1Z" }), children);
163
168
  });
164
- if (process.env.NODE_ENV !== "production") TransformPipeline.propTypes = require_iconPropTypes.iconPropTypes;
165
- const Transgender = react.default.forwardRef(function Transgender({ children, size = 16, ...rest }, ref) {
166
- return react.default.createElement(require_Icon_js, {
169
+ if (process.env.NODE_ENV !== "production") Tools.propTypes = require_iconPropTypes.iconPropTypes;
170
+ const ToolsAlt = /* @__PURE__ */ react.default.forwardRef(function ToolsAlt({ children, size = 16, ...rest }, ref) {
171
+ return react.default.createElement(require_Icon.Icon, {
167
172
  width: size,
168
173
  height: size,
169
174
  ref,
@@ -171,11 +176,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
171
176
  viewBox: "0 0 32 32",
172
177
  fill: "currentColor",
173
178
  ...rest
174
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,2V4h4.5859l-6.4016,6.4014a6.9474,6.9474,0,0,0-8.3686,0L10.4143,9,13,6.4141,11.5857,5,9,7.5859,5.4141,4H10V2H2v8H4V5.4141L7.5859,9,5,11.5854,6.4143,13,9,10.4141l1.4014,1.4013A6.9785,6.9785,0,0,0,15,22.92V25H11v2h4v3h2V27h4V25H17V22.92a6.9785,6.9785,0,0,0,4.5984-11.1045L28,5.4141V10h2V2ZM16,21a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,16,21Z" }), children);
179
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.1,16l6.3-6.3c0.8-0.8,0.8-2,0-2.8l-4.2-4.2c-0.8-0.8-2-0.8-2.8,0L16,8.9L9.7,2.6c-0.8-0.8-2-0.8-2.8,0L2.6,6.8 c-0.8,0.8-0.8,2,0,2.8L8.9,16L2,22.9V30h7.1l6.9-6.9l6.3,6.3c0.8,0.8,2,0.8,2.8,0l4.2-4.2c0.8-0.8,0.8-2,0-2.8L23.1,16z M23.8,4 L28,8.2l-6.3,6.3l-4.2-4.2L23.8,4z M8.2,28H4v-4.2l6.3-6.3l4.2,4.2L8.2,28z M23.8,28L4,8.2L8.2,4l3.5,3.5L9.6,9.6l1.4,1.4l2.1-2.1 l4.2,4.2l-2.1,2.1l1.4,1.4l2.1-2.1l4.2,4.2L21,20.9l1.4,1.4l2.1-2.1l3.5,3.5L23.8,28z" }), children);
175
180
  });
176
- if (process.env.NODE_ENV !== "production") Transgender.propTypes = require_iconPropTypes.iconPropTypes;
177
- const Translate = react.default.forwardRef(function Translate({ children, size = 16, ...rest }, ref) {
178
- return react.default.createElement(require_Icon_js, {
181
+ if (process.env.NODE_ENV !== "production") ToolsAlt.propTypes = require_iconPropTypes.iconPropTypes;
182
+ const TopDataSets = /* @__PURE__ */ react.default.forwardRef(function TopDataSets({ children, size = 16, ...rest }, ref) {
183
+ return react.default.createElement(require_Icon.Icon, {
179
184
  width: size,
180
185
  height: size,
181
186
  ref,
@@ -183,11 +188,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
183
188
  viewBox: "0 0 32 32",
184
189
  fill: "currentColor",
185
190
  ...rest
186
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.85,29H30L24,14H21.65l-6,15H17.8l1.6-4h6.85ZM20.2,23l2.62-6.56L25.45,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,7V5H11V2H9V5H2V7H12.74a14.71,14.71,0,0,1-3.19,6.18A13.5,13.5,0,0,1,7.26,9H5.16a16.47,16.47,0,0,0,3,5.58A16.84,16.84,0,0,1,3,18l.75,1.86A18.47,18.47,0,0,0,9.53,16a16.92,16.92,0,0,0,5.76,3.84L16,18a14.48,14.48,0,0,1-5.12-3.37A17.64,17.64,0,0,0,14.8,7Z" }), children);
191
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,2.01c-.34-.01-.67-.01-1-.01C7.7,2,2,3.25,2,6v18c0,2.75,5.7,4,11,4,.33,0,.66,0,1-.01v-2.01c-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.66,0,1-.01v-2.01c-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.66,0,1-.01,4.99-.1501,10-1.4099,10-3.99v-6c0-2.5801-5.01-3.8401-10-3.99ZM22,11.99c-.15.52-2.82,1.8401-8,1.99-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.67,0,1-.02,3.04-.0801,6.08-.5898,8-1.55v3.5601ZM14,7.98c-.32.01-.66.02-1,.02-5.84,0-8.84-1.46-9-1.98v-.01c.16-.55,3.16-2.01,9-2.01.34,0,.68.01,1,.02,5.15.1499,7.81,1.4399,8,1.98-.19.54-2.85,1.8301-8,1.98ZM30,28.585l-2.832-2.832c.524-.7905.833-1.7356.833-2.7529,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0173,0,1.9624-.3091,2.7529-.833l2.832,2.832,1.4141-1.4141ZM23.001,26c-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3-1.3457,3-3,3Z" }), children);
187
192
  });
188
- if (process.env.NODE_ENV !== "production") Translate.propTypes = require_iconPropTypes.iconPropTypes;
189
- const TransmissionLte = react.default.forwardRef(function TransmissionLte({ children, size = 16, ...rest }, ref) {
190
- return react.default.createElement(require_Icon_js, {
193
+ if (process.env.NODE_ENV !== "production") TopDataSets.propTypes = require_iconPropTypes.iconPropTypes;
194
+ const TopPrograms = /* @__PURE__ */ react.default.forwardRef(function TopPrograms({ children, size = 16, ...rest }, ref) {
195
+ return react.default.createElement(require_Icon.Icon, {
191
196
  width: size,
192
197
  height: size,
193
198
  ref,
@@ -195,11 +200,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
195
200
  viewBox: "0 0 32 32",
196
201
  fill: "currentColor",
197
202
  ...rest
198
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.57,30l.9333-2h8.9928l.9333,2h2.2072L17,15.7778V11H15v4.7778L8.3631,30ZM16,18.3647,17.6965,22h-3.393ZM13.37,24h5.26l.9333,2H12.4369Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.7832,9.3325a7.0007,7.0007,0,0,1,10.4341,0l-1.49,1.334a5,5,0,0,0-7.4537,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.1992,6.3994a11.0019,11.0019,0,0,1,17.6006,0L23.2,7.6a9.0009,9.0009,0,0,0-14.4014,0Z" }), children);
203
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.999,28.5859l-2.832-2.832c.524-.7905.833-1.7356.833-2.7529,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0173,0,1.9624-.3091,2.7529-.833l2.832,2.832,1.4141-1.4141ZM23,26.001c-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3-1.3457,3-3,3ZM28,2H4c-1.103,0-2,.8975-2,2v20c0,1.1025.897,2,2,2h10v-2H4v-14h24v4h2V4c0-1.1025-.897-2-2-2ZM4,8v-4h24v4H4ZM7,6c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM10,6c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1Z" }), children);
199
204
  });
200
- if (process.env.NODE_ENV !== "production") TransmissionLte.propTypes = require_iconPropTypes.iconPropTypes;
201
- const Transpose = react.default.forwardRef(function Transpose({ children, size = 16, ...rest }, ref) {
202
- return react.default.createElement(require_Icon_js, {
205
+ if (process.env.NODE_ENV !== "production") TopPrograms.propTypes = require_iconPropTypes.iconPropTypes;
206
+ const Tornado = /* @__PURE__ */ react.default.forwardRef(function Tornado({ children, size = 16, ...rest }, ref) {
207
+ return react.default.createElement(require_Icon.Icon, {
203
208
  width: size,
204
209
  height: size,
205
210
  ref,
@@ -207,11 +212,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
207
212
  viewBox: "0 0 32 32",
208
213
  fill: "currentColor",
209
214
  ...rest
210
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,26H14V24h5a5.0055,5.0055,0,0,0,5-5V14h2v5A7.0078,7.0078,0,0,1,19,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2.0023,2.0023,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2H8a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,8,30ZM4,14V28H8V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H14a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V8A2.0023,2.0023,0,0,1,28,10ZM14,4V8H28V4Z" }), children);
215
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 26H20V28H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 22H18V24H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 18H18V20H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 14H20V16H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 10H24V12H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H26V8H8z" }), children);
211
216
  });
212
- if (process.env.NODE_ENV !== "production") Transpose.propTypes = require_iconPropTypes.iconPropTypes;
213
- const TrashCan = react.default.forwardRef(function TrashCan({ children, size = 16, ...rest }, ref) {
214
- return react.default.createElement(require_Icon_js, {
217
+ if (process.env.NODE_ENV !== "production") Tornado.propTypes = require_iconPropTypes.iconPropTypes;
218
+ const TornadoWarning = /* @__PURE__ */ react.default.forwardRef(function TornadoWarning({ children, size = 16, ...rest }, ref) {
219
+ return react.default.createElement(require_Icon.Icon, {
215
220
  width: size,
216
221
  height: size,
217
222
  ref,
@@ -219,11 +224,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
219
224
  viewBox: "0 0 32 32",
220
225
  fill: "currentColor",
221
226
  ...rest
222
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12H14V24H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 12H20V24H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,6V8H6V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V8h2V6ZM8,28V8H24V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H20V4H12z" }), children);
227
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 4H18V6H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 8H16V10H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H14V14H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16H12V18H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20H12V22H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 24H14V26H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 28H16V30H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
228
+ fill: "none",
229
+ d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"
230
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), children);
223
231
  });
224
- if (process.env.NODE_ENV !== "production") TrashCan.propTypes = require_iconPropTypes.iconPropTypes;
225
- const Tree = react.default.forwardRef(function Tree({ children, size = 16, ...rest }, ref) {
226
- return react.default.createElement(require_Icon_js, {
232
+ if (process.env.NODE_ENV !== "production") TornadoWarning.propTypes = require_iconPropTypes.iconPropTypes;
233
+ const Touch_1 = /* @__PURE__ */ react.default.forwardRef(function Touch_1({ children, size = 16, ...rest }, ref) {
234
+ return react.default.createElement(require_Icon.Icon, {
227
235
  width: size,
228
236
  height: size,
229
237
  ref,
@@ -231,11 +239,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
231
239
  viewBox: "0 0 32 32",
232
240
  fill: "currentColor",
233
241
  ...rest
234
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0023,2.0023,0,0,1,12,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H19a2.0024,2.0024,0,0,1-2-2V17h6a4.0008,4.0008,0,0,0,3.981-4.396A4.1489,4.1489,0,0,0,22.7853,9H21.2016L21.025,8.221C20.452,5.6961,18.0308,4,15,4A6.02,6.02,0,0,0,9.5585,7.4859L9.25,8.1531l-.863-.1143A2.771,2.771,0,0,0,8,8a4,4,0,1,0,0,8v2A6,6,0,1,1,8,6c.0264,0,.0525,0,.0786.001A8.0271,8.0271,0,0,1,15,2c3.6788,0,6.6923,1.9776,7.7516,5h.0337a6.1641,6.1641,0,0,1,6.1872,5.4141A6.0011,6.0011,0,0,1,23,19l-4,0v9h3Z" }), children);
242
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,8H18A5,5,0,0,0,8,8H6A7,7,0,0,1,20,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,15a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,21,14a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,16,13.18V8h0a3,3,0,0,0-6,0V19.1L7.77,17.58h0A2.93,2.93,0,0,0,6,17a3,3,0,0,0-2.12,5.13l8,7.3A6.16,6.16,0,0,0,16,31h5a7,7,0,0,0,7-7V18A3,3,0,0,0,25,15Zm1,9a5,5,0,0,1-5,5H16a4.17,4.17,0,0,1-2.76-1L5.29,20.7A1,1,0,0,1,5,20a1,1,0,0,1,1.6-.8L12,22.9V8a1,1,0,0,1,2,0h0V19h2V16a1,1,0,0,1,2,0v3h2V17a1,1,0,0,1,2,0v2h2V18a1,1,0,0,1,2,0Z" }), children);
235
243
  });
236
- if (process.env.NODE_ENV !== "production") Tree.propTypes = require_iconPropTypes.iconPropTypes;
237
- const TreeFallRisk = react.default.forwardRef(function TreeFallRisk({ children, size = 16, ...rest }, ref) {
238
- return react.default.createElement(require_Icon_js, {
244
+ if (process.env.NODE_ENV !== "production") Touch_1.propTypes = require_iconPropTypes.iconPropTypes;
245
+ const Touch_1Filled = /* @__PURE__ */ react.default.forwardRef(function Touch_1Filled({ children, size = 16, ...rest }, ref) {
246
+ return react.default.createElement(require_Icon.Icon, {
239
247
  width: size,
240
248
  height: size,
241
249
  ref,
@@ -243,15 +251,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
243
251
  viewBox: "0 0 32 32",
244
252
  fill: "currentColor",
245
253
  ...rest
246
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
247
- fill: "none",
248
- d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z",
249
- "data-icon-path": "inner-path"
250
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,19V17H17V28a2.0027,2.0027,0,0,0,2,2h3V28H19V19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0024,2.0024,0,0,1,12,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.6638,5.0059l.96-1.7671A8.9324,8.9324,0,0,0,15,2,8.0275,8.0275,0,0,0,8.0786,6.001C8.0525,6,8.0264,6,8,6A6,6,0,0,0,8,18V16A4,4,0,0,1,8,8a2.7009,2.7009,0,0,1,.387.0391l.863.1142.3086-.6675A6.0192,6.0192,0,0,1,15,4,6.8916,6.8916,0,0,1,18.6638,5.0059Z" }), children);
254
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,2A6.0067,6.0067,0,0,0,7,8H9a4,4,0,0,1,8,0h2A6.0067,6.0067,0,0,0,13,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30H16.5606a4,4,0,0,1-2.7088-1.0566L4.6513,20.4771A2.0018,2.0018,0,0,1,4.77,17.4219a2.0743,2.0743,0,0,1,2.6578.1728L11,20.8569V8a2,2,0,0,1,4,0v7a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v7A6,6,0,0,1,21,30Z" }), children);
251
255
  });
252
- if (process.env.NODE_ENV !== "production") TreeFallRisk.propTypes = require_iconPropTypes.iconPropTypes;
253
- const TreeView = react.default.forwardRef(function TreeView({ children, size = 16, ...rest }, ref) {
254
- return react.default.createElement(require_Icon_js, {
256
+ if (process.env.NODE_ENV !== "production") Touch_1Filled.propTypes = require_iconPropTypes.iconPropTypes;
257
+ const Touch_1Down = /* @__PURE__ */ react.default.forwardRef(function Touch_1Down({ children, size = 16, ...rest }, ref) {
258
+ return react.default.createElement(require_Icon.Icon, {
255
259
  width: size,
256
260
  height: size,
257
261
  ref,
@@ -259,11 +263,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
259
263
  viewBox: "0 0 32 32",
260
264
  fill: "currentColor",
261
265
  ...rest
262
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20V12H22v3H17V7a2,2,0,0,0-2-2H10V2H2v8h8V7h5V25a2,2,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3ZM8,8H4V4H8ZM24,24h4v4H24Zm0-10h4v4H24Z" }), children);
266
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,24H18A5,5,0,0,1,8,24H6a7,7,0,0,0,14,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,14V8a7.0085,7.0085,0,0,0-7-7H16a6.1457,6.1457,0,0,0-4.1055,1.5664L3.8833,9.874a2.9986,2.9986,0,0,0,3.881,4.55l.0008.0012L10,12.8955V24a3,3,0,0,0,6,0h0l0-5.1843a2.939,2.939,0,0,0,3.5294-1.2171A2.963,2.963,0,0,0,21,18a2.9936,2.9936,0,0,0,2.5292-1.4014A2.963,2.963,0,0,0,25,17,3.0033,3.0033,0,0,0,28,14Zm-2,0a1,1,0,0,1-2,0V13H22v2a1,1,0,0,1-2,0V13H18v3a1,1,0,0,1-2,0V13H14V24h.0005A1,1,0,0,1,12,24V9.1045L6.6,12.8008a.9993.9993,0,0,1-1.3081-1.5044l7.9507-7.2515A4.1483,4.1483,0,0,1,16,3h5a5.0059,5.0059,0,0,1,5,5Z" }), children);
263
267
  });
264
- if (process.env.NODE_ENV !== "production") TreeView.propTypes = require_iconPropTypes.iconPropTypes;
265
- const TreeViewAlt = react.default.forwardRef(function TreeViewAlt({ children, size = 16, ...rest }, ref) {
266
- return react.default.createElement(require_Icon_js, {
268
+ if (process.env.NODE_ENV !== "production") Touch_1Down.propTypes = require_iconPropTypes.iconPropTypes;
269
+ const Touch_1DownFilled = /* @__PURE__ */ react.default.forwardRef(function Touch_1DownFilled({ children, size = 16, ...rest }, ref) {
270
+ return react.default.createElement(require_Icon.Icon, {
267
271
  width: size,
268
272
  height: size,
269
273
  ref,
@@ -271,14 +275,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
271
275
  viewBox: "0 0 32 32",
272
276
  fill: "currentColor",
273
277
  ...rest
274
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
275
- d: "M23,9h6a2,2,0,0,0,2-2V3a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2V4H11V3A2,2,0,0,0,9,1H3A2,2,0,0,0,1,3V7A2,2,0,0,0,3,9H9a2,2,0,0,0,2-2V6h4V26a2.0023,2.0023,0,0,0,2,2h4v1a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V25a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2v1H17V17h4v1a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V14a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2v1H17V6h4V7A2,2,0,0,0,23,9Zm0-6h6V7H23ZM9,7H3V3H9ZM23,25h6v4H23Zm0-11h6v4H23Z",
276
- transform: "translate(0 .005)"
277
- }), children);
278
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30a6.0067,6.0067,0,0,1-6-6H9a4,4,0,0,0,8,0h2A6.0067,6.0067,0,0,1,13,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,2H16.5606a4,4,0,0,0-2.7088,1.0566L4.6513,11.5229A2.0018,2.0018,0,0,0,4.77,14.5781a2.0743,2.0743,0,0,0,2.6578-.1728L11,11.1431V24a2,2,0,0,0,4,0V17a2,2,0,0,0,4,0V16a2,2,0,0,0,4,0V15a2,2,0,0,0,4,0V8A6,6,0,0,0,21,2Z" }), children);
278
279
  });
279
- if (process.env.NODE_ENV !== "production") TreeViewAlt.propTypes = require_iconPropTypes.iconPropTypes;
280
- const TriangleDownOutline = react.default.forwardRef(function TriangleDownOutline({ children, size = 16, ...rest }, ref) {
281
- return react.default.createElement(require_Icon_js, {
280
+ if (process.env.NODE_ENV !== "production") Touch_1DownFilled.propTypes = require_iconPropTypes.iconPropTypes;
281
+ const Touch_2 = /* @__PURE__ */ react.default.forwardRef(function Touch_2({ children, size = 16, ...rest }, ref) {
282
+ return react.default.createElement(require_Icon.Icon, {
282
283
  width: size,
283
284
  height: size,
284
285
  ref,
@@ -286,14 +287,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
286
287
  viewBox: "0 0 32 32",
287
288
  fill: "currentColor",
288
289
  ...rest
289
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
290
- strokeWidth: "0",
291
- d: "m2.1245,4.4883l13.0195,23.9868c.1865.3438.5212.5249.856.5249.3345,0,.6689-.1812.8555-.5249L29.875,4.4883c.0862-.1582.1255-.3257.125-.4883-.0017-.5229-.4114-1-.9805-1H2.9802c-.5691,0-.9788.4771-.9802,1-.0005.1626.0386.3301.1245.4883Zm25.1985.5117l-11.323,20.8677L4.677,5h22.646Z"
292
- }), children);
290
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,28H23V15A7,7,0,1,0,9,15V28H7V15a9,9,0,0,1,18,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,20H11V15a5,5,0,0,1,10,0Zm-8-2h6V15a3,3,0,0,0-6,0Z" }), children);
293
291
  });
294
- if (process.env.NODE_ENV !== "production") TriangleDownOutline.propTypes = require_iconPropTypes.iconPropTypes;
295
- const TriangleDownSolid = react.default.forwardRef(function TriangleDownSolid({ children, size = 16, ...rest }, ref) {
296
- return react.default.createElement(require_Icon_js, {
292
+ if (process.env.NODE_ENV !== "production") Touch_2.propTypes = require_iconPropTypes.iconPropTypes;
293
+ const Touch_2Filled = /* @__PURE__ */ react.default.forwardRef(function Touch_2Filled({ children, size = 16, ...rest }, ref) {
294
+ return react.default.createElement(require_Icon.Icon, {
297
295
  width: size,
298
296
  height: size,
299
297
  ref,
@@ -301,14 +299,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
301
299
  viewBox: "0 0 32 32",
302
300
  fill: "currentColor",
303
301
  ...rest
304
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
305
- strokeWidth: "0",
306
- d: "m29.0194,3c.5692,0,.979.4772.9806,1,.0005.1628-.0388.3299-.1249.4885l-13.0196,23.9867c-.1865.3435-.521.5248-.8555.5248s-.6694-.1812-.8559-.5248L2.1246,4.4885c-.0861-.1586-.1251-.3257-.1246-.4885.0016-.5228.4111-1,.9803-1h26.0391Z"
307
- }), children);
302
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,12a3.0033,3.0033,0,0,0-3,3v3h6V15A3.0033,3.0033,0,0,0,16,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,6a9.0092,9.0092,0,0,0-9,9V28H25V15A9.01,9.01,0,0,0,16,6Zm5,14H11V15a5,5,0,0,1,10,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z" }), children);
308
303
  });
309
- if (process.env.NODE_ENV !== "production") TriangleDownSolid.propTypes = require_iconPropTypes.iconPropTypes;
310
- const TriangleLeftOutline = react.default.forwardRef(function TriangleLeftOutline({ children, size = 16, ...rest }, ref) {
311
- return react.default.createElement(require_Icon_js, {
304
+ if (process.env.NODE_ENV !== "production") Touch_2Filled.propTypes = require_iconPropTypes.iconPropTypes;
305
+ const TouchInteraction = /* @__PURE__ */ react.default.forwardRef(function TouchInteraction({ children, size = 16, ...rest }, ref) {
306
+ return react.default.createElement(require_Icon.Icon, {
312
307
  width: size,
313
308
  height: size,
314
309
  ref,
@@ -316,14 +311,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
316
311
  viewBox: "0 0 32 32",
317
312
  fill: "currentColor",
318
313
  ...rest
319
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
320
- strokeWidth: "0",
321
- d: "m27.5117,2.1245L3.5249,15.144c-.3438.1865-.5249.5212-.5249.856,0,.3345.1812.6689.5249.8555l23.9868,13.0195c.1582.0862.3257.1255.4883.125.5229-.0017,1-.4114,1-.9805V2.9802c0-.5691-.4771-.9788-1-.9802-.1626-.0005-.3301.0386-.4883.1245Zm-.5117,25.1985L6.1323,16,27,4.677v22.646Z"
322
- }), children);
314
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,21V20a1,1,0,0,1,2,0V30h2V20a3.0033,3.0033,0,0,0-3-3,2.964,2.964,0,0,0-1.4708.4014,2.9541,2.9541,0,0,0-4-1A2.9934,2.9934,0,0,0,19,15a2.96,2.96,0,0,0-1,.1846L18,10h0a3,3,0,0,0-6,0V21.1045L9.7651,19.5752l-.0008.001a2.999,2.999,0,0,0-3.881,4.55L12.3223,30l1.3479-1.478L7.2915,22.7036A.9908.9908,0,0,1,7,22a1.0005,1.0005,0,0,1,1.6-.8008L14,24.8955V10a1,1,0,0,1,2,0h0V21h2V18a1,1,0,0,1,2,0v3h2V19a1,1,0,0,1,2,0v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H22V10h6V4H4v6H8v2H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,12Z" }), children);
323
315
  });
324
- if (process.env.NODE_ENV !== "production") TriangleLeftOutline.propTypes = require_iconPropTypes.iconPropTypes;
325
- const TriangleLeftSolid = react.default.forwardRef(function TriangleLeftSolid({ children, size = 16, ...rest }, ref) {
326
- return react.default.createElement(require_Icon_js, {
316
+ if (process.env.NODE_ENV !== "production") TouchInteraction.propTypes = require_iconPropTypes.iconPropTypes;
317
+ const Tour = /* @__PURE__ */ react.default.forwardRef(function Tour({ children, size = 16, ...rest }, ref) {
318
+ return react.default.createElement(require_Icon.Icon, {
327
319
  width: size,
328
320
  height: size,
329
321
  ref,
@@ -331,14 +323,15 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
331
323
  viewBox: "0 0 32 32",
332
324
  fill: "currentColor",
333
325
  ...rest
334
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
335
- strokeWidth: "0",
336
- d: "m29,29.0194c0,.5692-.4772.979-1,.9806-.1628.0005-.3299-.0388-.4885-.1249L3.5248,16.8556c-.3435-.1865-.5248-.521-.5248-.8555s.1812-.6694.5248-.8559L27.5115,2.1246c.1586-.0861.3257-.1251.4885-.1246.5228.0016,1,.4111,1,.9803v26.0391Z"
337
- }), children);
326
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,18l-4.7788-6.4019c-.7979-1.0562-1.2212-2.302-1.2212-3.5981,0-3.3083,2.6914-6,6-6s6,2.6917,6,6c0,1.2961-.4233,2.542-1.2246,3.6028l-4.7754,6.3972Zm0-14c-2.2056,0-4,1.7944-4,4,0,.8577.2837,1.6865.8203,2.3972l3.1797,4.2595,3.1763-4.2549c.54-.7153.8237-1.5442.8237-2.4019,0-2.2056-1.7944-4-4-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
327
+ cx: "24",
328
+ cy: "8",
329
+ r: "2"
330
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m28,18v4H4V6h10v-2H4c-1.1045,0-2,.8955-2,2v16c0,1.1045.8955,2,2,2h8v4h-4v2h16v-2h-4v-4h8c1.1046,0,2-.8955,2-2v-4h-2Zm-10,10h-4v-4h4v4Z" }), children);
338
331
  });
339
- if (process.env.NODE_ENV !== "production") TriangleLeftSolid.propTypes = require_iconPropTypes.iconPropTypes;
340
- const TriangleOutline = react.default.forwardRef(function TriangleOutline({ children, size = 16, ...rest }, ref) {
341
- return react.default.createElement(require_Icon_js, {
332
+ if (process.env.NODE_ENV !== "production") Tour.propTypes = require_iconPropTypes.iconPropTypes;
333
+ const Trace = /* @__PURE__ */ react.default.forwardRef(function Trace({ children, size = 16, ...rest }, ref) {
334
+ return react.default.createElement(require_Icon.Icon, {
342
335
  width: size,
343
336
  height: size,
344
337
  ref,
@@ -346,14 +339,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
346
339
  viewBox: "0 0 32 32",
347
340
  fill: "currentColor",
348
341
  ...rest
349
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
350
- strokeWidth: "0",
351
- d: "m29.8755,27.5117L16.856,3.5249c-.1865-.3438-.5212-.5249-.856-.5249-.3345,0-.6689.1812-.8555.5249L2.125,27.5117c-.0862.1582-.1255.3257-.125.4883.0017.5229.4114,1,.9805,1h26.0393c.5691,0,.9788-.4771.9802-1,.0005-.1626-.0386-.3301-.1245-.4883Zm-25.1985-.5117L16,6.1323l11.323,20.8677H4.677Z"
352
- }), children);
342
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,27.0001h9.0001v2H4c-1.1,0-2-.9-2-2V3.0001h2v7.9999h9v2H4v6h9v2H4v6.0001ZM10,2.9999v2h20v-2s-20,0-20,0ZM19.0001,13h10.9999v-2h-10.9999v2ZM19.0001,21h10.9999v-2h-10.9999v2ZM19.0001,29.0001h10.9999v-2h-10.9999v2Z" }), children);
353
343
  });
354
- if (process.env.NODE_ENV !== "production") TriangleOutline.propTypes = require_iconPropTypes.iconPropTypes;
355
- const TriangleRightOutline = react.default.forwardRef(function TriangleRightOutline({ children, size = 16, ...rest }, ref) {
356
- return react.default.createElement(require_Icon_js, {
344
+ if (process.env.NODE_ENV !== "production") Trace.propTypes = require_iconPropTypes.iconPropTypes;
345
+ const TrafficEvent = /* @__PURE__ */ react.default.forwardRef(function TrafficEvent({ children, size = 16, ...rest }, ref) {
346
+ return react.default.createElement(require_Icon.Icon, {
357
347
  width: size,
358
348
  height: size,
359
349
  ref,
@@ -361,14 +351,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
361
351
  viewBox: "0 0 32 32",
362
352
  fill: "currentColor",
363
353
  ...rest
364
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
365
- strokeWidth: "0",
366
- d: "m4.4883,29.8755l23.9868-13.0195c.3438-.1865.5249-.5212.5249-.856,0-.3345-.1812-.6689-.5249-.8555L4.4883,2.125c-.1582-.0862-.3257-.1255-.4883-.125-.5229.0017-1,.4114-1,.9805v26.0393c0,.5691.4771.9788,1,.9802.1626.0005.3301-.0386.4883-.1245Zm.5117-25.1985l20.8677,11.323L5,27.323V4.677Z"
367
- }), children);
354
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 21H17V23H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.2456,8,25.96,14H30V12H27.4688l-1.3-4.5488A2.0077,2.0077,0,0,0,24.2456,6H22.8972l-.7287-2.5488A2.0077,2.0077,0,0,0,20.2456,2H7.7544A2.0078,2.0078,0,0,0,5.8315,3.4507L4.5312,8H2v2H6.04L7.7544,4H20.2456l.5715,2H11.7544A2.008,2.008,0,0,0,9.8315,7.45L8.8171,11H7.7144a1.9981,1.9981,0,0,0-1.8916,1.3516L4.5715,16H2v2H4v7a2.0025,2.0025,0,0,0,2,2v3H8V27H20v3h2V27a2.0025,2.0025,0,0,0,2-2V18h2V16H23.4287l-1.251-3.6475A1.9988,1.9988,0,0,0,20.2856,11H10.897l.8574-3ZM22,19v2H20v2h2v2H6V23H8V21H6V19Zm-.3429-2H6.3428l1.3716-4H20.2856Z" }), children);
368
355
  });
369
- if (process.env.NODE_ENV !== "production") TriangleRightOutline.propTypes = require_iconPropTypes.iconPropTypes;
370
- const TriangleRightSolid = react.default.forwardRef(function TriangleRightSolid({ children, size = 16, ...rest }, ref) {
371
- return react.default.createElement(require_Icon_js, {
356
+ if (process.env.NODE_ENV !== "production") TrafficEvent.propTypes = require_iconPropTypes.iconPropTypes;
357
+ const TrafficFlow = /* @__PURE__ */ react.default.forwardRef(function TrafficFlow({ children, size = 16, ...rest }, ref) {
358
+ return react.default.createElement(require_Icon.Icon, {
372
359
  width: size,
373
360
  height: size,
374
361
  ref,
@@ -376,14 +363,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
376
363
  viewBox: "0 0 32 32",
377
364
  fill: "currentColor",
378
365
  ...rest
379
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
380
- strokeWidth: "0",
381
- d: "m3,2.9806c0-.5692.4772-.979,1-.9806.1628-.0005.3299.0388.4885.1249l23.9867,13.0196c.3435.1865.5248.521.5248.8555s-.1812.6694-.5248.8559L4.4885,29.8754c-.1586.0861-.3257.1251-.4885.1246-.5228-.0016-1-.4111-1-.9803V2.9806Z"
382
- }), children);
366
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 8 22 4 18 8 19.41 9.42 21 7.83 21 18 23 18 23 7.83 24.58 9.41 26 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.59 22.58 11 24.17 11 14 9 14 9 24.17 7.42 22.59 6 24 10 28 14 24 12.59 22.58z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H4V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 2H30V30H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V6H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 10H17V14H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 18H17V22H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V30H15z" }), children);
383
367
  });
384
- if (process.env.NODE_ENV !== "production") TriangleRightSolid.propTypes = require_iconPropTypes.iconPropTypes;
385
- const TriangleSolid = react.default.forwardRef(function TriangleSolid({ children, size = 16, ...rest }, ref) {
386
- return react.default.createElement(require_Icon_js, {
368
+ if (process.env.NODE_ENV !== "production") TrafficFlow.propTypes = require_iconPropTypes.iconPropTypes;
369
+ const TrafficFlowIncident = /* @__PURE__ */ react.default.forwardRef(function TrafficFlowIncident({ children, size = 16, ...rest }, ref) {
370
+ return react.default.createElement(require_Icon.Icon, {
387
371
  width: size,
388
372
  height: size,
389
373
  ref,
@@ -391,14 +375,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
391
375
  viewBox: "0 0 32 32",
392
376
  fill: "currentColor",
393
377
  ...rest
394
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
395
- strokeWidth: "0",
396
- d: "m2.9806,29c-.5692,0-.979-.4772-.9806-1-.0005-.1628.0388-.3299.1249-.4885L15.1444,3.5248c.1865-.3435.521-.5248.8555-.5248s.6694.1812.8559.5248l13.0195,23.9867c.0861.1586.1251.3257.1246.4885-.0016.5228-.4111,1-.9803,1H2.9806Z"
397
- }), children);
378
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 9.42 24.59 8 22.005 10.585 22 10.58 21.995 10.585 19.42 8.01 18 9.42 20.58 12 18 14.58 19.41 16 21.995 13.415 22 13.42 22.005 13.415 24.58 15.99 26 14.58 23.42 12 26 9.42z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 17.42 12.59 16 10.005 18.585 10 18.58 9.995 18.585 7.42 16.01 6 17.42 8.58 20 6 22.58 7.41 24 9.995 21.415 10 21.42 10.005 21.415 12.58 23.99 14 22.58 11.42 20 14 17.42z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H4V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 2H30V30H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V6H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 10H17V14H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 18H17V22H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V30H15z" }), children);
398
379
  });
399
- if (process.env.NODE_ENV !== "production") TriangleSolid.propTypes = require_iconPropTypes.iconPropTypes;
400
- const Trigger = react.default.forwardRef(function Trigger({ children, size = 16, ...rest }, ref) {
401
- return react.default.createElement(require_Icon_js, {
380
+ if (process.env.NODE_ENV !== "production") TrafficFlowIncident.propTypes = require_iconPropTypes.iconPropTypes;
381
+ const TrafficIncident = /* @__PURE__ */ react.default.forwardRef(function TrafficIncident({ children, size = 16, ...rest }, ref) {
382
+ return react.default.createElement(require_Icon.Icon, {
402
383
  width: size,
403
384
  height: size,
404
385
  ref,
@@ -406,11 +387,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
406
387
  viewBox: "0 0 32 32",
407
388
  fill: "currentColor",
408
389
  ...rest
409
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,19l1.4,1.4,5.6-5.6,5.6,5.6,1.4-1.4-7-7-7,7ZM28.6,11.6l-5.6,5.6-5.6-5.6-1.4,1.4,7,7,7-7-1.4-1.4ZM9,22c-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2-.8954-2-2-2ZM23,10c1.1046,0,2-.8954,2-2s-.8954-2-2-2-2,.8954-2,2,.8954,2,2,2Z" }), children);
390
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
391
+ d: "M11.314 11.514H17.314V13.514H11.314z",
392
+ transform: "rotate(-45 14.314 12.514)"
393
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12.0815,23.4329l4.1168,2.3176a2.009,2.009,0,0,0,2.3853-.3344l8.8326-8.8326a2.0088,2.0088,0,0,0,.334-2.3856l-2.2977-4.136,1.79-1.79L25.8283,6.8577,24.4141,8.2719l-4.95-4.95a2.0026,2.0026,0,0,0-2.8285,0L14.5146,1.2008,13.1,2.615l2.1213,2.1214L6.7364,13.2216,4.6151,11.1,3.2009,12.5145l2.1213,2.1213a2.0025,2.0025,0,0,0,0,2.8285l4.95,4.95L8.8577,23.8282l1.4143,1.4142Zm13.92-8.2636-8.8328,8.8328-4.5456-2.5255L23.4767,10.6235ZM9.5649,18.8785l1.4142-1.4142L9.5649,16.05,8.1506,17.4643,6.7364,16.05,18.05,4.7364l1.4143,1.4142L18.05,7.5648,19.4644,8.979l1.4142-1.4142L22.2928,8.979,10.9791,20.2927Z" }), children);
410
394
  });
411
- if (process.env.NODE_ENV !== "production") Trigger.propTypes = require_iconPropTypes.iconPropTypes;
412
- const Trophy = react.default.forwardRef(function Trophy({ children, size = 16, ...rest }, ref) {
413
- return react.default.createElement(require_Icon_js, {
395
+ if (process.env.NODE_ENV !== "production") TrafficIncident.propTypes = require_iconPropTypes.iconPropTypes;
396
+ const TrafficWeatherIncident = /* @__PURE__ */ react.default.forwardRef(function TrafficWeatherIncident({ children, size = 16, ...rest }, ref) {
397
+ return react.default.createElement(require_Icon.Icon, {
414
398
  width: size,
415
399
  height: size,
416
400
  ref,
@@ -418,11 +402,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
418
402
  viewBox: "0 0 32 32",
419
403
  fill: "currentColor",
420
404
  ...rest
421
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,7H24V6a2.0023,2.0023,0,0,0-2-2H10A2.0023,2.0023,0,0,0,8,6V7H6A2.0023,2.0023,0,0,0,4,9v3a4.0045,4.0045,0,0,0,4,4h.322A8.1689,8.1689,0,0,0,15,21.9341V26H10v2H22V26H17V21.9311A7.9661,7.9661,0,0,0,23.74,16H24a4.0045,4.0045,0,0,0,4-4V9A2.0023,2.0023,0,0,0,26,7ZM8,14a2.0023,2.0023,0,0,1-2-2V9H8Zm14,0a6,6,0,0,1-6.1855,5.9971A6.1991,6.1991,0,0,1,10,13.7065V6H22Zm4-2a2.0023,2.0023,0,0,1-2,2V9h2Z" }), children);
405
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 24H4V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 2H30V30H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V6H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 10H17V14H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 18H17V22H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,12A3.8978,3.8978,0,0,1,2,8.223a3.9017,3.9017,0,0,1,.6533-2.0639L5.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L9.3154,6.11A3.9693,3.9693,0,0,1,10,8.223,3.8978,3.8978,0,0,1,6,12Zm0-7.2368L4.3438,7.2257A1.89,1.89,0,0,0,4,8.223a1.9007,1.9007,0,0,0,2,1.7775A1.9007,1.9007,0,0,0,8,8.223a1.98,1.98,0,0,0-.375-1.0466Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,11.7627,9.3438,14.2253A1.89,1.89,0,0,0,9,15.2226,1.9007,1.9007,0,0,0,11,17a1.9007,1.9007,0,0,0,2-1.7774,1.98,1.98,0,0,0-.375-1.0467Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,15.7627,4.3438,18.2253A1.89,1.89,0,0,0,4,19.2226,1.9007,1.9007,0,0,0,6,21a1.9007,1.9007,0,0,0,2-1.7774,1.98,1.98,0,0,0-.375-1.0467Z" }), children);
422
406
  });
423
- if (process.env.NODE_ENV !== "production") Trophy.propTypes = require_iconPropTypes.iconPropTypes;
424
- const TrophyFilled = react.default.forwardRef(function TrophyFilled({ children, size = 16, ...rest }, ref) {
425
- return react.default.createElement(require_Icon_js, {
407
+ if (process.env.NODE_ENV !== "production") TrafficWeatherIncident.propTypes = require_iconPropTypes.iconPropTypes;
408
+ const TrafficCone = /* @__PURE__ */ react.default.forwardRef(function TrafficCone({ children, size = 16, ...rest }, ref) {
409
+ return react.default.createElement(require_Icon.Icon, {
426
410
  width: size,
427
411
  height: size,
428
412
  ref,
@@ -430,11 +414,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
430
414
  viewBox: "0 0 32 32",
431
415
  fill: "currentColor",
432
416
  ...rest
433
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,7H24V6a2.0023,2.0023,0,0,0-2-2H10A2.0023,2.0023,0,0,0,8,6V7H6A2.0023,2.0023,0,0,0,4,9v3a4.0045,4.0045,0,0,0,4,4h.322A8.1689,8.1689,0,0,0,15,21.9341V26H10v2H22V26H17V21.9311A7.9661,7.9661,0,0,0,23.74,16H24a4.0045,4.0045,0,0,0,4-4V9A2.0023,2.0023,0,0,0,26,7ZM8,14a2.0023,2.0023,0,0,1-2-2V9H8Zm18-2a2.0023,2.0023,0,0,1-2,2V9h2Z" }), children);
417
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.7957,28,18.9746,2.7754A1,1,0,0,0,18,2H14a1,1,0,0,0-.9746.7754L7.2043,28H4v2H28V28ZM19.9736,16H12.0264l.9229-4h6.1014Zm.4616,2,.923,4H10.6418l.923-4Zm-5.64-14h2.4092l1.3845,6H13.4109ZM10.18,24H21.82l.923,4H9.2573Z" }), children);
434
418
  });
435
- if (process.env.NODE_ENV !== "production") TrophyFilled.propTypes = require_iconPropTypes.iconPropTypes;
436
- const TropicalStorm = react.default.forwardRef(function TropicalStorm({ children, size = 16, ...rest }, ref) {
437
- return react.default.createElement(require_Icon_js, {
419
+ if (process.env.NODE_ENV !== "production") TrafficCone.propTypes = require_iconPropTypes.iconPropTypes;
420
+ const Train = /* @__PURE__ */ react.default.forwardRef(function Train({ children, size = 16, ...rest }, ref) {
421
+ return react.default.createElement(require_Icon.Icon, {
438
422
  width: size,
439
423
  height: size,
440
424
  ref,
@@ -442,11 +426,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
442
426
  viewBox: "0 0 32 32",
443
427
  fill: "currentColor",
444
428
  ...rest
445
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z" }), children);
429
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,3H11A5.0057,5.0057,0,0,0,6,8V20a4.99,4.99,0,0,0,3.582,4.77L7.7693,29H9.9451l1.7143-4h8.6812l1.7143,4h2.1758L22.418,24.77A4.99,4.99,0,0,0,26,20V8A5.0057,5.0057,0,0,0,21,3ZM11,5H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,5ZM24,19H21v2h2.8157A2.9948,2.9948,0,0,1,21,23H11a2.9948,2.9948,0,0,1-2.8157-2H11V19H8V17H24Zm0-4H8V9H24Z" }), children);
446
430
  });
447
- if (process.env.NODE_ENV !== "production") TropicalStorm.propTypes = require_iconPropTypes.iconPropTypes;
448
- const TropicalStormModelTracks = react.default.forwardRef(function TropicalStormModelTracks({ children, size = 16, ...rest }, ref) {
449
- return react.default.createElement(require_Icon_js, {
431
+ if (process.env.NODE_ENV !== "production") Train.propTypes = require_iconPropTypes.iconPropTypes;
432
+ const TrainHeart = /* @__PURE__ */ react.default.forwardRef(function TrainHeart({ children, size = 16, ...rest }, ref) {
433
+ return react.default.createElement(require_Icon.Icon, {
450
434
  width: size,
451
435
  height: size,
452
436
  ref,
@@ -454,11 +438,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
454
438
  viewBox: "0 0 32 32",
455
439
  fill: "currentColor",
456
440
  ...rest
457
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,17a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,17Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,10,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.8188,6.65c.1163-.1211,1.8643-1.919,2.8882-2.9434A1,1,0,0,0,17,2C11.812,2,2,4.2988,2,13a7.8938,7.8938,0,0,0,3.1812,6.35c-.1612.1675-1.9507,2.0054-2.8882,2.9429A1,1,0,0,0,3,24c5.188,0,15-2.2988,15-11A7.8927,7.8927,0,0,0,14.8188,6.65ZM9.7065,20.793a20.94,20.94,0,0,1-4.0932.9853c.1621-.166,2.7685-2.9053,2.7685-2.9053l-1.1743-.6074A5.9064,5.9064,0,0,1,4,13c0-3.667,2.1177-6.2886,6.2935-7.793a20.94,20.94,0,0,1,4.0932-.9853c-.227.2324-2.769,2.9057-2.769,2.9057l1.1748.607A5.9075,5.9075,0,0,1,16,13C16,16.667,13.8823,19.2886,9.7065,20.793Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,17l-5-5-5,5,1.4126,1.4155L24,15.8325V19a9.01,9.01,0,0,1-9,9H12v2h3A11.0125,11.0125,0,0,0,26,19V15.8325l2.5859,2.5816Z" }), children);
441
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.303,2a2.6613,2.6613,0,0,0-1.9079.8059l-.3932.4053-.397-.4053a2.6612,2.6612,0,0,0-3.8157,0,2.7991,2.7991,0,0,0,0,3.8963L25.0019,11l4.2089-4.2978a2.7991,2.7991,0,0,0,0-3.8963A2.6613,2.6613,0,0,0,27.303,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,13v3H6V10h9V8H6.1843A2.9948,2.9948,0,0,1,9,6h6V4H9A5.0057,5.0057,0,0,0,4,9V21a4.99,4.99,0,0,0,3.582,4.77L5.7693,30H7.9451l1.7143-4h8.6812l1.7143,4h2.1758L20.418,25.77A4.99,4.99,0,0,0,24,21V13Zm0,7H19v2h2.8157A2.9948,2.9948,0,0,1,19,24H9a2.9948,2.9948,0,0,1-2.8157-2H9V20H6V18H22Z" }), children);
458
442
  });
459
- if (process.env.NODE_ENV !== "production") TropicalStormModelTracks.propTypes = require_iconPropTypes.iconPropTypes;
460
- const TropicalStormTracks = react.default.forwardRef(function TropicalStormTracks({ children, size = 16, ...rest }, ref) {
461
- return react.default.createElement(require_Icon_js, {
443
+ if (process.env.NODE_ENV !== "production") TrainHeart.propTypes = require_iconPropTypes.iconPropTypes;
444
+ const TrainProfile = /* @__PURE__ */ react.default.forwardRef(function TrainProfile({ children, size = 16, ...rest }, ref) {
445
+ return react.default.createElement(require_Icon.Icon, {
462
446
  width: size,
463
447
  height: size,
464
448
  ref,
@@ -466,11 +450,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
466
450
  viewBox: "0 0 32 32",
467
451
  fill: "currentColor",
468
452
  ...rest
469
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.86,12.4805h0a12.9277,12.9277,0,0,0-4.8575-4.9991q.2044-.213.4424-.4589h0c.82-.8482,1.93-1.9825,3.2622-3.3155A1,1,0,0,0,25,2c-.354,0-8.7363.0488-14.269,4.3018h0A12.15,12.15,0,0,0,7.481,9.998c-.1416-.1367-.295-.2841-.4585-.4423C6.1743,8.7349,5.04,7.6255,3.707,6.293A1,1,0,0,0,2,7c0,.3594.05,8.874,4.4058,14.4023a12.1023,12.1023,0,0,0,3.5918,3.1163c-.21.2177-.4346.4516-.6563.68h0c-.7954.8208-1.8286,1.8745-3.0483,3.0943A1,1,0,0,0,7,30c.2856,0,7.061-.0352,12.459-3.1055a12.9618,12.9618,0,0,0,5.06-4.8925q.3062.2937.68.6567c.82.7954,1.8745,1.8286,3.0943,3.0483A1,1,0,0,0,30,25C30,24.7119,29.9644,17.8877,26.86,12.4805Zm-3.03,6.1074-.5469,1.3672A10.5415,10.5415,0,0,1,18.47,25.1562,24.3514,24.3514,0,0,1,9.584,27.8135c.4409-.4492,3.8281-3.9824,3.8281-3.9824l-1.3682-.5474a9.8021,9.8021,0,0,1-4.0668-3.1191c-2.5406-3.2242-3.4585-7.7623-3.79-10.58.5435.5337,3.9815,3.8266,3.9815,3.8266l.5468-1.3672A9.8569,9.8569,0,0,1,11.95,7.8877h0C15.1665,5.415,19.6309,4.5146,22.4155,4.187c-.5332.5435-3.8276,3.9819-3.8276,3.9819l1.3677.5469a10.52,10.52,0,0,1,5.17,4.7608v0a24.29,24.29,0,0,1,2.688,8.94C27.3643,21.9751,23.83,18.5879,23.83,18.5879Z" }), children);
453
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 25 2 25 2 27 4 27 4 29 6 29 6 27 11 27 11 29 13 29 13 27 18 27 18 29 20 29 20 27 25 27 25 29 27 29 27 27 30 27 30 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,16H2V14H8V12H2V10H8a2.0021,2.0021,0,0,1,2,2v2A2.0021,2.0021,0,0,1,8,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.55,14.2305,19.97,6.3657A8.9775,8.9775,0,0,0,13.8882,4H2V6H12v4a2.0023,2.0023,0,0,0,2,2h9.1565l4.0417,3.7051A2.4723,2.4723,0,0,1,25.5273,20H2v2H25.5273a4.4726,4.4726,0,0,0,3.0225-7.77ZM14,10V6.0054A6.9774,6.9774,0,0,1,18.6182,7.84L20.9746,10Z" }), children);
470
454
  });
471
- if (process.env.NODE_ENV !== "production") TropicalStormTracks.propTypes = require_iconPropTypes.iconPropTypes;
472
- const TropicalWarning = react.default.forwardRef(function TropicalWarning({ children, size = 16, ...rest }, ref) {
473
- return react.default.createElement(require_Icon_js, {
455
+ if (process.env.NODE_ENV !== "production") TrainProfile.propTypes = require_iconPropTypes.iconPropTypes;
456
+ const TrainSpeed = /* @__PURE__ */ react.default.forwardRef(function TrainSpeed({ children, size = 16, ...rest }, ref) {
457
+ return react.default.createElement(require_Icon.Icon, {
474
458
  width: size,
475
459
  height: size,
476
460
  ref,
@@ -478,14 +462,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
478
462
  viewBox: "0 0 32 32",
479
463
  fill: "currentColor",
480
464
  ...rest
481
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.9487,25.6836a1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,23,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,15,28h-.4336C13.9241,26.7939,12,22.312,12,12v-.1313l1.1169.7446A6.46,6.46,0,0,1,14.4346,13.79l1.0007-1.8418a8.4469,8.4469,0,0,0-1.209-.9986L12.8025,10h1.5308a6.9861,6.9861,0,0,1,1.9934.3071l.9755-1.7954A9.0059,9.0059,0,0,0,14.3333,8H13.1169A7.0329,7.0329,0,0,1,18,6h.6669l1.0867-2H18a9.0361,9.0361,0,0,0-7,3.3638A9.0362,9.0362,0,0,0,4,4H2V6H4A7.0308,7.0308,0,0,1,8.8828,8H7.6665a9.06,9.06,0,0,0-5.4,1.8L.4,11.2l1.2,1.6L3.4668,11.4a7.04,7.04,0,0,1,4.2-1.4H9.1973l-1.4239.9492A8.457,8.457,0,0,0,4,18H6a6.46,6.46,0,0,1,2.8828-5.3867L10,11.8687V12c0,8.9365,1.3994,13.7539,2.355,16H2v2H15a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,4.9955,4.9955,0,0,0,3,1.8833V27.8125A3.7616,3.7616,0,0,1,27.9487,25.6836Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
482
- fill: "none",
483
- d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"
484
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), children);
465
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 25 2 25 2 27 4 27 4 29 6 29 6 27 11 27 11 29 13 29 13 27 18 27 18 29 20 29 20 27 25 27 25 29 27 29 27 27 30 27 30 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7144,16.59,18.1494,8.64A14.9327,14.9327,0,0,0,9.6519,6H2V8H9.6519a12.9459,12.9459,0,0,1,7.3647,2.2871L18.0532,11H9v2H20.9624l7.6187,5.2378A.966.966,0,0,1,28.0342,20H2v2H28.0342a2.9661,2.9661,0,0,0,1.68-5.41Z" }), children);
485
466
  });
486
- if (process.env.NODE_ENV !== "production") TropicalWarning.propTypes = require_iconPropTypes.iconPropTypes;
487
- const TryCatch = react.default.forwardRef(function TryCatch({ children, size = 16, ...rest }, ref) {
488
- return react.default.createElement(require_Icon_js, {
467
+ if (process.env.NODE_ENV !== "production") TrainSpeed.propTypes = require_iconPropTypes.iconPropTypes;
468
+ const TrainTicket = /* @__PURE__ */ react.default.forwardRef(function TrainTicket({ children, size = 16, ...rest }, ref) {
469
+ return react.default.createElement(require_Icon.Icon, {
489
470
  width: size,
490
471
  height: size,
491
472
  ref,
@@ -493,11 +474,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
493
474
  viewBox: "0 0 32 32",
494
475
  fill: "currentColor",
495
476
  ...rest
496
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.2,13l-2.2-2.2v-3.8h-12.8l-2.2-2.2V2h-2v2.8l-3.2,3.2,3.2,3.2v14.9l-1.8-1.8-1.4,1.4,4.2,4.2,1.1-1.1,3.1-3.1-1.4-1.4-1.8,1.8v-4.1h21v-9h-3.8ZM14,13.5v6.5h-6v-8.8l2.2-2.2h10.8v1.8l-2.2,2.2h-4.8v.5ZM27,20h-11v-5h2.8l3.2,3.2,3.2-3.2h1.8v5Z" }), children);
477
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.1257,7.125a1.125,1.125,0,1,1,0-2.25h.875V2h-12V4.875h.875a1.125,1.125,0,0,1,0,2.25h-.875V10h12V7.125Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.0007,13v3h-16V10h9V8H6.185A2.9948,2.9948,0,0,1,9.0007,6h6V4h-6a5.0057,5.0057,0,0,0-5,5V21a4.99,4.99,0,0,0,3.582,4.77L5.77,30H7.9458L9.66,26h8.6812l1.7143,4h2.1758l-1.8127-4.23A4.99,4.99,0,0,0,24.0007,21V13Zm0,7h-3v2h2.8157a2.9948,2.9948,0,0,1-2.8157,2h-10A2.9948,2.9948,0,0,1,6.185,22H9.0007V20h-3V18h16Z" }), children);
497
478
  });
498
- if (process.env.NODE_ENV !== "production") TryCatch.propTypes = require_iconPropTypes.iconPropTypes;
499
- const Tsq = react.default.forwardRef(function Tsq({ children, size = 16, ...rest }, ref) {
500
- return react.default.createElement(require_Icon_js, {
479
+ if (process.env.NODE_ENV !== "production") TrainTicket.propTypes = require_iconPropTypes.iconPropTypes;
480
+ const TrainTime = /* @__PURE__ */ react.default.forwardRef(function TrainTime({ children, size = 16, ...rest }, ref) {
481
+ return react.default.createElement(require_Icon.Icon, {
501
482
  width: size,
502
483
  height: size,
503
484
  ref,
@@ -505,11 +486,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
505
486
  viewBox: "0 0 32 32",
506
487
  fill: "currentColor",
507
488
  ...rest
508
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H30V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 22H30V24H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20h-11V12h11v8Zm-9-2h7v-4h-7v4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 8H30V10H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 4H30V6H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.293 18.707 8 16.4143 8 12 10 12 10 15.5857 11.707 17.293 10.293 18.707z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,24c-4.4111,0-8-3.5889-8-8s3.5889-8,8-8,8,3.5889,8,8-3.5889,8-8,8Zm0-14c-3.3083,0-6,2.6917-6,6s2.6917,6,6,6,6-2.6917,6-6-2.6917-6-6-6Z" }), children);
489
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
490
+ fill: "none",
491
+ d: "M25.496 10.088 22.874 7.466 22.874 3 25.124 3 25.124 6.534 27.088 8.498 25.496 10.088z"
492
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,1a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,24,1Zm1.4971,9.0884L22.875,7.4658V3h2.25V6.5342l1.9639,1.9634Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,16V10h9V8H6.1843A2.9948,2.9948,0,0,1,9,6h6V4H9A5.0057,5.0057,0,0,0,4,9V21a4.99,4.99,0,0,0,3.582,4.77L5.7693,30H7.9451l1.7143-4h8.6812l1.7143,4h2.1758L20.418,25.77A4.99,4.99,0,0,0,24,21V16Zm16,4H19v2h2.8157A2.9948,2.9948,0,0,1,19,24H9a2.9948,2.9948,0,0,1-2.8157-2H9V20H6V18H22Z" }), children);
509
493
  });
510
- if (process.env.NODE_ENV !== "production") Tsq.propTypes = require_iconPropTypes.iconPropTypes;
511
- const Tsunami = react.default.forwardRef(function Tsunami({ children, size = 16, ...rest }, ref) {
512
- return react.default.createElement(require_Icon_js, {
494
+ if (process.env.NODE_ENV !== "production") TrainTime.propTypes = require_iconPropTypes.iconPropTypes;
495
+ const Tram = /* @__PURE__ */ react.default.forwardRef(function Tram({ children, size = 16, ...rest }, ref) {
496
+ return react.default.createElement(require_Icon.Icon, {
513
497
  width: size,
514
498
  height: size,
515
499
  ref,
@@ -517,11 +501,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
517
501
  viewBox: "0 0 32 32",
518
502
  fill: "currentColor",
519
503
  ...rest
520
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,26H24A10.0349,10.0349,0,0,1,17.0732,8.7378,11.9629,11.9629,0,0,0,12.9937,8a6.9027,6.9027,0,0,0-6.0308,3.42C4.9966,14.4348,4,19.34,4,26H2c0-7.0542,1.106-12.3274,3.2871-15.6726A8.906,8.906,0,0,1,12.9937,6h.0068a14.762,14.762,0,0,1,6.4619,1.592,1,1,0,0,1,.0869,1.7222A8.0249,8.0249,0,0,0,24,24h6Z" }), children);
504
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,6H17V4h6V2H9V4h6V6H11a5.0057,5.0057,0,0,0-5,5V22a4.99,4.99,0,0,0,3.582,4.77L8.1978,30h2.1757l1.2859-3h8.6812l1.2859,3h2.1757L22.418,26.77A4.99,4.99,0,0,0,26,22V11A5.0057,5.0057,0,0,0,21,6ZM11,8H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,8ZM24,21H21v2h2.8157A2.9948,2.9948,0,0,1,21,25H11a2.9948,2.9948,0,0,1-2.8157-2H11V21H8V19H24Zm0-4H8V12H24Z" }), children);
521
505
  });
522
- if (process.env.NODE_ENV !== "production") Tsunami.propTypes = require_iconPropTypes.iconPropTypes;
523
- const Tsv = react.default.forwardRef(function Tsv({ children, size = 16, ...rest }, ref) {
524
- return react.default.createElement(require_Icon_js, {
506
+ if (process.env.NODE_ENV !== "production") Tram.propTypes = require_iconPropTypes.iconPropTypes;
507
+ const TransformBinary = /* @__PURE__ */ react.default.forwardRef(function TransformBinary({ children, size = 16, ...rest }, ref) {
508
+ return react.default.createElement(require_Icon.Icon, {
525
509
  width: size,
526
510
  height: size,
527
511
  ref,
@@ -529,11 +513,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
529
513
  viewBox: "0 0 32 32",
530
514
  fill: "currentColor",
531
515
  ...rest
532
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 9 26 22 24 9 22 9 24.516 23 27.484 23 30 9 28 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23H12V21h6V17H14a2.002,2.002,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h6v2H14v4h4a2.002,2.002,0,0,1,2,2v4A2.002,2.002,0,0,1,18,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11 5 11 5 23 7 23 7 11 10 11 10 9 2 9 2 11z" }), children);
516
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,20h-2c-1.1,0-2-0.9-2-2v-4c0-1.1,0.9-2,2-2h2c1.1,0,2,0.9,2,2v4C25,19.1,24.1,20,23,20z M21,14v4h2v-4H21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 12H17V20H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,20H9c-1.1,0-2-0.9-2-2v-4c0-1.1,0.9-2,2-2h2c1.1,0,2,0.9,2,2v4C13,19.1,12.1,20,11,20z M9,14v4h2v-4H9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2v2c6.6,0,12,5.4,12,12s-5.4,12-12,12v2c7.7,0,14-6.3,14-14S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.2,25.1L7,26.7c1.2,1,2.6,1.9,4.2,2.4l0.7-1.9C10.5,26.7,9.3,26,8.2,25.1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2,18l-2,0.4C2.5,20,3.1,21.6,3.9,23l1.7-1C4.9,20.8,4.4,19.4,4.2,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.6,10L3.9,9c-0.8,1.4-1.4,3-1.6,4.6l2,0.3C4.4,12.5,4.9,11.2,5.6,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8,4.8l-0.7-1.9C9.6,3.5,8.2,4.3,7,5.3l1.3,1.5C9.3,6,10.5,5.3,11.8,4.8z" }), children);
533
517
  });
534
- if (process.env.NODE_ENV !== "production") Tsv.propTypes = require_iconPropTypes.iconPropTypes;
535
- const Tuning = react.default.forwardRef(function Tuning({ children, size = 16, ...rest }, ref) {
536
- return react.default.createElement(require_Icon_js, {
518
+ if (process.env.NODE_ENV !== "production") TransformBinary.propTypes = require_iconPropTypes.iconPropTypes;
519
+ const TransformCode = /* @__PURE__ */ react.default.forwardRef(function TransformCode({ children, size = 16, ...rest }, ref) {
520
+ return react.default.createElement(require_Icon.Icon, {
537
521
  width: size,
538
522
  height: size,
539
523
  ref,
@@ -541,11 +525,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
541
525
  viewBox: "0 0 32 32",
542
526
  fill: "currentColor",
543
527
  ...rest
544
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,30v-4.1c2.3-.5,4-2.5,4-4.9,0-2.4-1.7-4.4-4-4.9V2s-2,0-2,0v14.1c-2.3.5-4,2.5-4,4.9,0,2.4,1.7,4.4,4,4.9v4.1s2,0,2,0Zm-4-9c0-1.7,1.3-3,3-3s3,1.3,3,3c0,1.7-1.3,3-3,3s-3-1.3-3-3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8,2v4.1c-2.3.5-4,2.5-4,4.9,0,2.4,1.7,4.4,4,4.9v14.1s2,0,2,0v-14.1c2.3-.5,4-2.5,4-4.9,0-2.4-1.7-4.4-4-4.9V2s-2,0-2,0Zm4,9c0,1.7-1.3,3-3,3s-3-1.3-3-3,1.3-3,3-3,3,1.3,3,3Z" }), children);
528
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.9005,4.7366c-1.325.4839-2.5369,1.2001-3.5983,2.0895l-1.2829-1.5289c1.2383-1.0377,2.6521-1.8732,4.1979-2.4378l.6832,1.8772ZM3.9009,9.0146c-.8087,1.3865-1.3839,2.9225-1.6776,4.5562l1.9838.3498c.2518-1.3993.7294-2.7205,1.4221-3.9081l-1.7283-.9979ZM4.1932,18.0818l-1.9678.347c.2878,1.6357.8603,3.1745,1.6635,4.5635l1.7302-.9989c-.6884-1.1906-1.1791-2.5095-1.4258-3.9116ZM8.3065,25.1687l-1.293,1.541c1.2365,1.042,2.6556,1.8721,4.2007,2.4393l.6859-1.8845c-1.3211-.489-2.5342-1.203-3.5936-2.0958ZM29.7747,13.5712c-.2878-1.6357-.8603-3.1745-1.6635-4.5635-.8185-1.4156-1.8817-2.67-3.1246-3.7173-1.2365-1.042-2.6557-1.872-4.2007-2.4392-1.493-.5482-3.1035-.8511-4.7858-.8511v2c1.4429,0,2.8219.2625,4.0999.7355,1.321.489,2.5342,1.2031,3.5934,2.0958.4588.3867.8842.8102,1.2835,1.2573.5247.5933.9986,1.2321,1.3982,1.9213.6902,1.1904,1.1827,2.5085,1.4306,3.9084.12.6777.1943,1.3708.1943,2.0817,0,.7123-.0859,1.4019-.2086,2.0792-.2529,1.397-.7322,2.7173-1.4267,3.9049-.7058,1.2069-1.6058,2.2883-2.6725,3.1831-1.061.8899-2.2716,1.6071-3.5941,2.0923-1.2819.4703-2.6584.7405-4.0981.7405v2c1.6817,0,3.2878-.3134,4.7828-.8594,1.5458-.5646,2.9597-1.4001,4.1979-2.4378,1.2458-1.044,2.2957-2.3068,3.1183-3.7174.8087-1.3865,1.3839-2.9225,1.6776-4.5562.1418-.7889.2234-1.5988.2234-2.4292,0-.8298-.0862-1.6384-.2253-2.4288ZM12.7233,14.1082l.9186-.9185.7781-.778-1.4195-1.4117-.6503.6503-1.4218,1.4217-1.729,1.7289-1.1994,1.1993,1.1991,1.1989,1.7292,1.729,1.4218,1.4216.6504.6503,1.4195-1.4118-.7781-.7779-.9186-.9185-1.1173-1.1171-.7748-.7745.7751-.775,1.1171-1.1171ZM19.2768,17.8918l-.9186.9185-.7781.7779,1.4195,1.4118.6504-.6503,1.4218-1.4216,1.7292-1.729,1.1991-1.1989-1.1994-1.1993-1.7291-1.7289-1.4217-1.4217-.6503-.6503-1.4195,1.4117.7781.778.9186.9185,1.1171,1.1171.7751.775-.7748.7745-1.1173,1.1171Z" }), children);
545
529
  });
546
- if (process.env.NODE_ENV !== "production") Tuning.propTypes = require_iconPropTypes.iconPropTypes;
547
- const TwoFactorAuthentication = react.default.forwardRef(function TwoFactorAuthentication({ children, size = 16, ...rest }, ref) {
548
- return react.default.createElement(require_Icon_js, {
530
+ if (process.env.NODE_ENV !== "production") TransformCode.propTypes = require_iconPropTypes.iconPropTypes;
531
+ const TransformInstructions = /* @__PURE__ */ react.default.forwardRef(function TransformInstructions({ children, size = 16, ...rest }, ref) {
532
+ return react.default.createElement(require_Icon.Icon, {
549
533
  width: size,
550
534
  height: size,
551
535
  ref,
@@ -553,11 +537,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
553
537
  viewBox: "0 0 32 32",
554
538
  fill: "currentColor",
555
539
  ...rest
556
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 23.18 9 21.179 7.589 22.589 11 26 17 20 15.59 18.59 11 23.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24V28h4V16H24V8a4.0045,4.0045,0,0,0-4-4V2a6.0067,6.0067,0,0,1,6,6v6h2a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,14H18V8A6,6,0,0,0,6,8v6H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16A2,2,0,0,0,20,14ZM8,8a4,4,0,0,1,8,0v6H8ZM20,28H4V16H20Z" }), children);
540
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V9h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H9v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5l1.4,1.4 l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V23h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8H23z M16,19 c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S17.7,19,16,19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2v2c6.6,0,12,5.4,12,12s-5.4,12-12,12v2c7.7,0,14-6.3,14-14S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.2,25.1L7,26.7c1.2,1,2.6,1.9,4.2,2.4l0.7-1.9C10.5,26.7,9.3,26,8.2,25.1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2,18l-2,0.4C2.5,20,3.1,21.6,3.9,23l1.7-1C4.9,20.8,4.4,19.4,4.2,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.6,10L3.9,9c-0.8,1.4-1.4,3-1.6,4.6l2,0.3C4.4,12.5,4.9,11.2,5.6,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8,4.8l-0.7-1.9C9.6,3.5,8.2,4.3,7,5.3l1.3,1.5C9.3,6,10.5,5.3,11.8,4.8z" }), children);
557
541
  });
558
- if (process.env.NODE_ENV !== "production") TwoFactorAuthentication.propTypes = require_iconPropTypes.iconPropTypes;
559
- const TwoPersonLift = react.default.forwardRef(function TwoPersonLift({ children, size = 16, ...rest }, ref) {
560
- return react.default.createElement(require_Icon_js, {
542
+ if (process.env.NODE_ENV !== "production") TransformInstructions.propTypes = require_iconPropTypes.iconPropTypes;
543
+ const TransformLanguage = /* @__PURE__ */ react.default.forwardRef(function TransformLanguage({ children, size = 16, ...rest }, ref) {
544
+ return react.default.createElement(require_Icon.Icon, {
561
545
  width: size,
562
546
  height: size,
563
547
  ref,
@@ -565,11 +549,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
565
549
  viewBox: "0 0 32 32",
566
550
  fill: "currentColor",
567
551
  ...rest
568
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.96,30l-1.9215-6.7253a1.0008,1.0008,0,0,1,.3369-1.0554L29.874,18.62,28.52,13.2014l-2.7382,3.4234A1.0026,1.0026,0,0,1,25,17H20V15h4.52l3.6993-4.6248a1,1,0,0,1,1.7509.3824l2,8a.9989.9989,0,0,1-.3447,1.0232l-4.48,3.5845,1.7389,6.0854Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,5.5A3.5,3.5,0,1,1,26.5,9,3.5042,3.5042,0,0,1,23,5.5Zm2,0A1.5,1.5,0,1,0,26.5,4,1.5017,1.5017,0,0,0,25,5.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.0039,19A2.0039,2.0039,0,0,1,18,16.9961V15.0039A2.0039,2.0039,0,0,1,20.0039,13H22V10H10v3h1.9961A2.0039,2.0039,0,0,1,14,15.0039v1.9922A2.0039,2.0039,0,0,1,11.9961,19H10v3H22V19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.04,30l1.9215-6.7253a1.0013,1.0013,0,0,0-.3369-1.0555L2.126,18.62l1.3545-5.4185,2.7382,3.4234A1.0026,1.0026,0,0,0,7,17h5V15H7.4805L3.7812,10.3752a1,1,0,0,0-1.7509.3824l-2,8A.9989.9989,0,0,0,.375,19.7808l4.4805,3.5844-1.739,6.0855Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.5,9A3.5,3.5,0,1,1,9,5.5,3.5042,3.5042,0,0,1,5.5,9Zm0-5A1.5,1.5,0,1,0,7,5.5,1.5017,1.5017,0,0,0,5.5,4Z" }), children);
552
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 19H18V21H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 15H22V17H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 11H22V13H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2v2c6.6,0,12,5.4,12,12s-5.4,12-12,12v2c7.7,0,14-6.3,14-14S23.7,2,16,2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.2,25.1L7,26.7c1.2,1,2.6,1.9,4.2,2.4l0.7-1.9C10.5,26.7,9.3,26,8.2,25.1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.2,18l-2,0.4C2.5,20,3.1,21.6,3.9,23l1.7-1C4.9,20.8,4.4,19.4,4.2,18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.6,10L3.9,9c-0.8,1.4-1.4,3-1.6,4.6l2,0.3C4.4,12.5,4.9,11.2,5.6,10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.8,4.8l-0.7-1.9C9.6,3.5,8.2,4.3,7,5.3l1.3,1.5C9.3,6,10.5,5.3,11.8,4.8z" }), children);
569
553
  });
570
- if (process.env.NODE_ENV !== "production") TwoPersonLift.propTypes = require_iconPropTypes.iconPropTypes;
571
- const Txt = react.default.forwardRef(function Txt({ children, size = 16, ...rest }, ref) {
572
- return react.default.createElement(require_Icon_js, {
554
+ if (process.env.NODE_ENV !== "production") TransformLanguage.propTypes = require_iconPropTypes.iconPropTypes;
555
+ const TransformPipeline = /* @__PURE__ */ react.default.forwardRef(function TransformPipeline({ children, size = 16, ...rest }, ref) {
556
+ return react.default.createElement(require_Icon.Icon, {
573
557
  width: size,
574
558
  height: size,
575
559
  ref,
@@ -577,11 +561,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
577
561
  viewBox: "0 0 32 32",
578
562
  fill: "currentColor",
579
563
  ...rest
580
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 11 24 11 24 23 26 23 26 11 29 11 29 9 21 9 21 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 18 9 16 15 14 9 12 9 14.75 16 12 23 14 23 16 17 18 23 20 23 17.25 16 20 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 11 6 11 6 23 8 23 8 11 11 11 11 9 3 9 3 11z" }), children);
564
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,11l-1.4,1.4,2.6,2.6h-5.2v-2c0-1.1-.9-2-2-2h-6c-1.1,0-2,.9-2,2v2h-3.2c-.4-1.2-1.5-2-2.8-2s-3,1.3-3,3,1.3,3,3,3,2.4-.8,2.8-2h3.2v2c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-2h5.2l-2.6,2.6,1.4,1.4,5-5-5-5ZM19,19h-6v-6h6v6Z" }), children);
581
565
  });
582
- if (process.env.NODE_ENV !== "production") Txt.propTypes = require_iconPropTypes.iconPropTypes;
583
- const TxtReference = react.default.forwardRef(function TxtReference({ children, size = 16, ...rest }, ref) {
584
- return react.default.createElement(require_Icon_js, {
566
+ if (process.env.NODE_ENV !== "production") TransformPipeline.propTypes = require_iconPropTypes.iconPropTypes;
567
+ const Transgender = /* @__PURE__ */ react.default.forwardRef(function Transgender({ children, size = 16, ...rest }, ref) {
568
+ return react.default.createElement(require_Icon.Icon, {
585
569
  width: size,
586
570
  height: size,
587
571
  ref,
@@ -589,11 +573,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
589
573
  viewBox: "0 0 32 32",
590
574
  fill: "currentColor",
591
575
  ...rest
592
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 4 24 4 24 16 26 16 26 4 29 4 29 2 21 2 21 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 2 18 2 16 8 14 2 12 2 14.752 9 12 16 14 16 16 10 18 16 20 16 17.245 9 20 2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 4 6 4 6 16 8 16 8 4 11 4 11 2 3 2 3 4z" }), children);
576
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,2V4h4.5859l-6.4016,6.4014a6.9474,6.9474,0,0,0-8.3686,0L10.4143,9,13,6.4141,11.5857,5,9,7.5859,5.4141,4H10V2H2v8H4V5.4141L7.5859,9,5,11.5854,6.4143,13,9,10.4141l1.4014,1.4013A6.9785,6.9785,0,0,0,15,22.92V25H11v2h4v3h2V27h4V25H17V22.92a6.9785,6.9785,0,0,0,4.5984-11.1045L28,5.4141V10h2V2ZM16,21a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,16,21Z" }), children);
593
577
  });
594
- if (process.env.NODE_ENV !== "production") TxtReference.propTypes = require_iconPropTypes.iconPropTypes;
595
- const TypePattern = react.default.forwardRef(function TypePattern({ children, size = 16, ...rest }, ref) {
596
- return react.default.createElement(require_Icon_js, {
578
+ if (process.env.NODE_ENV !== "production") Transgender.propTypes = require_iconPropTypes.iconPropTypes;
579
+ const Translate = /* @__PURE__ */ react.default.forwardRef(function Translate({ children, size = 16, ...rest }, ref) {
580
+ return react.default.createElement(require_Icon.Icon, {
597
581
  width: size,
598
582
  height: size,
599
583
  ref,
@@ -601,11 +585,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
601
585
  viewBox: "0 0 32 32",
602
586
  fill: "currentColor",
603
587
  ...rest
604
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 15 17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.586 20 27 21.414 23.414 25 27 28.586 25.586 30 20.586 25 25.586 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,30H3a1,1,0,0,1-.8945-1.4473l4-8a1.0412,1.0412,0,0,1,1.789,0l4,8A1,1,0,0,1,11,30ZM4.6182,28H9.3818L7,23.2363Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6.001L28,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,12a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,7,12ZM7,4a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,4Z" }), children);
588
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.85,29H30L24,14H21.65l-6,15H17.8l1.6-4h6.85ZM20.2,23l2.62-6.56L25.45,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,7V5H11V2H9V5H2V7H12.74a14.71,14.71,0,0,1-3.19,6.18A13.5,13.5,0,0,1,7.26,9H5.16a16.47,16.47,0,0,0,3,5.58A16.84,16.84,0,0,1,3,18l.75,1.86A18.47,18.47,0,0,0,9.53,16a16.92,16.92,0,0,0,5.76,3.84L16,18a14.48,14.48,0,0,1-5.12-3.37A17.64,17.64,0,0,0,14.8,7Z" }), children);
605
589
  });
606
- if (process.env.NODE_ENV !== "production") TypePattern.propTypes = require_iconPropTypes.iconPropTypes;
607
- const Types = react.default.forwardRef(function Types({ children, size = 16, ...rest }, ref) {
608
- return react.default.createElement(require_Icon_js, {
590
+ if (process.env.NODE_ENV !== "production") Translate.propTypes = require_iconPropTypes.iconPropTypes;
591
+ const TransmissionLte = /* @__PURE__ */ react.default.forwardRef(function TransmissionLte({ children, size = 16, ...rest }, ref) {
592
+ return react.default.createElement(require_Icon.Icon, {
609
593
  width: size,
610
594
  height: size,
611
595
  ref,
@@ -613,11 +597,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
613
597
  viewBox: "0 0 32 32",
614
598
  fill: "currentColor",
615
599
  ...rest
616
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 16 22 24 20.586 22.586 27.172 16 20.586 9.414 22 8 30 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a.9967.9967,0,0,1-.707-.293l-5-5a.9994.9994,0,0,1,0-1.414l5-5a.9994.9994,0,0,1,1.414,0l5,5a.9994.9994,0,0,1,0,1.414l-5,5A.9967.9967,0,0,1,16,22Zm-3.5859-6L16,19.5859,19.5859,16,16,12.4141Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16 10 8 11.414 9.414 4.828 16 11.414 22.586 10 24 2 16z" }), children);
600
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.57,30l.9333-2h8.9928l.9333,2h2.2072L17,15.7778V11H15v4.7778L8.3631,30ZM16,18.3647,17.6965,22h-3.393ZM13.37,24h5.26l.9333,2H12.4369Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.7832,9.3325a7.0007,7.0007,0,0,1,10.4341,0l-1.49,1.334a5,5,0,0,0-7.4537,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.1992,6.3994a11.0019,11.0019,0,0,1,17.6006,0L23.2,7.6a9.0009,9.0009,0,0,0-14.4014,0Z" }), children);
617
601
  });
618
- if (process.env.NODE_ENV !== "production") Types.propTypes = require_iconPropTypes.iconPropTypes;
619
- const QU1 = react.default.forwardRef(function QU1({ children, size = 16, ...rest }, ref) {
620
- return react.default.createElement(require_Icon_js, {
602
+ if (process.env.NODE_ENV !== "production") TransmissionLte.propTypes = require_iconPropTypes.iconPropTypes;
603
+ const Transpose = /* @__PURE__ */ react.default.forwardRef(function Transpose({ children, size = 16, ...rest }, ref) {
604
+ return react.default.createElement(require_Icon.Icon, {
621
605
  width: size,
622
606
  height: size,
623
607
  ref,
@@ -625,11 +609,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
625
609
  viewBox: "0 0 32 32",
626
610
  fill: "currentColor",
627
611
  ...rest
628
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 21 22 9 17 9 17 11 20 11 20 21 17 21 17 23 25 23 25 21 22 21z" }), children);
612
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,26H14V24h5a5.0055,5.0055,0,0,0,5-5V14h2v5A7.0078,7.0078,0,0,1,19,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2.0023,2.0023,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2H8a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,8,30ZM4,14V28H8V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H14a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V8A2.0023,2.0023,0,0,1,28,10ZM14,4V8H28V4Z" }), children);
629
613
  });
630
- if (process.env.NODE_ENV !== "production") QU1.propTypes = require_iconPropTypes.iconPropTypes;
631
- const QU2 = react.default.forwardRef(function QU2({ children, size = 16, ...rest }, ref) {
632
- return react.default.createElement(require_Icon_js, {
614
+ if (process.env.NODE_ENV !== "production") Transpose.propTypes = require_iconPropTypes.iconPropTypes;
615
+ const TrashCan = /* @__PURE__ */ react.default.forwardRef(function TrashCan({ children, size = 16, ...rest }, ref) {
616
+ return react.default.createElement(require_Icon.Icon, {
633
617
  width: size,
634
618
  height: size,
635
619
  ref,
@@ -637,11 +621,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
637
621
  viewBox: "0 0 32 32",
638
622
  fill: "currentColor",
639
623
  ...rest
640
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23H17V17a2,2,0,0,1,2-2h4V11H17V9h6a2,2,0,0,1,2,2v4a2,2,0,0,1-2,2H19v4h6Z" }), children);
624
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12H14V24H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 12H20V24H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,6V8H6V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V8h2V6ZM8,28V8H24V28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H20V4H12z" }), children);
641
625
  });
642
- if (process.env.NODE_ENV !== "production") QU2.propTypes = require_iconPropTypes.iconPropTypes;
643
- const QU3 = react.default.forwardRef(function QU3({ children, size = 16, ...rest }, ref) {
644
- return react.default.createElement(require_Icon_js, {
626
+ if (process.env.NODE_ENV !== "production") TrashCan.propTypes = require_iconPropTypes.iconPropTypes;
627
+ const Tree = /* @__PURE__ */ react.default.forwardRef(function Tree({ children, size = 16, ...rest }, ref) {
628
+ return react.default.createElement(require_Icon.Icon, {
645
629
  width: size,
646
630
  height: size,
647
631
  ref,
@@ -649,11 +633,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
649
633
  viewBox: "0 0 32 32",
650
634
  fill: "currentColor",
651
635
  ...rest
652
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,9H17v2h6v4H18v2h5v4H17v2h6a2,2,0,0,0,2-2V11A2,2,0,0,0,23,9Z" }), children);
636
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0023,2.0023,0,0,1,12,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H19a2.0024,2.0024,0,0,1-2-2V17h6a4.0008,4.0008,0,0,0,3.981-4.396A4.1489,4.1489,0,0,0,22.7853,9H21.2016L21.025,8.221C20.452,5.6961,18.0308,4,15,4A6.02,6.02,0,0,0,9.5585,7.4859L9.25,8.1531l-.863-.1143A2.771,2.771,0,0,0,8,8a4,4,0,1,0,0,8v2A6,6,0,1,1,8,6c.0264,0,.0525,0,.0786.001A8.0271,8.0271,0,0,1,15,2c3.6788,0,6.6923,1.9776,7.7516,5h.0337a6.1641,6.1641,0,0,1,6.1872,5.4141A6.0011,6.0011,0,0,1,23,19l-4,0v9h3Z" }), children);
653
637
  });
654
- if (process.env.NODE_ENV !== "production") QU3.propTypes = require_iconPropTypes.iconPropTypes;
655
- const Umbrella = react.default.forwardRef(function Umbrella({ children, size = 16, ...rest }, ref) {
656
- return react.default.createElement(require_Icon_js, {
638
+ if (process.env.NODE_ENV !== "production") Tree.propTypes = require_iconPropTypes.iconPropTypes;
639
+ const TreeFallRisk = /* @__PURE__ */ react.default.forwardRef(function TreeFallRisk({ children, size = 16, ...rest }, ref) {
640
+ return react.default.createElement(require_Icon.Icon, {
657
641
  width: size,
658
642
  height: size,
659
643
  ref,
@@ -661,11 +645,15 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
661
645
  viewBox: "0 0 32 32",
662
646
  fill: "currentColor",
663
647
  ...rest
664
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9854,15.83A14.3808,14.3808,0,0,0,17,4.0464V2H15V4.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.03ZM6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4411,12.4411,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333,6.5439,6.5439,0,0,0,6,14Zm10,0a6.5528,6.5528,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0563-9.1763,3.4308,2.6768,4.0091,6.9487,4.0525,9.1728A6.553,6.553,0,0,0,16,14Zm10,0a6.5439,6.5439,0,0,0-3.939,1.333,14.5164,14.5164,0,0,0-3.0456-8.9341,12.4411,12.4411,0,0,1,8.488,7.8145A5.4079,5.4079,0,0,0,26,14Z" }), children);
648
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
649
+ fill: "none",
650
+ d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z",
651
+ "data-icon-path": "inner-path"
652
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,19V17H17V28a2.0027,2.0027,0,0,0,2,2h3V28H19V19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0024,2.0024,0,0,1,12,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.6638,5.0059l.96-1.7671A8.9324,8.9324,0,0,0,15,2,8.0275,8.0275,0,0,0,8.0786,6.001C8.0525,6,8.0264,6,8,6A6,6,0,0,0,8,18V16A4,4,0,0,1,8,8a2.7009,2.7009,0,0,1,.387.0391l.863.1142.3086-.6675A6.0192,6.0192,0,0,1,15,4,6.8916,6.8916,0,0,1,18.6638,5.0059Z" }), children);
665
653
  });
666
- if (process.env.NODE_ENV !== "production") Umbrella.propTypes = require_iconPropTypes.iconPropTypes;
667
- const Undefined = react.default.forwardRef(function Undefined({ children, size = 16, ...rest }, ref) {
668
- return react.default.createElement(require_Icon_js, {
654
+ if (process.env.NODE_ENV !== "production") TreeFallRisk.propTypes = require_iconPropTypes.iconPropTypes;
655
+ const TreeView = /* @__PURE__ */ react.default.forwardRef(function TreeView({ children, size = 16, ...rest }, ref) {
656
+ return react.default.createElement(require_Icon.Icon, {
669
657
  width: size,
670
658
  height: size,
671
659
  ref,
@@ -673,11 +661,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
673
661
  viewBox: "0 0 32 32",
674
662
  fill: "currentColor",
675
663
  ...rest
676
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 14H21V18H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" }), children);
664
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20V12H22v3H17V7a2,2,0,0,0-2-2H10V2H2v8h8V7h5V25a2,2,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3ZM8,8H4V4H8ZM24,24h4v4H24Zm0-10h4v4H24Z" }), children);
677
665
  });
678
- if (process.env.NODE_ENV !== "production") Undefined.propTypes = require_iconPropTypes.iconPropTypes;
679
- const UndefinedFilled = react.default.forwardRef(function UndefinedFilled({ children, size = 16, ...rest }, ref) {
680
- return react.default.createElement(require_Icon_js, {
666
+ if (process.env.NODE_ENV !== "production") TreeView.propTypes = require_iconPropTypes.iconPropTypes;
667
+ const TreeViewAlt = /* @__PURE__ */ react.default.forwardRef(function TreeViewAlt({ children, size = 16, ...rest }, ref) {
668
+ return react.default.createElement(require_Icon.Icon, {
681
669
  width: size,
682
670
  height: size,
683
671
  ref,
@@ -685,15 +673,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
685
673
  viewBox: "0 0 32 32",
686
674
  fill: "currentColor",
687
675
  ...rest
688
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2s-1.067,0.203-1.473,0.609L2.609,14.527C2.203,14.933,2,15.466,2,16 s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30s1.067-0.203,1.473-0.609l11.917-11.917 C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M21,18H11v-4h10V18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
689
- fill: "none",
690
- d: "M11 14H21V18H11z",
691
- "data-icon-path": "inner-path"
676
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
677
+ d: "M23,9h6a2,2,0,0,0,2-2V3a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2V4H11V3A2,2,0,0,0,9,1H3A2,2,0,0,0,1,3V7A2,2,0,0,0,3,9H9a2,2,0,0,0,2-2V6h4V26a2.0023,2.0023,0,0,0,2,2h4v1a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V25a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2v1H17V17h4v1a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V14a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2v1H17V6h4V7A2,2,0,0,0,23,9Zm0-6h6V7H23ZM9,7H3V3H9ZM23,25h6v4H23Zm0-11h6v4H23Z",
678
+ transform: "translate(0 .005)"
692
679
  }), children);
693
680
  });
694
- if (process.env.NODE_ENV !== "production") UndefinedFilled.propTypes = require_iconPropTypes.iconPropTypes;
695
- const Undo = react.default.forwardRef(function Undo({ children, size = 16, ...rest }, ref) {
696
- return react.default.createElement(require_Icon_js, {
681
+ if (process.env.NODE_ENV !== "production") TreeViewAlt.propTypes = require_iconPropTypes.iconPropTypes;
682
+ const TriangleDownOutline = /* @__PURE__ */ react.default.forwardRef(function TriangleDownOutline({ children, size = 16, ...rest }, ref) {
683
+ return react.default.createElement(require_Icon.Icon, {
697
684
  width: size,
698
685
  height: size,
699
686
  ref,
@@ -701,11 +688,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
701
688
  viewBox: "0 0 32 32",
702
689
  fill: "currentColor",
703
690
  ...rest
704
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10H7.8149l3.5874-3.5859L10,5,4,11,10,17l1.4023-1.4146L7.8179,12H20a6,6,0,0,1,0,12H12v2h8a8,8,0,0,0,0-16Z" }), children);
691
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
692
+ strokeWidth: "0",
693
+ d: "m2.1245,4.4883l13.0195,23.9868c.1865.3438.5212.5249.856.5249.3345,0,.6689-.1812.8555-.5249L29.875,4.4883c.0862-.1582.1255-.3257.125-.4883-.0017-.5229-.4114-1-.9805-1H2.9802c-.5691,0-.9788.4771-.9802,1-.0005.1626.0386.3301.1245.4883Zm25.1985.5117l-11.323,20.8677L4.677,5h22.646Z"
694
+ }), children);
705
695
  });
706
- if (process.env.NODE_ENV !== "production") Undo.propTypes = require_iconPropTypes.iconPropTypes;
707
- const UngroupObjects = react.default.forwardRef(function UngroupObjects({ children, size = 16, ...rest }, ref) {
708
- return react.default.createElement(require_Icon_js, {
696
+ if (process.env.NODE_ENV !== "production") TriangleDownOutline.propTypes = require_iconPropTypes.iconPropTypes;
697
+ const TriangleDownSolid = /* @__PURE__ */ react.default.forwardRef(function TriangleDownSolid({ children, size = 16, ...rest }, ref) {
698
+ return react.default.createElement(require_Icon.Icon, {
709
699
  width: size,
710
700
  height: size,
711
701
  ref,
@@ -713,11 +703,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
713
703
  viewBox: "0 0 32 32",
714
704
  fill: "currentColor",
715
705
  ...rest
716
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,14V10H26v2H20V6h2V2H18V4H6V2H2V6H4V18H2v4H6V20h6v6H10v4h4V28H26v2h4V26H28V14ZM6,6H18V18H6ZM26,26H14V20h4v2h4V18H20V14h6Z" }), children);
706
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
707
+ strokeWidth: "0",
708
+ d: "m29.0194,3c.5692,0,.979.4772.9806,1,.0005.1628-.0388.3299-.1249.4885l-13.0196,23.9867c-.1865.3435-.521.5248-.8555.5248s-.6694-.1812-.8559-.5248L2.1246,4.4885c-.0861-.1586-.1251-.3257-.1246-.4885.0016-.5228.4111-1,.9803-1h26.0391Z"
709
+ }), children);
717
710
  });
718
- if (process.env.NODE_ENV !== "production") UngroupObjects.propTypes = require_iconPropTypes.iconPropTypes;
719
- const Unknown = react.default.forwardRef(function Unknown({ children, size = 16, ...rest }, ref) {
720
- return react.default.createElement(require_Icon_js, {
711
+ if (process.env.NODE_ENV !== "production") TriangleDownSolid.propTypes = require_iconPropTypes.iconPropTypes;
712
+ const TriangleLeftOutline = /* @__PURE__ */ react.default.forwardRef(function TriangleLeftOutline({ children, size = 16, ...rest }, ref) {
713
+ return react.default.createElement(require_Icon.Icon, {
721
714
  width: size,
722
715
  height: size,
723
716
  ref,
@@ -725,15 +718,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
725
718
  viewBox: "0 0 32 32",
726
719
  fill: "currentColor",
727
720
  ...rest
728
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
729
- cx: "16",
730
- cy: "22.5",
731
- r: "1.5"
732
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,19h-2v-4h2c1.103,0,2-0.897,2-2s-0.897-2-2-2h-2c-1.103,0-2,0.897-2,2v0.5h-2V13c0-2.206,1.794-4,4-4h2 c2.206,0,4,1.794,4,4s-1.794,4-4,4V19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" }), children);
721
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
722
+ strokeWidth: "0",
723
+ d: "m27.5117,2.1245L3.5249,15.144c-.3438.1865-.5249.5212-.5249.856,0,.3345.1812.6689.5249.8555l23.9868,13.0195c.1582.0862.3257.1255.4883.125.5229-.0017,1-.4114,1-.9805V2.9802c0-.5691-.4771-.9788-1-.9802-.1626-.0005-.3301.0386-.4883.1245Zm-.5117,25.1985L6.1323,16,27,4.677v22.646Z"
724
+ }), children);
733
725
  });
734
- if (process.env.NODE_ENV !== "production") Unknown.propTypes = require_iconPropTypes.iconPropTypes;
735
- const UnknownFilled = react.default.forwardRef(function UnknownFilled({ children, size = 16, ...rest }, ref) {
736
- return react.default.createElement(require_Icon_js, {
726
+ if (process.env.NODE_ENV !== "production") TriangleLeftOutline.propTypes = require_iconPropTypes.iconPropTypes;
727
+ const TriangleLeftSolid = /* @__PURE__ */ react.default.forwardRef(function TriangleLeftSolid({ children, size = 16, ...rest }, ref) {
728
+ return react.default.createElement(require_Icon.Icon, {
737
729
  width: size,
738
730
  height: size,
739
731
  ref,
@@ -741,15 +733,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
741
733
  viewBox: "0 0 32 32",
742
734
  fill: "currentColor",
743
735
  ...rest
744
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2s-1.067,0.203-1.473,0.609L2.609,14.527C2.203,14.933,2,15.466,2,16 s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30s1.067-0.203,1.473-0.609l11.917-11.917 C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,24c-0.828,0-1.5-0.671-1.5-1.5S15.172,21,16,21s1.5,0.671,1.5,1.5 S16.828,24,16,24z M17.125,17.248v1.877h-2.25V15H17c1.034,0,1.875-0.841,1.875-1.875S18.034,11.25,17,11.25h-2 c-1.034,0-1.875,0.841-1.875,1.875v0.5h-2.25v-0.5C10.875,10.851,12.726,9,15,9h2c2.274,0,4.125,1.851,4.125,4.125 C21.125,15.358,19.342,17.182,17.125,17.248z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
745
- fill: "none",
746
- d: "M16,21c0.828,0,1.5,0.672,1.5,1.5S16.828,24,16,24c-0.828,0-1.5-0.672-1.5-1.5S15.172,21,16,21 z M17.125,17.248c2.217-0.066,4-1.89,4-4.123C21.125,10.851,19.274,9,17,9h-2c-2.274,0-4.125,1.851-4.125,4.125v0.5h2.25v-0.5 c0-1.034,0.841-1.875,1.875-1.875h2c1.034,0,1.875,0.841,1.875,1.875S18.034,15,17,15h-2.125v4.125h2.25V17.248z",
747
- "data-icon-path": "inner-path"
736
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
737
+ strokeWidth: "0",
738
+ d: "m29,29.0194c0,.5692-.4772.979-1,.9806-.1628.0005-.3299-.0388-.4885-.1249L3.5248,16.8556c-.3435-.1865-.5248-.521-.5248-.8555s.1812-.6694.5248-.8559L27.5115,2.1246c.1586-.0861.3257-.1251.4885-.1246.5228.0016,1,.4111,1,.9803v26.0391Z"
748
739
  }), children);
749
740
  });
750
- if (process.env.NODE_ENV !== "production") UnknownFilled.propTypes = require_iconPropTypes.iconPropTypes;
751
- const Unlink = react.default.forwardRef(function Unlink({ children, size = 16, ...rest }, ref) {
752
- return react.default.createElement(require_Icon_js, {
741
+ if (process.env.NODE_ENV !== "production") TriangleLeftSolid.propTypes = require_iconPropTypes.iconPropTypes;
742
+ const TriangleOutline = /* @__PURE__ */ react.default.forwardRef(function TriangleOutline({ children, size = 16, ...rest }, ref) {
743
+ return react.default.createElement(require_Icon.Icon, {
753
744
  width: size,
754
745
  height: size,
755
746
  ref,
@@ -758,25 +749,28 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
758
749
  fill: "currentColor",
759
750
  ...rest
760
751
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
761
- d: "M5 3.59H7V8.42H5z",
762
- transform: "rotate(-45.01 5.996 6.005)"
763
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
764
- d: "M25 23.58H27V28.409999999999997H25z",
765
- transform: "rotate(-44.99 25.995 25.999)"
766
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2H13V6H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11H6V13H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 19H30V21H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H21V30H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.58,21.07l-3.71,3.72a4,4,0,1,1-5.66-5.66l3.72-3.72L9.51,14,5.8,17.72a6,6,0,0,0-.06,8.54A6,6,0,0,0,10,28a6.07,6.07,0,0,0,4.32-1.8L18,22.49Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.41,10.93l3.72-3.72a4,4,0,1,1,5.66,5.66l-3.72,3.72L22.49,18l3.71-3.72a6,6,0,0,0,.06-8.54A6,6,0,0,0,22,4a6.07,6.07,0,0,0-4.32,1.8L14,9.51Z" }), children);
752
+ strokeWidth: "0",
753
+ d: "m29.8755,27.5117L16.856,3.5249c-.1865-.3438-.5212-.5249-.856-.5249-.3345,0-.6689.1812-.8555.5249L2.125,27.5117c-.0862.1582-.1255.3257-.125.4883.0017.5229.4114,1,.9805,1h26.0393c.5691,0,.9788-.4771.9802-1,.0005-.1626-.0386-.3301-.1245-.4883Zm-25.1985-.5117L16,6.1323l11.323,20.8677H4.677Z"
754
+ }), children);
767
755
  });
768
- if (process.env.NODE_ENV !== "production") Unlink.propTypes = require_iconPropTypes.iconPropTypes;
769
- const Unlocked = react.default.forwardRef(function Unlocked({ children, size = 16, ...rest }, ref) {
770
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
756
+ if (process.env.NODE_ENV !== "production") TriangleOutline.propTypes = require_iconPropTypes.iconPropTypes;
757
+ const TriangleRightOutline = /* @__PURE__ */ react.default.forwardRef(function TriangleRightOutline({ children, size = 16, ...rest }, ref) {
758
+ return react.default.createElement(require_Icon.Icon, {
771
759
  width: size,
772
760
  height: size,
773
761
  ref,
774
762
  xmlns: "http://www.w3.org/2000/svg",
775
- viewBox: "0 0 16 16",
763
+ viewBox: "0 0 32 32",
776
764
  fill: "currentColor",
777
765
  ...rest
778
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,7H6V4c0-1.1,0.9-2,2-2s2,0.9,2,2h1c0-1.7-1.3-3-3-3S5,2.3,5,4v3H4C3.4,7,3,7.4,3,8v6c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1 V8C13,7.4,12.6,7,12,7z M12,14H4V8h8V14z" }), children);
779
- return react.default.createElement(require_Icon_js, {
766
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
767
+ strokeWidth: "0",
768
+ d: "m4.4883,29.8755l23.9868-13.0195c.3438-.1865.5249-.5212.5249-.856,0-.3345-.1812-.6689-.5249-.8555L4.4883,2.125c-.1582-.0862-.3257-.1255-.4883-.125-.5229.0017-1,.4114-1,.9805v26.0393c0,.5691.4771.9788,1,.9802.1626.0005.3301-.0386.4883-.1245Zm.5117-25.1985l20.8677,11.323L5,27.323V4.677Z"
769
+ }), children);
770
+ });
771
+ if (process.env.NODE_ENV !== "production") TriangleRightOutline.propTypes = require_iconPropTypes.iconPropTypes;
772
+ const TriangleRightSolid = /* @__PURE__ */ react.default.forwardRef(function TriangleRightSolid({ children, size = 16, ...rest }, ref) {
773
+ return react.default.createElement(require_Icon.Icon, {
780
774
  width: size,
781
775
  height: size,
782
776
  ref,
@@ -784,11 +778,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
784
778
  viewBox: "0 0 32 32",
785
779
  fill: "currentColor",
786
780
  ...rest
787
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14H12V8a4,4,0,0,1,8,0h2A6,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,14Zm0,14H8V16H24Z" }), children);
781
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
782
+ strokeWidth: "0",
783
+ d: "m3,2.9806c0-.5692.4772-.979,1-.9806.1628-.0005.3299.0388.4885.1249l23.9867,13.0196c.3435.1865.5248.521.5248.8555s-.1812.6694-.5248.8559L4.4885,29.8754c-.1586.0861-.3257.1251-.4885.1246-.5228-.0016-1-.4111-1-.9803V2.9806Z"
784
+ }), children);
788
785
  });
789
- if (process.env.NODE_ENV !== "production") Unlocked.propTypes = require_iconPropTypes.iconPropTypes;
790
- const Unplug = react.default.forwardRef(function Unplug({ children, size = 16, ...rest }, ref) {
791
- return react.default.createElement(require_Icon_js, {
786
+ if (process.env.NODE_ENV !== "production") TriangleRightSolid.propTypes = require_iconPropTypes.iconPropTypes;
787
+ const TriangleSolid = /* @__PURE__ */ react.default.forwardRef(function TriangleSolid({ children, size = 16, ...rest }, ref) {
788
+ return react.default.createElement(require_Icon.Icon, {
792
789
  width: size,
793
790
  height: size,
794
791
  ref,
@@ -796,11 +793,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
796
793
  viewBox: "0 0 32 32",
797
794
  fill: "currentColor",
798
795
  ...rest
799
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.9,4.4l-1.4-1.4-3,3c-1.9-1.3-4.6-1.1-6.3.6l-3.5,3.5,7.1,7.1,3.5-3.5c1.7-1.7,1.9-4.4.6-6.3,0,0,3-3,3-3ZM23.8,12.3l-2.1,2.1-4.2-4.2,2.1-2.1c1.2-1.2,3.1-1.2,4.2,0,1.2,1.2,1.2,3.1,0,4.2ZM17.7,18.5l-1.4-1.4-1.9,1.9-1.4-1.4,1.9-1.9-1.4-1.4-1.9,1.9-1.4-1.4-3.5,3.5c-1.7,1.7-1.9,4.4-.6,6.3l-3,3,1.4,1.4,3-3c.8.5,1.8.8,2.8.8s2.6-.5,3.5-1.5l3.5-3.5-1.4-1.4,1.9-1.9h-.1ZM12.2,23.9c-1.1,1.1-3.1,1.1-4.2,0-1.2-1.2-1.2-3.1,0-4.2l2.1-2.1,4.2,4.2s-2.1,2.1-2.1,2.1ZM8,14h-4v-2h4v2ZM14,8h-2v-4h2v4ZM28,20h-4v-2h4v2ZM24.6858,25.9l-2.8284-2.8284,1.4142-1.4142,2.8284,2.8284-1.4142,1.4142ZM8.8071,10.0213l-2.8284-2.8284,1.4142-1.4142,2.8284,2.8284-1.4142,1.4142ZM20,28h-2v-4h2v4Z" }), children);
796
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
797
+ strokeWidth: "0",
798
+ d: "m2.9806,29c-.5692,0-.979-.4772-.9806-1-.0005-.1628.0388-.3299.1249-.4885L15.1444,3.5248c.1865-.3435.521-.5248.8555-.5248s.6694.1812.8559.5248l13.0195,23.9867c.0861.1586.1251.3257.1246.4885-.0016.5228-.4111,1-.9803,1H2.9806Z"
799
+ }), children);
800
800
  });
801
- if (process.env.NODE_ENV !== "production") Unplug.propTypes = require_iconPropTypes.iconPropTypes;
802
- const Unsaved = react.default.forwardRef(function Unsaved({ children, size = 16, ...rest }, ref) {
803
- return react.default.createElement(require_Icon_js, {
801
+ if (process.env.NODE_ENV !== "production") TriangleSolid.propTypes = require_iconPropTypes.iconPropTypes;
802
+ const Trigger = /* @__PURE__ */ react.default.forwardRef(function Trigger({ children, size = 16, ...rest }, ref) {
803
+ return react.default.createElement(require_Icon.Icon, {
804
804
  width: size,
805
805
  height: size,
806
806
  ref,
@@ -808,11 +808,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
808
808
  viewBox: "0 0 32 32",
809
809
  fill: "currentColor",
810
810
  ...rest
811
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 19.4 28.6 18 25 21.6 21.4 18 20 19.4 23.6 23 20 26.6 21.4 28 25 24.4 28.6 28 30 26.6 26.4 23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,26l-4,0v-8l4,0v-2l-4,0c-1.1,0-2,0.9-2,2v8H6V6h4v4c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V6.4l4,4l0,5.6h2l0-6 c0-0.3-0.1-0.5-0.3-0.7l-5-5C22.5,4.1,22.3,4,22,4H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2l10,0V26z M12,6h8v4h-8V6z" }), children);
811
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,19l1.4,1.4,5.6-5.6,5.6,5.6,1.4-1.4-7-7-7,7ZM28.6,11.6l-5.6,5.6-5.6-5.6-1.4,1.4,7,7,7-7-1.4-1.4ZM9,22c-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2-.8954-2-2-2ZM23,10c1.1046,0,2-.8954,2-2s-.8954-2-2-2-2,.8954-2,2,.8954,2,2,2Z" }), children);
812
812
  });
813
- if (process.env.NODE_ENV !== "production") Unsaved.propTypes = require_iconPropTypes.iconPropTypes;
814
- const UpToTop = react.default.forwardRef(function UpToTop({ children, size = 16, ...rest }, ref) {
815
- return react.default.createElement(require_Icon_js, {
813
+ if (process.env.NODE_ENV !== "production") Trigger.propTypes = require_iconPropTypes.iconPropTypes;
814
+ const Trophy = /* @__PURE__ */ react.default.forwardRef(function Trophy({ children, size = 16, ...rest }, ref) {
815
+ return react.default.createElement(require_Icon.Icon, {
816
816
  width: size,
817
817
  height: size,
818
818
  ref,
@@ -820,11 +820,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
820
820
  viewBox: "0 0 32 32",
821
821
  fill: "currentColor",
822
822
  ...rest
823
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 14 6 24 7.4 25.4 16 16.8 24.6 25.4 26 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 8H28V10H4z" }), children);
823
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,7H24V6a2.0023,2.0023,0,0,0-2-2H10A2.0023,2.0023,0,0,0,8,6V7H6A2.0023,2.0023,0,0,0,4,9v3a4.0045,4.0045,0,0,0,4,4h.322A8.1689,8.1689,0,0,0,15,21.9341V26H10v2H22V26H17V21.9311A7.9661,7.9661,0,0,0,23.74,16H24a4.0045,4.0045,0,0,0,4-4V9A2.0023,2.0023,0,0,0,26,7ZM8,14a2.0023,2.0023,0,0,1-2-2V9H8Zm14,0a6,6,0,0,1-6.1855,5.9971A6.1991,6.1991,0,0,1,10,13.7065V6H22Zm4-2a2.0023,2.0023,0,0,1-2,2V9h2Z" }), children);
824
824
  });
825
- if (process.env.NODE_ENV !== "production") UpToTop.propTypes = require_iconPropTypes.iconPropTypes;
826
- const UpdateComplete = react.default.forwardRef(function UpdateComplete({ children, size = 16, ...rest }, ref) {
827
- return react.default.createElement(require_Icon_js, {
825
+ if (process.env.NODE_ENV !== "production") Trophy.propTypes = require_iconPropTypes.iconPropTypes;
826
+ const TrophyFilled = /* @__PURE__ */ react.default.forwardRef(function TrophyFilled({ children, size = 16, ...rest }, ref) {
827
+ return react.default.createElement(require_Icon.Icon, {
828
828
  width: size,
829
829
  height: size,
830
830
  ref,
@@ -832,11 +832,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
832
832
  viewBox: "0 0 32 32",
833
833
  fill: "currentColor",
834
834
  ...rest
835
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30c-7.72,0-14-6.28-14-14h2c0,6.617,5.383,12,12,12v2ZM12,8h-4.922c2.258-2.524,5.467-4,8.922-4,6.617,0,12,5.383,12,12h2c0-7.72-6.28-14-14-14-3.828,0-7.393,1.558-10,4.234V2h-2v8h8v-2ZM22,27.18l-2.59-2.59-1.41,1.41,4,4,8-8-1.41-1.41s-6.59,6.59-6.59,6.59Z" }), children);
835
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,7H24V6a2.0023,2.0023,0,0,0-2-2H10A2.0023,2.0023,0,0,0,8,6V7H6A2.0023,2.0023,0,0,0,4,9v3a4.0045,4.0045,0,0,0,4,4h.322A8.1689,8.1689,0,0,0,15,21.9341V26H10v2H22V26H17V21.9311A7.9661,7.9661,0,0,0,23.74,16H24a4.0045,4.0045,0,0,0,4-4V9A2.0023,2.0023,0,0,0,26,7ZM8,14a2.0023,2.0023,0,0,1-2-2V9H8Zm18-2a2.0023,2.0023,0,0,1-2,2V9h2Z" }), children);
836
836
  });
837
- if (process.env.NODE_ENV !== "production") UpdateComplete.propTypes = require_iconPropTypes.iconPropTypes;
838
- const UpdateNow = react.default.forwardRef(function UpdateNow({ children, size = 16, ...rest }, ref) {
839
- return react.default.createElement(require_Icon_js, {
837
+ if (process.env.NODE_ENV !== "production") TrophyFilled.propTypes = require_iconPropTypes.iconPropTypes;
838
+ const TropicalStorm = /* @__PURE__ */ react.default.forwardRef(function TropicalStorm({ children, size = 16, ...rest }, ref) {
839
+ return react.default.createElement(require_Icon.Icon, {
840
840
  width: size,
841
841
  height: size,
842
842
  ref,
@@ -844,11 +844,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
844
844
  viewBox: "0 0 32 32",
845
845
  fill: "currentColor",
846
846
  ...rest
847
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 25.586 25 23.586 25 21 23 21 23 24.414 25.586 27 27 25.586z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,31a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,24,31Zm0-12a5,5,0,1,0,5,5A5.0055,5.0055,0,0,0,24,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28A12.0134,12.0134,0,0,1,4,16H2A14.0158,14.0158,0,0,0,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,8H7.0784A11.9843,11.9843,0,0,1,28,16h2A13.9778,13.9778,0,0,0,6,6.2344V2H4v8h8Z" }), children);
847
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z" }), children);
848
848
  });
849
- if (process.env.NODE_ENV !== "production") UpdateNow.propTypes = require_iconPropTypes.iconPropTypes;
850
- const Upgrade = react.default.forwardRef(function Upgrade({ children, size = 16, ...rest }, ref) {
851
- return react.default.createElement(require_Icon_js, {
849
+ if (process.env.NODE_ENV !== "production") TropicalStorm.propTypes = require_iconPropTypes.iconPropTypes;
850
+ const TropicalStormModelTracks = /* @__PURE__ */ react.default.forwardRef(function TropicalStormModelTracks({ children, size = 16, ...rest }, ref) {
851
+ return react.default.createElement(require_Icon.Icon, {
852
852
  width: size,
853
853
  height: size,
854
854
  ref,
@@ -856,20 +856,23 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
856
856
  viewBox: "0 0 32 32",
857
857
  fill: "currentColor",
858
858
  ...rest
859
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,24H11a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2H21a2,2,0,0,0,2-2V26A2,2,0,0,0,21,24Zm0,4H11V26H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.707,14.293l-12-12a.9994.9994,0,0,0-1.414,0l-12,12A1,1,0,0,0,4,16H9v4a2.0023,2.0023,0,0,0,2,2H21a2.0027,2.0027,0,0,0,2-2V16h5a1,1,0,0,0,.707-1.707ZM21,14v6H11V14H6.4141L16,4.4141,25.5859,14Z" }), children);
859
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,17a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,17Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,10,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14.8188,6.65c.1163-.1211,1.8643-1.919,2.8882-2.9434A1,1,0,0,0,17,2C11.812,2,2,4.2988,2,13a7.8938,7.8938,0,0,0,3.1812,6.35c-.1612.1675-1.9507,2.0054-2.8882,2.9429A1,1,0,0,0,3,24c5.188,0,15-2.2988,15-11A7.8927,7.8927,0,0,0,14.8188,6.65ZM9.7065,20.793a20.94,20.94,0,0,1-4.0932.9853c.1621-.166,2.7685-2.9053,2.7685-2.9053l-1.1743-.6074A5.9064,5.9064,0,0,1,4,13c0-3.667,2.1177-6.2886,6.2935-7.793a20.94,20.94,0,0,1,4.0932-.9853c-.227.2324-2.769,2.9057-2.769,2.9057l1.1748.607A5.9075,5.9075,0,0,1,16,13C16,16.667,13.8823,19.2886,9.7065,20.793Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,17l-5-5-5,5,1.4126,1.4155L24,15.8325V19a9.01,9.01,0,0,1-9,9H12v2h3A11.0125,11.0125,0,0,0,26,19V15.8325l2.5859,2.5816Z" }), children);
860
860
  });
861
- if (process.env.NODE_ENV !== "production") Upgrade.propTypes = require_iconPropTypes.iconPropTypes;
862
- const Upload = react.default.forwardRef(function Upload({ children, size = 16, ...rest }, ref) {
863
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
861
+ if (process.env.NODE_ENV !== "production") TropicalStormModelTracks.propTypes = require_iconPropTypes.iconPropTypes;
862
+ const TropicalStormTracks = /* @__PURE__ */ react.default.forwardRef(function TropicalStormTracks({ children, size = 16, ...rest }, ref) {
863
+ return react.default.createElement(require_Icon.Icon, {
864
864
  width: size,
865
865
  height: size,
866
866
  ref,
867
867
  xmlns: "http://www.w3.org/2000/svg",
868
- viewBox: "0 0 16 16",
868
+ viewBox: "0 0 32 32",
869
869
  fill: "currentColor",
870
870
  ...rest
871
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 9 3.7 9.7 7.5 5.9 7.5 15 8.5 15 8.5 5.9 12.3 9.7 13 9 8 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3,4V2h10v2h1V2c0-0.6-0.4-1-1-1H3C2.4,1,2,1.4,2,2v2H3z" }), children);
872
- return react.default.createElement(require_Icon_js, {
871
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,13Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.86,12.4805h0a12.9277,12.9277,0,0,0-4.8575-4.9991q.2044-.213.4424-.4589h0c.82-.8482,1.93-1.9825,3.2622-3.3155A1,1,0,0,0,25,2c-.354,0-8.7363.0488-14.269,4.3018h0A12.15,12.15,0,0,0,7.481,9.998c-.1416-.1367-.295-.2841-.4585-.4423C6.1743,8.7349,5.04,7.6255,3.707,6.293A1,1,0,0,0,2,7c0,.3594.05,8.874,4.4058,14.4023a12.1023,12.1023,0,0,0,3.5918,3.1163c-.21.2177-.4346.4516-.6563.68h0c-.7954.8208-1.8286,1.8745-3.0483,3.0943A1,1,0,0,0,7,30c.2856,0,7.061-.0352,12.459-3.1055a12.9618,12.9618,0,0,0,5.06-4.8925q.3062.2937.68.6567c.82.7954,1.8745,1.8286,3.0943,3.0483A1,1,0,0,0,30,25C30,24.7119,29.9644,17.8877,26.86,12.4805Zm-3.03,6.1074-.5469,1.3672A10.5415,10.5415,0,0,1,18.47,25.1562,24.3514,24.3514,0,0,1,9.584,27.8135c.4409-.4492,3.8281-3.9824,3.8281-3.9824l-1.3682-.5474a9.8021,9.8021,0,0,1-4.0668-3.1191c-2.5406-3.2242-3.4585-7.7623-3.79-10.58.5435.5337,3.9815,3.8266,3.9815,3.8266l.5468-1.3672A9.8569,9.8569,0,0,1,11.95,7.8877h0C15.1665,5.415,19.6309,4.5146,22.4155,4.187c-.5332.5435-3.8276,3.9819-3.8276,3.9819l1.3677.5469a10.52,10.52,0,0,1,5.17,4.7608v0a24.29,24.29,0,0,1,2.688,8.94C27.3643,21.9751,23.83,18.5879,23.83,18.5879Z" }), children);
872
+ });
873
+ if (process.env.NODE_ENV !== "production") TropicalStormTracks.propTypes = require_iconPropTypes.iconPropTypes;
874
+ const TropicalWarning = /* @__PURE__ */ react.default.forwardRef(function TropicalWarning({ children, size = 16, ...rest }, ref) {
875
+ return react.default.createElement(require_Icon.Icon, {
873
876
  width: size,
874
877
  height: size,
875
878
  ref,
@@ -877,11 +880,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
877
880
  viewBox: "0 0 32 32",
878
881
  fill: "currentColor",
879
882
  ...rest
880
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18 7.41 19.41 15 11.83 15 30 17 30 17 11.83 24.59 19.41 26 18 16 8 6 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z" }), children);
883
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.9487,25.6836a1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,23,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,15,28h-.4336C13.9241,26.7939,12,22.312,12,12v-.1313l1.1169.7446A6.46,6.46,0,0,1,14.4346,13.79l1.0007-1.8418a8.4469,8.4469,0,0,0-1.209-.9986L12.8025,10h1.5308a6.9861,6.9861,0,0,1,1.9934.3071l.9755-1.7954A9.0059,9.0059,0,0,0,14.3333,8H13.1169A7.0329,7.0329,0,0,1,18,6h.6669l1.0867-2H18a9.0361,9.0361,0,0,0-7,3.3638A9.0362,9.0362,0,0,0,4,4H2V6H4A7.0308,7.0308,0,0,1,8.8828,8H7.6665a9.06,9.06,0,0,0-5.4,1.8L.4,11.2l1.2,1.6L3.4668,11.4a7.04,7.04,0,0,1,4.2-1.4H9.1973l-1.4239.9492A8.457,8.457,0,0,0,4,18H6a6.46,6.46,0,0,1,2.8828-5.3867L10,11.8687V12c0,8.9365,1.3994,13.7539,2.355,16H2v2H15a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,4.9955,4.9955,0,0,0,3,1.8833V27.8125A3.7616,3.7616,0,0,1,27.9487,25.6836Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
884
+ fill: "none",
885
+ d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"
886
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), children);
881
887
  });
882
- if (process.env.NODE_ENV !== "production") Upload.propTypes = require_iconPropTypes.iconPropTypes;
883
- const Upstream = react.default.forwardRef(function Upstream({ children, size = 16, ...rest }, ref) {
884
- return react.default.createElement(require_Icon_js, {
888
+ if (process.env.NODE_ENV !== "production") TropicalWarning.propTypes = require_iconPropTypes.iconPropTypes;
889
+ const TryCatch = /* @__PURE__ */ react.default.forwardRef(function TryCatch({ children, size = 16, ...rest }, ref) {
890
+ return react.default.createElement(require_Icon.Icon, {
885
891
  width: size,
886
892
  height: size,
887
893
  ref,
@@ -889,11 +895,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
889
895
  viewBox: "0 0 32 32",
890
896
  fill: "currentColor",
891
897
  ...rest
892
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,24c0,3.3137,2.6863,6,6,6s6-2.6863,6-6-2.6863-6-6-6-6,2.6863-6,6Zm2,0c0-2.2056,1.7944-4,4-4s4,1.7944,4,4-1.7944,4-4,4-4-1.7944-4-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,5c0-1.6567-1.3433-3-3-3s-3,1.3433-3,3c0,1.3042.8374,2.4028,2,2.8164v5.1836c0,1.7217-.752,3.3438-2,4.4673v-2.4673h-2v6h6v-2h-2.7168c1.6938-1.4995,2.7168-3.6816,2.7168-6v-5.1836c1.1626-.4136,2-1.5122,2-2.8164Zm-3,1c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18.586,11.5859l-1.5859,1.5859v-5.3555c1.1626-.4136,2-1.5122,2-2.8164,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3c0,1.3042.8374,2.4028,2,2.8164v5.3555l-1.5859-1.5859-1.4141,1.4141,4,4,4-4-1.4141-1.4141Zm-2.5859-7.5859c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8,15v2.4673c-1.248-1.1235-2-2.7456-2-4.4673v-5.1836c1.1626-.4136,2-1.5122,2-2.8164,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3c0,1.3042.8374,2.4028,2,2.8164v5.1836c0,2.3184,1.0229,4.5005,2.7168,6h-2.7168v2h6v-6h-2Zm-3-11c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1Z" }), children);
898
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.2,13l-2.2-2.2v-3.8h-12.8l-2.2-2.2V2h-2v2.8l-3.2,3.2,3.2,3.2v14.9l-1.8-1.8-1.4,1.4,4.2,4.2,1.1-1.1,3.1-3.1-1.4-1.4-1.8,1.8v-4.1h21v-9h-3.8ZM14,13.5v6.5h-6v-8.8l2.2-2.2h10.8v1.8l-2.2,2.2h-4.8v.5ZM27,20h-11v-5h2.8l3.2,3.2,3.2-3.2h1.8v5Z" }), children);
893
899
  });
894
- if (process.env.NODE_ENV !== "production") Upstream.propTypes = require_iconPropTypes.iconPropTypes;
895
- const Url = react.default.forwardRef(function Url({ children, size = 16, ...rest }, ref) {
896
- return react.default.createElement(require_Icon_js, {
900
+ if (process.env.NODE_ENV !== "production") TryCatch.propTypes = require_iconPropTypes.iconPropTypes;
901
+ const Tsq = /* @__PURE__ */ react.default.forwardRef(function Tsq({ children, size = 16, ...rest }, ref) {
902
+ return react.default.createElement(require_Icon.Icon, {
897
903
  width: size,
898
904
  height: size,
899
905
  ref,
@@ -901,20 +907,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
901
907
  viewBox: "0 0 32 32",
902
908
  fill: "currentColor",
903
909
  ...rest
904
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
905
- strokeWidth: "0",
906
- d: "M24 21 24 9 22 9 22 23 30 23 30 21 24 21z"
907
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
908
- strokeWidth: "0",
909
- d: "m20,15v-4c0-1.103-.8975-2-2-2h-6v14h2v-6h1.4807l2.3345,6h2.1453l-2.3331-6h.3726c1.1025,0,2-.8975,2-2Zm-6-4h4v4h-4v-4Z"
910
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
911
- strokeWidth: "0",
912
- d: "m8,23h-4c-1.103,0-2-.8975-2-2v-12h2v12h4v-12h2v12c0,1.1025-.897,2-2,2Z"
913
- }), children);
910
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H30V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 22H30V24H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20h-11V12h11v8Zm-9-2h7v-4h-7v4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 8H30V10H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 4H30V6H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.293 18.707 8 16.4143 8 12 10 12 10 15.5857 11.707 17.293 10.293 18.707z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,24c-4.4111,0-8-3.5889-8-8s3.5889-8,8-8,8,3.5889,8,8-3.5889,8-8,8Zm0-14c-3.3083,0-6,2.6917-6,6s2.6917,6,6,6,6-2.6917,6-6-2.6917-6-6-6Z" }), children);
914
911
  });
915
- if (process.env.NODE_ENV !== "production") Url.propTypes = require_iconPropTypes.iconPropTypes;
916
- const UsageIncludedUseCase = react.default.forwardRef(function UsageIncludedUseCase({ children, size = 16, ...rest }, ref) {
917
- return react.default.createElement(require_Icon_js, {
912
+ if (process.env.NODE_ENV !== "production") Tsq.propTypes = require_iconPropTypes.iconPropTypes;
913
+ const Tsunami = /* @__PURE__ */ react.default.forwardRef(function Tsunami({ children, size = 16, ...rest }, ref) {
914
+ return react.default.createElement(require_Icon.Icon, {
918
915
  width: size,
919
916
  height: size,
920
917
  ref,
@@ -922,14 +919,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
922
919
  viewBox: "0 0 32 32",
923
920
  fill: "currentColor",
924
921
  ...rest
925
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
926
- strokeWidth: "0",
927
- d: "m13,28V5.8281l7.5859,7.5859,1.4141-1.4141L12,2,2,12l1.4143,1.4141,7.5857-7.5854v22.1714c0,1.1045.8955,2,2,2h15v-2h-15Z"
928
- }), children);
922
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,26H24A10.0349,10.0349,0,0,1,17.0732,8.7378,11.9629,11.9629,0,0,0,12.9937,8a6.9027,6.9027,0,0,0-6.0308,3.42C4.9966,14.4348,4,19.34,4,26H2c0-7.0542,1.106-12.3274,3.2871-15.6726A8.906,8.906,0,0,1,12.9937,6h.0068a14.762,14.762,0,0,1,6.4619,1.592,1,1,0,0,1,.0869,1.7222A8.0249,8.0249,0,0,0,24,24h6Z" }), children);
929
923
  });
930
- if (process.env.NODE_ENV !== "production") UsageIncludedUseCase.propTypes = require_iconPropTypes.iconPropTypes;
931
- const Usb = react.default.forwardRef(function Usb({ children, size = 16, ...rest }, ref) {
932
- return react.default.createElement(require_Icon_js, {
924
+ if (process.env.NODE_ENV !== "production") Tsunami.propTypes = require_iconPropTypes.iconPropTypes;
925
+ const Tsv = /* @__PURE__ */ react.default.forwardRef(function Tsv({ children, size = 16, ...rest }, ref) {
926
+ return react.default.createElement(require_Icon.Icon, {
933
927
  width: size,
934
928
  height: size,
935
929
  ref,
@@ -937,11 +931,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
937
931
  viewBox: "0 0 32 32",
938
932
  fill: "currentColor",
939
933
  ...rest
940
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,15V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6v9a2,2,0,0,0-2,2V28H8V17H24V28h2V17A2,2,0,0,0,24,15ZM10,6H22v9H10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 10H15V12H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 10H20V12H17z" }), children);
934
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 9 26 22 24 9 22 9 24.516 23 27.484 23 30 9 28 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23H12V21h6V17H14a2.002,2.002,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h6v2H14v4h4a2.002,2.002,0,0,1,2,2v4A2.002,2.002,0,0,1,18,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11 5 11 5 23 7 23 7 11 10 11 10 9 2 9 2 11z" }), children);
941
935
  });
942
- if (process.env.NODE_ENV !== "production") Usb.propTypes = require_iconPropTypes.iconPropTypes;
943
- const UseCaseDefinition = react.default.forwardRef(function UseCaseDefinition({ children, size = 16, ...rest }, ref) {
944
- return react.default.createElement(require_Icon_js, {
936
+ if (process.env.NODE_ENV !== "production") Tsv.propTypes = require_iconPropTypes.iconPropTypes;
937
+ const Tuning = /* @__PURE__ */ react.default.forwardRef(function Tuning({ children, size = 16, ...rest }, ref) {
938
+ return react.default.createElement(require_Icon.Icon, {
945
939
  width: size,
946
940
  height: size,
947
941
  ref,
@@ -949,20 +943,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
949
943
  viewBox: "0 0 32 32",
950
944
  fill: "currentColor",
951
945
  ...rest
952
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
953
- strokeWidth: "0",
954
- d: "m22.0735,21.9922c1.7068,0,2.9407-.7773,3.5151-2.3325l-1.6561-.7942c-.3212.7942-.828,1.386-1.859,1.386-1.2002,0-1.8086-.8284-1.8086-2.062v-1.6057c0-1.2341.6084-2.0787,1.8086-2.0787.9294,0,1.4871.5409,1.6899,1.2845l1.7748-.7947c-.524-1.386-1.6903-2.2307-3.4647-2.2307-2.603,0-4.0735,1.7744-4.0735,4.5969,0,2.8394,1.4705,4.6311,4.0735,4.6311Z"
955
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
956
- strokeWidth: "0",
957
- d: "m11.5126,21.9922c3.3129,0,4.5468-1.572,4.5468-5.0369v-6.9631h-2.1973v7.2507c0,1.8422-.6423,2.772-2.3324,2.772s-2.3324-.9298-2.3324-2.772v-7.2507h-2.1973v6.9631c0,3.4648,1.2,5.0369,4.5126,5.0369Z"
958
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
959
- strokeWidth: "0",
960
- d: "m2,4v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2Zm26,24H4V4h24v24Z"
961
- }), children);
946
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m24,30v-4.1c2.3-.5,4-2.5,4-4.9,0-2.4-1.7-4.4-4-4.9V2s-2,0-2,0v14.1c-2.3.5-4,2.5-4,4.9,0,2.4,1.7,4.4,4,4.9v4.1s2,0,2,0Zm-4-9c0-1.7,1.3-3,3-3s3,1.3,3,3c0,1.7-1.3,3-3,3s-3-1.3-3-3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8,2v4.1c-2.3.5-4,2.5-4,4.9,0,2.4,1.7,4.4,4,4.9v14.1s2,0,2,0v-14.1c2.3-.5,4-2.5,4-4.9,0-2.4-1.7-4.4-4-4.9V2s-2,0-2,0Zm4,9c0,1.7-1.3,3-3,3s-3-1.3-3-3,1.3-3,3-3,3,1.3,3,3Z" }), children);
962
947
  });
963
- if (process.env.NODE_ENV !== "production") UseCaseDefinition.propTypes = require_iconPropTypes.iconPropTypes;
964
- const UseCaseUsage = react.default.forwardRef(function UseCaseUsage({ children, size = 16, ...rest }, ref) {
965
- return react.default.createElement(require_Icon_js, {
948
+ if (process.env.NODE_ENV !== "production") Tuning.propTypes = require_iconPropTypes.iconPropTypes;
949
+ const TwoFactorAuthentication = /* @__PURE__ */ react.default.forwardRef(function TwoFactorAuthentication({ children, size = 16, ...rest }, ref) {
950
+ return react.default.createElement(require_Icon.Icon, {
966
951
  width: size,
967
952
  height: size,
968
953
  ref,
@@ -970,29 +955,23 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
970
955
  viewBox: "0 0 32 32",
971
956
  fill: "currentColor",
972
957
  ...rest
973
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
974
- strokeWidth: "0",
975
- d: "m22.0735,21.9922c1.7068,0,2.9407-.7773,3.5151-2.3325l-1.6561-.7942c-.3212.7942-.828,1.386-1.859,1.386-1.2002,0-1.8086-.8284-1.8086-2.062v-1.6057c0-1.2341.6084-2.0787,1.8086-2.0787.9294,0,1.4871.5409,1.6899,1.2845l1.7748-.7947c-.524-1.386-1.6903-2.2307-3.4647-2.2307-2.603,0-4.0735,1.7744-4.0735,4.5969,0,2.8394,1.4705,4.6311,4.0735,4.6311Z"
976
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
977
- strokeWidth: "0",
978
- d: "m11.5126,21.9922c3.3129,0,4.5468-1.572,4.5468-5.0369v-6.9631h-2.1973v7.2507c0,1.8422-.6423,2.772-2.3324,2.772s-2.3324-.9298-2.3324-2.772v-7.2507h-2.1973v6.9631c0,3.4648,1.2,5.0369,4.5126,5.0369Z"
979
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
980
- strokeWidth: "0",
981
- d: "m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"
982
- }), children);
958
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 23.18 9 21.179 7.589 22.589 11 26 17 20 15.59 18.59 11 23.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24V28h4V16H24V8a4.0045,4.0045,0,0,0-4-4V2a6.0067,6.0067,0,0,1,6,6v6h2a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,14H18V8A6,6,0,0,0,6,8v6H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16A2,2,0,0,0,20,14ZM8,8a4,4,0,0,1,8,0v6H8ZM20,28H4V16H20Z" }), children);
983
959
  });
984
- if (process.env.NODE_ENV !== "production") UseCaseUsage.propTypes = require_iconPropTypes.iconPropTypes;
985
- const User = react.default.forwardRef(function User({ children, size = 16, ...rest }, ref) {
986
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
960
+ if (process.env.NODE_ENV !== "production") TwoFactorAuthentication.propTypes = require_iconPropTypes.iconPropTypes;
961
+ const TwoPersonLift = /* @__PURE__ */ react.default.forwardRef(function TwoPersonLift({ children, size = 16, ...rest }, ref) {
962
+ return react.default.createElement(require_Icon.Icon, {
987
963
  width: size,
988
964
  height: size,
989
965
  ref,
990
966
  xmlns: "http://www.w3.org/2000/svg",
991
- viewBox: "0 0 16 16",
967
+ viewBox: "0 0 32 32",
992
968
  fill: "currentColor",
993
969
  ...rest
994
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2c1.4,0,2.5,1.1,2.5,2.5S9.4,7,8,7S5.5,5.9,5.5,4.5S6.6,2,8,2 M8,1C6.1,1,4.5,2.6,4.5,4.5S6.1,8,8,8s3.5-1.6,3.5-3.5 S9.9,1,8,1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,15h-1v-2.5c0-1.4-1.1-2.5-2.5-2.5h-3C5.1,10,4,11.1,4,12.5V15H3v-2.5C3,10.6,4.6,9,6.5,9h3c1.9,0,3.5,1.6,3.5,3.5V15z" }), children);
995
- return react.default.createElement(require_Icon_js, {
970
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.96,30l-1.9215-6.7253a1.0008,1.0008,0,0,1,.3369-1.0554L29.874,18.62,28.52,13.2014l-2.7382,3.4234A1.0026,1.0026,0,0,1,25,17H20V15h4.52l3.6993-4.6248a1,1,0,0,1,1.7509.3824l2,8a.9989.9989,0,0,1-.3447,1.0232l-4.48,3.5845,1.7389,6.0854Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,5.5A3.5,3.5,0,1,1,26.5,9,3.5042,3.5042,0,0,1,23,5.5Zm2,0A1.5,1.5,0,1,0,26.5,4,1.5017,1.5017,0,0,0,25,5.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.0039,19A2.0039,2.0039,0,0,1,18,16.9961V15.0039A2.0039,2.0039,0,0,1,20.0039,13H22V10H10v3h1.9961A2.0039,2.0039,0,0,1,14,15.0039v1.9922A2.0039,2.0039,0,0,1,11.9961,19H10v3H22V19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.04,30l1.9215-6.7253a1.0013,1.0013,0,0,0-.3369-1.0555L2.126,18.62l1.3545-5.4185,2.7382,3.4234A1.0026,1.0026,0,0,0,7,17h5V15H7.4805L3.7812,10.3752a1,1,0,0,0-1.7509.3824l-2,8A.9989.9989,0,0,0,.375,19.7808l4.4805,3.5844-1.739,6.0855Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.5,9A3.5,3.5,0,1,1,9,5.5,3.5042,3.5042,0,0,1,5.5,9Zm0-5A1.5,1.5,0,1,0,7,5.5,1.5017,1.5017,0,0,0,5.5,4Z" }), children);
971
+ });
972
+ if (process.env.NODE_ENV !== "production") TwoPersonLift.propTypes = require_iconPropTypes.iconPropTypes;
973
+ const Txt = /* @__PURE__ */ react.default.forwardRef(function Txt({ children, size = 16, ...rest }, ref) {
974
+ return react.default.createElement(require_Icon.Icon, {
996
975
  width: size,
997
976
  height: size,
998
977
  ref,
@@ -1000,11 +979,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1000
979
  viewBox: "0 0 32 32",
1001
980
  fill: "currentColor",
1002
981
  ...rest
1003
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V25a5,5,0,0,0-5-5H13a5,5,0,0,0-5,5v5H6V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), children);
982
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 11 24 11 24 23 26 23 26 11 29 11 29 9 21 9 21 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 18 9 16 15 14 9 12 9 14.75 16 12 23 14 23 16 17 18 23 20 23 17.25 16 20 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 11 6 11 6 23 8 23 8 11 11 11 11 9 3 9 3 11z" }), children);
1004
983
  });
1005
- if (process.env.NODE_ENV !== "production") User.propTypes = require_iconPropTypes.iconPropTypes;
1006
- const UserAccess = react.default.forwardRef(function UserAccess({ children, size = 16, ...rest }, ref) {
1007
- return react.default.createElement(require_Icon_js, {
984
+ if (process.env.NODE_ENV !== "production") Txt.propTypes = require_iconPropTypes.iconPropTypes;
985
+ const TxtReference = /* @__PURE__ */ react.default.forwardRef(function TxtReference({ children, size = 16, ...rest }, ref) {
986
+ return react.default.createElement(require_Icon.Icon, {
1008
987
  width: size,
1009
988
  height: size,
1010
989
  ref,
@@ -1012,11 +991,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1012
991
  viewBox: "0 0 32 32",
1013
992
  fill: "currentColor",
1014
993
  ...rest
1015
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,12a1.9922,1.9922,0,0,0-.5117.0742L28.4331,11.019a3.8788,3.8788,0,0,0,0-4.038l1.0552-1.0552a2.0339,2.0339,0,1,0-1.4141-1.4141L27.019,5.5669a3.8788,3.8788,0,0,0-4.038,0L21.9258,4.5117a2.0339,2.0339,0,1,0-1.4141,1.4141L21.5669,6.981a3.8788,3.8788,0,0,0,0,4.038l-1.0552,1.0552a2.0339,2.0339,0,1,0,1.4141,1.4141l1.0552-1.0552a3.8788,3.8788,0,0,0,4.038,0l1.0552,1.0552A1.9957,1.9957,0,1,0,30,12ZM23,9a2,2,0,1,1,2,2A2.0025,2.0025,0,0,1,23,9Z" }), children);
994
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 4 24 4 24 16 26 16 26 4 29 4 29 2 21 2 21 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 2 18 2 16 8 14 2 12 2 14.752 9 12 16 14 16 16 10 18 16 20 16 17.245 9 20 2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 4 6 4 6 16 8 16 8 4 11 4 11 2 3 2 3 4z" }), children);
1016
995
  });
1017
- if (process.env.NODE_ENV !== "production") UserAccess.propTypes = require_iconPropTypes.iconPropTypes;
1018
- const UserAccessLocked = react.default.forwardRef(function UserAccessLocked({ children, size = 16, ...rest }, ref) {
1019
- return react.default.createElement(require_Icon_js, {
996
+ if (process.env.NODE_ENV !== "production") TxtReference.propTypes = require_iconPropTypes.iconPropTypes;
997
+ const TypePattern = /* @__PURE__ */ react.default.forwardRef(function TypePattern({ children, size = 16, ...rest }, ref) {
998
+ return react.default.createElement(require_Icon.Icon, {
1020
999
  width: size,
1021
1000
  height: size,
1022
1001
  ref,
@@ -1024,20 +1003,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1024
1003
  viewBox: "0 0 32 32",
1025
1004
  fill: "currentColor",
1026
1005
  ...rest
1027
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1028
- strokeWidth: "0",
1029
- d: "m28,8v-3c0-2.2056-1.7944-4-4-4s-4,1.7944-4,4v3c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h8c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2Zm-6-3c0-1.1025.8972-2,2-2s2,.8975,2,2v3h-4v-3Zm-2,11v-6h8v6h-8Z"
1030
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1031
- strokeWidth: "0",
1032
- d: "m16,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5h-2v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1033
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1034
- strokeWidth: "0",
1035
- d: "m9,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3,1.3431-3,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1036
- }), children);
1006
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 15 17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.586 20 27 21.414 23.414 25 27 28.586 25.586 30 20.586 25 25.586 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,30H3a1,1,0,0,1-.8945-1.4473l4-8a1.0412,1.0412,0,0,1,1.789,0l4,8A1,1,0,0,1,11,30ZM4.6182,28H9.3818L7,23.2363Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6.001L28,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,12a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,7,12ZM7,4a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,4Z" }), children);
1037
1007
  });
1038
- if (process.env.NODE_ENV !== "production") UserAccessLocked.propTypes = require_iconPropTypes.iconPropTypes;
1039
- const UserAccessUnlocked = react.default.forwardRef(function UserAccessUnlocked({ children, size = 16, ...rest }, ref) {
1040
- return react.default.createElement(require_Icon_js, {
1008
+ if (process.env.NODE_ENV !== "production") TypePattern.propTypes = require_iconPropTypes.iconPropTypes;
1009
+ const Types = /* @__PURE__ */ react.default.forwardRef(function Types({ children, size = 16, ...rest }, ref) {
1010
+ return react.default.createElement(require_Icon.Icon, {
1041
1011
  width: size,
1042
1012
  height: size,
1043
1013
  ref,
@@ -1045,20 +1015,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1045
1015
  viewBox: "0 0 32 32",
1046
1016
  fill: "currentColor",
1047
1017
  ...rest
1048
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1049
- strokeWidth: "0",
1050
- d: "m16,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5h-2v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1051
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1052
- strokeWidth: "0",
1053
- d: "m9,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3,1.3431-3,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1054
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1055
- strokeWidth: "0",
1056
- d: "m28,8h-6v-3c0-1.1025.8972-2,2-2s2,.8975,2,2h2c0-2.2056-1.7944-4-4-4s-4,1.7944-4,4v3c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h8c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2Zm0,8h-8v-6h8v6Z"
1057
- }), children);
1018
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 16 22 24 20.586 22.586 27.172 16 20.586 9.414 22 8 30 16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a.9967.9967,0,0,1-.707-.293l-5-5a.9994.9994,0,0,1,0-1.414l5-5a.9994.9994,0,0,1,1.414,0l5,5a.9994.9994,0,0,1,0,1.414l-5,5A.9967.9967,0,0,1,16,22Zm-3.5859-6L16,19.5859,19.5859,16,16,12.4141Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16 10 8 11.414 9.414 4.828 16 11.414 22.586 10 24 2 16z" }), children);
1058
1019
  });
1059
- if (process.env.NODE_ENV !== "production") UserAccessUnlocked.propTypes = require_iconPropTypes.iconPropTypes;
1060
- const UserActivity = react.default.forwardRef(function UserActivity({ children, size = 16, ...rest }, ref) {
1061
- return react.default.createElement(require_Icon_js, {
1020
+ if (process.env.NODE_ENV !== "production") Types.propTypes = require_iconPropTypes.iconPropTypes;
1021
+ const QU1 = /* @__PURE__ */ react.default.forwardRef(function QU1({ children, size = 16, ...rest }, ref) {
1022
+ return react.default.createElement(require_Icon.Icon, {
1062
1023
  width: size,
1063
1024
  height: size,
1064
1025
  ref,
@@ -1066,11 +1027,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1066
1027
  viewBox: "0 0 32 32",
1067
1028
  fill: "currentColor",
1068
1029
  ...rest
1069
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23h-.0215a1.0016,1.0016,0,0,1-.94-.7256L20.8711,11.19l-1.9346,5.1607A1.0005,1.0005,0,0,1,18,17H14V15h3.3066l2.7569-7.3511a1.0005,1.0005,0,0,1,1.8984.0762l3.1113,10.8921,1.9786-5.9336A.9988.9988,0,0,1,28,12h4v2H28.7207l-2.7725,8.3164A.9984.9984,0,0,1,25,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,30H13V23a3.0033,3.0033,0,0,0-3-3H6a3.0033,3.0033,0,0,0-3,3v7H1V23a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,8a3,3,0,1,1-3,3A3,3,0,0,1,8,8M8,6a5,5,0,1,0,5,5A5,5,0,0,0,8,6Z" }), children);
1030
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 21 22 9 17 9 17 11 20 11 20 21 17 21 17 23 25 23 25 21 22 21z" }), children);
1070
1031
  });
1071
- if (process.env.NODE_ENV !== "production") UserActivity.propTypes = require_iconPropTypes.iconPropTypes;
1072
- const UserAdmin = react.default.forwardRef(function UserAdmin({ children, size = 16, ...rest }, ref) {
1073
- return react.default.createElement(require_Icon_js, {
1032
+ if (process.env.NODE_ENV !== "production") QU1.propTypes = require_iconPropTypes.iconPropTypes;
1033
+ const QU2 = /* @__PURE__ */ react.default.forwardRef(function QU2({ children, size = 16, ...rest }, ref) {
1034
+ return react.default.createElement(require_Icon.Icon, {
1074
1035
  width: size,
1075
1036
  height: size,
1076
1037
  ref,
@@ -1078,20 +1039,23 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1078
1039
  viewBox: "0 0 32 32",
1079
1040
  fill: "currentColor",
1080
1041
  ...rest
1081
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 16.18 22.41 13.59 21 15 25 19 32 12 30.59 10.59 25 16.18z" }), children);
1042
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23H17V17a2,2,0,0,1,2-2h4V11H17V9h6a2,2,0,0,1,2,2v4a2,2,0,0,1-2,2H19v4h6Z" }), children);
1082
1043
  });
1083
- if (process.env.NODE_ENV !== "production") UserAdmin.propTypes = require_iconPropTypes.iconPropTypes;
1084
- const UserAvatar = react.default.forwardRef(function UserAvatar({ children, size = 16, ...rest }, ref) {
1085
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
1044
+ if (process.env.NODE_ENV !== "production") QU2.propTypes = require_iconPropTypes.iconPropTypes;
1045
+ const QU3 = /* @__PURE__ */ react.default.forwardRef(function QU3({ children, size = 16, ...rest }, ref) {
1046
+ return react.default.createElement(require_Icon.Icon, {
1086
1047
  width: size,
1087
1048
  height: size,
1088
1049
  ref,
1089
1050
  xmlns: "http://www.w3.org/2000/svg",
1090
- viewBox: "0 0 16 16",
1051
+ viewBox: "0 0 32 32",
1091
1052
  fill: "currentColor",
1092
1053
  ...rest
1093
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M5,13.2v-1.5c0-0.9,0.6-1.6,1.5-1.7h3c0.9,0.1,1.5,0.8,1.5,1.7v1.5 C9.1,14.3,6.9,14.3,5,13.2L5,13.2z M12,12l0-0.8c0-0.9-1.1-2.1-2.5-2.2h-3C5.1,9.1,4,10.3,4,11.7l0,0.5v0.3c-2.5-2.2-2.7-6-0.5-8.5 s6-2.7,8.5-0.5s2.7,6,0.5,8.5c-0.1,0.2-0.3,0.3-0.5,0.5V12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,3C6.6,3,5.5,4.1,5.5,5.5S6.6,8,8,8s2.5-1.1,2.5-2.5S9.4,3,8,3z M8,7C7.2,7,6.5,6.3,6.5,5.5S7.2,4,8,4s1.5,0.7,1.5,1.5 S8.8,7,8,7z" }), children);
1094
- return react.default.createElement(require_Icon_js, {
1054
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,9H17v2h6v4H18v2h5v4H17v2h6a2,2,0,0,0,2-2V11A2,2,0,0,0,23,9Z" }), children);
1055
+ });
1056
+ if (process.env.NODE_ENV !== "production") QU3.propTypes = require_iconPropTypes.iconPropTypes;
1057
+ const Umbrella = /* @__PURE__ */ react.default.forwardRef(function Umbrella({ children, size = 16, ...rest }, ref) {
1058
+ return react.default.createElement(require_Icon.Icon, {
1095
1059
  width: size,
1096
1060
  height: size,
1097
1061
  ref,
@@ -1099,11 +1063,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1099
1063
  viewBox: "0 0 32 32",
1100
1064
  fill: "currentColor",
1101
1065
  ...rest
1102
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a5,5,0,1,0,5,5A5,5,0,0,0,16,8Zm0,8a3,3,0,1,1,3-3A3.0034,3.0034,0,0,1,16,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM10,26.3765V25a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3v1.3765a11.8989,11.8989,0,0,1-12,0Zm13.9925-1.4507A5.0016,5.0016,0,0,0,19,20H13a5.0016,5.0016,0,0,0-4.9925,4.9258,12,12,0,1,1,15.985,0Z" }), children);
1066
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9854,15.83A14.3808,14.3808,0,0,0,17,4.0464V2H15V4.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.03ZM6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4411,12.4411,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333,6.5439,6.5439,0,0,0,6,14Zm10,0a6.5528,6.5528,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0563-9.1763,3.4308,2.6768,4.0091,6.9487,4.0525,9.1728A6.553,6.553,0,0,0,16,14Zm10,0a6.5439,6.5439,0,0,0-3.939,1.333,14.5164,14.5164,0,0,0-3.0456-8.9341,12.4411,12.4411,0,0,1,8.488,7.8145A5.4079,5.4079,0,0,0,26,14Z" }), children);
1103
1067
  });
1104
- if (process.env.NODE_ENV !== "production") UserAvatar.propTypes = require_iconPropTypes.iconPropTypes;
1105
- const UserAvatarFilled = react.default.forwardRef(function UserAvatarFilled({ children, size = 16, ...rest }, ref) {
1106
- return react.default.createElement(require_Icon_js, {
1068
+ if (process.env.NODE_ENV !== "production") Umbrella.propTypes = require_iconPropTypes.iconPropTypes;
1069
+ const Undefined = /* @__PURE__ */ react.default.forwardRef(function Undefined({ children, size = 16, ...rest }, ref) {
1070
+ return react.default.createElement(require_Icon.Icon, {
1107
1071
  width: size,
1108
1072
  height: size,
1109
1073
  ref,
@@ -1111,14 +1075,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1111
1075
  viewBox: "0 0 32 32",
1112
1076
  fill: "currentColor",
1113
1077
  ...rest
1114
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1115
- fill: "none",
1116
- d: "M8.0071,24.93A4.9958,4.9958,0,0,1,13,20h6a4.9959,4.9959,0,0,1,4.9929,4.93,11.94,11.94,0,0,1-15.9858,0ZM20.5,12.5A4.5,4.5,0,1,1,16,8,4.5,4.5,0,0,1,20.5,12.5Z"
1117
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.7489,24.93A13.9893,13.9893,0,1,0,2,16a13.899,13.899,0,0,0,3.2511,8.93l-.02.0166c.07.0845.15.1567.2222.2392.09.1036.1864.2.28.3008.28.3033.5674.5952.87.87.0915.0831.1864.1612.28.2417.32.2759.6484.5372.99.7813.0441.0312.0832.0693.1276.1006v-.0127a13.9011,13.9011,0,0,0,16,0V27.48c.0444-.0313.0835-.0694.1276-.1006.3412-.2441.67-.5054.99-.7813.0936-.08.1885-.1586.28-.2417.3025-.2749.59-.5668.87-.87.0933-.1006.1894-.1972.28-.3008.0719-.0825.1522-.1547.2222-.2392ZM16,8a4.5,4.5,0,1,1-4.5,4.5A4.5,4.5,0,0,1,16,8ZM8.0071,24.93A4.9957,4.9957,0,0,1,13,20h6a4.9958,4.9958,0,0,1,4.9929,4.93,11.94,11.94,0,0,1-15.9858,0Z" }), children);
1078
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 14H21V18H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" }), children);
1118
1079
  });
1119
- if (process.env.NODE_ENV !== "production") UserAvatarFilled.propTypes = require_iconPropTypes.iconPropTypes;
1120
- const UserAvatarFilledAlt = react.default.forwardRef(function UserAvatarFilledAlt({ children, size = 16, ...rest }, ref) {
1121
- return react.default.createElement(require_Icon_js, {
1080
+ if (process.env.NODE_ENV !== "production") Undefined.propTypes = require_iconPropTypes.iconPropTypes;
1081
+ const UndefinedFilled = /* @__PURE__ */ react.default.forwardRef(function UndefinedFilled({ children, size = 16, ...rest }, ref) {
1082
+ return react.default.createElement(require_Icon.Icon, {
1122
1083
  width: size,
1123
1084
  height: size,
1124
1085
  ref,
@@ -1126,11 +1087,15 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1126
1087
  viewBox: "0 0 32 32",
1127
1088
  fill: "currentColor",
1128
1089
  ...rest
1129
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a5,5,0,1,0,5,5A5,5,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm7.9925,22.9258A5.0016,5.0016,0,0,0,19,20H13a5.0016,5.0016,0,0,0-4.9925,4.9258,12,12,0,1,1,15.985,0Z" }), children);
1090
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2s-1.067,0.203-1.473,0.609L2.609,14.527C2.203,14.933,2,15.466,2,16 s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30s1.067-0.203,1.473-0.609l11.917-11.917 C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M21,18H11v-4h10V18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1091
+ fill: "none",
1092
+ d: "M11 14H21V18H11z",
1093
+ "data-icon-path": "inner-path"
1094
+ }), children);
1130
1095
  });
1131
- if (process.env.NODE_ENV !== "production") UserAvatarFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
1132
- const UserCertification = react.default.forwardRef(function UserCertification({ children, size = 16, ...rest }, ref) {
1133
- return react.default.createElement(require_Icon_js, {
1096
+ if (process.env.NODE_ENV !== "production") UndefinedFilled.propTypes = require_iconPropTypes.iconPropTypes;
1097
+ const Undo = /* @__PURE__ */ react.default.forwardRef(function Undo({ children, size = 16, ...rest }, ref) {
1098
+ return react.default.createElement(require_Icon.Icon, {
1134
1099
  width: size,
1135
1100
  height: size,
1136
1101
  ref,
@@ -1138,11 +1103,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1138
1103
  viewBox: "0 0 32 32",
1139
1104
  fill: "currentColor",
1140
1105
  ...rest
1141
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 10 26.593 13 30 13.414 27.5 15.667 28 19 25 17.125 22 19 22.5 15.667 20 13.414 23.5 13 25 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5.0059,5.0059,0,0,0-5-5H9a5.0059,5.0059,0,0,0-5,5v5H2V25a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1106
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10H7.8149l3.5874-3.5859L10,5,4,11,10,17l1.4023-1.4146L7.8179,12H20a6,6,0,0,1,0,12H12v2h8a8,8,0,0,0,0-16Z" }), children);
1142
1107
  });
1143
- if (process.env.NODE_ENV !== "production") UserCertification.propTypes = require_iconPropTypes.iconPropTypes;
1144
- const UserData = react.default.forwardRef(function UserData({ children, size = 16, ...rest }, ref) {
1145
- return react.default.createElement(require_Icon_js, {
1108
+ if (process.env.NODE_ENV !== "production") Undo.propTypes = require_iconPropTypes.iconPropTypes;
1109
+ const UnfoldOpen = /* @__PURE__ */ react.default.forwardRef(function UnfoldOpen({ children, size = 16, ...rest }, ref) {
1110
+ return react.default.createElement(require_Icon.Icon, {
1146
1111
  width: size,
1147
1112
  height: size,
1148
1113
  ref,
@@ -1150,11 +1115,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1150
1115
  viewBox: "0 0 32 32",
1151
1116
  fill: "currentColor",
1152
1117
  ...rest
1153
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 8H30V16H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 5H25V16H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 10H20V16H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V24a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v6H2V24a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,9a3,3,0,1,1-3,3A3,3,0,0,1,9,9M9,7a5,5,0,1,0,5,5A5,5,0,0,0,9,7Z" }), children);
1118
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,29.9141l-4.707-4.707,1.4141-1.4141,2.293,2.293v-7.0859h2v7.0859l2.293-2.293,1.4141,1.4141-4.707,4.707ZM30,17h-4v-2h4v2ZM24,17h-4v-2h4v2ZM18,17h-4v-2h4v2ZM12,17h-4v-2h4v2ZM6,17H2v-2h4v2ZM17,13h-2v-7.0859l-2.293,2.293-1.4141-1.4141,4.707-4.707,4.707,4.707-1.4141,1.4141-2.293-2.293v7.0859Z" }), children);
1154
1119
  });
1155
- if (process.env.NODE_ENV !== "production") UserData.propTypes = require_iconPropTypes.iconPropTypes;
1156
- const UserFavorite = react.default.forwardRef(function UserFavorite({ children, size = 16, ...rest }, ref) {
1157
- return react.default.createElement(require_Icon_js, {
1120
+ if (process.env.NODE_ENV !== "production") UnfoldOpen.propTypes = require_iconPropTypes.iconPropTypes;
1121
+ const UngroupObjects = /* @__PURE__ */ react.default.forwardRef(function UngroupObjects({ children, size = 16, ...rest }, ref) {
1122
+ return react.default.createElement(require_Icon.Icon, {
1158
1123
  width: size,
1159
1124
  height: size,
1160
1125
  ref,
@@ -1162,11 +1127,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1162
1127
  viewBox: "0 0 32 32",
1163
1128
  fill: "currentColor",
1164
1129
  ...rest
1165
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.303,12a2.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.8964L25.0019,21l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,27.303,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,30H4V25a5.0059,5.0059,0,0,1,5-5h6a5.0059,5.0059,0,0,1,5,5v5h2V25a7.0082,7.0082,0,0,0-7-7H9a7.0082,7.0082,0,0,0-7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1130
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,14V10H26v2H20V6h2V2H18V4H6V2H2V6H4V18H2v4H6V20h6v6H10v4h4V28H26v2h4V26H28V14ZM6,6H18V18H6ZM26,26H14V20h4v2h4V18H20V14h6Z" }), children);
1166
1131
  });
1167
- if (process.env.NODE_ENV !== "production") UserFavorite.propTypes = require_iconPropTypes.iconPropTypes;
1168
- const UserFavoriteAlt = react.default.forwardRef(function UserFavoriteAlt({ children, size = 16, ...rest }, ref) {
1169
- return react.default.createElement(require_Icon_js, {
1132
+ if (process.env.NODE_ENV !== "production") UngroupObjects.propTypes = require_iconPropTypes.iconPropTypes;
1133
+ const Unknown = /* @__PURE__ */ react.default.forwardRef(function Unknown({ children, size = 16, ...rest }, ref) {
1134
+ return react.default.createElement(require_Icon.Icon, {
1170
1135
  width: size,
1171
1136
  height: size,
1172
1137
  ref,
@@ -1174,11 +1139,15 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1174
1139
  viewBox: "0 0 32 32",
1175
1140
  fill: "currentColor",
1176
1141
  ...rest
1177
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.7663,4.2558A4.2121,4.2121,0,0,0,23,4.0321a4.2121,4.2121,0,0,0-5.7663.2237,4.319,4.319,0,0,0,0,6.0447L22.998,16.14,23,16.1376l.002.0019,5.7643-5.839A4.319,4.319,0,0,0,28.7663,4.2558ZM27.342,8.8948l-4.34,4.3973L23,13.29l-.002.002-4.34-4.3973a2.3085,2.3085,0,0,1,0-3.2338,2.2639,2.2639,0,0,1,3.1561,0l1.181,1.2074L23,6.8634l.0049.005,1.181-1.2074a2.2639,2.2639,0,0,1,3.1561,0A2.3085,2.3085,0,0,1,27.342,8.8948Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1142
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1143
+ cx: "16",
1144
+ cy: "22.5",
1145
+ r: "1.5"
1146
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,19h-2v-4h2c1.103,0,2-0.897,2-2s-0.897-2-2-2h-2c-1.103,0-2,0.897-2,2v0.5h-2V13c0-2.206,1.794-4,4-4h2 c2.206,0,4,1.794,4,4s-1.794,4-4,4V19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" }), children);
1178
1147
  });
1179
- if (process.env.NODE_ENV !== "production") UserFavoriteAlt.propTypes = require_iconPropTypes.iconPropTypes;
1180
- const UserFavoriteAltFilled = react.default.forwardRef(function UserFavoriteAltFilled({ children, size = 16, ...rest }, ref) {
1181
- return react.default.createElement(require_Icon_js, {
1148
+ if (process.env.NODE_ENV !== "production") Unknown.propTypes = require_iconPropTypes.iconPropTypes;
1149
+ const UnknownFilled = /* @__PURE__ */ react.default.forwardRef(function UnknownFilled({ children, size = 16, ...rest }, ref) {
1150
+ return react.default.createElement(require_Icon.Icon, {
1182
1151
  width: size,
1183
1152
  height: size,
1184
1153
  ref,
@@ -1186,11 +1155,15 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1186
1155
  viewBox: "0 0 32 32",
1187
1156
  fill: "currentColor",
1188
1157
  ...rest
1189
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.4938,3a3.4735,3.4735,0,0,0-2.48,1.0393l-.5111.5228-.5161-.5228a3.4792,3.4792,0,0,0-4.96,0,3.59,3.59,0,0,0,0,5.0251l5.4766,5.5427,5.4716-5.5427a3.59,3.59,0,0,0,0-5.0251A3.4738,3.4738,0,0,0,26.4938,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1158
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2s-1.067,0.203-1.473,0.609L2.609,14.527C2.203,14.933,2,15.466,2,16 s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30s1.067-0.203,1.473-0.609l11.917-11.917 C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,24c-0.828,0-1.5-0.671-1.5-1.5S15.172,21,16,21s1.5,0.671,1.5,1.5 S16.828,24,16,24z M17.125,17.248v1.877h-2.25V15H17c1.034,0,1.875-0.841,1.875-1.875S18.034,11.25,17,11.25h-2 c-1.034,0-1.875,0.841-1.875,1.875v0.5h-2.25v-0.5C10.875,10.851,12.726,9,15,9h2c2.274,0,4.125,1.851,4.125,4.125 C21.125,15.358,19.342,17.182,17.125,17.248z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1159
+ fill: "none",
1160
+ d: "M16,21c0.828,0,1.5,0.672,1.5,1.5S16.828,24,16,24c-0.828,0-1.5-0.672-1.5-1.5S15.172,21,16,21 z M17.125,17.248c2.217-0.066,4-1.89,4-4.123C21.125,10.851,19.274,9,17,9h-2c-2.274,0-4.125,1.851-4.125,4.125v0.5h2.25v-0.5 c0-1.034,0.841-1.875,1.875-1.875h2c1.034,0,1.875,0.841,1.875,1.875S18.034,15,17,15h-2.125v4.125h2.25V17.248z",
1161
+ "data-icon-path": "inner-path"
1162
+ }), children);
1190
1163
  });
1191
- if (process.env.NODE_ENV !== "production") UserFavoriteAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
1192
- const UserFeedback = react.default.forwardRef(function UserFeedback({ children, size = 16, ...rest }, ref) {
1193
- return react.default.createElement(require_Icon_js, {
1164
+ if (process.env.NODE_ENV !== "production") UnknownFilled.propTypes = require_iconPropTypes.iconPropTypes;
1165
+ const Unlink = /* @__PURE__ */ react.default.forwardRef(function Unlink({ children, size = 16, ...rest }, ref) {
1166
+ return react.default.createElement(require_Icon.Icon, {
1194
1167
  width: size,
1195
1168
  height: size,
1196
1169
  ref,
@@ -1199,31 +1172,25 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1199
1172
  fill: "currentColor",
1200
1173
  ...rest
1201
1174
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1202
- strokeWidth: "0",
1203
- d: "m19,3h10c1.1035,0,2,.8965,2,2v6c0,1.1035-.8965,2-2,2h-2.4229s-1.7314,3-1.7314,3l-1.7324-1,2.3096-4h3.5771s0-6,0-6h-10s0,6,0,6h3v2h-3c-1.1035,0-2-.8965-2-2v-6c0-1.1035.8965-2,2-2Z"
1204
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1205
- strokeWidth: "0",
1206
- d: "m15,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5H1v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1175
+ d: "M5 3.59H7V8.42H5z",
1176
+ transform: "rotate(-45.01 5.996 6.005)"
1207
1177
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1208
- strokeWidth: "0",
1209
- d: "m8,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3c.0019-1.6561,1.3439-2.9981,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1210
- }), children);
1178
+ d: "M25 23.58H27V28.409999999999997H25z",
1179
+ transform: "rotate(-44.99 25.995 25.999)"
1180
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 2H13V6H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 11H6V13H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 19H30V21H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H21V30H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.58,21.07l-3.71,3.72a4,4,0,1,1-5.66-5.66l3.72-3.72L9.51,14,5.8,17.72a6,6,0,0,0-.06,8.54A6,6,0,0,0,10,28a6.07,6.07,0,0,0,4.32-1.8L18,22.49Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.41,10.93l3.72-3.72a4,4,0,1,1,5.66,5.66l-3.72,3.72L22.49,18l3.71-3.72a6,6,0,0,0,.06-8.54A6,6,0,0,0,22,4a6.07,6.07,0,0,0-4.32,1.8L14,9.51Z" }), children);
1211
1181
  });
1212
- if (process.env.NODE_ENV !== "production") UserFeedback.propTypes = require_iconPropTypes.iconPropTypes;
1213
- const UserFilled = react.default.forwardRef(function UserFilled({ children, size = 16, ...rest }, ref) {
1214
- return react.default.createElement(require_Icon_js, {
1182
+ if (process.env.NODE_ENV !== "production") Unlink.propTypes = require_iconPropTypes.iconPropTypes;
1183
+ const Unlocked = /* @__PURE__ */ react.default.forwardRef(function Unlocked({ children, size = 16, ...rest }, ref) {
1184
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1215
1185
  width: size,
1216
1186
  height: size,
1217
1187
  ref,
1218
1188
  xmlns: "http://www.w3.org/2000/svg",
1219
- viewBox: "0 0 32 32",
1189
+ viewBox: "0 0 16 16",
1220
1190
  fill: "currentColor",
1221
1191
  ...rest
1222
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,30H26V25a7.0082,7.0082,0,0,0-7-7H13a7.0082,7.0082,0,0,0-7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,9a7,7,0,1,0,7-7A7,7,0,0,0,9,9Z" }), children);
1223
- });
1224
- if (process.env.NODE_ENV !== "production") UserFilled.propTypes = require_iconPropTypes.iconPropTypes;
1225
- const UserFollow = react.default.forwardRef(function UserFollow({ children, size = 16, ...rest }, ref) {
1226
- return react.default.createElement(require_Icon_js, {
1192
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,7H6V4c0-1.1,0.9-2,2-2s2,0.9,2,2h1c0-1.7-1.3-3-3-3S5,2.3,5,4v3H4C3.4,7,3,7.4,3,8v6c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1 V8C13,7.4,12.6,7,12,7z M12,14H4V8h8V14z" }), children);
1193
+ return react.default.createElement(require_Icon.Icon, {
1227
1194
  width: size,
1228
1195
  height: size,
1229
1196
  ref,
@@ -1231,11 +1198,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1231
1198
  viewBox: "0 0 32 32",
1232
1199
  fill: "currentColor",
1233
1200
  ...rest
1234
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 14 28 14 28 10 26 10 26 14 22 14 22 16 26 16 26 20 28 20 28 16 32 16 32 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), children);
1201
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14H12V8a4,4,0,0,1,8,0h2A6,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,14Zm0,14H8V16H24Z" }), children);
1235
1202
  });
1236
- if (process.env.NODE_ENV !== "production") UserFollow.propTypes = require_iconPropTypes.iconPropTypes;
1237
- const UserIdentification = react.default.forwardRef(function UserIdentification({ children, size = 16, ...rest }, ref) {
1238
- return react.default.createElement(require_Icon_js, {
1203
+ if (process.env.NODE_ENV !== "production") Unlocked.propTypes = require_iconPropTypes.iconPropTypes;
1204
+ const Unplug = /* @__PURE__ */ react.default.forwardRef(function Unplug({ children, size = 16, ...rest }, ref) {
1205
+ return react.default.createElement(require_Icon.Icon, {
1239
1206
  width: size,
1240
1207
  height: size,
1241
1208
  ref,
@@ -1243,15 +1210,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1243
1210
  viewBox: "0 0 32 32",
1244
1211
  fill: "currentColor",
1245
1212
  ...rest
1246
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,11h4a1,1,0,0,1,1,1v2a0,0,0,0,1,0,0H21a0,0,0,0,1,0,0V12A1,1,0,0,1,22,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1247
- cx: "24",
1248
- cy: "8",
1249
- r: "2"
1250
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,18H18a2.0023,2.0023,0,0,1-2-2V4a2.002,2.002,0,0,1,2-2H30a2.0023,2.0023,0,0,1,2,2V16A2.0027,2.0027,0,0,1,30,18ZM18,4V16H30.001L30,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,30H13V26a2.9465,2.9465,0,0,0-3-3H6a2.9465,2.9465,0,0,0-3,3v4H1V26a4.9514,4.9514,0,0,1,5-5h4a4.9514,4.9514,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,11a3,3,0,0,1,0,6,3,3,0,0,1,0-6M8,9A5,5,0,0,0,8,19,5,5,0,0,0,8,9Z" }), children);
1213
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.9,4.4l-1.4-1.4-3,3c-1.9-1.3-4.6-1.1-6.3.6l-3.5,3.5,7.1,7.1,3.5-3.5c1.7-1.7,1.9-4.4.6-6.3,0,0,3-3,3-3ZM23.8,12.3l-2.1,2.1-4.2-4.2,2.1-2.1c1.2-1.2,3.1-1.2,4.2,0,1.2,1.2,1.2,3.1,0,4.2ZM17.7,18.5l-1.4-1.4-1.9,1.9-1.4-1.4,1.9-1.9-1.4-1.4-1.9,1.9-1.4-1.4-3.5,3.5c-1.7,1.7-1.9,4.4-.6,6.3l-3,3,1.4,1.4,3-3c.8.5,1.8.8,2.8.8s2.6-.5,3.5-1.5l3.5-3.5-1.4-1.4,1.9-1.9h-.1ZM12.2,23.9c-1.1,1.1-3.1,1.1-4.2,0-1.2-1.2-1.2-3.1,0-4.2l2.1-2.1,4.2,4.2s-2.1,2.1-2.1,2.1ZM8,14h-4v-2h4v2ZM14,8h-2v-4h2v4ZM28,20h-4v-2h4v2ZM24.6858,25.9l-2.8284-2.8284,1.4142-1.4142,2.8284,2.8284-1.4142,1.4142ZM8.8071,10.0213l-2.8284-2.8284,1.4142-1.4142,2.8284,2.8284-1.4142,1.4142ZM20,28h-2v-4h2v4Z" }), children);
1251
1214
  });
1252
- if (process.env.NODE_ENV !== "production") UserIdentification.propTypes = require_iconPropTypes.iconPropTypes;
1253
- const UserMilitary = react.default.forwardRef(function UserMilitary({ children, size = 16, ...rest }, ref) {
1254
- return react.default.createElement(require_Icon_js, {
1215
+ if (process.env.NODE_ENV !== "production") Unplug.propTypes = require_iconPropTypes.iconPropTypes;
1216
+ const Unsaved = /* @__PURE__ */ react.default.forwardRef(function Unsaved({ children, size = 16, ...rest }, ref) {
1217
+ return react.default.createElement(require_Icon.Icon, {
1255
1218
  width: size,
1256
1219
  height: size,
1257
1220
  ref,
@@ -1259,11 +1222,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1259
1222
  viewBox: "0 0 32 32",
1260
1223
  fill: "currentColor",
1261
1224
  ...rest
1262
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 13 23.407 16 20 16.414 22.5 18.667 22 22 25 20.125 28 22 27.5 18.667 30 16.414 26.5 16 25 13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.414 13.414 25 9.834 25 9.834 28.587 13.416 30 12 25 7 20 12 21.414 13.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.414 8.414 25 4.834 25 4.834 28.587 8.416 30 7 25 2 20 7 21.414 8.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1225
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 19.4 28.6 18 25 21.6 21.4 18 20 19.4 23.6 23 20 26.6 21.4 28 25 24.4 28.6 28 30 26.6 26.4 23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,26l-4,0v-8l4,0v-2l-4,0c-1.1,0-2,0.9-2,2v8H6V6h4v4c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V6.4l4,4l0,5.6h2l0-6 c0-0.3-0.1-0.5-0.3-0.7l-5-5C22.5,4.1,22.3,4,22,4H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2l10,0V26z M12,6h8v4h-8V6z" }), children);
1263
1226
  });
1264
- if (process.env.NODE_ENV !== "production") UserMilitary.propTypes = require_iconPropTypes.iconPropTypes;
1265
- const UserMultiple = react.default.forwardRef(function UserMultiple({ children, size = 16, ...rest }, ref) {
1266
- return react.default.createElement(require_Icon_js, {
1227
+ if (process.env.NODE_ENV !== "production") Unsaved.propTypes = require_iconPropTypes.iconPropTypes;
1228
+ const UpToTop = /* @__PURE__ */ react.default.forwardRef(function UpToTop({ children, size = 16, ...rest }, ref) {
1229
+ return react.default.createElement(require_Icon.Icon, {
1267
1230
  width: size,
1268
1231
  height: size,
1269
1232
  ref,
@@ -1271,11 +1234,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1271
1234
  viewBox: "0 0 32 32",
1272
1235
  fill: "currentColor",
1273
1236
  ...rest
1274
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H28V25a5.0057,5.0057,0,0,0-5-5V18a7.0078,7.0078,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5.0059,5.0059,0,0,0-5-5H9a5.0059,5.0059,0,0,0-5,5v5H2V25a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,2V4a5,5,0,0,1,0,10v2A7,7,0,0,0,20,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1237
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 14 6 24 7.4 25.4 16 16.8 24.6 25.4 26 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 8H28V10H4z" }), children);
1275
1238
  });
1276
- if (process.env.NODE_ENV !== "production") UserMultiple.propTypes = require_iconPropTypes.iconPropTypes;
1277
- const UserOnline = react.default.forwardRef(function UserOnline({ children, size = 16, ...rest }, ref) {
1278
- return react.default.createElement(require_Icon_js, {
1239
+ if (process.env.NODE_ENV !== "production") UpToTop.propTypes = require_iconPropTypes.iconPropTypes;
1240
+ const UpdateComplete = /* @__PURE__ */ react.default.forwardRef(function UpdateComplete({ children, size = 16, ...rest }, ref) {
1241
+ return react.default.createElement(require_Icon.Icon, {
1279
1242
  width: size,
1280
1243
  height: size,
1281
1244
  ref,
@@ -1283,15 +1246,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1283
1246
  viewBox: "0 0 32 32",
1284
1247
  fill: "currentColor",
1285
1248
  ...rest
1286
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1287
- cx: "26",
1288
- cy: "16",
1289
- r: "4"
1290
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1249
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30c-7.72,0-14-6.28-14-14h2c0,6.617,5.383,12,12,12v2ZM12,8h-4.922c2.258-2.524,5.467-4,8.922-4,6.617,0,12,5.383,12,12h2c0-7.72-6.28-14-14-14-3.828,0-7.393,1.558-10,4.234V2h-2v8h8v-2ZM22,27.18l-2.59-2.59-1.41,1.41,4,4,8-8-1.41-1.41s-6.59,6.59-6.59,6.59Z" }), children);
1291
1250
  });
1292
- if (process.env.NODE_ENV !== "production") UserOnline.propTypes = require_iconPropTypes.iconPropTypes;
1293
- const UserProfile = react.default.forwardRef(function UserProfile({ children, size = 16, ...rest }, ref) {
1294
- return react.default.createElement(require_Icon_js, {
1251
+ if (process.env.NODE_ENV !== "production") UpdateComplete.propTypes = require_iconPropTypes.iconPropTypes;
1252
+ const UpdateNow = /* @__PURE__ */ react.default.forwardRef(function UpdateNow({ children, size = 16, ...rest }, ref) {
1253
+ return react.default.createElement(require_Icon.Icon, {
1295
1254
  width: size,
1296
1255
  height: size,
1297
1256
  ref,
@@ -1299,11 +1258,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1299
1258
  viewBox: "0 0 32 32",
1300
1259
  fill: "currentColor",
1301
1260
  ...rest
1302
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 4H32V6H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 9H32V11H22z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 14H29V16H22z" }), children);
1261
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 25.586 25 23.586 25 21 23 21 23 24.414 25.586 27 27 25.586z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,31a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,24,31Zm0-12a5,5,0,1,0,5,5A5.0055,5.0055,0,0,0,24,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,28A12.0134,12.0134,0,0,1,4,16H2A14.0158,14.0158,0,0,0,16,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,8H7.0784A11.9843,11.9843,0,0,1,28,16h2A13.9778,13.9778,0,0,0,6,6.2344V2H4v8h8Z" }), children);
1303
1262
  });
1304
- if (process.env.NODE_ENV !== "production") UserProfile.propTypes = require_iconPropTypes.iconPropTypes;
1305
- const UserRole = react.default.forwardRef(function UserRole({ children, size = 16, ...rest }, ref) {
1306
- return react.default.createElement(require_Icon_js, {
1263
+ if (process.env.NODE_ENV !== "production") UpdateNow.propTypes = require_iconPropTypes.iconPropTypes;
1264
+ const Upgrade = /* @__PURE__ */ react.default.forwardRef(function Upgrade({ children, size = 16, ...rest }, ref) {
1265
+ return react.default.createElement(require_Icon.Icon, {
1307
1266
  width: size,
1308
1267
  height: size,
1309
1268
  ref,
@@ -1311,32 +1270,20 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1311
1270
  viewBox: "0 0 32 32",
1312
1271
  fill: "currentColor",
1313
1272
  ...rest
1314
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.07 21 22 15 28.07 9 29.5 10.41 24.86 15 29.5 19.59 28.07 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1273
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,24H11a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2H21a2,2,0,0,0,2-2V26A2,2,0,0,0,21,24Zm0,4H11V26H21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.707,14.293l-12-12a.9994.9994,0,0,0-1.414,0l-12,12A1,1,0,0,0,4,16H9v4a2.0023,2.0023,0,0,0,2,2H21a2.0027,2.0027,0,0,0,2-2V16h5a1,1,0,0,0,.707-1.707ZM21,14v6H11V14H6.4141L16,4.4141,25.5859,14Z" }), children);
1315
1274
  });
1316
- if (process.env.NODE_ENV !== "production") UserRole.propTypes = require_iconPropTypes.iconPropTypes;
1317
- const UserService = react.default.forwardRef(function UserService({ children, size = 16, ...rest }, ref) {
1318
- return react.default.createElement(require_Icon_js, {
1275
+ if (process.env.NODE_ENV !== "production") Upgrade.propTypes = require_iconPropTypes.iconPropTypes;
1276
+ const Upload = /* @__PURE__ */ react.default.forwardRef(function Upload({ children, size = 16, ...rest }, ref) {
1277
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1319
1278
  width: size,
1320
1279
  height: size,
1321
1280
  ref,
1322
1281
  xmlns: "http://www.w3.org/2000/svg",
1323
- viewBox: "0 0 32 32",
1282
+ viewBox: "0 0 16 16",
1324
1283
  fill: "currentColor",
1325
1284
  ...rest
1326
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1327
- strokeWidth: "0",
1328
- d: "m23.019,10.4332c-.595.3514-1.2795.5668-2.019.5668-2.2056,0-4-1.7944-4-4,0-.3557.0615-.6943.1492-1.0228l2.4368,2.4368.0005-.0004c.3621.3621.8621.5864,1.4136.5864,1.103,0,2-.897,2-2,0-.5515-.2242-1.0515-.5864-1.4136l.0005-.0004-2.4368-2.4368c.3284-.0875.667-.1491,1.0227-.1491,2.2056,0,4,1.7944,4,4,0,.7396-.2155,1.4241-.5669,2.0191l5.5669,5.5668-1.4141,1.4141-5.5669-5.5668Z"
1329
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1330
- strokeWidth: "0",
1331
- d: "m16,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5h-2v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1332
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1333
- strokeWidth: "0",
1334
- d: "m9,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3c.0019-1.6561,1.3439-2.9981,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1335
- }), children);
1336
- });
1337
- if (process.env.NODE_ENV !== "production") UserService.propTypes = require_iconPropTypes.iconPropTypes;
1338
- const UserServiceDesk = react.default.forwardRef(function UserServiceDesk({ children, size = 16, ...rest }, ref) {
1339
- return react.default.createElement(require_Icon_js, {
1285
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3 9 3.7 9.7 7.5 5.9 7.5 15 8.5 15 8.5 5.9 12.3 9.7 13 9 8 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3,4V2h10v2h1V2c0-0.6-0.4-1-1-1H3C2.4,1,2,1.4,2,2v2H3z" }), children);
1286
+ return react.default.createElement(require_Icon.Icon, {
1340
1287
  width: size,
1341
1288
  height: size,
1342
1289
  ref,
@@ -1344,11 +1291,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1344
1291
  viewBox: "0 0 32 32",
1345
1292
  fill: "currentColor",
1346
1293
  ...rest
1347
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.334,11.95l1.2055-1.206a1.178,1.178,0,0,1,1.2593-.2584l1.4693.5868A1.1736,1.1736,0,0,1,30,12.1489v2.692A1.1681,1.1681,0,0,1,28.8229,16l-.05-.0015C18.4775,15.3578,16.4,6.6357,16.0073,3.2976a1.1681,1.1681,0,0,1,1.0315-1.29A1.1492,1.1492,0,0,1,17.1751,2h2.5994a1.1626,1.1626,0,0,1,1.0764.7322l.5866,1.47a1.1635,1.1635,0,0,1-.2529,1.26L19.9791,6.668S20.6733,11.3682,25.334,11.95Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1294
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18 7.41 19.41 15 11.83 15 30 17 30 17 11.83 24.59 19.41 26 18 16 8 6 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z" }), children);
1348
1295
  });
1349
- if (process.env.NODE_ENV !== "production") UserServiceDesk.propTypes = require_iconPropTypes.iconPropTypes;
1350
- const UserSettings = react.default.forwardRef(function UserSettings({ children, size = 16, ...rest }, ref) {
1351
- return react.default.createElement(require_Icon_js, {
1296
+ if (process.env.NODE_ENV !== "production") Upload.propTypes = require_iconPropTypes.iconPropTypes;
1297
+ const Upstream = /* @__PURE__ */ react.default.forwardRef(function Upstream({ children, size = 16, ...rest }, ref) {
1298
+ return react.default.createElement(require_Icon.Icon, {
1352
1299
  width: size,
1353
1300
  height: size,
1354
1301
  ref,
@@ -1356,11 +1303,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1356
1303
  viewBox: "0 0 32 32",
1357
1304
  fill: "currentColor",
1358
1305
  ...rest
1359
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1306
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m10,24c0,3.3137,2.6863,6,6,6s6-2.6863,6-6-2.6863-6-6-6-6,2.6863-6,6Zm2,0c0-2.2056,1.7944-4,4-4s4,1.7944,4,4-1.7944,4-4,4-4-1.7944-4-4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m30,5c0-1.6567-1.3433-3-3-3s-3,1.3433-3,3c0,1.3042.8374,2.4028,2,2.8164v5.1836c0,1.7217-.752,3.3438-2,4.4673v-2.4673h-2v6h6v-2h-2.7168c1.6938-1.4995,2.7168-3.6816,2.7168-6v-5.1836c1.1626-.4136,2-1.5122,2-2.8164Zm-3,1c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m18.586,11.5859l-1.5859,1.5859v-5.3555c1.1626-.4136,2-1.5122,2-2.8164,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3c0,1.3042.8374,2.4028,2,2.8164v5.3555l-1.5859-1.5859-1.4141,1.4141,4,4,4-4-1.4141-1.4141Zm-2.5859-7.5859c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m8,15v2.4673c-1.248-1.1235-2-2.7456-2-4.4673v-5.1836c1.1626-.4136,2-1.5122,2-2.8164,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3c0,1.3042.8374,2.4028,2,2.8164v5.1836c0,2.3184,1.0229,4.5005,2.7168,6h-2.7168v2h6v-6h-2Zm-3-11c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1Z" }), children);
1360
1307
  });
1361
- if (process.env.NODE_ENV !== "production") UserSettings.propTypes = require_iconPropTypes.iconPropTypes;
1362
- const UserSimulation = react.default.forwardRef(function UserSimulation({ children, size = 16, ...rest }, ref) {
1363
- return react.default.createElement(require_Icon_js, {
1308
+ if (process.env.NODE_ENV !== "production") Upstream.propTypes = require_iconPropTypes.iconPropTypes;
1309
+ const Url = /* @__PURE__ */ react.default.forwardRef(function Url({ children, size = 16, ...rest }, ref) {
1310
+ return react.default.createElement(require_Icon.Icon, {
1364
1311
  width: size,
1365
1312
  height: size,
1366
1313
  ref,
@@ -1369,22 +1316,19 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1369
1316
  fill: "currentColor",
1370
1317
  ...rest
1371
1318
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1372
- d: "M25.232 12.866H29.232V14.866H25.232z",
1373
- transform: "rotate(30 27.232 13.866)"
1374
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 8H30V10H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1375
- d: "M2.768 12.866H6.768V14.866H2.768z",
1376
- transform: "rotate(150 4.768 13.866)"
1377
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V25a5.0059,5.0059,0,0,0-5-5H13a5.0059,5.0059,0,0,0-5,5v5H6V25a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1378
- d: "M25.232 3.134H29.232V5.134H25.232z",
1379
- transform: "rotate(-30 27.232 4.134)"
1380
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 8H6V10H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1381
- d: "M2.768 3.134H6.768V5.134H2.768z",
1382
- transform: "rotate(210 4.768 4.134)"
1319
+ strokeWidth: "0",
1320
+ d: "M24 21 24 9 22 9 22 23 30 23 30 21 24 21z"
1321
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1322
+ strokeWidth: "0",
1323
+ d: "m20,15v-4c0-1.103-.8975-2-2-2h-6v14h2v-6h1.4807l2.3345,6h2.1453l-2.3331-6h.3726c1.1025,0,2-.8975,2-2Zm-6-4h4v4h-4v-4Z"
1324
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1325
+ strokeWidth: "0",
1326
+ d: "m8,23h-4c-1.103,0-2-.8975-2-2v-12h2v12h4v-12h2v12c0,1.1025-.897,2-2,2Z"
1383
1327
  }), children);
1384
1328
  });
1385
- if (process.env.NODE_ENV !== "production") UserSimulation.propTypes = require_iconPropTypes.iconPropTypes;
1386
- const UserSpeaker = react.default.forwardRef(function UserSpeaker({ children, size = 16, ...rest }, ref) {
1387
- return react.default.createElement(require_Icon_js, {
1329
+ if (process.env.NODE_ENV !== "production") Url.propTypes = require_iconPropTypes.iconPropTypes;
1330
+ const UsageIncludedUseCase = /* @__PURE__ */ react.default.forwardRef(function UsageIncludedUseCase({ children, size = 16, ...rest }, ref) {
1331
+ return react.default.createElement(require_Icon.Icon, {
1388
1332
  width: size,
1389
1333
  height: size,
1390
1334
  ref,
@@ -1392,11 +1336,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1392
1336
  viewBox: "0 0 32 32",
1393
1337
  fill: "currentColor",
1394
1338
  ...rest
1395
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4146,19,27.7,17.2852A2.97,2.97,0,0,0,28,16a3,3,0,1,0-3,3,2.97,2.97,0,0,0,1.2864-.3L28,20.4141V28H22V25a7.0078,7.0078,0,0,0-7-7H9a7.008,7.008,0,0,0-7,7v5H30V20.4141A1.988,1.988,0,0,0,29.4146,19ZM4,25a5.006,5.006,0,0,1,5-5h6a5.0059,5.0059,0,0,1,5,5v3H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1339
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1340
+ strokeWidth: "0",
1341
+ d: "m13,28V5.8281l7.5859,7.5859,1.4141-1.4141L12,2,2,12l1.4143,1.4141,7.5857-7.5854v22.1714c0,1.1045.8955,2,2,2h15v-2h-15Z"
1342
+ }), children);
1396
1343
  });
1397
- if (process.env.NODE_ENV !== "production") UserSpeaker.propTypes = require_iconPropTypes.iconPropTypes;
1398
- const UserSponsor = react.default.forwardRef(function UserSponsor({ children, size = 16, ...rest }, ref) {
1399
- return react.default.createElement(require_Icon_js, {
1344
+ if (process.env.NODE_ENV !== "production") UsageIncludedUseCase.propTypes = require_iconPropTypes.iconPropTypes;
1345
+ const Usb = /* @__PURE__ */ react.default.forwardRef(function Usb({ children, size = 16, ...rest }, ref) {
1346
+ return react.default.createElement(require_Icon.Icon, {
1400
1347
  width: size,
1401
1348
  height: size,
1402
1349
  ref,
@@ -1404,11 +1351,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1404
1351
  viewBox: "0 0 32 32",
1405
1352
  fill: "currentColor",
1406
1353
  ...rest
1407
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.8301 13.3662 30.8301 11.6338 28 13.2681 28 10 26 10 26 13.2676 23.1699 11.6338 22.1699 13.3662 25 15 22.1699 16.6338 23.1699 18.3662 26 16.7324 26 20 28 20 28 16.7319 30.8301 18.3662 31.8301 16.6338 29 15 31.8301 13.3662z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,30h-2v-5c-.0033-2.7601-2.2399-4.9967-5-5h-6c-2.7601.0033-4.9967,2.2399-5,5v5h-2v-5c.0045-3.8641,3.1359-6.9955,7-7h6c3.8641.0045,6.9955,3.1359,7,7v5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,4c2.7614,0,5,2.2386,5,5s-2.2386,5-5,5-5-2.2386-5-5c.0031-2.7601,2.2399-4.9969,5-5m0-2c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.134-7-7-7Z" }), children);
1354
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,15V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6v9a2,2,0,0,0-2,2V28H8V17H24V28h2V17A2,2,0,0,0,24,15ZM10,6H22v9H10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 10H15V12H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 10H20V12H17z" }), children);
1408
1355
  });
1409
- if (process.env.NODE_ENV !== "production") UserSponsor.propTypes = require_iconPropTypes.iconPropTypes;
1410
- const UserXRay = react.default.forwardRef(function UserXRay({ children, size = 16, ...rest }, ref) {
1411
- return react.default.createElement(require_Icon_js, {
1356
+ if (process.env.NODE_ENV !== "production") Usb.propTypes = require_iconPropTypes.iconPropTypes;
1357
+ const UseCaseDefinition = /* @__PURE__ */ react.default.forwardRef(function UseCaseDefinition({ children, size = 16, ...rest }, ref) {
1358
+ return react.default.createElement(require_Icon.Icon, {
1412
1359
  width: size,
1413
1360
  height: size,
1414
1361
  ref,
@@ -1417,13 +1364,19 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1417
1364
  fill: "currentColor",
1418
1365
  ...rest
1419
1366
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1420
- fill: "none",
1421
- d: "M28 9 28 7 25 7 25 5 23 5 23 7 20 7 20 9 23 9 23 12 20 12 20 14 23 14 23 16 25 16 25 14 28 14 28 12 25 12 25 9 28 9z"
1422
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,3H17a1,1,0,0,0-1,1V17a1,1,0,0,0,1,1H31a1,1,0,0,0,1-1V4A1,1,0,0,0,31,3ZM28,9H25v3h3v2H25v2H23V14H20V12h3V9H20V7h3V5h2V7h3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,30H13V26a2.9465,2.9465,0,0,0-3-3H6a2.9465,2.9465,0,0,0-3,3v4H1V26a4.9514,4.9514,0,0,1,5-5h4a4.9514,4.9514,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,11a3,3,0,0,1,0,6,3,3,0,0,1,0-6M8,9A5,5,0,0,0,8,19,5,5,0,0,0,8,9Z" }), children);
1367
+ strokeWidth: "0",
1368
+ d: "m22.0735,21.9922c1.7068,0,2.9407-.7773,3.5151-2.3325l-1.6561-.7942c-.3212.7942-.828,1.386-1.859,1.386-1.2002,0-1.8086-.8284-1.8086-2.062v-1.6057c0-1.2341.6084-2.0787,1.8086-2.0787.9294,0,1.4871.5409,1.6899,1.2845l1.7748-.7947c-.524-1.386-1.6903-2.2307-3.4647-2.2307-2.603,0-4.0735,1.7744-4.0735,4.5969,0,2.8394,1.4705,4.6311,4.0735,4.6311Z"
1369
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1370
+ strokeWidth: "0",
1371
+ d: "m11.5126,21.9922c3.3129,0,4.5468-1.572,4.5468-5.0369v-6.9631h-2.1973v7.2507c0,1.8422-.6423,2.772-2.3324,2.772s-2.3324-.9298-2.3324-2.772v-7.2507h-2.1973v6.9631c0,3.4648,1.2,5.0369,4.5126,5.0369Z"
1372
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1373
+ strokeWidth: "0",
1374
+ d: "m2,4v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2Zm26,24H4V4h24v24Z"
1375
+ }), children);
1423
1376
  });
1424
- if (process.env.NODE_ENV !== "production") UserXRay.propTypes = require_iconPropTypes.iconPropTypes;
1425
- const UserProfileAlt = react.default.forwardRef(function UserProfileAlt({ children, size = 16, ...rest }, ref) {
1426
- return react.default.createElement(require_Icon_js, {
1377
+ if (process.env.NODE_ENV !== "production") UseCaseDefinition.propTypes = require_iconPropTypes.iconPropTypes;
1378
+ const UseCaseUsage = /* @__PURE__ */ react.default.forwardRef(function UseCaseUsage({ children, size = 16, ...rest }, ref) {
1379
+ return react.default.createElement(require_Icon.Icon, {
1427
1380
  width: size,
1428
1381
  height: size,
1429
1382
  ref,
@@ -1431,23 +1384,29 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1431
1384
  viewBox: "0 0 32 32",
1432
1385
  fill: "currentColor",
1433
1386
  ...rest
1434
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 13H26V15H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 8H30V10H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 3H30V5H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,30H7a2.0059,2.0059,0,0,1-2-2V21a2.0059,2.0059,0,0,1-2-2V13a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,11,30ZM6,12a.9448.9448,0,0,0-1,1v6H7v9h4V19h2V13a.9448.9448,0,0,0-1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,9a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,9,9ZM9,3a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,9,3Z" }), children);
1387
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1388
+ strokeWidth: "0",
1389
+ d: "m22.0735,21.9922c1.7068,0,2.9407-.7773,3.5151-2.3325l-1.6561-.7942c-.3212.7942-.828,1.386-1.859,1.386-1.2002,0-1.8086-.8284-1.8086-2.062v-1.6057c0-1.2341.6084-2.0787,1.8086-2.0787.9294,0,1.4871.5409,1.6899,1.2845l1.7748-.7947c-.524-1.386-1.6903-2.2307-3.4647-2.2307-2.603,0-4.0735,1.7744-4.0735,4.5969,0,2.8394,1.4705,4.6311,4.0735,4.6311Z"
1390
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1391
+ strokeWidth: "0",
1392
+ d: "m11.5126,21.9922c3.3129,0,4.5468-1.572,4.5468-5.0369v-6.9631h-2.1973v7.2507c0,1.8422-.6423,2.772-2.3324,2.772s-2.3324-.9298-2.3324-2.772v-7.2507h-2.1973v6.9631c0,3.4648,1.2,5.0369,4.5126,5.0369Z"
1393
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1394
+ strokeWidth: "0",
1395
+ d: "m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"
1396
+ }), children);
1435
1397
  });
1436
- if (process.env.NODE_ENV !== "production") UserProfileAlt.propTypes = require_iconPropTypes.iconPropTypes;
1437
- const UvIndex = react.default.forwardRef(function UvIndex({ children, size = 16, ...rest }, ref) {
1438
- return react.default.createElement(require_Icon_js, {
1398
+ if (process.env.NODE_ENV !== "production") UseCaseUsage.propTypes = require_iconPropTypes.iconPropTypes;
1399
+ const User = /* @__PURE__ */ react.default.forwardRef(function User({ children, size = 16, ...rest }, ref) {
1400
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1439
1401
  width: size,
1440
1402
  height: size,
1441
1403
  ref,
1442
1404
  xmlns: "http://www.w3.org/2000/svg",
1443
- viewBox: "0 0 32 32",
1405
+ viewBox: "0 0 16 16",
1444
1406
  fill: "currentColor",
1445
1407
  ...rest
1446
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,5.9121l1.7444,2.9326.7822,1.315,1.4739-.4107,3.1206-.87L22.2512,12,21.84,13.4731l1.315.7823L26.0876,16l-2.9323,1.7441-1.315.7818L22.2512,20l.87,3.1211-3.1208-.87L18.5266,21.84l-.7822,1.315L16,26.0879l-1.7444-2.9326-.7822-1.315L12,22.251l-3.1208.87L9.7488,20l.4109-1.4741-1.315-.7818L5.9124,16l2.9323-1.7446,1.315-.7823L9.7488,12l-.87-3.1206L12,9.749l1.4739.4107.7822-1.315L16,5.9121M16,2,12.5366,7.8223,6,6l1.8223,6.5366L2,16l5.8223,3.4629L6,26l6.5366-1.8223L16,30l3.4634-5.8223L26,26l-1.8223-6.5371L30,16l-5.8223-3.4634L26,6,19.4634,7.8223,16,2Z" }), children);
1447
- });
1448
- if (process.env.NODE_ENV !== "production") UvIndex.propTypes = require_iconPropTypes.iconPropTypes;
1449
- const UvIndexAlt = react.default.forwardRef(function UvIndexAlt({ children, size = 16, ...rest }, ref) {
1450
- return react.default.createElement(require_Icon_js, {
1408
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,2c1.4,0,2.5,1.1,2.5,2.5S9.4,7,8,7S5.5,5.9,5.5,4.5S6.6,2,8,2 M8,1C6.1,1,4.5,2.6,4.5,4.5S6.1,8,8,8s3.5-1.6,3.5-3.5 S9.9,1,8,1z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,15h-1v-2.5c0-1.4-1.1-2.5-2.5-2.5h-3C5.1,10,4,11.1,4,12.5V15H3v-2.5C3,10.6,4.6,9,6.5,9h3c1.9,0,3.5,1.6,3.5,3.5V15z" }), children);
1409
+ return react.default.createElement(require_Icon.Icon, {
1451
1410
  width: size,
1452
1411
  height: size,
1453
1412
  ref,
@@ -1455,17 +1414,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1455
1414
  viewBox: "0 0 32 32",
1456
1415
  fill: "currentColor",
1457
1416
  ...rest
1458
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30H9a2.0027,2.0027,0,0,1-2-2V20H9v8h4V20h2v8A2.0027,2.0027,0,0,1,13,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 20 23.25 20 21 29.031 18.792 20 17 20 19.5 30 22.5 30 25 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V7H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1459
- d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
1460
- transform: "rotate(-45 24.147 7.853)"
1461
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 15H30V17H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H7V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1462
- d: "M6.854 5.375H8.854V10.333H6.854z",
1463
- transform: "rotate(-45 7.854 7.853)"
1464
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,17H20V16a4,4,0,0,0-8,0v1H10V16a6,6,0,0,1,12,0Z" }), children);
1417
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,4a5,5,0,1,1-5,5,5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,16,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H24V25a5,5,0,0,0-5-5H13a5,5,0,0,0-5,5v5H6V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), children);
1465
1418
  });
1466
- if (process.env.NODE_ENV !== "production") UvIndexAlt.propTypes = require_iconPropTypes.iconPropTypes;
1467
- const UvIndexFilled = react.default.forwardRef(function UvIndexFilled({ children, size = 16, ...rest }, ref) {
1468
- return react.default.createElement(require_Icon_js, {
1419
+ if (process.env.NODE_ENV !== "production") User.propTypes = require_iconPropTypes.iconPropTypes;
1420
+ const UserAccess = /* @__PURE__ */ react.default.forwardRef(function UserAccess({ children, size = 16, ...rest }, ref) {
1421
+ return react.default.createElement(require_Icon.Icon, {
1469
1422
  width: size,
1470
1423
  height: size,
1471
1424
  ref,
@@ -1473,11 +1426,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1473
1426
  viewBox: "0 0 32 32",
1474
1427
  fill: "currentColor",
1475
1428
  ...rest
1476
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30l-3.4634-5.8223L6,26l1.8223-6.5369L2,16l5.8223-3.4631L6,6l6.5366,1.8223L16,2l3.4634,5.8223L26,6l-1.8223,6.5369L30,16l-5.8223,3.4631L26,26l-6.5366-1.8223Z" }), children);
1429
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,12a1.9922,1.9922,0,0,0-.5117.0742L28.4331,11.019a3.8788,3.8788,0,0,0,0-4.038l1.0552-1.0552a2.0339,2.0339,0,1,0-1.4141-1.4141L27.019,5.5669a3.8788,3.8788,0,0,0-4.038,0L21.9258,4.5117a2.0339,2.0339,0,1,0-1.4141,1.4141L21.5669,6.981a3.8788,3.8788,0,0,0,0,4.038l-1.0552,1.0552a2.0339,2.0339,0,1,0,1.4141,1.4141l1.0552-1.0552a3.8788,3.8788,0,0,0,4.038,0l1.0552,1.0552A1.9957,1.9957,0,1,0,30,12ZM23,9a2,2,0,1,1,2,2A2.0025,2.0025,0,0,1,23,9Z" }), children);
1477
1430
  });
1478
- if (process.env.NODE_ENV !== "production") UvIndexFilled.propTypes = require_iconPropTypes.iconPropTypes;
1479
- const ValueVariable = react.default.forwardRef(function ValueVariable({ children, size = 16, ...rest }, ref) {
1480
- return react.default.createElement(require_Icon_js, {
1431
+ if (process.env.NODE_ENV !== "production") UserAccess.propTypes = require_iconPropTypes.iconPropTypes;
1432
+ const UserAccessLocked = /* @__PURE__ */ react.default.forwardRef(function UserAccessLocked({ children, size = 16, ...rest }, ref) {
1433
+ return react.default.createElement(require_Icon.Icon, {
1481
1434
  width: size,
1482
1435
  height: size,
1483
1436
  ref,
@@ -1485,11 +1438,20 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1485
1438
  viewBox: "0 0 32 32",
1486
1439
  fill: "currentColor",
1487
1440
  ...rest
1488
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,28H22V26h4V6H22V4h4a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,26,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 11 18 11 16 14.897 14 11 12 11 14.905 16 12 21 14 21 16 17.201 18 21 20 21 17.098 16 20 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,28H6a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,6,4h4V6H6V26h4Z" }), children);
1441
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1442
+ strokeWidth: "0",
1443
+ d: "m28,8v-3c0-2.2056-1.7944-4-4-4s-4,1.7944-4,4v3c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h8c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2Zm-6-3c0-1.1025.8972-2,2-2s2,.8975,2,2v3h-4v-3Zm-2,11v-6h8v6h-8Z"
1444
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1445
+ strokeWidth: "0",
1446
+ d: "m16,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5h-2v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1447
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1448
+ strokeWidth: "0",
1449
+ d: "m9,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3,1.3431-3,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1450
+ }), children);
1489
1451
  });
1490
- if (process.env.NODE_ENV !== "production") ValueVariable.propTypes = require_iconPropTypes.iconPropTypes;
1491
- const ValueVariableAlt = react.default.forwardRef(function ValueVariableAlt({ children, size = 16, ...rest }, ref) {
1492
- return react.default.createElement(require_Icon_js, {
1452
+ if (process.env.NODE_ENV !== "production") UserAccessLocked.propTypes = require_iconPropTypes.iconPropTypes;
1453
+ const UserAccessUnlocked = /* @__PURE__ */ react.default.forwardRef(function UserAccessUnlocked({ children, size = 16, ...rest }, ref) {
1454
+ return react.default.createElement(require_Icon.Icon, {
1493
1455
  width: size,
1494
1456
  height: size,
1495
1457
  ref,
@@ -1497,11 +1459,20 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1497
1459
  viewBox: "0 0 32 32",
1498
1460
  fill: "currentColor",
1499
1461
  ...rest
1500
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3,15.874v.2676c1.1201.2939,2,1.1743,2,2.8584v8h4v2h-4c-1.1028,0-2-.8975-2-2v-8c0-1.5498-.8799-2-2-2v-2c1.1201,0,2-.4766,2-2V5c0-1.1025.8972-2,2-2h4v2h-4v8c0,1.6841-.8799,2.5801-2,2.874ZM29,15.874v.2676c-1.1201.2939-2,1.1743-2,2.8584v8h-4s0,2,0,2h4c1.1028,0,2-.8975,2-2v-8c0-1.5498.8799-2,2-2v-2c-1.1201,0-2-.4766-2-2V5c0-1.1025-.8972-2-2-2h-4s0,2,0,2h4v8c0,1.6841.8799,2.5801,2,2.874ZM10.3401,21.8939c-.4089,0-.7344-.1158-.977-.3471-.2421-.2314-.3631-.5464-.3631-.9447,0-.3767.1129-.6807.3392-.9123.2258-.2314.5274-.3472.9043-.3472.3443,0,.6108.101.799.3025.1882.2019.2828.4825.2828.8422v.0654l.1129.0818c.1617-.0863.3687-.2776.622-.5742.2528-.2965.5325-.6767.8397-1.1405.3067-.4637.6347-.992.9846-1.5852s.7024-1.2349,1.0579-1.9251l-.0483-2.7824c-.0112-.69-.1938-1.0352-.5493-1.0352-.2156,0-.4603.0943-.7344.2825-.2746.1886-.6327.5034-1.0741.9447l-.5005-.4844c.6886-.7856,1.2944-1.3536,1.8167-1.7035.5218-.3498,1.0416-.5249,1.5583-.5249.6027,0,1.0436.2181,1.3239.654.2797.436.4303,1.1439.4521,2.1234l.0325,1.8247h.1612c.4628-.8935.8773-1.6363,1.2435-2.2284.3657-.5919.713-1.063,1.0416-1.4129.328-.3498.651-.5975.9689-.7428.3174-.1453.6591-.2181,1.0253-.2181.4089,0,.7344.1158.977.3472.2421.2315.3631.5465.3631.9446,0,.377-.1129.681-.3392.9123-.2258.2317-.5274.3472-.9043.3472-.3443,0-.6108-.0954-.799-.2861-.1887-.1908-.2828-.4605-.2828-.8094v-.1146l-.1129-.0818c-.1404.0757-.323.2589-.5493.55-.2258.2912-.4816.6685-.767,1.1324-.2853.4637-.5951,1.0084-.9282,1.6339-.3341.6256-.6841,1.3103-1.0497,2.0543l.0483,2.6368c.0107.6904.1938,1.0352.5493,1.0352.2151,0,.4598-.0941.7344-.2825.2746-.1883.6322-.5031,1.0736-.9447l.501.4844c-.3448.3984-.6647.7375-.9607,1.0173-.2965.2801-.5813.5087-.856.6863s-.5386.3095-.7914.3956-.5086.1292-.767.1292c-.6032,0-1.0441-.2179-1.3239-.6539-.2802-.436-.4308-1.1438-.4521-2.1235l-.0325-1.8247h-.1455c-.4521.8397-.8748,1.5502-1.2674,2.1315-.3931.5813-.767,1.0552-1.1225,1.421-.355.3661-.7049.6326-1.0492.7994-.3448.1667-.6998.2502-1.066.2502Z" }), children);
1462
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1463
+ strokeWidth: "0",
1464
+ d: "m16,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5h-2v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1465
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1466
+ strokeWidth: "0",
1467
+ d: "m9,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3,1.3431-3,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1468
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1469
+ strokeWidth: "0",
1470
+ d: "m28,8h-6v-3c0-1.1025.8972-2,2-2s2,.8975,2,2h2c0-2.2056-1.7944-4-4-4s-4,1.7944-4,4v3c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h8c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2Zm0,8h-8v-6h8v6Z"
1471
+ }), children);
1501
1472
  });
1502
- if (process.env.NODE_ENV !== "production") ValueVariableAlt.propTypes = require_iconPropTypes.iconPropTypes;
1503
- const Van = react.default.forwardRef(function Van({ children, size = 16, ...rest }, ref) {
1504
- return react.default.createElement(require_Icon_js, {
1473
+ if (process.env.NODE_ENV !== "production") UserAccessUnlocked.propTypes = require_iconPropTypes.iconPropTypes;
1474
+ const UserActivity = /* @__PURE__ */ react.default.forwardRef(function UserActivity({ children, size = 16, ...rest }, ref) {
1475
+ return react.default.createElement(require_Icon.Icon, {
1505
1476
  width: size,
1506
1477
  height: size,
1507
1478
  ref,
@@ -1509,11 +1480,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1509
1480
  viewBox: "0 0 32 32",
1510
1481
  fill: "currentColor",
1511
1482
  ...rest
1512
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.81,16l-7-9.56A1,1,0,0,0,22,6H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V16.56A1,1,0,0,0,29.81,16ZM20,8h1.49l5.13,7H20ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V8H18v9H28Z" }), children);
1483
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,23h-.0215a1.0016,1.0016,0,0,1-.94-.7256L20.8711,11.19l-1.9346,5.1607A1.0005,1.0005,0,0,1,18,17H14V15h3.3066l2.7569-7.3511a1.0005,1.0005,0,0,1,1.8984.0762l3.1113,10.8921,1.9786-5.9336A.9988.9988,0,0,1,28,12h4v2H28.7207l-2.7725,8.3164A.9984.9984,0,0,1,25,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,30H13V23a3.0033,3.0033,0,0,0-3-3H6a3.0033,3.0033,0,0,0-3,3v7H1V23a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,8a3,3,0,1,1-3,3A3,3,0,0,1,8,8M8,6a5,5,0,1,0,5,5A5,5,0,0,0,8,6Z" }), children);
1513
1484
  });
1514
- if (process.env.NODE_ENV !== "production") Van.propTypes = require_iconPropTypes.iconPropTypes;
1515
- const VegetationAsset = react.default.forwardRef(function VegetationAsset({ children, size = 16, ...rest }, ref) {
1516
- return react.default.createElement(require_Icon_js, {
1485
+ if (process.env.NODE_ENV !== "production") UserActivity.propTypes = require_iconPropTypes.iconPropTypes;
1486
+ const UserAdmin = /* @__PURE__ */ react.default.forwardRef(function UserAdmin({ children, size = 16, ...rest }, ref) {
1487
+ return react.default.createElement(require_Icon.Icon, {
1517
1488
  width: size,
1518
1489
  height: size,
1519
1490
  ref,
@@ -1521,27 +1492,20 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1521
1492
  viewBox: "0 0 32 32",
1522
1493
  fill: "currentColor",
1523
1494
  ...rest
1524
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1525
- cx: "21.5",
1526
- cy: "10.5",
1527
- r: "1.5"
1528
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5,1a2.4518,2.4518,0,0,0-1.2061.3105L18.9834,5.6084l.0027.0054a5.497,5.497,0,1,0,7.3257,7.5444l.0031.0015,4.4-8.5A2.5,2.5,0,0,0,28.5,1Zm-7,13A3.5,3.5,0,1,1,25,10.5,3.5042,3.5042,0,0,1,21.5,14ZM28.9414,3.7354,26.5571,8.3408A5.5279,5.5279,0,0,0,23.658,5.4424l4.5949-2.377A.5165.5165,0,0,1,29,3.5.4985.4985,0,0,1,28.9414,3.7354Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,20h7V18H17V28a2.0027,2.0027,0,0,0,2,2h3V28H19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0024,2.0024,0,0,1,12,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17.3079,2.2852A9.4882,9.4882,0,0,0,15,2,8.0275,8.0275,0,0,0,8.0786,6.001C8.0525,6,8.0264,6,8,6A6,6,0,0,0,8,18V16A4,4,0,0,1,8,8a2.7009,2.7009,0,0,1,.387.0391l.863.1142.3086-.6675A6.0192,6.0192,0,0,1,15,4a7.499,7.499,0,0,1,1.731.2148Z" }), children);
1495
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 16.18 22.41 13.59 21 15 25 19 32 12 30.59 10.59 25 16.18z" }), children);
1529
1496
  });
1530
- if (process.env.NODE_ENV !== "production") VegetationAsset.propTypes = require_iconPropTypes.iconPropTypes;
1531
- const VegetationEncroachment = react.default.forwardRef(function VegetationEncroachment({ children, size = 16, ...rest }, ref) {
1532
- return react.default.createElement(require_Icon_js, {
1497
+ if (process.env.NODE_ENV !== "production") UserAdmin.propTypes = require_iconPropTypes.iconPropTypes;
1498
+ const UserAvatar = /* @__PURE__ */ react.default.forwardRef(function UserAvatar({ children, size = 16, ...rest }, ref) {
1499
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
1533
1500
  width: size,
1534
1501
  height: size,
1535
1502
  ref,
1536
1503
  xmlns: "http://www.w3.org/2000/svg",
1537
- viewBox: "0 0 32 32",
1504
+ viewBox: "0 0 16 16",
1538
1505
  fill: "currentColor",
1539
1506
  ...rest
1540
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m19,20h7v-2h-9v10c.0015,1.104.896,1.9985,2,2h3v-2h-3v-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m12,30h-3v-2h3v-12.4336l-3.5146-2.1089,1.0292-1.7148,3.5147,2.1084c.6007.3632.9686,1.0133.9707,1.7153v12.4336c-.0013,1.104-.896,1.9987-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 6.4102 28.59 5 25 8.5898 21.41 5 20 6.4102 23.59 10 20 13.5898 21.41 15 25 11.4102 28.59 15 30 13.5898 26.41 10 30 6.4102z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m17.3079,2.2852c-.7283-.1821-1.4995-.2852-2.3079-.2852-2.8545.0083-5.4897,1.5317-6.9214,4.001-.0261-.001-.0522-.001-.0786-.001-3.3137,0-6,2.6865-6,6s2.6863,6,6,6v-2c-2.209,0-4-1.791-4-4s1.791-4,4-4c.1299.0039.259.0166.387.0391l.863.1143.3086-.6675c.9834-2.1196,3.1047-3.4785,5.4414-3.4858.6079,0,1.1819.0854,1.731.2148l.5769-1.9297Z" }), children);
1541
- });
1542
- if (process.env.NODE_ENV !== "production") VegetationEncroachment.propTypes = require_iconPropTypes.iconPropTypes;
1543
- const VegetationHeight = react.default.forwardRef(function VegetationHeight({ children, size = 16, ...rest }, ref) {
1544
- return react.default.createElement(require_Icon_js, {
1507
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M5,13.2v-1.5c0-0.9,0.6-1.6,1.5-1.7h3c0.9,0.1,1.5,0.8,1.5,1.7v1.5 C9.1,14.3,6.9,14.3,5,13.2L5,13.2z M12,12l0-0.8c0-0.9-1.1-2.1-2.5-2.2h-3C5.1,9.1,4,10.3,4,11.7l0,0.5v0.3c-2.5-2.2-2.7-6-0.5-8.5 s6-2.7,8.5-0.5s2.7,6,0.5,8.5c-0.1,0.2-0.3,0.3-0.5,0.5V12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,3C6.6,3,5.5,4.1,5.5,5.5S6.6,8,8,8s2.5-1.1,2.5-2.5S9.4,3,8,3z M8,7C7.2,7,6.5,6.3,6.5,5.5S7.2,4,8,4s1.5,0.7,1.5,1.5 S8.8,7,8,7z" }), children);
1508
+ return react.default.createElement(require_Icon.Icon, {
1545
1509
  width: size,
1546
1510
  height: size,
1547
1511
  ref,
@@ -1549,11 +1513,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1549
1513
  viewBox: "0 0 32 32",
1550
1514
  fill: "currentColor",
1551
1515
  ...rest
1552
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m13,8l-5,5,1.4102,1.4102,2.5898-2.5801v16.1699h-3v2h3c1.104-.0015,1.9988-.896,2-2V11.8301l2.5898,2.5801,1.4102-1.4102-5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m22,30h-3c-1.104-.0013-1.9987-.896-2-2v-11h6c2.2096-.0001,4.0007-1.7915,4.0006-4.001,0-.1319-.0065-.2637-.0196-.395-.277-2.0943-2.0835-3.6461-4.1957-3.604h-1.5837l-.1766-.779c-.573-2.5249-2.9942-4.221-6.025-4.221-2.3366.0074-4.4579,1.3664-5.4415,3.4859l-.3085.6672-.863-.1143c-.1279-.022-.2573-.0349-.387-.0388-2.2091,0-4,1.7909-4,4s1.7909,4,4,4v2c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6c.0264,0,.0525,0,.0786.001,1.4317-2.4694,4.067-3.9928,6.9214-4.001,3.6788,0,6.6923,1.9776,7.7516,5h.0337c3.1405-.0351,5.8053,2.2967,6.1872,5.4141.323,3.2985-2.0892,6.2344-5.3877,6.5573-.1943.019-.3895.0286-.5848.0286h-4v9h3v2Z" }), children);
1516
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a5,5,0,1,0,5,5A5,5,0,0,0,16,8Zm0,8a3,3,0,1,1,3-3A3.0034,3.0034,0,0,1,16,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM10,26.3765V25a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3v1.3765a11.8989,11.8989,0,0,1-12,0Zm13.9925-1.4507A5.0016,5.0016,0,0,0,19,20H13a5.0016,5.0016,0,0,0-4.9925,4.9258,12,12,0,1,1,15.985,0Z" }), children);
1553
1517
  });
1554
- if (process.env.NODE_ENV !== "production") VegetationHeight.propTypes = require_iconPropTypes.iconPropTypes;
1555
- const VehicleApi = react.default.forwardRef(function VehicleApi({ children, size = 16, ...rest }, ref) {
1556
- return react.default.createElement(require_Icon_js, {
1518
+ if (process.env.NODE_ENV !== "production") UserAvatar.propTypes = require_iconPropTypes.iconPropTypes;
1519
+ const UserAvatarFilled = /* @__PURE__ */ react.default.forwardRef(function UserAvatarFilled({ children, size = 16, ...rest }, ref) {
1520
+ return react.default.createElement(require_Icon.Icon, {
1557
1521
  width: size,
1558
1522
  height: size,
1559
1523
  ref,
@@ -1561,11 +1525,14 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1561
1525
  viewBox: "0 0 32 32",
1562
1526
  fill: "currentColor",
1563
1527
  ...rest
1564
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,11a1.9907,1.9907,0,0,0-.8247.1821L24.8337,9.51A3.45,3.45,0,0,0,25,8.5a3.45,3.45,0,0,0-.1663-1.01l2.3416-1.6723A1.9975,1.9975,0,1,0,26,4c0,.064.0129.124.0188.1865L23.7273,5.8232A3.4652,3.4652,0,0,0,21.5,5a3.5,3.5,0,0,0,0,7,3.4652,3.4652,0,0,0,2.2273-.8232l2.2915,1.6367C26.0129,12.876,26,12.936,26,13a2,2,0,1,0,2-2Zm-6.5-1A1.5,1.5,0,1,1,23,8.5,1.5017,1.5017,0,0,1,21.5,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,19.9336l-7.7324-2.7783L18.374,13.0967A2.99,2.99,0,0,0,16.0537,12H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,17.2949A4.9884,4.9884,0,0,0,2,20.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V20.875A1,1,0,0,0,29.3379,19.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V20.1074A2.9977,2.9977,0,0,1,4.52,18.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,14h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,21.5781Z" }), children);
1528
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1529
+ fill: "none",
1530
+ d: "M8.0071,24.93A4.9958,4.9958,0,0,1,13,20h6a4.9959,4.9959,0,0,1,4.9929,4.93,11.94,11.94,0,0,1-15.9858,0ZM20.5,12.5A4.5,4.5,0,1,1,16,8,4.5,4.5,0,0,1,20.5,12.5Z"
1531
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.7489,24.93A13.9893,13.9893,0,1,0,2,16a13.899,13.899,0,0,0,3.2511,8.93l-.02.0166c.07.0845.15.1567.2222.2392.09.1036.1864.2.28.3008.28.3033.5674.5952.87.87.0915.0831.1864.1612.28.2417.32.2759.6484.5372.99.7813.0441.0312.0832.0693.1276.1006v-.0127a13.9011,13.9011,0,0,0,16,0V27.48c.0444-.0313.0835-.0694.1276-.1006.3412-.2441.67-.5054.99-.7813.0936-.08.1885-.1586.28-.2417.3025-.2749.59-.5668.87-.87.0933-.1006.1894-.1972.28-.3008.0719-.0825.1522-.1547.2222-.2392ZM16,8a4.5,4.5,0,1,1-4.5,4.5A4.5,4.5,0,0,1,16,8ZM8.0071,24.93A4.9957,4.9957,0,0,1,13,20h6a4.9958,4.9958,0,0,1,4.9929,4.93,11.94,11.94,0,0,1-15.9858,0Z" }), children);
1565
1532
  });
1566
- if (process.env.NODE_ENV !== "production") VehicleApi.propTypes = require_iconPropTypes.iconPropTypes;
1567
- const VehicleConnected = react.default.forwardRef(function VehicleConnected({ children, size = 16, ...rest }, ref) {
1568
- return react.default.createElement(require_Icon_js, {
1533
+ if (process.env.NODE_ENV !== "production") UserAvatarFilled.propTypes = require_iconPropTypes.iconPropTypes;
1534
+ const UserAvatarFilledAlt = /* @__PURE__ */ react.default.forwardRef(function UserAvatarFilledAlt({ children, size = 16, ...rest }, ref) {
1535
+ return react.default.createElement(require_Icon.Icon, {
1569
1536
  width: size,
1570
1537
  height: size,
1571
1538
  ref,
@@ -1573,11 +1540,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1573
1540
  viewBox: "0 0 32 32",
1574
1541
  fill: "currentColor",
1575
1542
  ...rest
1576
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,17.9336l-7.7324-2.7783L18.374,11.0967A2.99,2.99,0,0,0,16.0537,10H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,15.2949A4.9884,4.9884,0,0,0,2,18.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V18.875A1,1,0,0,0,29.3379,17.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V18.1074A2.9977,2.9977,0,0,1,4.52,16.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,12h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,19.5781Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,11H23a2.0021,2.0021,0,0,0-2-2V7A4.0045,4.0045,0,0,1,25,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,11H27a6.0067,6.0067,0,0,0-6-6V3A8.0092,8.0092,0,0,1,29,11Z" }), children);
1543
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,8a5,5,0,1,0,5,5A5,5,0,0,0,16,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm7.9925,22.9258A5.0016,5.0016,0,0,0,19,20H13a5.0016,5.0016,0,0,0-4.9925,4.9258,12,12,0,1,1,15.985,0Z" }), children);
1577
1544
  });
1578
- if (process.env.NODE_ENV !== "production") VehicleConnected.propTypes = require_iconPropTypes.iconPropTypes;
1579
- const VehicleInsights = react.default.forwardRef(function VehicleInsights({ children, size = 16, ...rest }, ref) {
1580
- return react.default.createElement(require_Icon_js, {
1545
+ if (process.env.NODE_ENV !== "production") UserAvatarFilledAlt.propTypes = require_iconPropTypes.iconPropTypes;
1546
+ const UserCertification = /* @__PURE__ */ react.default.forwardRef(function UserCertification({ children, size = 16, ...rest }, ref) {
1547
+ return react.default.createElement(require_Icon.Icon, {
1581
1548
  width: size,
1582
1549
  height: size,
1583
1550
  ref,
@@ -1585,11 +1552,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1585
1552
  viewBox: "0 0 32 32",
1586
1553
  fill: "currentColor",
1587
1554
  ...rest
1588
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,17.9336l-7.7324-2.7783L18.374,11.0967A2.99,2.99,0,0,0,16.0537,10H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,15.2949A4.9884,4.9884,0,0,0,2,18.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V18.875A1,1,0,0,0,29.3379,17.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V18.1074A2.9977,2.9977,0,0,1,4.52,16.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,12h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,19.5781Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 2H30V9H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 6H26V9H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H22V9H20z" }), children);
1555
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 10 26.593 13 30 13.414 27.5 15.667 28 19 25 17.125 22 19 22.5 15.667 20 13.414 23.5 13 25 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5.0059,5.0059,0,0,0-5-5H9a5.0059,5.0059,0,0,0-5,5v5H2V25a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1589
1556
  });
1590
- if (process.env.NODE_ENV !== "production") VehicleInsights.propTypes = require_iconPropTypes.iconPropTypes;
1591
- const VehicleServices = react.default.forwardRef(function VehicleServices({ children, size = 16, ...rest }, ref) {
1592
- return react.default.createElement(require_Icon_js, {
1557
+ if (process.env.NODE_ENV !== "production") UserCertification.propTypes = require_iconPropTypes.iconPropTypes;
1558
+ const UserData = /* @__PURE__ */ react.default.forwardRef(function UserData({ children, size = 16, ...rest }, ref) {
1559
+ return react.default.createElement(require_Icon.Icon, {
1593
1560
  width: size,
1594
1561
  height: size,
1595
1562
  ref,
@@ -1597,11 +1564,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1597
1564
  viewBox: "0 0 32 32",
1598
1565
  fill: "currentColor",
1599
1566
  ...rest
1600
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.3379,17.9336l-7.7324-2.7783L18.374,11.0967A2.99,2.99,0,0,0,16.0537,10H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,15.2949A4.9884,4.9884,0,0,0,2,18.1074V26a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V18.875A1,1,0,0,0,29.3379,17.9336ZM9,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,28Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,28Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V18.1074A2.9977,2.9977,0,0,1,4.52,16.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,12h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,19.5781Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.5547,6a2,2,0,0,1,2-2H30a3.9756,3.9756,0,0,0-7.304,1H16V7h6.696A3.9756,3.9756,0,0,0,30,8H26.5547A2,2,0,0,1,24.5547,6Z" }), children);
1567
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 8H30V16H28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 5H25V16H23z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 10H20V16H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V24a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v6H2V24a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,9a3,3,0,1,1-3,3A3,3,0,0,1,9,9M9,7a5,5,0,1,0,5,5A5,5,0,0,0,9,7Z" }), children);
1601
1568
  });
1602
- if (process.env.NODE_ENV !== "production") VehicleServices.propTypes = require_iconPropTypes.iconPropTypes;
1603
- const Version = react.default.forwardRef(function Version({ children, size = 16, ...rest }, ref) {
1604
- return react.default.createElement(require_Icon_js, {
1569
+ if (process.env.NODE_ENV !== "production") UserData.propTypes = require_iconPropTypes.iconPropTypes;
1570
+ const UserFavorite = /* @__PURE__ */ react.default.forwardRef(function UserFavorite({ children, size = 16, ...rest }, ref) {
1571
+ return react.default.createElement(require_Icon.Icon, {
1605
1572
  width: size,
1606
1573
  height: size,
1607
1574
  ref,
@@ -1609,11 +1576,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1609
1576
  viewBox: "0 0 32 32",
1610
1577
  fill: "currentColor",
1611
1578
  ...rest
1612
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,2V4H26V19h2V4a2.0023,2.0023,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,7V9H21V24h2V9a2.0023,2.0023,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,12H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H6a2.0023,2.0023,0,0,1-2-2V14A2.0023,2.0023,0,0,1,6,12Zm10,2L6,13.9988V28H16Z" }), children);
1579
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.303,12a2.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.8964L25.0019,21l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,27.303,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,30H4V25a5.0059,5.0059,0,0,1,5-5h6a5.0059,5.0059,0,0,1,5,5v5h2V25a7.0082,7.0082,0,0,0-7-7H9a7.0082,7.0082,0,0,0-7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1613
1580
  });
1614
- if (process.env.NODE_ENV !== "production") Version.propTypes = require_iconPropTypes.iconPropTypes;
1615
- const VersionMajor = react.default.forwardRef(function VersionMajor({ children, size = 16, ...rest }, ref) {
1616
- return react.default.createElement(require_Icon_js, {
1581
+ if (process.env.NODE_ENV !== "production") UserFavorite.propTypes = require_iconPropTypes.iconPropTypes;
1582
+ const UserFavoriteAlt = /* @__PURE__ */ react.default.forwardRef(function UserFavoriteAlt({ children, size = 16, ...rest }, ref) {
1583
+ return react.default.createElement(require_Icon.Icon, {
1617
1584
  width: size,
1618
1585
  height: size,
1619
1586
  ref,
@@ -1621,11 +1588,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1621
1588
  viewBox: "0 0 32 32",
1622
1589
  fill: "currentColor",
1623
1590
  ...rest
1624
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 17.4141 16 14.8345 16 14.8345 13.4125 17.4156 12 16 16 12 20 16 18.5859 17.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 11.4141 16 8.8345 16 8.8345 13.4125 11.4156 12 10 16 6 20 10 18.5859 11.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 23.4141 16 20.8345 16 20.8345 13.4125 23.4156 12 22 16 18 20 22 18.5859 23.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m1.5858,17.4142c-.3905-.3905-.5858-.9024-.5858-1.4142s.1953-1.0237.5858-1.4142L14.5858,1.5858c.3905-.3905.9023-.5858,1.4142-.5858s1.0237.1953,1.4142.5858l13,13c.3905.3905.5858.9024.5858,1.4142s-.1953,1.0237-.5858,1.4142l-13,13c-.3905.3905-.9024.5858-1.4142.5858s-1.0237-.1953-1.4142-.5858L1.5858,17.4142ZM16,3L3,16l13,13,13-13L16,3Z" }), children);
1591
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.7663,4.2558A4.2121,4.2121,0,0,0,23,4.0321a4.2121,4.2121,0,0,0-5.7663.2237,4.319,4.319,0,0,0,0,6.0447L22.998,16.14,23,16.1376l.002.0019,5.7643-5.839A4.319,4.319,0,0,0,28.7663,4.2558ZM27.342,8.8948l-4.34,4.3973L23,13.29l-.002.002-4.34-4.3973a2.3085,2.3085,0,0,1,0-3.2338,2.2639,2.2639,0,0,1,3.1561,0l1.181,1.2074L23,6.8634l.0049.005,1.181-1.2074a2.2639,2.2639,0,0,1,3.1561,0A2.3085,2.3085,0,0,1,27.342,8.8948Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1625
1592
  });
1626
- if (process.env.NODE_ENV !== "production") VersionMajor.propTypes = require_iconPropTypes.iconPropTypes;
1627
- const VersionMinor = react.default.forwardRef(function VersionMinor({ children, size = 16, ...rest }, ref) {
1628
- return react.default.createElement(require_Icon_js, {
1593
+ if (process.env.NODE_ENV !== "production") UserFavoriteAlt.propTypes = require_iconPropTypes.iconPropTypes;
1594
+ const UserFavoriteAltFilled = /* @__PURE__ */ react.default.forwardRef(function UserFavoriteAltFilled({ children, size = 16, ...rest }, ref) {
1595
+ return react.default.createElement(require_Icon.Icon, {
1629
1596
  width: size,
1630
1597
  height: size,
1631
1598
  ref,
@@ -1633,11 +1600,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1633
1600
  viewBox: "0 0 32 32",
1634
1601
  fill: "currentColor",
1635
1602
  ...rest
1636
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 15.4141 16 12.8345 16 12.8345 13.4125 15.4156 12 14 16 10 20 14 18.5859 15.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 21.4141 16 18.8345 16 18.8345 13.4125 21.4156 12 20 16 16 20 20 18.5859 21.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m1.5858,17.4142c-.3905-.3905-.5858-.9024-.5858-1.4142s.1953-1.0237.5858-1.4142L14.5858,1.5858c.3905-.3905.9023-.5858,1.4142-.5858s1.0237.1953,1.4142.5858l13,13c.3905.3905.5858.9024.5858,1.4142s-.1953,1.0237-.5858,1.4142l-13,13c-.3905.3905-.9024.5858-1.4142.5858s-1.0237-.1953-1.4142-.5858L1.5858,17.4142ZM16,3L3,16l13,13,13-13L16,3Z" }), children);
1603
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.4938,3a3.4735,3.4735,0,0,0-2.48,1.0393l-.5111.5228-.5161-.5228a3.4792,3.4792,0,0,0-4.96,0,3.59,3.59,0,0,0,0,5.0251l5.4766,5.5427,5.4716-5.5427a3.59,3.59,0,0,0,0-5.0251A3.4738,3.4738,0,0,0,26.4938,3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1637
1604
  });
1638
- if (process.env.NODE_ENV !== "production") VersionMinor.propTypes = require_iconPropTypes.iconPropTypes;
1639
- const VersionPatch = react.default.forwardRef(function VersionPatch({ children, size = 16, ...rest }, ref) {
1640
- return react.default.createElement(require_Icon_js, {
1605
+ if (process.env.NODE_ENV !== "production") UserFavoriteAltFilled.propTypes = require_iconPropTypes.iconPropTypes;
1606
+ const UserFeedback = /* @__PURE__ */ react.default.forwardRef(function UserFeedback({ children, size = 16, ...rest }, ref) {
1607
+ return react.default.createElement(require_Icon.Icon, {
1641
1608
  width: size,
1642
1609
  height: size,
1643
1610
  ref,
@@ -1645,11 +1612,20 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1645
1612
  viewBox: "0 0 32 32",
1646
1613
  fill: "currentColor",
1647
1614
  ...rest
1648
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.5859 18.4141 16 15.8345 16 15.8345 13.4125 18.4156 12 17 16 13 20 17 18.5859 18.4141z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m1.5858,17.4142c-.3905-.3905-.5858-.9024-.5858-1.4142s.1953-1.0237.5858-1.4142L14.5858,1.5858c.3905-.3905.9023-.5858,1.4142-.5858s1.0237.1953,1.4142.5858l13,13c.3905.3905.5858.9024.5858,1.4142s-.1953,1.0237-.5858,1.4142l-13,13c-.3905.3905-.9024.5858-1.4142.5858s-1.0237-.1953-1.4142-.5858L1.5858,17.4142ZM16,3L3,16l13,13,13-13L16,3Z" }), children);
1615
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1616
+ strokeWidth: "0",
1617
+ d: "m19,3h10c1.1035,0,2,.8965,2,2v6c0,1.1035-.8965,2-2,2h-2.4229s-1.7314,3-1.7314,3l-1.7324-1,2.3096-4h3.5771s0-6,0-6h-10s0,6,0,6h3v2h-3c-1.1035,0-2-.8965-2-2v-6c0-1.1035.8965-2,2-2Z"
1618
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1619
+ strokeWidth: "0",
1620
+ d: "m15,30h-2v-5c-.0018-1.6561-1.3439-2.9982-3-3h-4c-1.6561.0018-2.9982,1.3439-3,3v5H1v-5c.0033-2.7601,2.2399-4.9967,5-5h4c2.7601.0033,4.9967,2.2399,5,5v5Z"
1621
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1622
+ strokeWidth: "0",
1623
+ d: "m8,10c1.6569,0,3,1.3431,3,3s-1.3431,3-3,3-3-1.3431-3-3c.0019-1.6561,1.3439-2.9981,3-3m0-2c-2.7614,0-5,2.2386-5,5s2.2386,5,5,5,5-2.2386,5-5-2.2386-5-5-5Z"
1624
+ }), children);
1649
1625
  });
1650
- if (process.env.NODE_ENV !== "production") VersionPatch.propTypes = require_iconPropTypes.iconPropTypes;
1651
- const VerticalFold = react.default.forwardRef(function VerticalFold({ children, size = 16, ...rest }, ref) {
1652
- return react.default.createElement(require_Icon_js, {
1626
+ if (process.env.NODE_ENV !== "production") UserFeedback.propTypes = require_iconPropTypes.iconPropTypes;
1627
+ const UserFilled = /* @__PURE__ */ react.default.forwardRef(function UserFilled({ children, size = 16, ...rest }, ref) {
1628
+ return react.default.createElement(require_Icon.Icon, {
1653
1629
  width: size,
1654
1630
  height: size,
1655
1631
  ref,
@@ -1657,11 +1633,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1657
1633
  viewBox: "0 0 32 32",
1658
1634
  fill: "currentColor",
1659
1635
  ...rest
1660
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,24l1.414,1.414,2.586-2.586v7.172h2v-7.172l2.586,2.586,1.414-1.414-5-5-5,5ZM21,8l-1.414-1.414-2.586,2.586V2h-2v7.172l-2.586-2.586-1.414,1.414,5,5,5-5ZM2,17h4v-2H2v2ZM12,15h-4v2h4v-2ZM14,17h4v-2h-4v2ZM20,17h4v-2h-4v2ZM26,15v2h4v-2h-4Z" }), children);
1636
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6,30H26V25a7.0082,7.0082,0,0,0-7-7H13a7.0082,7.0082,0,0,0-7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,9a7,7,0,1,0,7-7A7,7,0,0,0,9,9Z" }), children);
1661
1637
  });
1662
- if (process.env.NODE_ENV !== "production") VerticalFold.propTypes = require_iconPropTypes.iconPropTypes;
1663
- const VerticalView = react.default.forwardRef(function VerticalView({ children, size = 16, ...rest }, ref) {
1664
- return react.default.createElement(require_Icon_js, {
1638
+ if (process.env.NODE_ENV !== "production") UserFilled.propTypes = require_iconPropTypes.iconPropTypes;
1639
+ const UserFollow = /* @__PURE__ */ react.default.forwardRef(function UserFollow({ children, size = 16, ...rest }, ref) {
1640
+ return react.default.createElement(require_Icon.Icon, {
1665
1641
  width: size,
1666
1642
  height: size,
1667
1643
  ref,
@@ -1669,11 +1645,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1669
1645
  viewBox: "0 0 32 32",
1670
1646
  fill: "currentColor",
1671
1647
  ...rest
1672
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2h8a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,12,30ZM4,4V28h8V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H20a2.0021,2.0021,0,0,1-2-2V4a2.0021,2.0021,0,0,1,2-2h8a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM20,4V28h8V4Z" }), children);
1648
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M32 14 28 14 28 10 26 10 26 14 22 14 22 16 26 16 26 20 28 20 28 16 32 16 32 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), children);
1673
1649
  });
1674
- if (process.env.NODE_ENV !== "production") VerticalView.propTypes = require_iconPropTypes.iconPropTypes;
1675
- const Video = react.default.forwardRef(function Video({ children, size = 16, ...rest }, ref) {
1676
- return react.default.createElement(require_Icon_js, {
1650
+ if (process.env.NODE_ENV !== "production") UserFollow.propTypes = require_iconPropTypes.iconPropTypes;
1651
+ const UserIdentification = /* @__PURE__ */ react.default.forwardRef(function UserIdentification({ children, size = 16, ...rest }, ref) {
1652
+ return react.default.createElement(require_Icon.Icon, {
1677
1653
  width: size,
1678
1654
  height: size,
1679
1655
  ref,
@@ -1681,11 +1657,15 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1681
1657
  viewBox: "0 0 32 32",
1682
1658
  fill: "currentColor",
1683
1659
  ...rest
1684
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H21a2,2,0,0,1,2,2v4.06l5.42-3.87A1,1,0,0,1,30,9V23a1,1,0,0,1-1.58.81L23,19.94V24A2,2,0,0,1,21,26ZM4,8V24H21V18a1,1,0,0,1,1.58-.81L28,21.06V10.94l-5.42,3.87A1,1,0,0,1,21,14V8Z" }), children);
1660
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,11h4a1,1,0,0,1,1,1v2a0,0,0,0,1,0,0H21a0,0,0,0,1,0,0V12A1,1,0,0,1,22,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1661
+ cx: "24",
1662
+ cy: "8",
1663
+ r: "2"
1664
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,18H18a2.0023,2.0023,0,0,1-2-2V4a2.002,2.002,0,0,1,2-2H30a2.0023,2.0023,0,0,1,2,2V16A2.0027,2.0027,0,0,1,30,18ZM18,4V16H30.001L30,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,30H13V26a2.9465,2.9465,0,0,0-3-3H6a2.9465,2.9465,0,0,0-3,3v4H1V26a4.9514,4.9514,0,0,1,5-5h4a4.9514,4.9514,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,11a3,3,0,0,1,0,6,3,3,0,0,1,0-6M8,9A5,5,0,0,0,8,19,5,5,0,0,0,8,9Z" }), children);
1685
1665
  });
1686
- if (process.env.NODE_ENV !== "production") Video.propTypes = require_iconPropTypes.iconPropTypes;
1687
- const VideoAdd = react.default.forwardRef(function VideoAdd({ children, size = 16, ...rest }, ref) {
1688
- return react.default.createElement(require_Icon_js, {
1666
+ if (process.env.NODE_ENV !== "production") UserIdentification.propTypes = require_iconPropTypes.iconPropTypes;
1667
+ const UserMilitary = /* @__PURE__ */ react.default.forwardRef(function UserMilitary({ children, size = 16, ...rest }, ref) {
1668
+ return react.default.createElement(require_Icon.Icon, {
1689
1669
  width: size,
1690
1670
  height: size,
1691
1671
  ref,
@@ -1693,11 +1673,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1693
1673
  viewBox: "0 0 32 32",
1694
1674
  fill: "currentColor",
1695
1675
  ...rest
1696
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 15 14 15 14 11 12 11 12 15 8 15 8 17 12 17 12 21 14 21 14 17 18 17 18 15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H21a2.0023,2.0023,0,0,1,2,2v4.0566l5.4189-3.87A.9995.9995,0,0,1,30,9V23a.9995.9995,0,0,1-1.5811.8135L23,19.9434V24A2.0023,2.0023,0,0,1,21,26ZM4,8V24.001L21,24V18a.9995.9995,0,0,1,1.5811-.8135L28,21.0566V10.9434l-5.4189,3.87A.9995.9995,0,0,1,21,14V8Z" }), children);
1676
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 13 23.407 16 20 16.414 22.5 18.667 22 22 25 20.125 28 22 27.5 18.667 30 16.414 26.5 16 25 13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.414 13.414 25 9.834 25 9.834 28.587 13.416 30 12 25 7 20 12 21.414 13.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.414 8.414 25 4.834 25 4.834 28.587 8.416 30 7 25 2 20 7 21.414 8.414z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30H14V25a3.0033,3.0033,0,0,0-3-3H7a3.0033,3.0033,0,0,0-3,3v5H2V25a5.0059,5.0059,0,0,1,5-5h4a5.0059,5.0059,0,0,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,10a3,3,0,1,1-3,3,3,3,0,0,1,3-3M9,8a5,5,0,1,0,5,5A5,5,0,0,0,9,8Z" }), children);
1697
1677
  });
1698
- if (process.env.NODE_ENV !== "production") VideoAdd.propTypes = require_iconPropTypes.iconPropTypes;
1699
- const VideoChat = react.default.forwardRef(function VideoChat({ children, size = 16, ...rest }, ref) {
1700
- return react.default.createElement(require_Icon_js, {
1678
+ if (process.env.NODE_ENV !== "production") UserMilitary.propTypes = require_iconPropTypes.iconPropTypes;
1679
+ const UserMultiple = /* @__PURE__ */ react.default.forwardRef(function UserMultiple({ children, size = 16, ...rest }, ref) {
1680
+ return react.default.createElement(require_Icon.Icon, {
1701
1681
  width: size,
1702
1682
  height: size,
1703
1683
  ref,
@@ -1705,11 +1685,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1705
1685
  viewBox: "0 0 32 32",
1706
1686
  fill: "currentColor",
1707
1687
  ...rest
1708
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 12H17V14H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 17H13V19H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H21a2.0023,2.0023,0,0,1,2,2v4.0566l5.4189-3.87A.9995.9995,0,0,1,30,9V23a.9995.9995,0,0,1-1.5811.8135L23,19.9434V24A2.0023,2.0023,0,0,1,21,26ZM4,8V24.001L21,24V18a.9995.9995,0,0,1,1.5811-.8135L28,21.0566V10.9434l-5.4189,3.87A.9995.9995,0,0,1,21,14V8Z" }), children);
1688
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,30H28V25a5.0057,5.0057,0,0,0-5-5V18a7.0078,7.0078,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5.0059,5.0059,0,0,0-5-5H9a5.0059,5.0059,0,0,0-5,5v5H2V25a7.0082,7.0082,0,0,1,7-7h6a7.0082,7.0082,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,2V4a5,5,0,0,1,0,10v2A7,7,0,0,0,20,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1709
1689
  });
1710
- if (process.env.NODE_ENV !== "production") VideoChat.propTypes = require_iconPropTypes.iconPropTypes;
1711
- const VideoFilled = react.default.forwardRef(function VideoFilled({ children, size = 16, ...rest }, ref) {
1712
- return react.default.createElement(require_Icon_js, {
1690
+ if (process.env.NODE_ENV !== "production") UserMultiple.propTypes = require_iconPropTypes.iconPropTypes;
1691
+ const UserOnline = /* @__PURE__ */ react.default.forwardRef(function UserOnline({ children, size = 16, ...rest }, ref) {
1692
+ return react.default.createElement(require_Icon.Icon, {
1713
1693
  width: size,
1714
1694
  height: size,
1715
1695
  ref,
@@ -1717,12 +1697,48 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1717
1697
  viewBox: "0 0 32 32",
1718
1698
  fill: "currentColor",
1719
1699
  ...rest
1720
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H21a2,2,0,0,1,2,2v4.06l5.42-3.87A1,1,0,0,1,30,9V23a1,1,0,0,1-1.58.81L23,19.94V24A2,2,0,0,1,21,26Z" }), children);
1700
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1701
+ cx: "26",
1702
+ cy: "16",
1703
+ r: "4"
1704
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,30H20V25a5,5,0,0,0-5-5H9a5,5,0,0,0-5,5v5H2V25a7,7,0,0,1,7-7h6a7,7,0,0,1,7,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" }), children);
1721
1705
  });
1722
- if (process.env.NODE_ENV !== "production") VideoFilled.propTypes = require_iconPropTypes.iconPropTypes;
1706
+ if (process.env.NODE_ENV !== "production") UserOnline.propTypes = require_iconPropTypes.iconPropTypes;
1723
1707
  exports.QU1 = QU1;
1724
1708
  exports.QU2 = QU2;
1725
1709
  exports.QU3 = QU3;
1710
+ exports.TimeFilled = TimeFilled;
1711
+ exports.TimePlot = TimePlot;
1712
+ exports.Timer = Timer;
1713
+ exports.TimingBelt = TimingBelt;
1714
+ exports.ToggleOff = ToggleOff;
1715
+ exports.ToggleOffFill = ToggleOffFill;
1716
+ exports.ToggleOn = ToggleOn;
1717
+ exports.ToggleOnFill = ToggleOnFill;
1718
+ exports.ToolBox = ToolBox;
1719
+ exports.ToolKit = ToolKit;
1720
+ exports.Tools = Tools;
1721
+ exports.ToolsAlt = ToolsAlt;
1722
+ exports.TopDataSets = TopDataSets;
1723
+ exports.TopPrograms = TopPrograms;
1724
+ exports.Tornado = Tornado;
1725
+ exports.TornadoWarning = TornadoWarning;
1726
+ exports.TouchInteraction = TouchInteraction;
1727
+ exports.Touch_1 = Touch_1;
1728
+ exports.Touch_1Down = Touch_1Down;
1729
+ exports.Touch_1DownFilled = Touch_1DownFilled;
1730
+ exports.Touch_1Filled = Touch_1Filled;
1731
+ exports.Touch_2 = Touch_2;
1732
+ exports.Touch_2Filled = Touch_2Filled;
1733
+ exports.Tour = Tour;
1734
+ exports.Trace = Trace;
1735
+ exports.TrafficCone = TrafficCone;
1736
+ exports.TrafficEvent = TrafficEvent;
1737
+ exports.TrafficFlow = TrafficFlow;
1738
+ exports.TrafficFlowIncident = TrafficFlowIncident;
1739
+ exports.TrafficIncident = TrafficIncident;
1740
+ exports.TrafficWeatherIncident = TrafficWeatherIncident;
1741
+ exports.Train = Train;
1726
1742
  exports.TrainHeart = TrainHeart;
1727
1743
  exports.TrainProfile = TrainProfile;
1728
1744
  exports.TrainSpeed = TrainSpeed;
@@ -1773,6 +1789,7 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1773
1789
  exports.Undefined = Undefined;
1774
1790
  exports.UndefinedFilled = UndefinedFilled;
1775
1791
  exports.Undo = Undo;
1792
+ exports.UnfoldOpen = UnfoldOpen;
1776
1793
  exports.UngroupObjects = UngroupObjects;
1777
1794
  exports.Unknown = Unknown;
1778
1795
  exports.UnknownFilled = UnknownFilled;
@@ -1812,45 +1829,11 @@ var require_bucket_19 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1812
1829
  exports.UserMilitary = UserMilitary;
1813
1830
  exports.UserMultiple = UserMultiple;
1814
1831
  exports.UserOnline = UserOnline;
1815
- exports.UserProfile = UserProfile;
1816
- exports.UserProfileAlt = UserProfileAlt;
1817
- exports.UserRole = UserRole;
1818
- exports.UserService = UserService;
1819
- exports.UserServiceDesk = UserServiceDesk;
1820
- exports.UserSettings = UserSettings;
1821
- exports.UserSimulation = UserSimulation;
1822
- exports.UserSpeaker = UserSpeaker;
1823
- exports.UserSponsor = UserSponsor;
1824
- exports.UserXRay = UserXRay;
1825
- exports.UvIndex = UvIndex;
1826
- exports.UvIndexAlt = UvIndexAlt;
1827
- exports.UvIndexFilled = UvIndexFilled;
1828
- exports.ValueVariable = ValueVariable;
1829
- exports.ValueVariableAlt = ValueVariableAlt;
1830
- exports.Van = Van;
1831
- exports.VegetationAsset = VegetationAsset;
1832
- exports.VegetationEncroachment = VegetationEncroachment;
1833
- exports.VegetationHeight = VegetationHeight;
1834
- exports.VehicleApi = VehicleApi;
1835
- exports.VehicleConnected = VehicleConnected;
1836
- exports.VehicleInsights = VehicleInsights;
1837
- exports.VehicleServices = VehicleServices;
1838
- exports.Version = Version;
1839
- exports.VersionMajor = VersionMajor;
1840
- exports.VersionMinor = VersionMinor;
1841
- exports.VersionPatch = VersionPatch;
1842
- exports.VerticalFold = VerticalFold;
1843
- exports.VerticalView = VerticalView;
1844
- exports.Video = Video;
1845
- exports.VideoAdd = VideoAdd;
1846
- exports.VideoChat = VideoChat;
1847
- exports.VideoFilled = VideoFilled;
1848
1832
  }));
1849
-
1850
1833
  //#endregion
1851
- Object.defineProperty(exports, 'default', {
1852
- enumerable: true,
1853
- get: function () {
1854
- return require_bucket_19();
1855
- }
1856
- });
1834
+ Object.defineProperty(exports, "default", {
1835
+ enumerable: true,
1836
+ get: function() {
1837
+ return require_bucket_19();
1838
+ }
1839
+ });