@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-18.js
14
12
  var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,13 @@ var require_bucket_18 = /* @__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 TaskAdd = react.default.forwardRef(function TaskAdd({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const Sustainability = /* @__PURE__ */ react.default.forwardRef(function Sustainability({ 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,11 @@ var require_bucket_18 = /* @__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: "M31 24 27 24 27 20 25 20 25 24 21 24 21 26 25 26 25 30 27 30 27 26 31 26 31 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2H17V28H7V7h3v3H22V7h3v9h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
36
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21.5708,27.7495c-1.7468.8296-3.6211,1.2505-5.5708,1.2505-7.1682,0-13-5.832-13-13,0-3.0752,1.0571-5.979,3-8.3076v2.3076h2v-6H2v2h2.8416c-2.4753,2.7539-3.8416,6.2622-3.8416,10,0,8.271,6.729,15,15,15,2.249,0,4.4119-.4858,6.4292-1.4438l-.8584-1.8066Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m21,9c-3.1602,0-5.7515,2.457-5.9778,5.5605-1.0654-.9658-2.4739-1.5605-4.0222-1.5605h-4v4c0,3.3086,2.6917,6,6,6h2v4h2v-8.0005l2,.0005c3.3083,0,6-2.6914,6-6v-4h-4Zm-8,12c-2.2056,0-4-1.7944-4-4v-2h2c2.2056,0,4,1.7944,4,4v.5859l-2.293-2.293-1.4141,1.4141,2.293,2.293h-.5859Zm10-8c0,2.2056-1.7944,4-4,4h-.5859l2.293-2.293-1.4141-1.4141-2.293,2.293v-.5859c0-2.2056,1.7944-4,4-4h2v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m31,16c0-8.271-6.729-15-15-15-2.249,0-4.4119.4858-6.4292,1.4438l.8584,1.8066c1.7468-.8296,3.6211-1.2505,5.5708-1.2505,7.1682,0,13,5.832,13,13,0,3.0752-1.0571,5.979-3,8.3076v-2.3076h-2v6h6v-2h-2.8416c2.4753-2.7539,3.8416-6.2622,3.8416-10Z" }), children);
40
37
  });
41
- if (process.env.NODE_ENV !== "production") TaskAdd.propTypes = require_iconPropTypes.iconPropTypes;
42
- const TaskApproved = react.default.forwardRef(function TaskApproved({ children, size = 16, ...rest }, ref) {
43
- return react.default.createElement(require_Icon_js, {
38
+ if (process.env.NODE_ENV !== "production") Sustainability.propTypes = require_iconPropTypes.iconPropTypes;
39
+ const Svg = /* @__PURE__ */ react.default.forwardRef(function Svg({ children, size = 16, ...rest }, ref) {
40
+ return react.default.createElement(require_Icon.Icon, {
44
41
  width: size,
45
42
  height: size,
46
43
  ref,
@@ -48,11 +45,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
48
45
  viewBox: "0 0 32 32",
49
46
  fill: "currentColor",
50
47
  ...rest
51
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20A6,6,0,1,0,20,24.46V32l4-1.8936L28,32V24.46A5.98,5.98,0,0,0,30,20Zm-4,8.84-2-.9467L22,28.84V25.65a5.8877,5.8877,0,0,0,4,0ZM24,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
48
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H24V21h4V17H26V15h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 9 16 22 14 9 12 9 14.52 23 17.48 23 20 9 18 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,23H2V21H8V17H4a2,2,0,0,1-2-2V11A2,2,0,0,1,4,9h6v2H4v4H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,23Z" }), children);
52
49
  });
53
- if (process.env.NODE_ENV !== "production") TaskApproved.propTypes = require_iconPropTypes.iconPropTypes;
54
- const TaskAssetView = react.default.forwardRef(function TaskAssetView({ children, size = 16, ...rest }, ref) {
55
- return react.default.createElement(require_Icon_js, {
50
+ if (process.env.NODE_ENV !== "production") Svg.propTypes = require_iconPropTypes.iconPropTypes;
51
+ const Swim = /* @__PURE__ */ react.default.forwardRef(function Swim({ children, size = 16, ...rest }, ref) {
52
+ return react.default.createElement(require_Icon.Icon, {
56
53
  width: size,
57
54
  height: size,
58
55
  ref,
@@ -60,11 +57,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
60
57
  viewBox: "0 0 32 32",
61
58
  fill: "currentColor",
62
59
  ...rest
63
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,26A3.5,3.5,0,1,1,26,22.5,3.5041,3.5041,0,0,1,22.5,26Zm0-5A1.5,1.5,0,1,0,24,22.5,1.5017,1.5017,0,0,0,22.5,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,31A8.5,8.5,0,1,1,31,22.5,8.51,8.51,0,0,1,22.5,31Zm0-15A6.5,6.5,0,1,0,29,22.5,6.5074,6.5074,0,0,0,22.5,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h5V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
60
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,26H28a4.9316,4.9316,0,0,1-4-1.9873,5.0192,5.0192,0,0,1-8,0,5.0192,5.0192,0,0,1-8,0A4.9316,4.9316,0,0,1,4,26H2V24H4a3.44,3.44,0,0,0,3.0532-2.3215A.9712.9712,0,0,1,8,21a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,12,24a3.44,3.44,0,0,0,3.0532-2.3215A.99.99,0,0,1,16,21a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,20,24a3.44,3.44,0,0,0,3.0532-2.3215,1,1,0,0,1,1.8955.0053A3.4381,3.4381,0,0,0,28,24h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,17.5859l-8.707-8.707A2.9791,2.9791,0,0,0,12.1714,8H4v2h8.1714a.9933.9933,0,0,1,.7075.293L15.5859,13,10,18.5859,11.4141,20,17,14.4141,21.5859,19Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,20,10Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,22,10Z" }), children);
64
61
  });
65
- if (process.env.NODE_ENV !== "production") TaskAssetView.propTypes = require_iconPropTypes.iconPropTypes;
66
- const TaskComplete = react.default.forwardRef(function TaskComplete({ children, size = 16, ...rest }, ref) {
67
- return react.default.createElement(require_Icon_js, {
62
+ if (process.env.NODE_ENV !== "production") Swim.propTypes = require_iconPropTypes.iconPropTypes;
63
+ const SwimlaneDVertical = /* @__PURE__ */ react.default.forwardRef(function SwimlaneDVertical({ children, size = 16, ...rest }, ref) {
64
+ return react.default.createElement(require_Icon.Icon, {
68
65
  width: size,
69
66
  height: size,
70
67
  ref,
@@ -72,11 +69,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
72
69
  viewBox: "0 0 32 32",
73
70
  fill: "currentColor",
74
71
  ...rest
75
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 27.18 19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V18h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
72
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,26h2v4h-4v-2h2v-2ZM17,30h4v-2h-4v2ZM7,26h-2v4h4v-2h-2v-2ZM7,19.9995h-2v4.0005h2v-4.0005ZM7,14h-2v4h2v-4ZM5,8v3.9995h2v-1.9995h2v-2h-4ZM5,6h2v-2h2v-2h-4v4ZM17,4h4v-2h-4v2ZM11,4h4v-2h-4v2ZM23,2v2h2v2h2V2h-4ZM25,24h2v-3.9995h-2v3.9995ZM25,18h2v-4h-2v4ZM17,10h4v-2h-4v2ZM11,10h4v-2h-4v2ZM23,8v2h2v2h2v-4h-4ZM11,30h4v-2h-4v2Z" }), children);
76
73
  });
77
- if (process.env.NODE_ENV !== "production") TaskComplete.propTypes = require_iconPropTypes.iconPropTypes;
78
- const TaskLocation = react.default.forwardRef(function TaskLocation({ children, size = 16, ...rest }, ref) {
79
- return react.default.createElement(require_Icon_js, {
74
+ if (process.env.NODE_ENV !== "production") SwimlaneDVertical.propTypes = require_iconPropTypes.iconPropTypes;
75
+ const Switch = /* @__PURE__ */ react.default.forwardRef(function Switch({ children, size = 16, ...rest }, ref) {
76
+ return react.default.createElement(require_Icon.Icon, {
80
77
  width: size,
81
78
  height: size,
82
79
  ref,
@@ -84,15 +81,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
84
81
  viewBox: "0 0 32 32",
85
82
  fill: "currentColor",
86
83
  ...rest
87
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
88
- cx: "24",
89
- cy: "21",
90
- r: "2"
91
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,31l-4.7788-6.4019A5.9354,5.9354,0,0,1,18,21a6,6,0,0,1,12,0,5.9407,5.9407,0,0,1-1.2246,3.6028Zm0-14a4.0045,4.0045,0,0,0-4,4,3.9572,3.9572,0,0,0,.82,2.3972L24,27.6567l3.1763-4.2548A3.9627,3.9627,0,0,0,28,21,4.0045,4.0045,0,0,0,24,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
84
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.6,23.6l1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6v-4.2H6v5h-2V10.8c-1.2-.4-2-1.5-2-2.8s.8-2.4,2-2.8v-3.2h2v3.2c.8.3,1.5,1,1.8,1.8h19.2v6.2l2.6-2.6,1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6v-4.2H7.8c-.3.8-1,1.5-1.8,1.8v9.2h21v6.2l2.6-2.6h0Z" }), children);
92
85
  });
93
- if (process.env.NODE_ENV !== "production") TaskLocation.propTypes = require_iconPropTypes.iconPropTypes;
94
- const TaskRemove = react.default.forwardRef(function TaskRemove({ children, size = 16, ...rest }, ref) {
95
- return react.default.createElement(require_Icon_js, {
86
+ if (process.env.NODE_ENV !== "production") Switch.propTypes = require_iconPropTypes.iconPropTypes;
87
+ const SwitchLayer_2 = /* @__PURE__ */ react.default.forwardRef(function SwitchLayer_2({ children, size = 16, ...rest }, ref) {
88
+ return react.default.createElement(require_Icon.Icon, {
96
89
  width: size,
97
90
  height: size,
98
91
  ref,
@@ -100,11 +93,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
100
93
  viewBox: "0 0 32 32",
101
94
  fill: "currentColor",
102
95
  ...rest
103
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.41 25 30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V17h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
96
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 26 16 24 5.83 24 8.41 21.41 7 20 2 25 7 30 8.41 28.59 5.83 26 16 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 14 16 12 5.83 12 8.41 9.41 7 8 2 13 7 18 8.41 16.59 5.83 14 16 14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 6 16 8 26.17 8 23.59 10.59 25 12 30 7 25 2 23.59 3.41 26.17 6 16 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18 16 20 26.17 20 23.59 22.59 25 24 30 19 25 14 23.59 15.41 26.17 18 16 18z" }), children);
104
97
  });
105
- if (process.env.NODE_ENV !== "production") TaskRemove.propTypes = require_iconPropTypes.iconPropTypes;
106
- const TaskSettings = react.default.forwardRef(function TaskSettings({ children, size = 16, ...rest }, ref) {
107
- return react.default.createElement(require_Icon_js, {
98
+ if (process.env.NODE_ENV !== "production") SwitchLayer_2.propTypes = require_iconPropTypes.iconPropTypes;
99
+ const SwitchLayer_3 = /* @__PURE__ */ react.default.forwardRef(function SwitchLayer_3({ children, size = 16, ...rest }, ref) {
100
+ return react.default.createElement(require_Icon.Icon, {
108
101
  width: size,
109
102
  height: size,
110
103
  ref,
@@ -112,11 +105,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
112
105
  viewBox: "0 0 32 32",
113
106
  fill: "currentColor",
114
107
  ...rest
115
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v6h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
108
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 4 22 6 24.586 6 19.586 11 21 12.414 26 7.414 26 10 28 10 28 4 22 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4 10 6 7.414 6 12.414 11 11 12.414 6 7.414 6 10 4 10 4 4 10 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 5 16 1 12 5 13.414 6.414 15 4.829 15 11 17 11 17 4.829 18.586 6.414 20 5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 28 22 26 24.586 26 19.586 21 21 19.586 26 24.586 26 22 28 22 28 28 22 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 28 10 26 7.414 26 12.414 21 11 19.586 6 24.586 6 22 4 22 4 28 10 28z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 27 16 31 12 27 13.414 25.586 15 27.171 15 21 17 21 17 27.171 18.586 25.586 20 27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12 1 16 5 20 6.414 18.586 4.829 17 11 17 11 15 4.829 15 6.414 13.414 5 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 12 31 16 27 20 25.586 18.586 27.171 17 21 17 21 15 27.171 15 25.586 13.414 27 12z" }), children);
116
109
  });
117
- if (process.env.NODE_ENV !== "production") TaskSettings.propTypes = require_iconPropTypes.iconPropTypes;
118
- const TaskStar = react.default.forwardRef(function TaskStar({ children, size = 16, ...rest }, ref) {
119
- return react.default.createElement(require_Icon_js, {
110
+ if (process.env.NODE_ENV !== "production") SwitchLayer_3.propTypes = require_iconPropTypes.iconPropTypes;
111
+ const Switcher = /* @__PURE__ */ react.default.forwardRef(function Switcher({ children, size = 16, ...rest }, ref) {
112
+ return react.default.createElement(require_Icon.Icon, {
120
113
  width: size,
121
114
  height: size,
122
115
  ref,
@@ -124,11 +117,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
124
117
  viewBox: "0 0 32 32",
125
118
  fill: "currentColor",
126
119
  ...rest
127
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 17 25.23 21.32 30 22 26.5 25.167 28 30 23 27.208 18 30 19.5 25.167 16 22 20.9 21.32 23 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v7h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
120
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 4H18V8H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 4H8V8H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 4H28V8H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 14H18V18H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 14H8V18H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 14H28V18H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 24H18V28H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 24H8V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 24H28V28H24z" }), children);
128
121
  });
129
- if (process.env.NODE_ENV !== "production") TaskStar.propTypes = require_iconPropTypes.iconPropTypes;
130
- const TaskTools = react.default.forwardRef(function TaskTools({ children, size = 16, ...rest }, ref) {
131
- return react.default.createElement(require_Icon_js, {
122
+ if (process.env.NODE_ENV !== "production") Switcher.propTypes = require_iconPropTypes.iconPropTypes;
123
+ const Swot = /* @__PURE__ */ react.default.forwardRef(function Swot({ children, size = 16, ...rest }, ref) {
124
+ return react.default.createElement(require_Icon.Icon, {
132
125
  width: size,
133
126
  height: size,
134
127
  ref,
@@ -136,11 +129,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
136
129
  viewBox: "0 0 32 32",
137
130
  fill: "currentColor",
138
131
  ...rest
139
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5,32a3.4762,3.4762,0,0,1-2.4751-1.0254L21.897,26.8469a6.496,6.496,0,0,1-7.3482-8.9563l.5879-1.34L19.293,20.707a1.0234,1.0234,0,0,0,1.4135,0,.999.999,0,0,0,.0005-1.4141l-4.1562-4.1565,1.34-.5881a6.4965,6.4965,0,0,1,8.9566,7.3486l4.1274,4.1282A3.5,3.5,0,0,1,28.5,32Zm-6.03-7.4087,4.9693,4.9692a1.5352,1.5352,0,0,0,2.1211,0,1.4985,1.4985,0,0,0,0-2.1208v0l-4.9692-4.97.188-.5823A4.496,4.496,0,0,0,20.5,16q-.126,0-.25.0068l1.8716,1.8721a2.9992,2.9992,0,0,1,0,4.2424,3.0722,3.0722,0,0,1-4.2427-.0005l-1.8716-1.8715Q16,20.3741,16,20.5A4.4968,4.4968,0,0,0,21.8877,24.78Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
132
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30h-2v-13H2v-2h13V2h2v13h13v2h-13v13ZM28,28h-6v-6h6v6ZM24,26h2v-2h-2v2ZM10,27h-6v-6h6v6ZM6,25h2v-2h-2v2ZM25,13h-6v-6h6v6ZM21,11h2v-2h-2v2ZM11,12h-6v-6h6v6ZM7,10h2v-2h-2v2Z" }), children);
140
133
  });
141
- if (process.env.NODE_ENV !== "production") TaskTools.propTypes = require_iconPropTypes.iconPropTypes;
142
- const TaskView = react.default.forwardRef(function TaskView({ children, size = 16, ...rest }, ref) {
143
- return react.default.createElement(require_Icon_js, {
134
+ if (process.env.NODE_ENV !== "production") Swot.propTypes = require_iconPropTypes.iconPropTypes;
135
+ const SwotFilled = /* @__PURE__ */ react.default.forwardRef(function SwotFilled({ children, size = 16, ...rest }, ref) {
136
+ return react.default.createElement(require_Icon.Icon, {
144
137
  width: size,
145
138
  height: size,
146
139
  ref,
@@ -148,18 +141,44 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
148
141
  viewBox: "0 0 32 32",
149
142
  fill: "currentColor",
150
143
  ...rest
151
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
152
- cx: "22",
153
- cy: "24",
154
- r: "2"
144
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,15v2h-13v13h-2v-13H2v-2h13V2h2v13h13ZM25,7h-6v6h6v-6ZM28,22h-6v6h6v-6ZM11,6h-6v6h6v-6ZM10,21h-6v6h6v-6Z" }), children);
145
+ });
146
+ if (process.env.NODE_ENV !== "production") SwotFilled.propTypes = require_iconPropTypes.iconPropTypes;
147
+ const SyncSettings = /* @__PURE__ */ react.default.forwardRef(function SyncSettings({ children, size = 16, ...rest }, ref) {
148
+ return react.default.createElement(require_Icon.Icon, {
149
+ width: size,
150
+ height: size,
151
+ ref,
152
+ xmlns: "http://www.w3.org/2000/svg",
153
+ viewBox: "0 0 32 32",
154
+ fill: "currentColor",
155
+ ...rest
156
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
157
+ strokeWidth: "0",
158
+ d: "M15 24 15 22 11.4 22 22 11.4 22 15 24 15 24 8 17 8 17 10 20.6 10 10 20.6 10 17 8 17 8 24 15 24z"
155
159
  }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
156
- fill: "none",
157
- d: "M22,28a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,22,28Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,22,22Z"
158
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H7V7h3v3H22V7h3v9h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h5ZM12,4h8V8H12Z" }), children);
160
+ strokeWidth: "0",
161
+ d: "m25,20v2h3c1.1,0,2-.9,2-2v-3h-2v3h-3Z"
162
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
163
+ strokeWidth: "0",
164
+ d: "M28 10H30V14H28z"
165
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
166
+ strokeWidth: "0",
167
+ d: "m25,2v2h3v3h2v-3c0-1.1-.9-2-2-2h-3Z"
168
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
169
+ strokeWidth: "0",
170
+ d: "M18 2H22V4H18z"
171
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
172
+ strokeWidth: "0",
173
+ d: "m10,4v3h2v-3h3V2h-3c-1.1,0-2,.9-2,2Z"
174
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
175
+ strokeWidth: "0",
176
+ d: "m12,10H4c-1.1,0-2,.9-2,2v16c0,1.1.9,2,2,2h16c1.1,0,2-.9,2-2v-8h-2v8H4V12h8v-2Z"
177
+ }), children);
159
178
  });
160
- if (process.env.NODE_ENV !== "production") TaskView.propTypes = require_iconPropTypes.iconPropTypes;
161
- const Taste = react.default.forwardRef(function Taste({ children, size = 16, ...rest }, ref) {
162
- return react.default.createElement(require_Icon_js, {
179
+ if (process.env.NODE_ENV !== "production") SyncSettings.propTypes = require_iconPropTypes.iconPropTypes;
180
+ const SysProvision = /* @__PURE__ */ react.default.forwardRef(function SysProvision({ children, size = 16, ...rest }, ref) {
181
+ return react.default.createElement(require_Icon.Icon, {
163
182
  width: size,
164
183
  height: size,
165
184
  ref,
@@ -167,11 +186,15 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
167
186
  viewBox: "0 0 32 32",
168
187
  fill: "currentColor",
169
188
  ...rest
170
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,4V6H8v8a8,8,0,0,0,16,0V6h4V4ZM22,14a6,6,0,0,1-12,0V6h5v8h2V6h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 26H13V28H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 24H9V26H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 24H17V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H21V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 24H25V26H23z" }), children);
189
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 20 21 30 30 25 21 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
190
+ cx: "14",
191
+ cy: "14",
192
+ r: "2"
193
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,20a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,14,20Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,14,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.9512,12.91l-.0064,0A12.05,12.05,0,1,0,17,25.605V23.5386a9.9813,9.9813,0,1,1,6.6235-6.81l1.9248.544A12.0341,12.0341,0,0,0,26,14Q26,13.4492,25.9512,12.91Z" }), children);
171
194
  });
172
- if (process.env.NODE_ENV !== "production") Taste.propTypes = require_iconPropTypes.iconPropTypes;
173
- const Taxi = react.default.forwardRef(function Taxi({ children, size = 16, ...rest }, ref) {
174
- return react.default.createElement(require_Icon_js, {
195
+ if (process.env.NODE_ENV !== "production") SysProvision.propTypes = require_iconPropTypes.iconPropTypes;
196
+ const SysplexDistributor = /* @__PURE__ */ react.default.forwardRef(function SysplexDistributor({ children, size = 16, ...rest }, ref) {
197
+ return react.default.createElement(require_Icon.Icon, {
175
198
  width: size,
176
199
  height: size,
177
200
  ref,
@@ -179,11 +202,26 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
179
202
  viewBox: "0 0 32 32",
180
203
  fill: "currentColor",
181
204
  ...rest
182
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.39,16.08,22.7,13.21,20.16,8.87l-.08-.12A2,2,0,0,0,18.52,8h-8a2,2,0,0,0-1.67.89L5.46,14H3a1,1,0,0,0-1,1v9a1,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-1V17A1,1,0,0,0,29.39,16.08ZM9,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,0H4V16H6a1,1,0,0,0,.83-.45L10.54,10h8l2.63,4.5a1,1,0,0,0,.47.42L28,17.66Z" }), children);
205
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
206
+ strokeWidth: "0",
207
+ d: "M4 26H8V30H4z"
208
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
209
+ strokeWidth: "0",
210
+ d: "M14 26H18V30H14z"
211
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
212
+ strokeWidth: "0",
213
+ d: "M24 26H28V30H24z"
214
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
215
+ strokeWidth: "0",
216
+ d: "m25,18h-8v-2h-2v2H7c-1.1028,0-2,.8975-2,2v4h2v-4h8v4h2v-4h8v4h2v-4c0-1.1025-.8972-2-2-2Z"
217
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
218
+ strokeWidth: "0",
219
+ d: "m20,2h-8c-1.1028,0-2,.8975-2,2v8c0,1.1025.8972,2,2,2h8c1.1028,0,2-.8975,2-2V4c0-1.1025-.8972-2-2-2Zm-1.4141,2l-6.5859,6.5859v-6.5859h6.5859Zm-5.1719,8l6.5862-6.5859.001,6.5859h-6.5872Z"
220
+ }), children);
183
221
  });
184
- if (process.env.NODE_ENV !== "production") Taxi.propTypes = require_iconPropTypes.iconPropTypes;
185
- const TcpIpService = react.default.forwardRef(function TcpIpService({ children, size = 16, ...rest }, ref) {
186
- return react.default.createElement(require_Icon_js, {
222
+ if (process.env.NODE_ENV !== "production") SysplexDistributor.propTypes = require_iconPropTypes.iconPropTypes;
223
+ const QT = /* @__PURE__ */ react.default.forwardRef(function QT({ children, size = 16, ...rest }, ref) {
224
+ return react.default.createElement(require_Icon.Icon, {
187
225
  width: size,
188
226
  height: size,
189
227
  ref,
@@ -191,11 +229,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
191
229
  viewBox: "0 0 32 32",
192
230
  fill: "currentColor",
193
231
  ...rest
194
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28H30V30H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,26h-8c-1.1028,0-2-.8972-2-2v-5c0-1.1028,.8972-2,2-2h8c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2Zm-8-7v5h8v-5h-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,23h-5c-1.1028,0-2-.8972-2-2v-4h2v4h5v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 13H16V15H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,11H5c-1.1028,0-2-.8972-2-2V4c0-1.1028,.8972-2,2-2H13c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2ZM5,4v5H13V4H5Z" }), children);
232
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 11 15 11 15 23 17 23 17 11 20 11 20 9 12 9 12 11z" }), children);
195
233
  });
196
- if (process.env.NODE_ENV !== "production") TcpIpService.propTypes = require_iconPropTypes.iconPropTypes;
197
- const Temperature = react.default.forwardRef(function Temperature({ children, size = 16, ...rest }, ref) {
198
- return react.default.createElement(require_Icon_js, {
234
+ if (process.env.NODE_ENV !== "production") QT.propTypes = require_iconPropTypes.iconPropTypes;
235
+ const QTAlt = /* @__PURE__ */ react.default.forwardRef(function QTAlt({ children, size = 16, ...rest }, ref) {
236
+ return react.default.createElement(require_Icon.Icon, {
199
237
  width: size,
200
238
  height: size,
201
239
  ref,
@@ -203,11 +241,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
203
241
  viewBox: "0 0 32 32",
204
242
  fill: "currentColor",
205
243
  ...rest
206
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,17.26V6A4,4,0,0,0,5,6V17.26a7,7,0,1,0,8,0ZM9,4a2,2,0,0,1,2,2v7H7V6A2,2,0,0,1,9,4ZM9,28a5,5,0,0,1-2.5-9.33l.5-.28V15h4v3.39l.5.28A5,5,0,0,1,9,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H30V6H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 10H27V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H30V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 22H27V24H20z" }), children);
244
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 11 11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 9 22 9 22 7 20 7 20 9 18 9 18 11 20 11 20 17 21 18 22 17 22 11 24 11 24 9z" }), children);
207
245
  });
208
- if (process.env.NODE_ENV !== "production") Temperature.propTypes = require_iconPropTypes.iconPropTypes;
209
- const TemperatureCelsius = react.default.forwardRef(function TemperatureCelsius({ children, size = 16, ...rest }, ref) {
210
- return react.default.createElement(require_Icon_js, {
246
+ if (process.env.NODE_ENV !== "production") QTAlt.propTypes = require_iconPropTypes.iconPropTypes;
247
+ const Table = /* @__PURE__ */ react.default.forwardRef(function Table({ children, size = 16, ...rest }, ref) {
248
+ return react.default.createElement(require_Icon.Icon, {
211
249
  width: size,
212
250
  height: size,
213
251
  ref,
@@ -215,15 +253,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
215
253
  viewBox: "0 0 32 32",
216
254
  fill: "currentColor",
217
255
  ...rest
218
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,18H24a2.0023,2.0023,0,0,1-2-2V6a2.002,2.002,0,0,1,2-2h6V6H24V16h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
219
- cx: "18",
220
- cy: "4",
221
- r: "2"
222
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
256
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2ZM27,5V9H5V5Zm0,22H5V23H27Zm0-6H5V17H27Zm0-6H5V11H27Z" }), children);
223
257
  });
224
- if (process.env.NODE_ENV !== "production") TemperatureCelsius.propTypes = require_iconPropTypes.iconPropTypes;
225
- const TemperatureCelsiusAlt = react.default.forwardRef(function TemperatureCelsiusAlt({ children, size = 16, ...rest }, ref) {
226
- return react.default.createElement(require_Icon_js, {
258
+ if (process.env.NODE_ENV !== "production") Table.propTypes = require_iconPropTypes.iconPropTypes;
259
+ const TableAdd = /* @__PURE__ */ react.default.forwardRef(function TableAdd({ children, size = 16, ...rest }, ref) {
260
+ return react.default.createElement(require_Icon.Icon, {
227
261
  width: size,
228
262
  height: size,
229
263
  ref,
@@ -231,11 +265,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
231
265
  viewBox: "0 0 32 32",
232
266
  fill: "currentColor",
233
267
  ...rest
234
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,27H17a2.0023,2.0023,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h9v2H17V25h9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z" }), children);
268
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5c-1.1,0-2,.9-2,2v12h2v-6h10v18h2V11h10v7h-10v2h10v7h-10v2h10c1.1,0,2-.9,2-2V5c0-1.1-.9-2-2-2ZM27,9H5v-4h22v4ZM12,26h-4v4h-2v-4H2v-2h4v-4h2v4h4v2Z" }), children);
235
269
  });
236
- if (process.env.NODE_ENV !== "production") TemperatureCelsiusAlt.propTypes = require_iconPropTypes.iconPropTypes;
237
- const TemperatureFahrenheit = react.default.forwardRef(function TemperatureFahrenheit({ children, size = 16, ...rest }, ref) {
238
- return react.default.createElement(require_Icon_js, {
270
+ if (process.env.NODE_ENV !== "production") TableAdd.propTypes = require_iconPropTypes.iconPropTypes;
271
+ const TableAlias = /* @__PURE__ */ react.default.forwardRef(function TableAlias({ children, size = 16, ...rest }, ref) {
272
+ return react.default.createElement(require_Icon.Icon, {
239
273
  width: size,
240
274
  height: size,
241
275
  ref,
@@ -243,15 +277,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
243
277
  viewBox: "0 0 32 32",
244
278
  fill: "currentColor",
245
279
  ...rest
246
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 6 30 4 22 4 22 18 24 18 24 12 29 12 29 10 24 10 24 6 30 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
247
- cx: "18",
248
- cy: "4",
249
- r: "2"
250
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
280
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,29H5a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2h7a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,12,29ZM5,20v7h7V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V15H5V11H15v4h2V11H27v7H17v2H27v7H17v2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,6H5V5H27Z" }), children);
251
281
  });
252
- if (process.env.NODE_ENV !== "production") TemperatureFahrenheit.propTypes = require_iconPropTypes.iconPropTypes;
253
- const TemperatureFahrenheitAlt = react.default.forwardRef(function TemperatureFahrenheitAlt({ children, size = 16, ...rest }, ref) {
254
- return react.default.createElement(require_Icon_js, {
282
+ if (process.env.NODE_ENV !== "production") TableAlias.propTypes = require_iconPropTypes.iconPropTypes;
283
+ const TableBuilt = /* @__PURE__ */ react.default.forwardRef(function TableBuilt({ children, size = 16, ...rest }, ref) {
284
+ return react.default.createElement(require_Icon.Icon, {
255
285
  width: size,
256
286
  height: size,
257
287
  ref,
@@ -259,11 +289,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
259
289
  viewBox: "0 0 32 32",
260
290
  fill: "currentColor",
261
291
  ...rest
262
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 11 26 9 15 9 15 27 17 27 17 19 25 19 25 17 17 17 17 11 26 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z" }), children);
292
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H24V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V22a2.0025,2.0025,0,0,0,2,2H8v4a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V10A2.0025,2.0025,0,0,0,28,8ZM22,22H14V17h8Zm0-7H14V10h8ZM12,15H4V10h8ZM22,4V8H4V4ZM4,22V17h8v5Zm24,6H10V24H22a2.0025,2.0025,0,0,0,2-2V10h4Z" }), children);
263
293
  });
264
- if (process.env.NODE_ENV !== "production") TemperatureFahrenheitAlt.propTypes = require_iconPropTypes.iconPropTypes;
265
- const TemperatureFeelsLike = react.default.forwardRef(function TemperatureFeelsLike({ children, size = 16, ...rest }, ref) {
266
- return react.default.createElement(require_Icon_js, {
294
+ if (process.env.NODE_ENV !== "production") TableBuilt.propTypes = require_iconPropTypes.iconPropTypes;
295
+ const TableShortcut = /* @__PURE__ */ react.default.forwardRef(function TableShortcut({ children, size = 16, ...rest }, ref) {
296
+ return react.default.createElement(require_Icon.Icon, {
267
297
  width: size,
268
298
  height: size,
269
299
  ref,
@@ -271,11 +301,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
271
301
  viewBox: "0 0 32 32",
272
302
  fill: "currentColor",
273
303
  ...rest
274
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H22a2.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,26,30ZM21,12a.9448.9448,0,0,0-1,1v6h2v9h4V19h2V13a.9448.9448,0,0,0-1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,9a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,24,9Zm0-6a2,2,0,1,0,2,2h0a2.0059,2.0059,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1839V12H8v8.1839a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
304
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 18 5 20 10.586 20 3 27.586 4.414 29 12 21.414 12 27 14 27 14 18 5 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V15H5V11H15v4h2V11H27v7H17v2H27v7H17v2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,6H5V5H27Z" }), children);
275
305
  });
276
- if (process.env.NODE_ENV !== "production") TemperatureFeelsLike.propTypes = require_iconPropTypes.iconPropTypes;
277
- const TemperatureFrigid = react.default.forwardRef(function TemperatureFrigid({ children, size = 16, ...rest }, ref) {
278
- return react.default.createElement(require_Icon_js, {
306
+ if (process.env.NODE_ENV !== "production") TableShortcut.propTypes = require_iconPropTypes.iconPropTypes;
307
+ const TableSplit = /* @__PURE__ */ react.default.forwardRef(function TableSplit({ children, size = 16, ...rest }, ref) {
308
+ return react.default.createElement(require_Icon.Icon, {
279
309
  width: size,
280
310
  height: size,
281
311
  ref,
@@ -283,11 +313,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
283
313
  viewBox: "0 0 32 32",
284
314
  fill: "currentColor",
285
315
  ...rest
286
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.167 16.89 21.72 13 27.167 9.109 29.684 9.948 30.316 8.051 28 7.279 28 5 26 5 26 7.485 21 11.057 21 5.367 23.555 3.664 22.445 2 20 3.63 17.555 2 16.445 3.664 19 5.367 19 11.057 16 8.914 16 11.372 18.28 13 16 14.628 16 17.086 19 14.943 19 21.703 22.445 24 23.555 22.336 21 20.633 21 14.943 26 18.515 26 21 28 21 28 18.721 30.316 17.948 29.684 16.051 27.167 16.89z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,23a3,3,0,0,1-6,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
316
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,2V9H5V5ZM17,11H27v7H17Zm-2,7H5V11H15ZM5,20H15v7H5Zm12,7V20H27v7Z" }), children);
287
317
  });
288
- if (process.env.NODE_ENV !== "production") TemperatureFrigid.propTypes = require_iconPropTypes.iconPropTypes;
289
- const TemperatureHot = react.default.forwardRef(function TemperatureHot({ children, size = 16, ...rest }, ref) {
290
- return react.default.createElement(require_Icon_js, {
318
+ if (process.env.NODE_ENV !== "production") TableSplit.propTypes = require_iconPropTypes.iconPropTypes;
319
+ const TableOfContents = /* @__PURE__ */ react.default.forwardRef(function TableOfContents({ children, size = 16, ...rest }, ref) {
320
+ return react.default.createElement(require_Icon.Icon, {
291
321
  width: size,
292
322
  height: size,
293
323
  ref,
@@ -295,17 +325,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
295
325
  viewBox: "0 0 32 32",
296
326
  fill: "currentColor",
297
327
  ...rest
298
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 13H30V15H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
299
- d: "M23.121 5.879H27.121V7.879H23.121z",
300
- transform: "rotate(-45 25.121 6.879)"
301
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
302
- d: "M24.121 19.121H26.121V23.121H24.121z",
303
- transform: "rotate(-45 25.121 21.121)"
304
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 2H19V6H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,8a6.0365,6.0365,0,0,0-1,.09v2.0518A3.9567,3.9567,0,0,1,18,10a4,4,0,0,1,0,8v2A6,6,0,0,0,18,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
328
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 6H22V8H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 12H22V14H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 18H22V20H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 24H22V26H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 6H28V8H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 12H28V14H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 18H28V20H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 24H28V26H26z" }), children);
305
329
  });
306
- if (process.env.NODE_ENV !== "production") TemperatureHot.propTypes = require_iconPropTypes.iconPropTypes;
307
- const TemperatureInversion = react.default.forwardRef(function TemperatureInversion({ children, size = 16, ...rest }, ref) {
308
- return react.default.createElement(require_Icon_js, {
330
+ if (process.env.NODE_ENV !== "production") TableOfContents.propTypes = require_iconPropTypes.iconPropTypes;
331
+ const Tablet = /* @__PURE__ */ react.default.forwardRef(function Tablet({ children, size = 16, ...rest }, ref) {
332
+ return react.default.createElement(require_Icon.Icon, {
309
333
  width: size,
310
334
  height: size,
311
335
  ref,
@@ -313,11 +337,14 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
313
337
  viewBox: "0 0 32 32",
314
338
  fill: "currentColor",
315
339
  ...rest
316
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8H24v6h2V11.541A5.939,5.939,0,0,1,28,16a6.0039,6.0039,0,0,1-5.0945,5.9243A7.0273,7.0273,0,0,0,20,17.2617V6a4,4,0,0,0-8,0V17.2617a6.996,6.996,0,1,0,10.9292,6.68A7.9794,7.9794,0,0,0,27.2651,10H30ZM14,6a2,2,0,0,1,4,0v7H14Zm2,22a4.9965,4.9965,0,0,1-2.499-9.3252L14,18.3857V15h4v3.3857l.499.2891A4.9965,4.9965,0,0,1,16,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,10a8.04,8.04,0,0,0,2.7349,6H2v2H8V12H6v2.4592A5.94,5.94,0,0,1,4,10a6.0066,6.0066,0,0,1,6-6V2A8.0092,8.0092,0,0,0,2,10Z" }), children);
340
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
341
+ d: "M15 22H17V28H15z",
342
+ transform: "rotate(90 16 25)"
343
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,30H7a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,7,2H25a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,25,30ZM7,4V28H25V4Z" }), children);
317
344
  });
318
- if (process.env.NODE_ENV !== "production") TemperatureInversion.propTypes = require_iconPropTypes.iconPropTypes;
319
- const TemperatureMax = react.default.forwardRef(function TemperatureMax({ children, size = 16, ...rest }, ref) {
320
- return react.default.createElement(require_Icon_js, {
345
+ if (process.env.NODE_ENV !== "production") Tablet.propTypes = require_iconPropTypes.iconPropTypes;
346
+ const TabletLandscape = /* @__PURE__ */ react.default.forwardRef(function TabletLandscape({ children, size = 16, ...rest }, ref) {
347
+ return react.default.createElement(require_Icon.Icon, {
321
348
  width: size,
322
349
  height: size,
323
350
  ref,
@@ -325,11 +352,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
325
352
  viewBox: "0 0 32 32",
326
353
  fill: "currentColor",
327
354
  ...rest
328
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 10H27V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H30V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 22H27V24H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4H12.9744A4.9829,4.9829,0,0,0,4,7V18.1108a7,7,0,1,0,10,0V7a5.0019,5.0019,0,0,0-.1011-1H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z" }), children);
355
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 13H26V19H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,7V25a2.0023,2.0023,0,0,1-2,2H4a2.002,2.002,0,0,1-2-2V7A2.0023,2.0023,0,0,1,4,5H28A2.0027,2.0027,0,0,1,30,7ZM4,25H28V7H4Z" }), children);
329
356
  });
330
- if (process.env.NODE_ENV !== "production") TemperatureMax.propTypes = require_iconPropTypes.iconPropTypes;
331
- const TemperatureMin = react.default.forwardRef(function TemperatureMin({ children, size = 16, ...rest }, ref) {
332
- return react.default.createElement(require_Icon_js, {
357
+ if (process.env.NODE_ENV !== "production") TabletLandscape.propTypes = require_iconPropTypes.iconPropTypes;
358
+ const Tag = /* @__PURE__ */ react.default.forwardRef(function Tag({ children, size = 16, ...rest }, ref) {
359
+ return react.default.createElement(require_Icon.Icon, {
333
360
  width: size,
334
361
  height: size,
335
362
  ref,
@@ -337,11 +364,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
337
364
  viewBox: "0 0 32 32",
338
365
  fill: "currentColor",
339
366
  ...rest
340
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H27V6H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 10H30V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H27V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,23a3,3,0,0,1-6,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,22H15.9192A7.0107,7.0107,0,0,0,14,18.1108V7A5,5,0,0,0,4,7V18.1108A6.9946,6.9946,0,1,0,15.92,24H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z" }), children);
367
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.6436,29.4145,2.5858,15.3555A2,2,0,0,1,2,13.9414V4A2,2,0,0,1,4,2h9.9413a2,2,0,0,1,1.4142.5858L29.4144,16.6436a2.0005,2.0005,0,0,1,0,2.8285l-9.9424,9.9425a2.0008,2.0008,0,0,1-2.8285,0ZM4,4v9.9417L18.0578,28,28,18.0579,13.9416,4Z" }), children);
341
368
  });
342
- if (process.env.NODE_ENV !== "production") TemperatureMin.propTypes = require_iconPropTypes.iconPropTypes;
343
- const TemperatureWater = react.default.forwardRef(function TemperatureWater({ children, size = 16, ...rest }, ref) {
344
- return react.default.createElement(require_Icon_js, {
369
+ if (process.env.NODE_ENV !== "production") Tag.propTypes = require_iconPropTypes.iconPropTypes;
370
+ const TagEdit = /* @__PURE__ */ react.default.forwardRef(function TagEdit({ children, size = 16, ...rest }, ref) {
371
+ return react.default.createElement(require_Icon.Icon, {
345
372
  width: size,
346
373
  height: size,
347
374
  ref,
@@ -349,11 +376,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
349
376
  viewBox: "0 0 32 32",
350
377
  fill: "currentColor",
351
378
  ...rest
352
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,9a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,9V7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,4a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,4a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,7H13V6A4,4,0,0,0,5,6V17.2617A7.0126,7.0126,0,1,0,13.8735,18H14a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,18V16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,13a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,13a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,16H13V9ZM7,6a2,2,0,0,1,4,0v6H7ZM9,28a4.9965,4.9965,0,0,1-2.499-9.3252L7,18.3857V14h4v4.3857l.499.2891A4.9965,4.9965,0,0,1,9,28Z" }), children);
379
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.707,7.293l-3-3a.9994.9994,0,0,0-1.414,0L16,13.5859V18h4.4141L29.707,8.707A.9994.9994,0,0,0,29.707,7.293ZM19.5859,16H18V14.4141l5-5L24.5859,11ZM26,9.5859,24.4141,8,26,6.4141,27.5859,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.0059,14.2354l-1.4141,1.414L28,18.0576,18.0579,28,4,13.9414V4h9.9417l4.4067,4.4067,1.4141-1.4145-4.407-4.4063A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l9.9424-9.9424a2.001,2.001,0,0,0,0-2.8286Z" }), children);
353
380
  });
354
- if (process.env.NODE_ENV !== "production") TemperatureWater.propTypes = require_iconPropTypes.iconPropTypes;
355
- const Template = react.default.forwardRef(function Template({ children, size = 16, ...rest }, ref) {
356
- return react.default.createElement(require_Icon_js, {
381
+ if (process.env.NODE_ENV !== "production") TagEdit.propTypes = require_iconPropTypes.iconPropTypes;
382
+ const TagExport = /* @__PURE__ */ react.default.forwardRef(function TagExport({ children, size = 16, ...rest }, ref) {
383
+ return react.default.createElement(require_Icon.Icon, {
357
384
  width: size,
358
385
  height: size,
359
386
  ref,
@@ -361,11 +388,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
361
388
  viewBox: "0 0 32 32",
362
389
  fill: "currentColor",
363
390
  ...rest
364
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6v4H6V6H26m0-2H6A2,2,0,0,0,4,6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16V26H6V16h4m0-2H6a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,16V26H16V16H26m0-2H16a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z" }), children);
391
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 18 25 12 23.586 13.414 27.172 17 17 17 17 19 27.172 19 23.586 22.586 25 24 31 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.0593,25l-3.0014,3L4,13.9414V4h9.9417l7,7,1.4143-1.414-7.001-7A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l3.0014-3Z" }), children);
365
392
  });
366
- if (process.env.NODE_ENV !== "production") Template.propTypes = require_iconPropTypes.iconPropTypes;
367
- const Tennis = react.default.forwardRef(function Tennis({ children, size = 16, ...rest }, ref) {
368
- return react.default.createElement(require_Icon_js, {
393
+ if (process.env.NODE_ENV !== "production") TagExport.propTypes = require_iconPropTypes.iconPropTypes;
394
+ const TagGroup = /* @__PURE__ */ react.default.forwardRef(function TagGroup({ children, size = 16, ...rest }, ref) {
395
+ return react.default.createElement(require_Icon.Icon, {
369
396
  width: size,
370
397
  height: size,
371
398
  ref,
@@ -373,17 +400,15 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
373
400
  viewBox: "0 0 32 32",
374
401
  fill: "currentColor",
375
402
  ...rest
376
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
377
- width: "4",
378
- height: "4",
379
- x: "20",
380
- y: "2",
381
- rx: "2"
382
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,16a1,1,0,0,1-.707-1.707l7-7a1,1,0,1,1,1.414,1.414l-7,7A.9962.9962,0,0,1,11,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.707,24.293a8.3948,8.3948,0,0,0-4.72-2.209c.1992-.1641.3931-.3364.5777-.521a9.2447,9.2447,0,0,0,1.7334-9.9141l-1.8768.6973c1.11,2.9805.6346,5.8975-1.2722,7.8022a6.6964,6.6964,0,0,1-5.561,1.8047,9.7746,9.7746,0,0,1-5.771-2.7856c-2.9727-2.97-4.0759-8.2276-.9805-11.32,1.9068-1.9053,4.8267-2.38,7.8094-1.271l.6987-1.875C10.6616,3.333,6.8591,3.9961,4.4207,6.4331c-3.9427,3.9385-2.6761,10.4956.98,14.1489a11.8136,11.8136,0,0,0,6.9766,3.36c.21.022.4153.0234.6223.0332V24h4.9968a6.8463,6.8463,0,0,1,4.2962,1.707L26.5859,30,28,28.5859Z" }), children);
403
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
404
+ cx: "10",
405
+ cy: "14",
406
+ r: "2"
407
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30a1,1,0,0,1-.71-.29L4.59,19A2,2,0,0,1,4,17.59V10A2,2,0,0,1,6,8h7.59A2,2,0,0,1,15,8.59l10.71,10.7a1,1,0,0,1,0,1.42l-9,9A1,1,0,0,1,16,30ZM6,10v7.59l10,10L23.59,20l-10-10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.71,13.29,17,2.59A2,2,0,0,0,15.59,2H8A2,2,0,0,0,6,4V6H8V4h7.59l10,10-1.3,1.29,1.42,1.42,2-2A1,1,0,0,0,27.71,13.29Z" }), children);
383
408
  });
384
- if (process.env.NODE_ENV !== "production") Tennis.propTypes = require_iconPropTypes.iconPropTypes;
385
- const TennisBall = react.default.forwardRef(function TennisBall({ children, size = 16, ...rest }, ref) {
386
- return react.default.createElement(require_Icon_js, {
409
+ if (process.env.NODE_ENV !== "production") TagGroup.propTypes = require_iconPropTypes.iconPropTypes;
410
+ const TagImport = /* @__PURE__ */ react.default.forwardRef(function TagImport({ children, size = 16, ...rest }, ref) {
411
+ return react.default.createElement(require_Icon.Icon, {
387
412
  width: size,
388
413
  height: size,
389
414
  ref,
@@ -391,11 +416,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
391
416
  viewBox: "0 0 32 32",
392
417
  fill: "currentColor",
393
418
  ...rest
394
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,4a8.9812,8.9812,0,0,0-8.1687,12.7549L2,25.5859,3.4141,27l8.4873-8.4873a9.0408,9.0408,0,0,0,1.5859,1.5859L10,23.5859,11.4141,25l3.8313-3.8311A8.9959,8.9959,0,1,0,19,4Zm6.9058,7.9058a7.005,7.005,0,0,1-5.8116-5.8116A7.005,7.005,0,0,1,25.9058,11.9058ZM12.0942,14.0942a7.005,7.005,0,0,1,5.8116,5.8116A7.005,7.005,0,0,1,12.0942,14.0942ZM19.93,19.9307a9.01,9.01,0,0,0-7.8611-7.8614,7.004,7.004,0,0,1,6-6,9.01,9.01,0,0,0,7.8611,7.8614A7.004,7.004,0,0,1,19.93,19.9307Z" }), children);
419
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18 22 12 23.414 13.414 19.828 17 30 17 30 19 19.828 19 23.414 22.586 22 24 16 18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.0586,26l-2.0007,2L4,13.9414V4h9.9417l6,6,1.4143-1.414-6.001-6A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l2.0006-2.0007Z" }), children);
395
420
  });
396
- if (process.env.NODE_ENV !== "production") TennisBall.propTypes = require_iconPropTypes.iconPropTypes;
397
- const Term = react.default.forwardRef(function Term({ children, size = 16, ...rest }, ref) {
398
- return react.default.createElement(require_Icon_js, {
421
+ if (process.env.NODE_ENV !== "production") TagImport.propTypes = require_iconPropTypes.iconPropTypes;
422
+ const TagNone = /* @__PURE__ */ react.default.forwardRef(function TagNone({ children, size = 16, ...rest }, ref) {
423
+ return react.default.createElement(require_Icon.Icon, {
399
424
  width: size,
400
425
  height: size,
401
426
  ref,
@@ -403,23 +428,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
403
428
  viewBox: "0 0 32 32",
404
429
  fill: "currentColor",
405
430
  ...rest
406
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,26H25V24h3V8H25V6h3a2.0023,2.0023,0,0,1,2,2V24A2.0027,2.0027,0,0,1,28,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
407
- cx: "23",
408
- cy: "16",
409
- r: "2"
410
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
411
- cx: "16",
412
- cy: "16",
413
- r: "2"
414
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
415
- cx: "9",
416
- cy: "16",
417
- r: "2"
418
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,26H4a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,4,6H7V8H4V24H7Z" }), children);
431
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.092,10.3218,30,3.4141,28.5859,2,2,28.5859,3.4141,30l6.9077-6.9077,6.3218,6.3223a2.001,2.001,0,0,0,2.8286,0l9.9424-9.9424a2.001,2.001,0,0,0,0-2.8286ZM18.0579,28l-6.3218-6.3223,9.9419-9.9419L28,18.0576Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7.4927,20.2627l1.414-1.4141L4,13.9414V4h9.9417l4.9069,4.9067,1.4141-1.414L15.3555,2.5859A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141Z" }), children);
419
432
  });
420
- if (process.env.NODE_ENV !== "production") Term.propTypes = require_iconPropTypes.iconPropTypes;
421
- const TermReference = react.default.forwardRef(function TermReference({ children, size = 16, ...rest }, ref) {
422
- return react.default.createElement(require_Icon_js, {
433
+ if (process.env.NODE_ENV !== "production") TagNone.propTypes = require_iconPropTypes.iconPropTypes;
434
+ const Tank = /* @__PURE__ */ react.default.forwardRef(function Tank({ children, size = 16, ...rest }, ref) {
435
+ return react.default.createElement(require_Icon.Icon, {
423
436
  width: size,
424
437
  height: size,
425
438
  ref,
@@ -427,35 +440,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
427
440
  viewBox: "0 0 32 32",
428
441
  fill: "currentColor",
429
442
  ...rest
430
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
431
- strokeWidth: "0",
432
- 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"
433
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
434
- strokeWidth: "0",
435
- d: "m28,25h-3v-2h3V7h-3v-2h3c1.1025,0,2,.897,2,2v16c0,1.1025-.8975,2-2,2Z"
436
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
437
- cx: "23",
438
- cy: "15",
439
- r: "2",
440
- strokeWidth: "0"
441
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
442
- cx: "16",
443
- cy: "15",
444
- r: "2",
445
- strokeWidth: "0"
446
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
447
- cx: "9",
448
- cy: "15",
449
- r: "2",
450
- strokeWidth: "0"
451
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
452
- strokeWidth: "0",
453
- d: "m4,17V7h3v-2h-3c-1.103,0-2,.897-2,2v10h2Z"
454
- }), children);
443
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,13V11H18.6182l-.7237-1.4473A1,1,0,0,0,17,9H9a1,1,0,0,0-1,1v5H4v2H22.6379l3.6,3H3a1,1,0,0,0-1,1v2a5.0057,5.0057,0,0,0,5,5H25a5.0057,5.0057,0,0,0,5-5V21a1.0011,1.0011,0,0,0-.36-.7686l-6-5A1.0015,1.0015,0,0,0,23,15H20.6182l-1-2ZM28,23a3.0033,3.0033,0,0,1-3,3H7a3.0033,3.0033,0,0,1-3-3V22H28ZM10,15V11h6.3821l2,4Z" }), children);
455
444
  });
456
- if (process.env.NODE_ENV !== "production") TermReference.propTypes = require_iconPropTypes.iconPropTypes;
457
- const Terminal = react.default.forwardRef(function Terminal({ children, size = 16, ...rest }, ref) {
458
- return react.default.createElement(require_Icon_js, {
445
+ if (process.env.NODE_ENV !== "production") Tank.propTypes = require_iconPropTypes.iconPropTypes;
446
+ const Task = /* @__PURE__ */ react.default.forwardRef(function Task({ children, size = 16, ...rest }, ref) {
447
+ return react.default.createElement(require_Icon.Icon, {
459
448
  width: size,
460
449
  height: size,
461
450
  ref,
@@ -463,14 +452,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
463
452
  viewBox: "0 0 32 32",
464
453
  fill: "currentColor",
465
454
  ...rest
466
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
467
- d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z",
468
- transform: "translate(0 .01)"
469
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.76 16.18 13.58 19.01 10.76 21.84 12.17 23.25 16.41 19.01 12.17 14.77 10.76 16.18z" }), children);
455
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 20.18 10.41 16.59 9 18 14 23 23 14 21.59 12.58 14 20.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" }), children);
470
456
  });
471
- if (process.env.NODE_ENV !== "production") Terminal.propTypes = require_iconPropTypes.iconPropTypes;
472
- const Terminal_3270 = react.default.forwardRef(function Terminal_3270({ children, size = 16, ...rest }, ref) {
473
- return react.default.createElement(require_Icon_js, {
457
+ if (process.env.NODE_ENV !== "production") Task.propTypes = require_iconPropTypes.iconPropTypes;
458
+ const TaskAdd = /* @__PURE__ */ react.default.forwardRef(function TaskAdd({ children, size = 16, ...rest }, ref) {
459
+ return react.default.createElement(require_Icon.Icon, {
474
460
  width: size,
475
461
  height: size,
476
462
  ref,
@@ -478,11 +464,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
478
464
  viewBox: "0 0 32 32",
479
465
  fill: "currentColor",
480
466
  ...rest
481
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 21H16V23H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z" }), children);
467
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31 24 27 24 27 20 25 20 25 24 21 24 21 26 25 26 25 30 27 30 27 26 31 26 31 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2H17V28H7V7h3v3H22V7h3v9h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
482
468
  });
483
- if (process.env.NODE_ENV !== "production") Terminal_3270.propTypes = require_iconPropTypes.iconPropTypes;
484
- const TestTool = react.default.forwardRef(function TestTool({ children, size = 16, ...rest }, ref) {
485
- return react.default.createElement(require_Icon_js, {
469
+ if (process.env.NODE_ENV !== "production") TaskAdd.propTypes = require_iconPropTypes.iconPropTypes;
470
+ const TaskApproved = /* @__PURE__ */ react.default.forwardRef(function TaskApproved({ children, size = 16, ...rest }, ref) {
471
+ return react.default.createElement(require_Icon.Icon, {
486
472
  width: size,
487
473
  height: size,
488
474
  ref,
@@ -490,11 +476,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
490
476
  viewBox: "0 0 32 32",
491
477
  fill: "currentColor",
492
478
  ...rest
493
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 9.2 20.4 6.6 19 8 23 12 30 5 28.6 3.6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 5.4 10.6 4 8 6.6 5.4 4 4 5.4 6.6 8 4 10.6 5.4 12 8 9.4 10.6 12 12 10.6 9.4 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 21.4 10.6 20 8 22.6 5.4 20 4 21.4 6.6 24 4 26.6 5.4 28 8 25.4 10.6 28 12 26.6 9.4 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" }), children);
479
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,20A6,6,0,1,0,20,24.46V32l4-1.8936L28,32V24.46A5.98,5.98,0,0,0,30,20Zm-4,8.84-2-.9467L22,28.84V25.65a5.8877,5.8877,0,0,0,4,0ZM24,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
494
480
  });
495
- if (process.env.NODE_ENV !== "production") TestTool.propTypes = require_iconPropTypes.iconPropTypes;
496
- const TextAlignCenter = react.default.forwardRef(function TextAlignCenter({ children, size = 16, ...rest }, ref) {
497
- return react.default.createElement(require_Icon_js, {
481
+ if (process.env.NODE_ENV !== "production") TaskApproved.propTypes = require_iconPropTypes.iconPropTypes;
482
+ const TaskAssetView = /* @__PURE__ */ react.default.forwardRef(function TaskAssetView({ children, size = 16, ...rest }, ref) {
483
+ return react.default.createElement(require_Icon.Icon, {
498
484
  width: size,
499
485
  height: size,
500
486
  ref,
@@ -502,11 +488,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
502
488
  viewBox: "0 0 32 32",
503
489
  fill: "currentColor",
504
490
  ...rest
505
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H26V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H22V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H26V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 24H22V26H10z" }), children);
491
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,26A3.5,3.5,0,1,1,26,22.5,3.5041,3.5041,0,0,1,22.5,26Zm0-5A1.5,1.5,0,1,0,24,22.5,1.5017,1.5017,0,0,0,22.5,21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.5,31A8.5,8.5,0,1,1,31,22.5,8.51,8.51,0,0,1,22.5,31Zm0-15A6.5,6.5,0,1,0,29,22.5,6.5074,6.5074,0,0,0,22.5,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h5V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
506
492
  });
507
- if (process.env.NODE_ENV !== "production") TextAlignCenter.propTypes = require_iconPropTypes.iconPropTypes;
508
- const TextAlignJustify = react.default.forwardRef(function TextAlignJustify({ children, size = 16, ...rest }, ref) {
509
- return react.default.createElement(require_Icon_js, {
493
+ if (process.env.NODE_ENV !== "production") TaskAssetView.propTypes = require_iconPropTypes.iconPropTypes;
494
+ const TaskComplete = /* @__PURE__ */ react.default.forwardRef(function TaskComplete({ children, size = 16, ...rest }, ref) {
495
+ return react.default.createElement(require_Icon.Icon, {
510
496
  width: size,
511
497
  height: size,
512
498
  ref,
@@ -514,11 +500,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
514
500
  viewBox: "0 0 32 32",
515
501
  fill: "currentColor",
516
502
  ...rest
517
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H26V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H26V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H26V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H26V26H6z" }), children);
503
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 27.18 19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V18h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
518
504
  });
519
- if (process.env.NODE_ENV !== "production") TextAlignJustify.propTypes = require_iconPropTypes.iconPropTypes;
520
- const TextAlignLeft = react.default.forwardRef(function TextAlignLeft({ children, size = 16, ...rest }, ref) {
521
- return react.default.createElement(require_Icon_js, {
505
+ if (process.env.NODE_ENV !== "production") TaskComplete.propTypes = require_iconPropTypes.iconPropTypes;
506
+ const TaskLocation = /* @__PURE__ */ react.default.forwardRef(function TaskLocation({ children, size = 16, ...rest }, ref) {
507
+ return react.default.createElement(require_Icon.Icon, {
522
508
  width: size,
523
509
  height: size,
524
510
  ref,
@@ -526,11 +512,15 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
526
512
  viewBox: "0 0 32 32",
527
513
  fill: "currentColor",
528
514
  ...rest
529
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6H26V8H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12H22V14H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 18H26V20H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 24H22V26H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 4H8V28H6z" }), children);
515
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
516
+ cx: "24",
517
+ cy: "21",
518
+ r: "2"
519
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,31l-4.7788-6.4019A5.9354,5.9354,0,0,1,18,21a6,6,0,0,1,12,0,5.9407,5.9407,0,0,1-1.2246,3.6028Zm0-14a4.0045,4.0045,0,0,0-4,4,3.9572,3.9572,0,0,0,.82,2.3972L24,27.6567l3.1763-4.2548A3.9627,3.9627,0,0,0,28,21,4.0045,4.0045,0,0,0,24,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
530
520
  });
531
- if (process.env.NODE_ENV !== "production") TextAlignLeft.propTypes = require_iconPropTypes.iconPropTypes;
532
- const TextAlignMixed = react.default.forwardRef(function TextAlignMixed({ children, size = 16, ...rest }, ref) {
533
- return react.default.createElement(require_Icon_js, {
521
+ if (process.env.NODE_ENV !== "production") TaskLocation.propTypes = require_iconPropTypes.iconPropTypes;
522
+ const TaskRemove = /* @__PURE__ */ react.default.forwardRef(function TaskRemove({ children, size = 16, ...rest }, ref) {
523
+ return react.default.createElement(require_Icon.Icon, {
534
524
  width: size,
535
525
  height: size,
536
526
  ref,
@@ -538,11 +528,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
538
528
  viewBox: "0 0 32 32",
539
529
  fill: "currentColor",
540
530
  ...rest
541
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,4H9V6h5V8H10a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V6A2.0023,2.0023,0,0,0,14,4Zm0,8H10V10h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 26 22 18 20 18 20 19 18 19 18 21 20 21 20 26 18 26 18 28 24 28 24 26 22 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H4V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 16H30V30H28z" }), children);
531
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.41 25 30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V17h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
542
532
  });
543
- if (process.env.NODE_ENV !== "production") TextAlignMixed.propTypes = require_iconPropTypes.iconPropTypes;
544
- const TextAlignRight = react.default.forwardRef(function TextAlignRight({ children, size = 16, ...rest }, ref) {
545
- return react.default.createElement(require_Icon_js, {
533
+ if (process.env.NODE_ENV !== "production") TaskRemove.propTypes = require_iconPropTypes.iconPropTypes;
534
+ const TaskSettings = /* @__PURE__ */ react.default.forwardRef(function TaskSettings({ children, size = 16, ...rest }, ref) {
535
+ return react.default.createElement(require_Icon.Icon, {
546
536
  width: size,
547
537
  height: size,
548
538
  ref,
@@ -550,11 +540,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
550
540
  viewBox: "0 0 32 32",
551
541
  fill: "currentColor",
552
542
  ...rest
553
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H20V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H20V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H20V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 24H20V26H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 4H26V28H24z" }), children);
543
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v6h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
554
544
  });
555
- if (process.env.NODE_ENV !== "production") TextAlignRight.propTypes = require_iconPropTypes.iconPropTypes;
556
- const TextAllCaps = react.default.forwardRef(function TextAllCaps({ children, size = 16, ...rest }, ref) {
557
- return react.default.createElement(require_Icon_js, {
545
+ if (process.env.NODE_ENV !== "production") TaskSettings.propTypes = require_iconPropTypes.iconPropTypes;
546
+ const TaskStar = /* @__PURE__ */ react.default.forwardRef(function TaskStar({ children, size = 16, ...rest }, ref) {
547
+ return react.default.createElement(require_Icon.Icon, {
558
548
  width: size,
559
549
  height: size,
560
550
  ref,
@@ -562,11 +552,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
562
552
  viewBox: "0 0 32 32",
563
553
  fill: "currentColor",
564
554
  ...rest
565
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M1 8 1 10 7 10 7 24 9 24 9 10 15 10 15 8 1 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 8 17 10 23 10 23 24 25 24 25 10 31 10 31 8 17 8z" }), children);
555
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 17 25.23 21.32 30 22 26.5 25.167 28 30 23 27.208 18 30 19.5 25.167 16 22 20.9 21.32 23 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v7h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
566
556
  });
567
- if (process.env.NODE_ENV !== "production") TextAllCaps.propTypes = require_iconPropTypes.iconPropTypes;
568
- const TextBold = react.default.forwardRef(function TextBold({ children, size = 16, ...rest }, ref) {
569
- return react.default.createElement(require_Icon_js, {
557
+ if (process.env.NODE_ENV !== "production") TaskStar.propTypes = require_iconPropTypes.iconPropTypes;
558
+ const TaskTools = /* @__PURE__ */ react.default.forwardRef(function TaskTools({ children, size = 16, ...rest }, ref) {
559
+ return react.default.createElement(require_Icon.Icon, {
570
560
  width: size,
571
561
  height: size,
572
562
  ref,
@@ -574,11 +564,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
574
564
  viewBox: "0 0 32 32",
575
565
  fill: "currentColor",
576
566
  ...rest
577
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.25,25H9V7h8.5a5.25,5.25,0,0,1,4,8.65A5.25,5.25,0,0,1,18.25,25ZM12,22h6.23a2.25,2.25,0,1,0,0-4.5H12Zm0-7.5h5.5a2.25,2.25,0,1,0,0-4.5H12Z" }), children);
567
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.5,32a3.4762,3.4762,0,0,1-2.4751-1.0254L21.897,26.8469a6.496,6.496,0,0,1-7.3482-8.9563l.5879-1.34L19.293,20.707a1.0234,1.0234,0,0,0,1.4135,0,.999.999,0,0,0,.0005-1.4141l-4.1562-4.1565,1.34-.5881a6.4965,6.4965,0,0,1,8.9566,7.3486l4.1274,4.1282A3.5,3.5,0,0,1,28.5,32Zm-6.03-7.4087,4.9693,4.9692a1.5352,1.5352,0,0,0,2.1211,0,1.4985,1.4985,0,0,0,0-2.1208v0l-4.9692-4.97.188-.5823A4.496,4.496,0,0,0,20.5,16q-.126,0-.25.0068l1.8716,1.8721a2.9992,2.9992,0,0,1,0,4.2424,3.0722,3.0722,0,0,1-4.2427-.0005l-1.8716-1.8715Q16,20.3741,16,20.5A4.4968,4.4968,0,0,0,21.8877,24.78Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" }), children);
578
568
  });
579
- if (process.env.NODE_ENV !== "production") TextBold.propTypes = require_iconPropTypes.iconPropTypes;
580
- const TextClearFormat = react.default.forwardRef(function TextClearFormat({ children, size = 16, ...rest }, ref) {
581
- return react.default.createElement(require_Icon_js, {
569
+ if (process.env.NODE_ENV !== "production") TaskTools.propTypes = require_iconPropTypes.iconPropTypes;
570
+ const TaskView = /* @__PURE__ */ react.default.forwardRef(function TaskView({ children, size = 16, ...rest }, ref) {
571
+ return react.default.createElement(require_Icon.Icon, {
582
572
  width: size,
583
573
  height: size,
584
574
  ref,
@@ -586,11 +576,18 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
586
576
  viewBox: "0 0 32 32",
587
577
  fill: "currentColor",
588
578
  ...rest
589
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4384,16.5715l-7.985-7.9856a2.0014,2.0014,0,0,0-2.8291,0l-5.3584,5.3584L9,2H7L2,16H4l.999-3h6l.8035,2.4077L4.5858,22.6244a2,2,0,0,0,0,2.8282L9.1316,30h9.5908l10.716-10.717A1.9173,1.9173,0,0,0,29.4384,16.5715ZM5.6653,11l2.331-7,2.3355,7Zm12.229,17H9.96L6,24.0381l6.3123-6.3115L20.24,25.6538Zm3.76-3.76-7.9275-7.9272L20.0393,10l7.9268,7.9272Z" }), children);
579
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
580
+ cx: "22",
581
+ cy: "24",
582
+ r: "2"
583
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
584
+ fill: "none",
585
+ d: "M22,28a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,22,28Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,22,22Z"
586
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,28H7V7h3v3H22V7h3v9h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h5ZM12,4h8V8H12Z" }), children);
590
587
  });
591
- if (process.env.NODE_ENV !== "production") TextClearFormat.propTypes = require_iconPropTypes.iconPropTypes;
592
- const TextColor = react.default.forwardRef(function TextColor({ children, size = 16, ...rest }, ref) {
593
- return react.default.createElement(require_Icon_js, {
588
+ if (process.env.NODE_ENV !== "production") TaskView.propTypes = require_iconPropTypes.iconPropTypes;
589
+ const Taste = /* @__PURE__ */ react.default.forwardRef(function Taste({ children, size = 16, ...rest }, ref) {
590
+ return react.default.createElement(require_Icon.Icon, {
594
591
  width: size,
595
592
  height: size,
596
593
  ref,
@@ -598,11 +595,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
598
595
  viewBox: "0 0 32 32",
599
596
  fill: "currentColor",
600
597
  ...rest
601
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,21h2L17,4H15L8,21h2l1.61-4h8.74Zm-9.57-6,3.44-8.37h.26L19.54,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H26V28H6z" }), children);
598
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,4V6H8v8a8,8,0,0,0,16,0V6h4V4ZM22,14a6,6,0,0,1-12,0V6h5v8h2V6h5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 26H13V28H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 24H9V26H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 24H17V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H21V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 24H25V26H23z" }), children);
602
599
  });
603
- if (process.env.NODE_ENV !== "production") TextColor.propTypes = require_iconPropTypes.iconPropTypes;
604
- const TextCreation = react.default.forwardRef(function TextCreation({ children, size = 16, ...rest }, ref) {
605
- return react.default.createElement(require_Icon_js, {
600
+ if (process.env.NODE_ENV !== "production") Taste.propTypes = require_iconPropTypes.iconPropTypes;
601
+ const Taxi = /* @__PURE__ */ react.default.forwardRef(function Taxi({ children, size = 16, ...rest }, ref) {
602
+ return react.default.createElement(require_Icon.Icon, {
606
603
  width: size,
607
604
  height: size,
608
605
  ref,
@@ -610,11 +607,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
610
607
  viewBox: "0 0 32 32",
611
608
  fill: "currentColor",
612
609
  ...rest
613
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,22.14V9.86A4,4,0,1,0,22.14,5H9.86A4,4,0,1,0,5,9.86V22.14A4,4,0,1,0,9.86,27H22.14A4,4,0,1,0,27,22.14ZM26,4a2,2,0,1,1-2,2A2,2,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2,2,0,0,1,6,28Zm16.14-3H9.86A4,4,0,0,0,7,22.14V9.86A4,4,0,0,0,9.86,7H22.14A4,4,0,0,0,25,9.86V22.14A4,4,0,0,0,22.14,25ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 11 11 11 11 13 15 13 15 22 17 22 17 13 21 13 21 11z" }), children);
610
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.39,16.08,22.7,13.21,20.16,8.87l-.08-.12A2,2,0,0,0,18.52,8h-8a2,2,0,0,0-1.67.89L5.46,14H3a1,1,0,0,0-1,1v9a1,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-1V17A1,1,0,0,0,29.39,16.08ZM9,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,0H4V16H6a1,1,0,0,0,.83-.45L10.54,10h8l2.63,4.5a1,1,0,0,0,.47.42L28,17.66Z" }), children);
614
611
  });
615
- if (process.env.NODE_ENV !== "production") TextCreation.propTypes = require_iconPropTypes.iconPropTypes;
616
- const TextFill = react.default.forwardRef(function TextFill({ children, size = 16, ...rest }, ref) {
617
- return react.default.createElement(require_Icon_js, {
612
+ if (process.env.NODE_ENV !== "production") Taxi.propTypes = require_iconPropTypes.iconPropTypes;
613
+ const TcpIpService = /* @__PURE__ */ react.default.forwardRef(function TcpIpService({ children, size = 16, ...rest }, ref) {
614
+ return react.default.createElement(require_Icon.Icon, {
618
615
  width: size,
619
616
  height: size,
620
617
  ref,
@@ -622,11 +619,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
622
619
  viewBox: "0 0 32 32",
623
620
  fill: "currentColor",
624
621
  ...rest
625
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14.54a1,1,0,0,0-.25-.69L17.17,4.33A1.09,1.09,0,0,0,17,4.2V2H15V5L4.32,14.74a1,1,0,0,0-.06,1.41l8.57,9.52a1,1,0,0,0,.69.33h.05a1,1,0,0,0,.68-.26L24,16.8V21a1,1,0,0,0,2,0V14.57S26,14.55,26,14.54Zm-12.35,9-7.23-8L15,7.67V12h2V7.13l6.59,7.33Z" }), children);
622
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28H30V30H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,26h-8c-1.1028,0-2-.8972-2-2v-5c0-1.1028,.8972-2,2-2h8c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2Zm-8-7v5h8v-5h-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15,23h-5c-1.1028,0-2-.8972-2-2v-4h2v4h5v2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 13H16V15H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,11H5c-1.1028,0-2-.8972-2-2V4c0-1.1028,.8972-2,2-2H13c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2ZM5,4v5H13V4H5Z" }), children);
626
623
  });
627
- if (process.env.NODE_ENV !== "production") TextFill.propTypes = require_iconPropTypes.iconPropTypes;
628
- const TextFont = react.default.forwardRef(function TextFont({ children, size = 16, ...rest }, ref) {
629
- return react.default.createElement(require_Icon_js, {
624
+ if (process.env.NODE_ENV !== "production") TcpIpService.propTypes = require_iconPropTypes.iconPropTypes;
625
+ const Temperature = /* @__PURE__ */ react.default.forwardRef(function Temperature({ children, size = 16, ...rest }, ref) {
626
+ return react.default.createElement(require_Icon.Icon, {
630
627
  width: size,
631
628
  height: size,
632
629
  ref,
@@ -634,11 +631,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
634
631
  viewBox: "0 0 32 32",
635
632
  fill: "currentColor",
636
633
  ...rest
637
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,12H20v2h5a1.0008,1.0008,0,0,1,1,1v2H22a3.0033,3.0033,0,0,0-3,3v1a3.0033,3.0033,0,0,0,3,3h6V15A3.0033,3.0033,0,0,0,25,12ZM22,22a1.0008,1.0008,0,0,1-1-1V20a1.0008,1.0008,0,0,1,1-1h4v3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24h2L12,7H10L4,24H6l1.6936-5h6.6135ZM8.3711,17l2.4966-7.3711.2668.0005L13.63,17Z" }), children);
634
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,17.26V6A4,4,0,0,0,5,6V17.26a7,7,0,1,0,8,0ZM9,4a2,2,0,0,1,2,2v7H7V6A2,2,0,0,1,9,4ZM9,28a5,5,0,0,1-2.5-9.33l.5-.28V15h4v3.39l.5.28A5,5,0,0,1,9,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H30V6H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 10H27V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H30V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 22H27V24H20z" }), children);
638
635
  });
639
- if (process.env.NODE_ENV !== "production") TextFont.propTypes = require_iconPropTypes.iconPropTypes;
640
- const TextFootnote = react.default.forwardRef(function TextFootnote({ children, size = 16, ...rest }, ref) {
641
- return react.default.createElement(require_Icon_js, {
636
+ if (process.env.NODE_ENV !== "production") Temperature.propTypes = require_iconPropTypes.iconPropTypes;
637
+ const TemperatureCelsius = /* @__PURE__ */ react.default.forwardRef(function TemperatureCelsius({ children, size = 16, ...rest }, ref) {
638
+ return react.default.createElement(require_Icon.Icon, {
642
639
  width: size,
643
640
  height: size,
644
641
  ref,
@@ -646,11 +643,15 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
646
643
  viewBox: "0 0 32 32",
647
644
  fill: "currentColor",
648
645
  ...rest
649
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 7 2 9 9 9 9 25 11 25 11 9 18 9 18 7 2 7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11.076 29.256 9.219 26 10.522 26 7 24 7 24 10.523 20.744 9.22 20 11.077 23.417 12.444 20.9 15.8 22.5 17 25 13.667 27.5 17 29.1 15.8 26.583 12.443 30 11.076z" }), children);
646
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,18H24a2.0023,2.0023,0,0,1-2-2V6a2.002,2.002,0,0,1,2-2h6V6H24V16h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
647
+ cx: "18",
648
+ cy: "4",
649
+ r: "2"
650
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
650
651
  });
651
- if (process.env.NODE_ENV !== "production") TextFootnote.propTypes = require_iconPropTypes.iconPropTypes;
652
- const TextHighlight = react.default.forwardRef(function TextHighlight({ children, size = 16, ...rest }, ref) {
653
- return react.default.createElement(require_Icon_js, {
652
+ if (process.env.NODE_ENV !== "production") TemperatureCelsius.propTypes = require_iconPropTypes.iconPropTypes;
653
+ const TemperatureCelsiusAlt = /* @__PURE__ */ react.default.forwardRef(function TemperatureCelsiusAlt({ children, size = 16, ...rest }, ref) {
654
+ return react.default.createElement(require_Icon.Icon, {
654
655
  width: size,
655
656
  height: size,
656
657
  ref,
@@ -658,11 +659,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
658
659
  viewBox: "0 0 32 32",
659
660
  fill: "currentColor",
660
661
  ...rest
661
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,15H5a3,3,0,0,1-3-3V10A3,3,0,0,1,5,7h5V5A1,1,0,0,0,9,4H3V2H9a3,3,0,0,1,3,3ZM5,9a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,23v2a1,1,0,0,0,1,1h5V22H21A1,1,0,0,0,20,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,30H30V2Zm26-2H21a3,3,0,0,1-3-3V23a3,3,0,0,1,3-3h5V18a1,1,0,0,0-1-1H19V15h6a3,3,0,0,1,3,3Z" }), children);
662
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,27H17a2.0023,2.0023,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h9v2H17V25h9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z" }), children);
662
663
  });
663
- if (process.env.NODE_ENV !== "production") TextHighlight.propTypes = require_iconPropTypes.iconPropTypes;
664
- const TextIndent = react.default.forwardRef(function TextIndent({ children, size = 16, ...rest }, ref) {
665
- return react.default.createElement(require_Icon_js, {
664
+ if (process.env.NODE_ENV !== "production") TemperatureCelsiusAlt.propTypes = require_iconPropTypes.iconPropTypes;
665
+ const TemperatureFahrenheit = /* @__PURE__ */ react.default.forwardRef(function TemperatureFahrenheit({ children, size = 16, ...rest }, ref) {
666
+ return react.default.createElement(require_Icon.Icon, {
666
667
  width: size,
667
668
  height: size,
668
669
  ref,
@@ -670,11 +671,15 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
670
671
  viewBox: "0 0 32 32",
671
672
  fill: "currentColor",
672
673
  ...rest
673
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 6H28V8H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 12H28V14H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 18H28V20H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 24H28V26H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 13.59 7.29 10 4 6.41 5.42 5 10.04 10 5.42 15 4 13.59z" }), children);
674
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 6 30 4 22 4 22 18 24 18 24 12 29 12 29 10 24 10 24 6 30 6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
675
+ cx: "18",
676
+ cy: "4",
677
+ r: "2"
678
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
674
679
  });
675
- if (process.env.NODE_ENV !== "production") TextIndent.propTypes = require_iconPropTypes.iconPropTypes;
676
- const TextIndentLess = react.default.forwardRef(function TextIndentLess({ children, size = 16, ...rest }, ref) {
677
- return react.default.createElement(require_Icon_js, {
680
+ if (process.env.NODE_ENV !== "production") TemperatureFahrenheit.propTypes = require_iconPropTypes.iconPropTypes;
681
+ const TemperatureFahrenheitAlt = /* @__PURE__ */ react.default.forwardRef(function TemperatureFahrenheitAlt({ children, size = 16, ...rest }, ref) {
682
+ return react.default.createElement(require_Icon.Icon, {
678
683
  width: size,
679
684
  height: size,
680
685
  ref,
@@ -682,11 +687,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
682
687
  viewBox: "0 0 32 32",
683
688
  fill: "currentColor",
684
689
  ...rest
685
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H12V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12H12V14H5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H12V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 24H12V26H5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 4H18V28H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.15 23.5 29.56 22.12 23.27 16 29.56 9.88 28.15 8.5 20.44 16 28.15 23.5z" }), children);
690
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 11 26 9 15 9 15 27 17 27 17 19 25 19 25 17 17 17 17 11 26 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z" }), children);
686
691
  });
687
- if (process.env.NODE_ENV !== "production") TextIndentLess.propTypes = require_iconPropTypes.iconPropTypes;
688
- const TextIndentMore = react.default.forwardRef(function TextIndentMore({ children, size = 16, ...rest }, ref) {
689
- return react.default.createElement(require_Icon_js, {
692
+ if (process.env.NODE_ENV !== "production") TemperatureFahrenheitAlt.propTypes = require_iconPropTypes.iconPropTypes;
693
+ const TemperatureFeelsLike = /* @__PURE__ */ react.default.forwardRef(function TemperatureFeelsLike({ children, size = 16, ...rest }, ref) {
694
+ return react.default.createElement(require_Icon.Icon, {
690
695
  width: size,
691
696
  height: size,
692
697
  ref,
@@ -694,11 +699,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
694
699
  viewBox: "0 0 32 32",
695
700
  fill: "currentColor",
696
701
  ...rest
697
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 6H30V8H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 12H27V14H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H30V20H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 24H27V26H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 4H16V28H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3.85 22.5 2.44 21.12 8.73 15 2.44 8.88 3.85 7.5 11.56 15 3.85 22.5z" }), children);
702
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,30H22a2.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,26,30ZM21,12a.9448.9448,0,0,0-1,1v6h2v9h4V19h2V13a.9448.9448,0,0,0-1-1Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,9a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,24,9Zm0-6a2,2,0,1,0,2,2h0a2.0059,2.0059,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1839V12H8v8.1839a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
698
703
  });
699
- if (process.env.NODE_ENV !== "production") TextIndentMore.propTypes = require_iconPropTypes.iconPropTypes;
700
- const TextItalic = react.default.forwardRef(function TextItalic({ children, size = 16, ...rest }, ref) {
701
- return react.default.createElement(require_Icon_js, {
704
+ if (process.env.NODE_ENV !== "production") TemperatureFeelsLike.propTypes = require_iconPropTypes.iconPropTypes;
705
+ const TemperatureFrigid = /* @__PURE__ */ react.default.forwardRef(function TemperatureFrigid({ children, size = 16, ...rest }, ref) {
706
+ return react.default.createElement(require_Icon.Icon, {
702
707
  width: size,
703
708
  height: size,
704
709
  ref,
@@ -706,11 +711,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
706
711
  viewBox: "0 0 32 32",
707
712
  fill: "currentColor",
708
713
  ...rest
709
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 9 25 7 12 7 12 9 17.14 9 12.77 23 7 23 7 25 20 25 20 23 14.86 23 19.23 9 25 9z" }), children);
714
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.167 16.89 21.72 13 27.167 9.109 29.684 9.948 30.316 8.051 28 7.279 28 5 26 5 26 7.485 21 11.057 21 5.367 23.555 3.664 22.445 2 20 3.63 17.555 2 16.445 3.664 19 5.367 19 11.057 16 8.914 16 11.372 18.28 13 16 14.628 16 17.086 19 14.943 19 21.703 22.445 24 23.555 22.336 21 20.633 21 14.943 26 18.515 26 21 28 21 28 18.721 30.316 17.948 29.684 16.051 27.167 16.89z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,23a3,3,0,0,1-6,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
710
715
  });
711
- if (process.env.NODE_ENV !== "production") TextItalic.propTypes = require_iconPropTypes.iconPropTypes;
712
- const TextKerning = react.default.forwardRef(function TextKerning({ children, size = 16, ...rest }, ref) {
713
- return react.default.createElement(require_Icon_js, {
716
+ if (process.env.NODE_ENV !== "production") TemperatureFrigid.propTypes = require_iconPropTypes.iconPropTypes;
717
+ const TemperatureHot = /* @__PURE__ */ react.default.forwardRef(function TemperatureHot({ children, size = 16, ...rest }, ref) {
718
+ return react.default.createElement(require_Icon.Icon, {
714
719
  width: size,
715
720
  height: size,
716
721
  ref,
@@ -718,11 +723,17 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
718
723
  viewBox: "0 0 32 32",
719
724
  fill: "currentColor",
720
725
  ...rest
721
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 24 18.83 24 21.12 21.71 19.71 20.29 15 25 19.71 29.71 21.12 28.29 18.83 26 30 26 30 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 21 20 4 18 4 12 21 14 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 4 9 16 5 4 3 4 8 18 10 18 15 4 13 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,18h2L25,4H23L18,18h2l1-3h6Zm-6.33-5L24,6l2.33,7Z" }), children);
726
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 13H30V15H26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
727
+ d: "M23.121 5.879H27.121V7.879H23.121z",
728
+ transform: "rotate(-45 25.121 6.879)"
729
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
730
+ d: "M24.121 19.121H26.121V23.121H24.121z",
731
+ transform: "rotate(-45 25.121 21.121)"
732
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 2H19V6H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,8a6.0365,6.0365,0,0,0-1,.09v2.0518A3.9567,3.9567,0,0,1,18,10a4,4,0,0,1,0,8v2A6,6,0,0,0,18,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" }), children);
722
733
  });
723
- if (process.env.NODE_ENV !== "production") TextKerning.propTypes = require_iconPropTypes.iconPropTypes;
724
- const TextLeading = react.default.forwardRef(function TextLeading({ children, size = 16, ...rest }, ref) {
725
- return react.default.createElement(require_Icon_js, {
734
+ if (process.env.NODE_ENV !== "production") TemperatureHot.propTypes = require_iconPropTypes.iconPropTypes;
735
+ const TemperatureInversion = /* @__PURE__ */ react.default.forwardRef(function TemperatureInversion({ children, size = 16, ...rest }, ref) {
736
+ return react.default.createElement(require_Icon.Icon, {
726
737
  width: size,
727
738
  height: size,
728
739
  ref,
@@ -730,11 +741,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
730
741
  viewBox: "0 0 32 32",
731
742
  fill: "currentColor",
732
743
  ...rest
733
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H30V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 28H30V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.85,27H28L23.64,17H21.36L17,27h2.15l.8-2h5.1Zm-5.1-4,1.75-4.37L24.25,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.85,12H28L23.64,2H21.36L17,12h2.15l.8-2h5.1Zm-5.1-4L22.5,3.63,24.25,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 15.83 8.58 18.41 10 17 6 13 2 17 3.41 18.42 6 15.83z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 27.17 3.42 24.59 2 26 6 30 10 26 8.59 24.58 6 27.17z" }), children);
744
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,8H24v6h2V11.541A5.939,5.939,0,0,1,28,16a6.0039,6.0039,0,0,1-5.0945,5.9243A7.0273,7.0273,0,0,0,20,17.2617V6a4,4,0,0,0-8,0V17.2617a6.996,6.996,0,1,0,10.9292,6.68A7.9794,7.9794,0,0,0,27.2651,10H30ZM14,6a2,2,0,0,1,4,0v7H14Zm2,22a4.9965,4.9965,0,0,1-2.499-9.3252L14,18.3857V15h4v3.3857l.499.2891A4.9965,4.9965,0,0,1,16,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,10a8.04,8.04,0,0,0,2.7349,6H2v2H8V12H6v2.4592A5.94,5.94,0,0,1,4,10a6.0066,6.0066,0,0,1,6-6V2A8.0092,8.0092,0,0,0,2,10Z" }), children);
734
745
  });
735
- if (process.env.NODE_ENV !== "production") TextLeading.propTypes = require_iconPropTypes.iconPropTypes;
736
- const TextLineSpacing = react.default.forwardRef(function TextLineSpacing({ children, size = 16, ...rest }, ref) {
737
- return react.default.createElement(require_Icon_js, {
746
+ if (process.env.NODE_ENV !== "production") TemperatureInversion.propTypes = require_iconPropTypes.iconPropTypes;
747
+ const TemperatureMax = /* @__PURE__ */ react.default.forwardRef(function TemperatureMax({ children, size = 16, ...rest }, ref) {
748
+ return react.default.createElement(require_Icon.Icon, {
738
749
  width: size,
739
750
  height: size,
740
751
  ref,
@@ -742,11 +753,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
742
753
  viewBox: "0 0 32 32",
743
754
  fill: "currentColor",
744
755
  ...rest
745
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 6H30V8H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 12H27V14H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 18H30V20H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 24H27V26H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.59 13.41 8 9.83 8 9.83 4.41 13.42 3 12 8 7 13 12 11.59 13.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.59 18.59 8 22.17 8 22.17 4.41 18.58 3 20 8 25 13 20 11.59 18.59z" }), children);
756
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 10H27V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H30V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 22H27V24H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4H12.9744A4.9829,4.9829,0,0,0,4,7V18.1108a7,7,0,1,0,10,0V7a5.0019,5.0019,0,0,0-.1011-1H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z" }), children);
746
757
  });
747
- if (process.env.NODE_ENV !== "production") TextLineSpacing.propTypes = require_iconPropTypes.iconPropTypes;
748
- const TextLongParagraph = react.default.forwardRef(function TextLongParagraph({ children, size = 16, ...rest }, ref) {
749
- return react.default.createElement(require_Icon_js, {
758
+ if (process.env.NODE_ENV !== "production") TemperatureMax.propTypes = require_iconPropTypes.iconPropTypes;
759
+ const TemperatureMin = /* @__PURE__ */ react.default.forwardRef(function TemperatureMin({ children, size = 16, ...rest }, ref) {
760
+ return react.default.createElement(require_Icon.Icon, {
750
761
  width: size,
751
762
  height: size,
752
763
  ref,
@@ -754,11 +765,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
754
765
  viewBox: "0 0 32 32",
755
766
  fill: "currentColor",
756
767
  ...rest
757
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H20V26H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H26V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H26V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H26V8H6z" }), children);
768
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 4H27V6H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 10H30V12H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H27V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,23a3,3,0,0,1-6,0Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,22H15.9192A7.0107,7.0107,0,0,0,14,18.1108V7A5,5,0,0,0,4,7V18.1108A6.9946,6.9946,0,1,0,15.92,24H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z" }), children);
758
769
  });
759
- if (process.env.NODE_ENV !== "production") TextLongParagraph.propTypes = require_iconPropTypes.iconPropTypes;
760
- const TextNewLine = react.default.forwardRef(function TextNewLine({ children, size = 16, ...rest }, ref) {
761
- return react.default.createElement(require_Icon_js, {
770
+ if (process.env.NODE_ENV !== "production") TemperatureMin.propTypes = require_iconPropTypes.iconPropTypes;
771
+ const TemperatureWater = /* @__PURE__ */ react.default.forwardRef(function TemperatureWater({ children, size = 16, ...rest }, ref) {
772
+ return react.default.createElement(require_Icon.Icon, {
762
773
  width: size,
763
774
  height: size,
764
775
  ref,
@@ -766,11 +777,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
766
777
  viewBox: "0 0 32 32",
767
778
  fill: "currentColor",
768
779
  ...rest
769
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.5859,14.4141,24.1719,18H6V8H4V18a2.0024,2.0024,0,0,0,2,2H24.1719L20.586,23.5859,22,25l6-6-6-6Z" }), children);
780
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,9a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,9V7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,4a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,4a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,7H13V6A4,4,0,0,0,5,6V17.2617A7.0126,7.0126,0,1,0,13.8735,18H14a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,18V16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,13a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,13a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,16H13V9ZM7,6a2,2,0,0,1,4,0v6H7ZM9,28a4.9965,4.9965,0,0,1-2.499-9.3252L7,18.3857V14h4v4.3857l.499.2891A4.9965,4.9965,0,0,1,9,28Z" }), children);
770
781
  });
771
- if (process.env.NODE_ENV !== "production") TextNewLine.propTypes = require_iconPropTypes.iconPropTypes;
772
- const TextScale = react.default.forwardRef(function TextScale({ children, size = 16, ...rest }, ref) {
773
- return react.default.createElement(require_Icon_js, {
782
+ if (process.env.NODE_ENV !== "production") TemperatureWater.propTypes = require_iconPropTypes.iconPropTypes;
783
+ const Template = /* @__PURE__ */ react.default.forwardRef(function Template({ children, size = 16, ...rest }, ref) {
784
+ return react.default.createElement(require_Icon.Icon, {
774
785
  width: size,
775
786
  height: size,
776
787
  ref,
@@ -778,11 +789,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
778
789
  viewBox: "0 0 32 32",
779
790
  fill: "currentColor",
780
791
  ...rest
781
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 5 30 8 22 8 22 26 19 26 19 8 11 8 11 5 30 5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 26 7 14 2 14 2 12 14 12 14 14 9 14 9 26 7 26z" }), children);
792
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,6v4H6V6H26m0-2H6A2,2,0,0,0,4,6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,16V26H6V16h4m0-2H6a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,16V26H16V16H26m0-2H16a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z" }), children);
782
793
  });
783
- if (process.env.NODE_ENV !== "production") TextScale.propTypes = require_iconPropTypes.iconPropTypes;
784
- const TextSelection = react.default.forwardRef(function TextSelection({ children, size = 16, ...rest }, ref) {
785
- return react.default.createElement(require_Icon_js, {
794
+ if (process.env.NODE_ENV !== "production") Template.propTypes = require_iconPropTypes.iconPropTypes;
795
+ const Tennis = /* @__PURE__ */ react.default.forwardRef(function Tennis({ children, size = 16, ...rest }, ref) {
796
+ return react.default.createElement(require_Icon.Icon, {
786
797
  width: size,
787
798
  height: size,
788
799
  ref,
@@ -790,11 +801,17 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
790
801
  viewBox: "0 0 32 32",
791
802
  fill: "currentColor",
792
803
  ...rest
793
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,27H21a3,3,0,0,1-3-3V22a3,3,0,0,1,3-3h5V17a1,1,0,0,0-1-1H19V14h6a3,3,0,0,1,3,3Zm-7-6a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,7h3V5H13a4,4,0,0,0-3,1.38A4,4,0,0,0,7,5H4V7H7A2,2,0,0,1,9,9v5H5v2H9v7a2,2,0,0,1-2,2H4v2H7a4,4,0,0,0,3-1.38A4,4,0,0,0,13,27h3V25H13a2,2,0,0,1-2-2V16h4V14H11V9A2,2,0,0,1,13,7Z" }), children);
804
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
805
+ width: "4",
806
+ height: "4",
807
+ x: "20",
808
+ y: "2",
809
+ rx: "2"
810
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,16a1,1,0,0,1-.707-1.707l7-7a1,1,0,1,1,1.414,1.414l-7,7A.9962.9962,0,0,1,11,16Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.707,24.293a8.3948,8.3948,0,0,0-4.72-2.209c.1992-.1641.3931-.3364.5777-.521a9.2447,9.2447,0,0,0,1.7334-9.9141l-1.8768.6973c1.11,2.9805.6346,5.8975-1.2722,7.8022a6.6964,6.6964,0,0,1-5.561,1.8047,9.7746,9.7746,0,0,1-5.771-2.7856c-2.9727-2.97-4.0759-8.2276-.9805-11.32,1.9068-1.9053,4.8267-2.38,7.8094-1.271l.6987-1.875C10.6616,3.333,6.8591,3.9961,4.4207,6.4331c-3.9427,3.9385-2.6761,10.4956.98,14.1489a11.8136,11.8136,0,0,0,6.9766,3.36c.21.022.4153.0234.6223.0332V24h4.9968a6.8463,6.8463,0,0,1,4.2962,1.707L26.5859,30,28,28.5859Z" }), children);
794
811
  });
795
- if (process.env.NODE_ENV !== "production") TextSelection.propTypes = require_iconPropTypes.iconPropTypes;
796
- const TextShortParagraph = react.default.forwardRef(function TextShortParagraph({ children, size = 16, ...rest }, ref) {
797
- return react.default.createElement(require_Icon_js, {
812
+ if (process.env.NODE_ENV !== "production") Tennis.propTypes = require_iconPropTypes.iconPropTypes;
813
+ const TennisBall = /* @__PURE__ */ react.default.forwardRef(function TennisBall({ children, size = 16, ...rest }, ref) {
814
+ return react.default.createElement(require_Icon.Icon, {
798
815
  width: size,
799
816
  height: size,
800
817
  ref,
@@ -802,11 +819,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
802
819
  viewBox: "0 0 32 32",
803
820
  fill: "currentColor",
804
821
  ...rest
805
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H20V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H26V14H6z" }), children);
822
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19,4a8.9812,8.9812,0,0,0-8.1687,12.7549L2,25.5859,3.4141,27l8.4873-8.4873a9.0408,9.0408,0,0,0,1.5859,1.5859L10,23.5859,11.4141,25l3.8313-3.8311A8.9959,8.9959,0,1,0,19,4Zm6.9058,7.9058a7.005,7.005,0,0,1-5.8116-5.8116A7.005,7.005,0,0,1,25.9058,11.9058ZM12.0942,14.0942a7.005,7.005,0,0,1,5.8116,5.8116A7.005,7.005,0,0,1,12.0942,14.0942ZM19.93,19.9307a9.01,9.01,0,0,0-7.8611-7.8614,7.004,7.004,0,0,1,6-6,9.01,9.01,0,0,0,7.8611,7.8614A7.004,7.004,0,0,1,19.93,19.9307Z" }), children);
806
823
  });
807
- if (process.env.NODE_ENV !== "production") TextShortParagraph.propTypes = require_iconPropTypes.iconPropTypes;
808
- const TextSmallCaps = react.default.forwardRef(function TextSmallCaps({ children, size = 16, ...rest }, ref) {
809
- return react.default.createElement(require_Icon_js, {
824
+ if (process.env.NODE_ENV !== "production") TennisBall.propTypes = require_iconPropTypes.iconPropTypes;
825
+ const Term = /* @__PURE__ */ react.default.forwardRef(function Term({ children, size = 16, ...rest }, ref) {
826
+ return react.default.createElement(require_Icon.Icon, {
810
827
  width: size,
811
828
  height: size,
812
829
  ref,
@@ -814,11 +831,23 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
814
831
  viewBox: "0 0 32 32",
815
832
  fill: "currentColor",
816
833
  ...rest
817
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 27 23 15 18 15 18 13 30 13 30 15 25 15 25 27 23 27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 27 11 8 2 8 2 6 22 6 22 8 13 8 13 27 11 27z" }), children);
834
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,26H25V24h3V8H25V6h3a2.0023,2.0023,0,0,1,2,2V24A2.0027,2.0027,0,0,1,28,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
835
+ cx: "23",
836
+ cy: "16",
837
+ r: "2"
838
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
839
+ cx: "16",
840
+ cy: "16",
841
+ r: "2"
842
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
843
+ cx: "9",
844
+ cy: "16",
845
+ r: "2"
846
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7,26H4a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,4,6H7V8H4V24H7Z" }), children);
818
847
  });
819
- if (process.env.NODE_ENV !== "production") TextSmallCaps.propTypes = require_iconPropTypes.iconPropTypes;
820
- const TextStrikethrough = react.default.forwardRef(function TextStrikethrough({ children, size = 16, ...rest }, ref) {
821
- return react.default.createElement(require_Icon_js, {
848
+ if (process.env.NODE_ENV !== "production") Term.propTypes = require_iconPropTypes.iconPropTypes;
849
+ const TermReference = /* @__PURE__ */ react.default.forwardRef(function TermReference({ children, size = 16, ...rest }, ref) {
850
+ return react.default.createElement(require_Icon.Icon, {
822
851
  width: size,
823
852
  height: size,
824
853
  ref,
@@ -826,11 +855,35 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
826
855
  viewBox: "0 0 32 32",
827
856
  fill: "currentColor",
828
857
  ...rest
829
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,15H17.9563c-.4522-.1237-.9037-.2324-1.3381-.3352-2.8077-.6641-4.396-1.1506-4.396-3.4231a2.8684,2.8684,0,0,1,.7866-2.145,4.7888,4.7888,0,0,1,3.0137-1.09c2.8291-.07,4.1347.8894,5.2011,2.35l1.6153-1.1792a7.4727,7.4727,0,0,0-6.83-3.1706,6.7726,6.7726,0,0,0-4.4,1.6611,4.8274,4.8274,0,0,0-1.3862,3.5735A4.3723,4.3723,0,0,0,11.9573,15H4v2H17.6519c1.9668.57,3.1432,1.3123,3.1733,3.3579a3.119,3.119,0,0,1-.8623,2.3931A5.8241,5.8241,0,0,1,16.2432,24a6.6344,6.6344,0,0,1-5.1451-2.6912L9.5649,22.593A8.5262,8.5262,0,0,0,16.2119,26c.0088-.0012.042,0,.1,0A7.67,7.67,0,0,0,21.36,24.1812a5.0779,5.0779,0,0,0,1.4648-3.8531A4.952,4.952,0,0,0,21.6753,17H28Z" }), children);
858
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
859
+ strokeWidth: "0",
860
+ 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"
861
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
862
+ strokeWidth: "0",
863
+ d: "m28,25h-3v-2h3V7h-3v-2h3c1.1025,0,2,.897,2,2v16c0,1.1025-.8975,2-2,2Z"
864
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
865
+ cx: "23",
866
+ cy: "15",
867
+ r: "2",
868
+ strokeWidth: "0"
869
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
870
+ cx: "16",
871
+ cy: "15",
872
+ r: "2",
873
+ strokeWidth: "0"
874
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
875
+ cx: "9",
876
+ cy: "15",
877
+ r: "2",
878
+ strokeWidth: "0"
879
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
880
+ strokeWidth: "0",
881
+ d: "m4,17V7h3v-2h-3c-1.103,0-2,.897-2,2v10h2Z"
882
+ }), children);
830
883
  });
831
- if (process.env.NODE_ENV !== "production") TextStrikethrough.propTypes = require_iconPropTypes.iconPropTypes;
832
- const TextSubscript = react.default.forwardRef(function TextSubscript({ children, size = 16, ...rest }, ref) {
833
- return react.default.createElement(require_Icon_js, {
884
+ if (process.env.NODE_ENV !== "production") TermReference.propTypes = require_iconPropTypes.iconPropTypes;
885
+ const Terminal = /* @__PURE__ */ react.default.forwardRef(function Terminal({ children, size = 16, ...rest }, ref) {
886
+ return react.default.createElement(require_Icon.Icon, {
834
887
  width: size,
835
888
  height: size,
836
889
  ref,
@@ -838,11 +891,14 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
838
891
  viewBox: "0 0 32 32",
839
892
  fill: "currentColor",
840
893
  ...rest
841
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 25 20 25 20 19 24 19 24 17 20 17 20 15 26 15 26 21 22 21 22 23 26 23 26 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 7 5 9 12 9 12 25 14 25 14 9 21 9 21 7 5 7z" }), children);
894
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
895
+ d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z",
896
+ transform: "translate(0 .01)"
897
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.76 16.18 13.58 19.01 10.76 21.84 12.17 23.25 16.41 19.01 12.17 14.77 10.76 16.18z" }), children);
842
898
  });
843
- if (process.env.NODE_ENV !== "production") TextSubscript.propTypes = require_iconPropTypes.iconPropTypes;
844
- const TextSuperscript = react.default.forwardRef(function TextSuperscript({ children, size = 16, ...rest }, ref) {
845
- return react.default.createElement(require_Icon_js, {
899
+ if (process.env.NODE_ENV !== "production") Terminal.propTypes = require_iconPropTypes.iconPropTypes;
900
+ const Terminal_3270 = /* @__PURE__ */ react.default.forwardRef(function Terminal_3270({ children, size = 16, ...rest }, ref) {
901
+ return react.default.createElement(require_Icon.Icon, {
846
902
  width: size,
847
903
  height: size,
848
904
  ref,
@@ -850,11 +906,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
850
906
  viewBox: "0 0 32 32",
851
907
  fill: "currentColor",
852
908
  ...rest
853
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 17 23 17 23 11 27 11 27 9 23 9 23 7 29 7 29 13 25 13 25 15 29 15 29 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 7 4 9 11 9 11 25 13 25 13 9 20 9 20 7 4 7z" }), children);
909
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 21H16V23H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z" }), children);
854
910
  });
855
- if (process.env.NODE_ENV !== "production") TextSuperscript.propTypes = require_iconPropTypes.iconPropTypes;
856
- const TextTracking = react.default.forwardRef(function TextTracking({ children, size = 16, ...rest }, ref) {
857
- return react.default.createElement(require_Icon_js, {
911
+ if (process.env.NODE_ENV !== "production") Terminal_3270.propTypes = require_iconPropTypes.iconPropTypes;
912
+ const TestTool = /* @__PURE__ */ react.default.forwardRef(function TestTool({ children, size = 16, ...rest }, ref) {
913
+ return react.default.createElement(require_Icon.Icon, {
858
914
  width: size,
859
915
  height: size,
860
916
  ref,
@@ -862,11 +918,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
862
918
  viewBox: "0 0 32 32",
863
919
  fill: "currentColor",
864
920
  ...rest
865
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.29 19.29 23.88 20.71 26.17 23 5.83 23 8.12 20.71 6.71 19.29 2 24 6.71 28.71 8.12 27.29 5.83 25 26.17 25 23.88 27.29 25.29 28.71 30 24 25.29 19.29z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,17h2L23,3H21L16,17h2l1-3h6Zm-6.33-5L22,5l2.33,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 3 10 15 6 3 4 3 9 17 11 17 16 3 14 3z" }), children);
921
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 9.2 20.4 6.6 19 8 23 12 30 5 28.6 3.6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 5.4 10.6 4 8 6.6 5.4 4 4 5.4 6.6 8 4 10.6 5.4 12 8 9.4 10.6 12 12 10.6 9.4 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 21.4 10.6 20 8 22.6 5.4 20 4 21.4 6.6 24 4 26.6 5.4 28 8 25.4 10.6 28 12 26.6 9.4 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" }), children);
866
922
  });
867
- if (process.env.NODE_ENV !== "production") TextTracking.propTypes = require_iconPropTypes.iconPropTypes;
868
- const TextUnderline = react.default.forwardRef(function TextUnderline({ children, size = 16, ...rest }, ref) {
869
- return react.default.createElement(require_Icon_js, {
923
+ if (process.env.NODE_ENV !== "production") TestTool.propTypes = require_iconPropTypes.iconPropTypes;
924
+ const TextAlignCenter = /* @__PURE__ */ react.default.forwardRef(function TextAlignCenter({ children, size = 16, ...rest }, ref) {
925
+ return react.default.createElement(require_Icon.Icon, {
870
926
  width: size,
871
927
  height: size,
872
928
  ref,
@@ -874,11 +930,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
874
930
  viewBox: "0 0 32 32",
875
931
  fill: "currentColor",
876
932
  ...rest
877
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23a7,7,0,0,1-7-7V5h2V16a5,5,0,0,0,10,0V5h2V16A7,7,0,0,1,16,23Z" }), children);
933
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H26V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H22V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H26V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 24H22V26H10z" }), children);
878
934
  });
879
- if (process.env.NODE_ENV !== "production") TextUnderline.propTypes = require_iconPropTypes.iconPropTypes;
880
- const TextVerticalAlignment = react.default.forwardRef(function TextVerticalAlignment({ children, size = 16, ...rest }, ref) {
881
- return react.default.createElement(require_Icon_js, {
935
+ if (process.env.NODE_ENV !== "production") TextAlignCenter.propTypes = require_iconPropTypes.iconPropTypes;
936
+ const TextAlignJustify = /* @__PURE__ */ react.default.forwardRef(function TextAlignJustify({ children, size = 16, ...rest }, ref) {
937
+ return react.default.createElement(require_Icon.Icon, {
882
938
  width: size,
883
939
  height: size,
884
940
  ref,
@@ -886,11 +942,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
886
942
  viewBox: "0 0 32 32",
887
943
  fill: "currentColor",
888
944
  ...rest
889
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28H30V30H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 23H30V25H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.8458,30H13L8.64,20H6.36L2,30H4.1542l.8-2h5.0916ZM5.7541,26,7.5,21.6347,9.2459,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H30V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 7H30V9H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 2H30V4H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.8458,12H13L8.64,2H6.36L2,12H4.1542l.8-2h5.0916ZM5.7541,8,7.5,3.6347,9.2459,8Z" }), children);
945
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H26V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H26V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H26V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H26V26H6z" }), children);
890
946
  });
891
- if (process.env.NODE_ENV !== "production") TextVerticalAlignment.propTypes = require_iconPropTypes.iconPropTypes;
892
- const TextWrap = react.default.forwardRef(function TextWrap({ children, size = 16, ...rest }, ref) {
893
- return react.default.createElement(require_Icon_js, {
947
+ if (process.env.NODE_ENV !== "production") TextAlignJustify.propTypes = require_iconPropTypes.iconPropTypes;
948
+ const TextAlignLeft = /* @__PURE__ */ react.default.forwardRef(function TextAlignLeft({ children, size = 16, ...rest }, ref) {
949
+ return react.default.createElement(require_Icon.Icon, {
894
950
  width: size,
895
951
  height: size,
896
952
  ref,
@@ -898,11 +954,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
898
954
  viewBox: "0 0 32 32",
899
955
  fill: "currentColor",
900
956
  ...rest
901
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 23H12V25H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.5232,14H4v2H24.5a3.5,3.5,0,0,1,0,7H18.8281l2.586-2.5859L20,19l-5,5,5,5,1.4141-1.4141L18.8281,25H24.533a5.5,5.5,0,0,0-.01-11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 5H28V7H4z" }), children);
957
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 6H26V8H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12H22V14H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 18H26V20H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 24H22V26H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 4H8V28H6z" }), children);
902
958
  });
903
- if (process.env.NODE_ENV !== "production") TextWrap.propTypes = require_iconPropTypes.iconPropTypes;
904
- const WatsonHealthTextAnnotationToggle = react.default.forwardRef(function WatsonHealthTextAnnotationToggle({ children, size = 16, ...rest }, ref) {
905
- return react.default.createElement(require_Icon_js, {
959
+ if (process.env.NODE_ENV !== "production") TextAlignLeft.propTypes = require_iconPropTypes.iconPropTypes;
960
+ const TextAlignMixed = /* @__PURE__ */ react.default.forwardRef(function TextAlignMixed({ children, size = 16, ...rest }, ref) {
961
+ return react.default.createElement(require_Icon.Icon, {
906
962
  width: size,
907
963
  height: size,
908
964
  ref,
@@ -910,11 +966,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
910
966
  viewBox: "0 0 32 32",
911
967
  fill: "currentColor",
912
968
  ...rest
913
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.537,13.76,26.24,10.463a1.5862,1.5862,0,0,0-2.24,0L10,24.4674V30h5.5326L29.537,16a1.5862,1.5862,0,0,0,0-2.24ZM14.7042,28H12V25.2958l9.4409-9.4409,2.7042,2.7042ZM25.5591,17.145,22.855,14.4409l2.2672-2.2672,2.7042,2.7042Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 17 13 17 13 10 16 10 16 8 8 8 8 10 11 10 11 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,20H4V4H20V8h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H8Z" }), children);
969
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14,4H9V6h5V8H10a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V6A2.0023,2.0023,0,0,0,14,4Zm0,8H10V10h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22 26 22 18 20 18 20 19 18 19 18 21 20 21 20 26 18 26 18 28 24 28 24 26 22 26z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H4V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28 16H30V30H28z" }), children);
914
970
  });
915
- if (process.env.NODE_ENV !== "production") WatsonHealthTextAnnotationToggle.propTypes = require_iconPropTypes.iconPropTypes;
916
- const TextLink = react.default.forwardRef(function TextLink({ children, size = 16, ...rest }, ref) {
917
- return react.default.createElement(require_Icon_js, {
971
+ if (process.env.NODE_ENV !== "production") TextAlignMixed.propTypes = require_iconPropTypes.iconPropTypes;
972
+ const TextAlignRight = /* @__PURE__ */ react.default.forwardRef(function TextAlignRight({ children, size = 16, ...rest }, ref) {
973
+ return react.default.createElement(require_Icon.Icon, {
918
974
  width: size,
919
975
  height: size,
920
976
  ref,
@@ -922,11 +978,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
922
978
  viewBox: "0 0 32 32",
923
979
  fill: "currentColor",
924
980
  ...rest
925
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.7061,27.585a5.2615,5.2615,0,0,1-3.7227-8.9834l1.415,1.414a3.2638,3.2638,0,1,0,4.6153,4.6162l6.03-6.03a3.264,3.264,0,0,0-4.6162-4.6158l-1.414-1.414a5.2637,5.2637,0,0,1,7.4443,7.4438l-6.03,6.03A5.2461,5.2461,0,0,1,18.7061,27.585Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.2642,29.9971A5.2619,5.2619,0,0,1,6.542,21.0137l6.03-6.03a5.2636,5.2636,0,1,1,7.4438,7.4438l-1.414-1.414a3.2639,3.2639,0,1,0-4.6158-4.6158l-6.03,6.03a3.264,3.264,0,0,0,4.6157,4.6162l1.414,1.4141A5.2452,5.2452,0,0,1,10.2642,29.9971Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 10H10V12H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H14V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H14V4H2z" }), children);
981
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H20V8H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 12H20V14H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H20V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 24H20V26H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 4H26V28H24z" }), children);
926
982
  });
927
- if (process.env.NODE_ENV !== "production") TextLink.propTypes = require_iconPropTypes.iconPropTypes;
928
- const TextLinkAnalysis = react.default.forwardRef(function TextLinkAnalysis({ children, size = 16, ...rest }, ref) {
929
- return react.default.createElement(require_Icon_js, {
983
+ if (process.env.NODE_ENV !== "production") TextAlignRight.propTypes = require_iconPropTypes.iconPropTypes;
984
+ const TextAllCaps = /* @__PURE__ */ react.default.forwardRef(function TextAllCaps({ children, size = 16, ...rest }, ref) {
985
+ return react.default.createElement(require_Icon.Icon, {
930
986
  width: size,
931
987
  height: size,
932
988
  ref,
@@ -934,11 +990,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
934
990
  viewBox: "0 0 32 32",
935
991
  fill: "currentColor",
936
992
  ...rest
937
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H16V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H20V8H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 2H20V4H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z" }), children);
993
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M1 8 1 10 7 10 7 24 9 24 9 10 15 10 15 8 1 8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 8 17 10 23 10 23 24 25 24 25 10 31 10 31 8 17 8z" }), children);
938
994
  });
939
- if (process.env.NODE_ENV !== "production") TextLinkAnalysis.propTypes = require_iconPropTypes.iconPropTypes;
940
- const TextMining = react.default.forwardRef(function TextMining({ children, size = 16, ...rest }, ref) {
941
- return react.default.createElement(require_Icon_js, {
995
+ if (process.env.NODE_ENV !== "production") TextAllCaps.propTypes = require_iconPropTypes.iconPropTypes;
996
+ const TextBold = /* @__PURE__ */ react.default.forwardRef(function TextBold({ children, size = 16, ...rest }, ref) {
997
+ return react.default.createElement(require_Icon.Icon, {
942
998
  width: size,
943
999
  height: size,
944
1000
  ref,
@@ -946,11 +1002,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
946
1002
  viewBox: "0 0 32 32",
947
1003
  fill: "currentColor",
948
1004
  ...rest
949
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 28H26V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 24H30V26H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 20H30V22H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z" }), children);
1005
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.25,25H9V7h8.5a5.25,5.25,0,0,1,4,8.65A5.25,5.25,0,0,1,18.25,25ZM12,22h6.23a2.25,2.25,0,1,0,0-4.5H12Zm0-7.5h5.5a2.25,2.25,0,1,0,0-4.5H12Z" }), children);
950
1006
  });
951
- if (process.env.NODE_ENV !== "production") TextMining.propTypes = require_iconPropTypes.iconPropTypes;
952
- const TextMiningApplier = react.default.forwardRef(function TextMiningApplier({ children, size = 16, ...rest }, ref) {
953
- return react.default.createElement(require_Icon_js, {
1007
+ if (process.env.NODE_ENV !== "production") TextBold.propTypes = require_iconPropTypes.iconPropTypes;
1008
+ const TextClearFormat = /* @__PURE__ */ react.default.forwardRef(function TextClearFormat({ children, size = 16, ...rest }, ref) {
1009
+ return react.default.createElement(require_Icon.Icon, {
954
1010
  width: size,
955
1011
  height: size,
956
1012
  ref,
@@ -958,11 +1014,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
958
1014
  viewBox: "0 0 32 32",
959
1015
  fill: "currentColor",
960
1016
  ...rest
961
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 19 27 24 20 29 20 19z" }), children);
1017
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.4384,16.5715l-7.985-7.9856a2.0014,2.0014,0,0,0-2.8291,0l-5.3584,5.3584L9,2H7L2,16H4l.999-3h6l.8035,2.4077L4.5858,22.6244a2,2,0,0,0,0,2.8282L9.1316,30h9.5908l10.716-10.717A1.9173,1.9173,0,0,0,29.4384,16.5715ZM5.6653,11l2.331-7,2.3355,7Zm12.229,17H9.96L6,24.0381l6.3123-6.3115L20.24,25.6538Zm3.76-3.76-7.9275-7.9272L20.0393,10l7.9268,7.9272Z" }), children);
962
1018
  });
963
- if (process.env.NODE_ENV !== "production") TextMiningApplier.propTypes = require_iconPropTypes.iconPropTypes;
964
- const Theater = react.default.forwardRef(function Theater({ children, size = 16, ...rest }, ref) {
965
- return react.default.createElement(require_Icon_js, {
1019
+ if (process.env.NODE_ENV !== "production") TextClearFormat.propTypes = require_iconPropTypes.iconPropTypes;
1020
+ const TextColor = /* @__PURE__ */ react.default.forwardRef(function TextColor({ children, size = 16, ...rest }, ref) {
1021
+ return react.default.createElement(require_Icon.Icon, {
966
1022
  width: size,
967
1023
  height: size,
968
1024
  ref,
@@ -970,11 +1026,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
970
1026
  viewBox: "0 0 32 32",
971
1027
  fill: "currentColor",
972
1028
  ...rest
973
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,25a6.9908,6.9908,0,0,1-5.833-3.1287l1.666-1.1074a5.0007,5.0007,0,0,0,8.334,0l1.666,1.1074A6.9908,6.9908,0,0,1,20,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,24,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,16,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V14a10.01,10.01,0,0,0,8.8027,9.9214A9.9989,9.9989,0,0,0,30,20V10A2.0023,2.0023,0,0,0,28,8ZM4,14V4H20V8H12a2.0023,2.0023,0,0,0-2,2V20a9.9628,9.9628,0,0,0,.168,1.78A8.0081,8.0081,0,0,1,4,14Zm24,6a8,8,0,0,1-16,0V10H28Z" }), children);
1029
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,21h2L17,4H15L8,21h2l1.61-4h8.74Zm-9.57-6,3.44-8.37h.26L19.54,15Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H26V28H6z" }), children);
974
1030
  });
975
- if (process.env.NODE_ENV !== "production") Theater.propTypes = require_iconPropTypes.iconPropTypes;
976
- const ThisSideUp = react.default.forwardRef(function ThisSideUp({ children, size = 16, ...rest }, ref) {
977
- return react.default.createElement(require_Icon_js, {
1031
+ if (process.env.NODE_ENV !== "production") TextColor.propTypes = require_iconPropTypes.iconPropTypes;
1032
+ const TextCreation = /* @__PURE__ */ react.default.forwardRef(function TextCreation({ children, size = 16, ...rest }, ref) {
1033
+ return react.default.createElement(require_Icon.Icon, {
978
1034
  width: size,
979
1035
  height: size,
980
1036
  ref,
@@ -982,11 +1038,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
982
1038
  viewBox: "0 0 32 32",
983
1039
  fill: "currentColor",
984
1040
  ...rest
985
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 5.828 7 24 9 24 9 5.828 12.586 9.414 14 8 8 2 2 8 3.414 9.414 7 5.828z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 5.828 23 24 25 24 25 5.828 28.586 9.414 30 8 24 2 18 8 19.414 9.414 23 5.828z" }), children);
1041
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,22.14V9.86A4,4,0,1,0,22.14,5H9.86A4,4,0,1,0,5,9.86V22.14A4,4,0,1,0,9.86,27H22.14A4,4,0,1,0,27,22.14ZM26,4a2,2,0,1,1-2,2A2,2,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2,2,0,0,1,6,28Zm16.14-3H9.86A4,4,0,0,0,7,22.14V9.86A4,4,0,0,0,9.86,7H22.14A4,4,0,0,0,25,9.86V22.14A4,4,0,0,0,22.14,25ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21 11 11 11 11 13 15 13 15 22 17 22 17 13 21 13 21 11z" }), children);
986
1042
  });
987
- if (process.env.NODE_ENV !== "production") ThisSideUp.propTypes = require_iconPropTypes.iconPropTypes;
988
- const WatsonHealthThreshold = react.default.forwardRef(function WatsonHealthThreshold({ children, size = 16, ...rest }, ref) {
989
- return react.default.createElement(require_Icon_js, {
1043
+ if (process.env.NODE_ENV !== "production") TextCreation.propTypes = require_iconPropTypes.iconPropTypes;
1044
+ const TextFill = /* @__PURE__ */ react.default.forwardRef(function TextFill({ children, size = 16, ...rest }, ref) {
1045
+ return react.default.createElement(require_Icon.Icon, {
990
1046
  width: size,
991
1047
  height: size,
992
1048
  ref,
@@ -994,11 +1050,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
994
1050
  viewBox: "0 0 32 32",
995
1051
  fill: "currentColor",
996
1052
  ...rest
997
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM6,6H26V16H24v2h2v2H24v2h2v2H24v2H22V24H20v2H18V24H16v2H14V24H12v2H10V24H8v2H6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 20H10V22H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 20H14V22H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 20H18V22H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20H22V22H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H10V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 16H18V18H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H22V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 12H22V14H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 8H22V10H20z" }), children);
1053
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,14.54a1,1,0,0,0-.25-.69L17.17,4.33A1.09,1.09,0,0,0,17,4.2V2H15V5L4.32,14.74a1,1,0,0,0-.06,1.41l8.57,9.52a1,1,0,0,0,.69.33h.05a1,1,0,0,0,.68-.26L24,16.8V21a1,1,0,0,0,2,0V14.57S26,14.55,26,14.54Zm-12.35,9-7.23-8L15,7.67V12h2V7.13l6.59,7.33Z" }), children);
998
1054
  });
999
- if (process.env.NODE_ENV !== "production") WatsonHealthThreshold.propTypes = require_iconPropTypes.iconPropTypes;
1000
- const Thumbnail_1 = react.default.forwardRef(function Thumbnail_1({ children, size = 16, ...rest }, ref) {
1001
- return react.default.createElement(require_Icon_js, {
1055
+ if (process.env.NODE_ENV !== "production") TextFill.propTypes = require_iconPropTypes.iconPropTypes;
1056
+ const TextFont = /* @__PURE__ */ react.default.forwardRef(function TextFont({ children, size = 16, ...rest }, ref) {
1057
+ return react.default.createElement(require_Icon.Icon, {
1002
1058
  width: size,
1003
1059
  height: size,
1004
1060
  ref,
@@ -1006,11 +1062,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1006
1062
  viewBox: "0 0 32 32",
1007
1063
  fill: "currentColor",
1008
1064
  ...rest
1009
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20ZM4,4V18H28V4Z" }), children);
1065
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,12H20v2h5a1.0008,1.0008,0,0,1,1,1v2H22a3.0033,3.0033,0,0,0-3,3v1a3.0033,3.0033,0,0,0,3,3h6V15A3.0033,3.0033,0,0,0,25,12ZM22,22a1.0008,1.0008,0,0,1-1-1V20a1.0008,1.0008,0,0,1,1-1h4v3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24h2L12,7H10L4,24H6l1.6936-5h6.6135ZM8.3711,17l2.4966-7.3711.2668.0005L13.63,17Z" }), children);
1010
1066
  });
1011
- if (process.env.NODE_ENV !== "production") Thumbnail_1.propTypes = require_iconPropTypes.iconPropTypes;
1012
- const Thumbnail_2 = react.default.forwardRef(function Thumbnail_2({ children, size = 16, ...rest }, ref) {
1013
- return react.default.createElement(require_Icon_js, {
1067
+ if (process.env.NODE_ENV !== "production") TextFont.propTypes = require_iconPropTypes.iconPropTypes;
1068
+ const TextFootnote = /* @__PURE__ */ react.default.forwardRef(function TextFootnote({ children, size = 16, ...rest }, ref) {
1069
+ return react.default.createElement(require_Icon.Icon, {
1014
1070
  width: size,
1015
1071
  height: size,
1016
1072
  ref,
@@ -1018,11 +1074,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1018
1074
  viewBox: "0 0 32 32",
1019
1075
  fill: "currentColor",
1020
1076
  ...rest
1021
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,20H4a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,20ZM4,14v4H8V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,20H14a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,20Zm-4-6v4h4V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H24a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,20Zm-4-6v4h4V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10H4A2,2,0,0,1,2,8V4A2,2,0,0,1,4,2H8a2,2,0,0,1,2,2V8A2,2,0,0,1,8,10ZM4,4V8H8V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,10H14a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,18,10ZM14,4V8h4V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H24a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,28,10ZM24,4V8h4V4Z" }), children);
1077
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 7 2 9 9 9 9 25 11 25 11 9 18 9 18 7 2 7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11.076 29.256 9.219 26 10.522 26 7 24 7 24 10.523 20.744 9.22 20 11.077 23.417 12.444 20.9 15.8 22.5 17 25 13.667 27.5 17 29.1 15.8 26.583 12.443 30 11.076z" }), children);
1022
1078
  });
1023
- if (process.env.NODE_ENV !== "production") Thumbnail_2.propTypes = require_iconPropTypes.iconPropTypes;
1024
- const WatsonHealthThumbnailPreview = react.default.forwardRef(function WatsonHealthThumbnailPreview({ children, size = 16, ...rest }, ref) {
1025
- return react.default.createElement(require_Icon_js, {
1079
+ if (process.env.NODE_ENV !== "production") TextFootnote.propTypes = require_iconPropTypes.iconPropTypes;
1080
+ const TextHighlight = /* @__PURE__ */ react.default.forwardRef(function TextHighlight({ children, size = 16, ...rest }, ref) {
1081
+ return react.default.createElement(require_Icon.Icon, {
1026
1082
  width: size,
1027
1083
  height: size,
1028
1084
  ref,
@@ -1030,11 +1086,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1030
1086
  viewBox: "0 0 32 32",
1031
1087
  fill: "currentColor",
1032
1088
  ...rest
1033
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H4a2.0023,2.0023,0,0,0-2,2V28a2.002,2.002,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V14A2.0027,2.0027,0,0,0,28,12ZM20,28H12V27a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Zm8,0H22V27a3.0033,3.0033,0,0,0-3-3H13a3.0033,3.0033,0,0,0-3,3v1H4V14H28.002Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,16,23Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,16,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4V8a2.0027,2.0027,0,0,1-2,2H24a2.0027,2.0027,0,0,1-2-2V4a2.0027,2.0027,0,0,1,2-2h4A2.0027,2.0027,0,0,1,30,4ZM28,8l.002-4H24V8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,4V8a2.0027,2.0027,0,0,1-2,2H14a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h4A2.0027,2.0027,0,0,1,20,4ZM18,8l.002-4H14V8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,4V8a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,8V4A2.0023,2.0023,0,0,1,4,2H8A2.0023,2.0023,0,0,1,10,4ZM8,8l.0015-4H4V8Z" }), children);
1089
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,15H5a3,3,0,0,1-3-3V10A3,3,0,0,1,5,7h5V5A1,1,0,0,0,9,4H3V2H9a3,3,0,0,1,3,3ZM5,9a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V9Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,23v2a1,1,0,0,0,1,1h5V22H21A1,1,0,0,0,20,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2,30H30V2Zm26-2H21a3,3,0,0,1-3-3V23a3,3,0,0,1,3-3h5V18a1,1,0,0,0-1-1H19V15h6a3,3,0,0,1,3,3Z" }), children);
1034
1090
  });
1035
- if (process.env.NODE_ENV !== "production") WatsonHealthThumbnailPreview.propTypes = require_iconPropTypes.iconPropTypes;
1036
- const ThumbsDown = react.default.forwardRef(function ThumbsDown({ children, size = 16, ...rest }, ref) {
1037
- return react.default.createElement(require_Icon_js, {
1091
+ if (process.env.NODE_ENV !== "production") TextHighlight.propTypes = require_iconPropTypes.iconPropTypes;
1092
+ const TextIndent = /* @__PURE__ */ react.default.forwardRef(function TextIndent({ children, size = 16, ...rest }, ref) {
1093
+ return react.default.createElement(require_Icon.Icon, {
1038
1094
  width: size,
1039
1095
  height: size,
1040
1096
  ref,
@@ -1042,11 +1098,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1042
1098
  viewBox: "0 0 32 32",
1043
1099
  fill: "currentColor",
1044
1100
  ...rest
1045
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16V9a7.0078,7.0078,0,0,0-7-7H2V16H8.4648l3.5774,5.3662.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H17a3.0033,3.0033,0,0,0,3-3V20h6A4.0045,4.0045,0,0,0,30,16ZM8,14H4V4H8Zm20,2a2.0025,2.0025,0,0,1-2,2H18v8a1.0008,1.0008,0,0,1-1,1H14.8672l-.9094-6.3662L10,14.6973V4H23a5.0057,5.0057,0,0,1,5,5Z" }), children);
1101
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 6H28V8H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 12H28V14H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 18H28V20H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 24H28V26H7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 13.59 7.29 10 4 6.41 5.42 5 10.04 10 5.42 15 4 13.59z" }), children);
1046
1102
  });
1047
- if (process.env.NODE_ENV !== "production") ThumbsDown.propTypes = require_iconPropTypes.iconPropTypes;
1048
- const ThumbsDownFilled = react.default.forwardRef(function ThumbsDownFilled({ children, size = 16, ...rest }, ref) {
1049
- return react.default.createElement(require_Icon_js, {
1103
+ if (process.env.NODE_ENV !== "production") TextIndent.propTypes = require_iconPropTypes.iconPropTypes;
1104
+ const TextIndentLess = /* @__PURE__ */ react.default.forwardRef(function TextIndentLess({ children, size = 16, ...rest }, ref) {
1105
+ return react.default.createElement(require_Icon.Icon, {
1050
1106
  width: size,
1051
1107
  height: size,
1052
1108
  ref,
@@ -1054,11 +1110,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1054
1110
  viewBox: "0 0 32 32",
1055
1111
  fill: "currentColor",
1056
1112
  ...rest
1057
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H7V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,2H9V16.8027l3.0422,4.5635.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H15a3.0033,3.0033,0,0,0,3-3V20h8a4.0045,4.0045,0,0,0,4-4V9A7.0078,7.0078,0,0,0,23,2Z" }), children);
1113
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H12V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 12H12V14H5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 18H12V20H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 24H12V26H5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 4H18V28H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28.15 23.5 29.56 22.12 23.27 16 29.56 9.88 28.15 8.5 20.44 16 28.15 23.5z" }), children);
1058
1114
  });
1059
- if (process.env.NODE_ENV !== "production") ThumbsDownFilled.propTypes = require_iconPropTypes.iconPropTypes;
1060
- const ThumbsUp = react.default.forwardRef(function ThumbsUp({ children, size = 16, ...rest }, ref) {
1061
- return react.default.createElement(require_Icon_js, {
1115
+ if (process.env.NODE_ENV !== "production") TextIndentLess.propTypes = require_iconPropTypes.iconPropTypes;
1116
+ const TextIndentMore = /* @__PURE__ */ react.default.forwardRef(function TextIndentMore({ children, size = 16, ...rest }, ref) {
1117
+ return react.default.createElement(require_Icon.Icon, {
1062
1118
  width: size,
1063
1119
  height: size,
1064
1120
  ref,
@@ -1066,11 +1122,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1066
1122
  viewBox: "0 0 32 32",
1067
1123
  fill: "currentColor",
1068
1124
  ...rest
1069
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,12H20V6a3.0033,3.0033,0,0,0-3-3H14.8672a2.0094,2.0094,0,0,0-1.98,1.7173l-.8453,5.9165L8.4648,16H2V30H23a7.0078,7.0078,0,0,0,7-7V16A4.0045,4.0045,0,0,0,26,12ZM8,28H4V18H8Zm20-5a5.0057,5.0057,0,0,1-5,5H10V17.3027l3.9578-5.9365L14.8672,5H17a1.0008,1.0008,0,0,1,1,1v8h8a2.0025,2.0025,0,0,1,2,2Z" }), children);
1125
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 6H30V8H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 12H27V14H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 18H30V20H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 24H27V26H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 4H16V28H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M3.85 22.5 2.44 21.12 8.73 15 2.44 8.88 3.85 7.5 11.56 15 3.85 22.5z" }), children);
1070
1126
  });
1071
- if (process.env.NODE_ENV !== "production") ThumbsUp.propTypes = require_iconPropTypes.iconPropTypes;
1072
- const ThumbsUpFilled = react.default.forwardRef(function ThumbsUpFilled({ children, size = 16, ...rest }, ref) {
1073
- return react.default.createElement(require_Icon_js, {
1127
+ if (process.env.NODE_ENV !== "production") TextIndentMore.propTypes = require_iconPropTypes.iconPropTypes;
1128
+ const TextItalic = /* @__PURE__ */ react.default.forwardRef(function TextItalic({ children, size = 16, ...rest }, ref) {
1129
+ return react.default.createElement(require_Icon.Icon, {
1074
1130
  width: size,
1075
1131
  height: size,
1076
1132
  ref,
@@ -1078,11 +1134,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1078
1134
  viewBox: "0 0 32 32",
1079
1135
  fill: "currentColor",
1080
1136
  ...rest
1081
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16H7V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30H9V15.1973l3.0422-4.5635.8453-5.9165A2.0094,2.0094,0,0,1,14.8672,3H15a3.0033,3.0033,0,0,1,3,3v6h8a4.0045,4.0045,0,0,1,4,4v7A7.0078,7.0078,0,0,1,23,30Z" }), children);
1137
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 9 25 7 12 7 12 9 17.14 9 12.77 23 7 23 7 25 20 25 20 23 14.86 23 19.23 9 25 9z" }), children);
1082
1138
  });
1083
- if (process.env.NODE_ENV !== "production") ThumbsUpFilled.propTypes = require_iconPropTypes.iconPropTypes;
1084
- const ThumbsUpDouble = react.default.forwardRef(function ThumbsUpDouble({ children, size = 16, ...rest }, ref) {
1085
- return react.default.createElement(require_Icon_js, {
1139
+ if (process.env.NODE_ENV !== "production") TextItalic.propTypes = require_iconPropTypes.iconPropTypes;
1140
+ const TextKerning = /* @__PURE__ */ react.default.forwardRef(function TextKerning({ children, size = 16, ...rest }, ref) {
1141
+ return react.default.createElement(require_Icon.Icon, {
1086
1142
  width: size,
1087
1143
  height: size,
1088
1144
  ref,
@@ -1090,11 +1146,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1090
1146
  viewBox: "0 0 32 32",
1091
1147
  fill: "currentColor",
1092
1148
  ...rest
1093
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.7637,13.9999h-5.7637l-.0024-4.4316c0-2.1011-1.2324-3.5684-2.9976-3.5684h-1c-1.5273,0-1.7539,1.5273-1.8755,2.3477-.0225.1509-.6826,4.8052-.6826,4.8052l-2.0431,3.8472H2v13h16.3325c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295h0ZM4,27.9999v-9h1.9998l-.0017,9h-1.9981ZM23,23.3324c0,2.5737-2.0938,4.6675-4.6675,4.6675h-10.3325v-9.751l2.3735-4.4692s.7983-5.6035.8433-5.7798h.7832c.9697,0,.9976,1.4077.9976,1.5684l.0024,6.4316h7.7637c1.2344,0,2.2363.9951,2.2363,2.2295v5.103ZM31,13.2295v5.103c0,2.321-1.194,4.3667-2.9983,5.5613l-1.0042-1.7393c1.2073-.8446,2.0024-2.2402,2.0024-3.8221v-5.103c0-1.2344-1.0019-2.2295-2.2363-2.2295h-7.7637l-.0024-6.4315c0-.1608-.0279-1.5685-.9976-1.5685h-.7832c-.0174.0681-.1475.948-.3002,2.0001h-2.0273c.1234-.8691.2266-1.5944.2352-1.6523.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296Z" }), children);
1149
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 24 18.83 24 21.12 21.71 19.71 20.29 15 25 19.71 29.71 21.12 28.29 18.83 26 30 26 30 24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 21 20 4 18 4 12 21 14 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 4 9 16 5 4 3 4 8 18 10 18 15 4 13 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,18h2L25,4H23L18,18h2l1-3h6Zm-6.33-5L24,6l2.33,7Z" }), children);
1094
1150
  });
1095
- if (process.env.NODE_ENV !== "production") ThumbsUpDouble.propTypes = require_iconPropTypes.iconPropTypes;
1096
- const ThumbsUpDoubleFilled = react.default.forwardRef(function ThumbsUpDoubleFilled({ children, size = 16, ...rest }, ref) {
1097
- return react.default.createElement(require_Icon_js, {
1151
+ if (process.env.NODE_ENV !== "production") TextKerning.propTypes = require_iconPropTypes.iconPropTypes;
1152
+ const TextLeading = /* @__PURE__ */ react.default.forwardRef(function TextLeading({ children, size = 16, ...rest }, ref) {
1153
+ return react.default.createElement(require_Icon.Icon, {
1098
1154
  width: size,
1099
1155
  height: size,
1100
1156
  ref,
@@ -1102,11 +1158,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1102
1158
  viewBox: "0 0 32 32",
1103
1159
  fill: "currentColor",
1104
1160
  ...rest
1105
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,13.2295v5.103c0,2.7286-1.6495,5.0769-4.0023,6.1077v-8.2107c0-2.3369-2.1663-4.2478-4.2363-4.2295h-5.7637s-.0024-3.4316-.0024-3.4316c-.0933-2.0102-1.1168-3.4102-2.1021-3.5719.0672-.4727.2256-1.6102.2313-1.6488.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296ZM20.7614,14h0s-5.7637-.0001-5.7637-.0001l-.0024-4.4315c0-2.1012-1.2324-3.5685-2.9976-3.5685h-1c-1.5273,0-1.7539,1.5272-1.8755,2.3478-.0225.1509-.6826,4.8052-.6826,4.8052l-1.4423,2.7158-.0019,14.1313h11.3348c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295ZM4.9951,30l.0026-13H1.9977v13s2.9974,0,2.9974,0Z" }), children);
1161
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H30V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 28H30V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.85,27H28L23.64,17H21.36L17,27h2.15l.8-2h5.1Zm-5.1-4,1.75-4.37L24.25,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.85,12H28L23.64,2H21.36L17,12h2.15l.8-2h5.1Zm-5.1-4L22.5,3.63,24.25,8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 15.83 8.58 18.41 10 17 6 13 2 17 3.41 18.42 6 15.83z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 27.17 3.42 24.59 2 26 6 30 10 26 8.59 24.58 6 27.17z" }), children);
1106
1162
  });
1107
- if (process.env.NODE_ENV !== "production") ThumbsUpDoubleFilled.propTypes = require_iconPropTypes.iconPropTypes;
1108
- const Thunderstorm = react.default.forwardRef(function Thunderstorm({ children, size = 16, ...rest }, ref) {
1109
- return react.default.createElement(require_Icon_js, {
1163
+ if (process.env.NODE_ENV !== "production") TextLeading.propTypes = require_iconPropTypes.iconPropTypes;
1164
+ const TextLineSpacing = /* @__PURE__ */ react.default.forwardRef(function TextLineSpacing({ children, size = 16, ...rest }, ref) {
1165
+ return react.default.createElement(require_Icon.Icon, {
1110
1166
  width: size,
1111
1167
  height: size,
1112
1168
  ref,
@@ -1114,11 +1170,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1114
1170
  viewBox: "0 0 32 32",
1115
1171
  fill: "currentColor",
1116
1172
  ...rest
1117
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.87 30.5 14.13 29.5 17.28 24 11.28 24 16.13 15.5 17.87 16.5 14.72 22 20.72 22 15.87 30.5z" }), children);
1173
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 6H30V8H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 12H27V14H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 18H30V20H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 24H27V26H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.59 13.41 8 9.83 8 9.83 4.41 13.42 3 12 8 7 13 12 11.59 13.41z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.59 18.59 8 22.17 8 22.17 4.41 18.58 3 20 8 25 13 20 11.59 18.59z" }), children);
1118
1174
  });
1119
- if (process.env.NODE_ENV !== "production") Thunderstorm.propTypes = require_iconPropTypes.iconPropTypes;
1120
- const ThunderstormScattered = react.default.forwardRef(function ThunderstormScattered({ children, size = 16, ...rest }, ref) {
1121
- return react.default.createElement(require_Icon_js, {
1175
+ if (process.env.NODE_ENV !== "production") TextLineSpacing.propTypes = require_iconPropTypes.iconPropTypes;
1176
+ const TextLongParagraph = /* @__PURE__ */ react.default.forwardRef(function TextLongParagraph({ children, size = 16, ...rest }, ref) {
1177
+ return react.default.createElement(require_Icon.Icon, {
1122
1178
  width: size,
1123
1179
  height: size,
1124
1180
  ref,
@@ -1126,20 +1182,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1126
1182
  viewBox: "0 0 32 32",
1127
1183
  fill: "currentColor",
1128
1184
  ...rest
1129
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11Zm-4.0732,3.4893a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1130
- d: "M26.732 16.233H29.732V18.233H26.732z",
1131
- transform: "rotate(225 28.232 17.233)"
1132
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 10H32V12H29z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1133
- d: "M26.732 3.768H29.732V5.768H26.732z",
1134
- transform: "rotate(-45 28.232 4.768)"
1135
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 0H22V3H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1136
- d: "M12.268 3.768H15.268V5.768H12.268z",
1137
- transform: "rotate(225 13.768 4.768)"
1138
- }), children);
1185
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 24H20V26H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H26V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H26V14H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 6H26V8H6z" }), children);
1139
1186
  });
1140
- if (process.env.NODE_ENV !== "production") ThunderstormScattered.propTypes = require_iconPropTypes.iconPropTypes;
1141
- const ThunderstormScatteredNight = react.default.forwardRef(function ThunderstormScatteredNight({ children, size = 16, ...rest }, ref) {
1142
- return react.default.createElement(require_Icon_js, {
1187
+ if (process.env.NODE_ENV !== "production") TextLongParagraph.propTypes = require_iconPropTypes.iconPropTypes;
1188
+ const TextNewLine = /* @__PURE__ */ react.default.forwardRef(function TextNewLine({ children, size = 16, ...rest }, ref) {
1189
+ return react.default.createElement(require_Icon.Icon, {
1143
1190
  width: size,
1144
1191
  height: size,
1145
1192
  ref,
@@ -1147,11 +1194,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1147
1194
  viewBox: "0 0 32 32",
1148
1195
  fill: "currentColor",
1149
1196
  ...rest
1150
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.844,13.0347a1.52,1.52,0,0,0-1.231-.8658,5.3562,5.3562,0,0,1-3.4094-1.7158A6.4652,6.4652,0,0,1,23.9187,4.06a1.6039,1.6039,0,0,0-.3-1.5459,1.4547,1.4547,0,0,0-1.3591-.4922l-.0191.0039a7.8544,7.8544,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9549,5.9549,0,0,0,5.88-7.1455,7.502,7.502,0,0,0,4.8669-3.3A1.537,1.537,0,0,0,29.844,13.0347Zm-5.6926,2.9179a5.9658,5.9658,0,0,0-3.502-2.7085A7.5084,7.5084,0,0,0,18.0288,9.55a6.0085,6.0085,0,0,1,3.77-5.3335,8.4582,8.4582,0,0,0,1.9392,7.5967A7.4037,7.4037,0,0,0,27.64,14.041,5.4419,5.4419,0,0,1,24.1514,15.9526Z" }), children);
1197
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.5859,14.4141,24.1719,18H6V8H4V18a2.0024,2.0024,0,0,0,2,2H24.1719L20.586,23.5859,22,25l6-6-6-6Z" }), children);
1151
1198
  });
1152
- if (process.env.NODE_ENV !== "production") ThunderstormScatteredNight.propTypes = require_iconPropTypes.iconPropTypes;
1153
- const ThunderstormSevere = react.default.forwardRef(function ThunderstormSevere({ children, size = 16, ...rest }, ref) {
1154
- return react.default.createElement(require_Icon_js, {
1199
+ if (process.env.NODE_ENV !== "production") TextNewLine.propTypes = require_iconPropTypes.iconPropTypes;
1200
+ const TextScale = /* @__PURE__ */ react.default.forwardRef(function TextScale({ children, size = 16, ...rest }, ref) {
1201
+ return react.default.createElement(require_Icon.Icon, {
1155
1202
  width: size,
1156
1203
  height: size,
1157
1204
  ref,
@@ -1159,14 +1206,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1159
1206
  viewBox: "0 0 32 32",
1160
1207
  fill: "currentColor",
1161
1208
  ...rest
1162
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,21,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,9,32Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.901 30.496 14.165 29.504 17.309 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.9516,15A4.399,4.399,0,0,1,28,15.5,4.5049,4.5049,0,0,1,23.5,20H23v2h.5A6.5075,6.5075,0,0,0,30,15.5c0-.17-.0312-.333-.0444-.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1163
- fill: "none",
1164
- d: "M25.75,8h-1.5V4h1.5ZM25,9a1,1,0,1,0,1,1A1,1,0,0,0,25,9Z"
1165
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.9115,11.9355,25.6283.3706a.7181.7181,0,0,0-1.2568,0L18.0883,11.9355A.72.72,0,0,0,18.72,13H31.28A.72.72,0,0,0,31.9115,11.9355ZM24.25,4h1.5V8h-1.5ZM25,11a1,1,0,1,1,1-1A1,1,0,0,1,25,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.144,11.019l.8154-.0639.0991-.812a6.9863,6.9863,0,0,1,9.97-5.45L20,2.9468A8.9777,8.9777,0,0,0,7.2,9.1362,6.4929,6.4929,0,0,0,7.43,21.9043L6.1059,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.4471-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.3559-8.981Z" }), children);
1209
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 5 30 8 22 8 22 26 19 26 19 8 11 8 11 5 30 5z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 26 7 14 2 14 2 12 14 12 14 14 9 14 9 26 7 26z" }), children);
1166
1210
  });
1167
- if (process.env.NODE_ENV !== "production") ThunderstormSevere.propTypes = require_iconPropTypes.iconPropTypes;
1168
- const ThunderstormStrong = react.default.forwardRef(function ThunderstormStrong({ children, size = 16, ...rest }, ref) {
1169
- return react.default.createElement(require_Icon_js, {
1211
+ if (process.env.NODE_ENV !== "production") TextScale.propTypes = require_iconPropTypes.iconPropTypes;
1212
+ const TextSelection = /* @__PURE__ */ react.default.forwardRef(function TextSelection({ children, size = 16, ...rest }, ref) {
1213
+ return react.default.createElement(require_Icon.Icon, {
1170
1214
  width: size,
1171
1215
  height: size,
1172
1216
  ref,
@@ -1174,11 +1218,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1174
1218
  viewBox: "0 0 32 32",
1175
1219
  fill: "currentColor",
1176
1220
  ...rest
1177
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,21,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,9,32Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.901 30.496 14.165 29.504 17.31 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0,6.4929,6.4929,0,0,0,.23,12.7681L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20H23v2h.5A6.4974,6.4974,0,0,0,24.8008,9.1362Z" }), children);
1221
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,27H21a3,3,0,0,1-3-3V22a3,3,0,0,1,3-3h5V17a1,1,0,0,0-1-1H19V14h6a3,3,0,0,1,3,3Zm-7-6a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V21Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,7h3V5H13a4,4,0,0,0-3,1.38A4,4,0,0,0,7,5H4V7H7A2,2,0,0,1,9,9v5H5v2H9v7a2,2,0,0,1-2,2H4v2H7a4,4,0,0,0,3-1.38A4,4,0,0,0,13,27h3V25H13a2,2,0,0,1-2-2V16h4V14H11V9A2,2,0,0,1,13,7Z" }), children);
1178
1222
  });
1179
- if (process.env.NODE_ENV !== "production") ThunderstormStrong.propTypes = require_iconPropTypes.iconPropTypes;
1180
- const Ticket = react.default.forwardRef(function Ticket({ children, size = 16, ...rest }, ref) {
1181
- return react.default.createElement(require_Icon_js, {
1223
+ if (process.env.NODE_ENV !== "production") TextSelection.propTypes = require_iconPropTypes.iconPropTypes;
1224
+ const TextShortParagraph = /* @__PURE__ */ react.default.forwardRef(function TextShortParagraph({ children, size = 16, ...rest }, ref) {
1225
+ return react.default.createElement(require_Icon.Icon, {
1182
1226
  width: size,
1183
1227
  height: size,
1184
1228
  ref,
@@ -1186,11 +1230,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1186
1230
  viewBox: "0 0 32 32",
1187
1231
  fill: "currentColor",
1188
1232
  ...rest
1189
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,14a1,1,0,0,0,1-1V8a2,2,0,0,0-2-2H4A2,2,0,0,0,2,8v5a1,1,0,0,0,1,1,2,2,0,0,1,0,4,1,1,0,0,0-1,1v5a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19a1,1,0,0,0-1-1,2,2,0,0,1,0-4Zm-1,5.87V24H21V21H19v3H4V19.87a4,4,0,0,0,0-7.74V8H19v3h2V8h7v4.13a4,4,0,0,0,0,7.74Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 13H21V19H19z" }), children);
1233
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 18H20V20H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 12H26V14H6z" }), children);
1190
1234
  });
1191
- if (process.env.NODE_ENV !== "production") Ticket.propTypes = require_iconPropTypes.iconPropTypes;
1192
- const Tides = react.default.forwardRef(function Tides({ children, size = 16, ...rest }, ref) {
1193
- return react.default.createElement(require_Icon_js, {
1235
+ if (process.env.NODE_ENV !== "production") TextShortParagraph.propTypes = require_iconPropTypes.iconPropTypes;
1236
+ const TextSmallCaps = /* @__PURE__ */ react.default.forwardRef(function TextSmallCaps({ children, size = 16, ...rest }, ref) {
1237
+ return react.default.createElement(require_Icon.Icon, {
1194
1238
  width: size,
1195
1239
  height: size,
1196
1240
  ref,
@@ -1198,11 +1242,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1198
1242
  viewBox: "0 0 32 32",
1199
1243
  fill: "currentColor",
1200
1244
  ...rest
1201
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 7 9 2 4 7 5.413 8.416 8 5.833 8 14 10 14 10 5.833 12.586 8.414 14 7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.586 7.586 24 10.167 24 2 22 2 22 10.167 19.413 7.584 18 9 23 14 28 9 26.586 7.586z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,17a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,8,17a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,4,20H2v2H4a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,20,22H30V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,24,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,20,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,28H2v2H12a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,28,30h2V28Z" }), children);
1245
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 27 23 15 18 15 18 13 30 13 30 15 25 15 25 27 23 27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 27 11 8 2 8 2 6 22 6 22 8 13 8 13 27 11 27z" }), children);
1202
1246
  });
1203
- if (process.env.NODE_ENV !== "production") Tides.propTypes = require_iconPropTypes.iconPropTypes;
1204
- const Tif = react.default.forwardRef(function Tif({ children, size = 16, ...rest }, ref) {
1205
- return react.default.createElement(require_Icon_js, {
1247
+ if (process.env.NODE_ENV !== "production") TextSmallCaps.propTypes = require_iconPropTypes.iconPropTypes;
1248
+ const TextStrikethrough = /* @__PURE__ */ react.default.forwardRef(function TextStrikethrough({ children, size = 16, ...rest }, ref) {
1249
+ return react.default.createElement(require_Icon.Icon, {
1206
1250
  width: size,
1207
1251
  height: size,
1208
1252
  ref,
@@ -1210,20 +1254,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1210
1254
  viewBox: "0 0 32 32",
1211
1255
  fill: "currentColor",
1212
1256
  ...rest
1213
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z" }), /* @__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);
1257
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,15H17.9563c-.4522-.1237-.9037-.2324-1.3381-.3352-2.8077-.6641-4.396-1.1506-4.396-3.4231a2.8684,2.8684,0,0,1,.7866-2.145,4.7888,4.7888,0,0,1,3.0137-1.09c2.8291-.07,4.1347.8894,5.2011,2.35l1.6153-1.1792a7.4727,7.4727,0,0,0-6.83-3.1706,6.7726,6.7726,0,0,0-4.4,1.6611,4.8274,4.8274,0,0,0-1.3862,3.5735A4.3723,4.3723,0,0,0,11.9573,15H4v2H17.6519c1.9668.57,3.1432,1.3123,3.1733,3.3579a3.119,3.119,0,0,1-.8623,2.3931A5.8241,5.8241,0,0,1,16.2432,24a6.6344,6.6344,0,0,1-5.1451-2.6912L9.5649,22.593A8.5262,8.5262,0,0,0,16.2119,26c.0088-.0012.042,0,.1,0A7.67,7.67,0,0,0,21.36,24.1812a5.0779,5.0779,0,0,0,1.4648-3.8531A4.952,4.952,0,0,0,21.6753,17H28Z" }), children);
1214
1258
  });
1215
- if (process.env.NODE_ENV !== "production") Tif.propTypes = require_iconPropTypes.iconPropTypes;
1216
- const Time = react.default.forwardRef(function Time({ children, size = 16, ...rest }, ref) {
1217
- if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon_js, {
1218
- width: size,
1219
- height: size,
1220
- ref,
1221
- xmlns: "http://www.w3.org/2000/svg",
1222
- viewBox: "0 0 20 20",
1223
- fill: "currentColor",
1224
- ...rest
1225
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,19c-5,0-9-4-9-9s4-9,9-9s9,4,9,9S15,19,10,19z M10,2.3c-4.3,0-7.7,3.5-7.7,7.7s3.5,7.7,7.7,7.7s7.7-3.5,7.7-7.7 S14.3,2.3,10,2.3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 13.9 9.4 10.3 9.4 4 10.6 4 10.6 9.7 13.9 13z" }), children);
1226
- return react.default.createElement(require_Icon_js, {
1259
+ if (process.env.NODE_ENV !== "production") TextStrikethrough.propTypes = require_iconPropTypes.iconPropTypes;
1260
+ const TextSubscript = /* @__PURE__ */ react.default.forwardRef(function TextSubscript({ children, size = 16, ...rest }, ref) {
1261
+ return react.default.createElement(require_Icon.Icon, {
1227
1262
  width: size,
1228
1263
  height: size,
1229
1264
  ref,
@@ -1231,11 +1266,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1231
1266
  viewBox: "0 0 32 32",
1232
1267
  fill: "currentColor",
1233
1268
  ...rest
1234
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z" }), children);
1269
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 25 20 25 20 19 24 19 24 17 20 17 20 15 26 15 26 21 22 21 22 23 26 23 26 25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5 7 5 9 12 9 12 25 14 25 14 9 21 9 21 7 5 7z" }), children);
1235
1270
  });
1236
- if (process.env.NODE_ENV !== "production") Time.propTypes = require_iconPropTypes.iconPropTypes;
1237
- const TimeFilled = react.default.forwardRef(function TimeFilled({ children, size = 16, ...rest }, ref) {
1238
- return react.default.createElement(require_Icon_js, {
1271
+ if (process.env.NODE_ENV !== "production") TextSubscript.propTypes = require_iconPropTypes.iconPropTypes;
1272
+ const TextSuperscript = /* @__PURE__ */ react.default.forwardRef(function TextSuperscript({ children, size = 16, ...rest }, ref) {
1273
+ return react.default.createElement(require_Icon.Icon, {
1239
1274
  width: size,
1240
1275
  height: size,
1241
1276
  ref,
@@ -1243,14 +1278,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1243
1278
  viewBox: "0 0 32 32",
1244
1279
  fill: "currentColor",
1245
1280
  ...rest
1246
- }, /* @__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", {
1247
- fill: "none",
1248
- d: "M20.5872 22 15 16.4099 15 7 17 7 17 15.5822 22 20.5866 20.5872 22z"
1249
- }), children);
1281
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 17 23 17 23 11 27 11 27 9 23 9 23 7 29 7 29 13 25 13 25 15 29 15 29 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 7 4 9 11 9 11 25 13 25 13 9 20 9 20 7 4 7z" }), children);
1250
1282
  });
1251
- if (process.env.NODE_ENV !== "production") TimeFilled.propTypes = require_iconPropTypes.iconPropTypes;
1252
- const TimePlot = react.default.forwardRef(function TimePlot({ children, size = 16, ...rest }, ref) {
1253
- return react.default.createElement(require_Icon_js, {
1283
+ if (process.env.NODE_ENV !== "production") TextSuperscript.propTypes = require_iconPropTypes.iconPropTypes;
1284
+ const TextTracking = /* @__PURE__ */ react.default.forwardRef(function TextTracking({ children, size = 16, ...rest }, ref) {
1285
+ return react.default.createElement(require_Icon.Icon, {
1254
1286
  width: size,
1255
1287
  height: size,
1256
1288
  ref,
@@ -1258,11 +1290,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1258
1290
  viewBox: "0 0 32 32",
1259
1291
  fill: "currentColor",
1260
1292
  ...rest
1261
- }, /* @__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);
1293
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25.29 19.29 23.88 20.71 26.17 23 5.83 23 8.12 20.71 6.71 19.29 2 24 6.71 28.71 8.12 27.29 5.83 25 26.17 25 23.88 27.29 25.29 28.71 30 24 25.29 19.29z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,17h2L23,3H21L16,17h2l1-3h6Zm-6.33-5L22,5l2.33,7Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 3 10 15 6 3 4 3 9 17 11 17 16 3 14 3z" }), children);
1262
1294
  });
1263
- if (process.env.NODE_ENV !== "production") TimePlot.propTypes = require_iconPropTypes.iconPropTypes;
1264
- const Timer = react.default.forwardRef(function Timer({ children, size = 16, ...rest }, ref) {
1265
- return react.default.createElement(require_Icon_js, {
1295
+ if (process.env.NODE_ENV !== "production") TextTracking.propTypes = require_iconPropTypes.iconPropTypes;
1296
+ const TextUnderline = /* @__PURE__ */ react.default.forwardRef(function TextUnderline({ children, size = 16, ...rest }, ref) {
1297
+ return react.default.createElement(require_Icon.Icon, {
1266
1298
  width: size,
1267
1299
  height: size,
1268
1300
  ref,
@@ -1270,11 +1302,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1270
1302
  viewBox: "0 0 32 32",
1271
1303
  fill: "currentColor",
1272
1304
  ...rest
1273
- }, /* @__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);
1305
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 26H28V28H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23a7,7,0,0,1-7-7V5h2V16a5,5,0,0,0,10,0V5h2V16A7,7,0,0,1,16,23Z" }), children);
1274
1306
  });
1275
- if (process.env.NODE_ENV !== "production") Timer.propTypes = require_iconPropTypes.iconPropTypes;
1276
- const TimingBelt = react.default.forwardRef(function TimingBelt({ children, size = 16, ...rest }, ref) {
1277
- return react.default.createElement(require_Icon_js, {
1307
+ if (process.env.NODE_ENV !== "production") TextUnderline.propTypes = require_iconPropTypes.iconPropTypes;
1308
+ const TextVerticalAlignment = /* @__PURE__ */ react.default.forwardRef(function TextVerticalAlignment({ children, size = 16, ...rest }, ref) {
1309
+ return react.default.createElement(require_Icon.Icon, {
1278
1310
  width: size,
1279
1311
  height: size,
1280
1312
  ref,
@@ -1282,19 +1314,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1282
1314
  viewBox: "0 0 32 32",
1283
1315
  fill: "currentColor",
1284
1316
  ...rest
1285
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("circle", {
1286
- cx: "16",
1287
- cy: "24",
1288
- r: "1",
1289
- strokeWidth: "0"
1290
- }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1291
- strokeWidth: "0",
1292
- 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"
1293
- }), children);
1317
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28H30V30H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 23H30V25H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.8458,30H13L8.64,20H6.36L2,30H4.1542l.8-2h5.0916ZM5.7541,26,7.5,21.6347,9.2459,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H30V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 7H30V9H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 2H30V4H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.8458,12H13L8.64,2H6.36L2,12H4.1542l.8-2h5.0916ZM5.7541,8,7.5,3.6347,9.2459,8Z" }), children);
1294
1318
  });
1295
- if (process.env.NODE_ENV !== "production") TimingBelt.propTypes = require_iconPropTypes.iconPropTypes;
1296
- const ToggleOffFill = react.default.forwardRef(function ToggleOffFill({ children, size = 16, ...rest }, ref) {
1297
- return react.default.createElement(require_Icon_js, {
1319
+ if (process.env.NODE_ENV !== "production") TextVerticalAlignment.propTypes = require_iconPropTypes.iconPropTypes;
1320
+ const TextWrap = /* @__PURE__ */ react.default.forwardRef(function TextWrap({ children, size = 16, ...rest }, ref) {
1321
+ return react.default.createElement(require_Icon.Icon, {
1298
1322
  width: size,
1299
1323
  height: size,
1300
1324
  ref,
@@ -1302,11 +1326,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1302
1326
  viewBox: "0 0 32 32",
1303
1327
  fill: "currentColor",
1304
1328
  ...rest
1305
- }, /* @__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);
1329
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 23H12V25H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.5232,14H4v2H24.5a3.5,3.5,0,0,1,0,7H18.8281l2.586-2.5859L20,19l-5,5,5,5,1.4141-1.4141L18.8281,25H24.533a5.5,5.5,0,0,0-.01-11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 5H28V7H4z" }), children);
1306
1330
  });
1307
- if (process.env.NODE_ENV !== "production") ToggleOffFill.propTypes = require_iconPropTypes.iconPropTypes;
1308
- const ToggleOnFill = react.default.forwardRef(function ToggleOnFill({ children, size = 16, ...rest }, ref) {
1309
- return react.default.createElement(require_Icon_js, {
1331
+ if (process.env.NODE_ENV !== "production") TextWrap.propTypes = require_iconPropTypes.iconPropTypes;
1332
+ const WatsonHealthTextAnnotationToggle = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthTextAnnotationToggle({ children, size = 16, ...rest }, ref) {
1333
+ return react.default.createElement(require_Icon.Icon, {
1310
1334
  width: size,
1311
1335
  height: size,
1312
1336
  ref,
@@ -1314,11 +1338,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1314
1338
  viewBox: "0 0 32 32",
1315
1339
  fill: "currentColor",
1316
1340
  ...rest
1317
- }, /* @__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);
1341
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.537,13.76,26.24,10.463a1.5862,1.5862,0,0,0-2.24,0L10,24.4674V30h5.5326L29.537,16a1.5862,1.5862,0,0,0,0-2.24ZM14.7042,28H12V25.2958l9.4409-9.4409,2.7042,2.7042ZM25.5591,17.145,22.855,14.4409l2.2672-2.2672,2.7042,2.7042Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 17 13 17 13 10 16 10 16 8 8 8 8 10 11 10 11 17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,20H4V4H20V8h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H8Z" }), children);
1318
1342
  });
1319
- if (process.env.NODE_ENV !== "production") ToggleOnFill.propTypes = require_iconPropTypes.iconPropTypes;
1320
- const ToggleOff = react.default.forwardRef(function ToggleOff({ children, size = 16, ...rest }, ref) {
1321
- return react.default.createElement(require_Icon_js, {
1343
+ if (process.env.NODE_ENV !== "production") WatsonHealthTextAnnotationToggle.propTypes = require_iconPropTypes.iconPropTypes;
1344
+ const TextLink = /* @__PURE__ */ react.default.forwardRef(function TextLink({ children, size = 16, ...rest }, ref) {
1345
+ return react.default.createElement(require_Icon.Icon, {
1322
1346
  width: size,
1323
1347
  height: size,
1324
1348
  ref,
@@ -1326,11 +1350,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1326
1350
  viewBox: "0 0 32 32",
1327
1351
  fill: "currentColor",
1328
1352
  ...rest
1329
- }, /* @__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);
1353
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18.7061,27.585a5.2615,5.2615,0,0,1-3.7227-8.9834l1.415,1.414a3.2638,3.2638,0,1,0,4.6153,4.6162l6.03-6.03a3.264,3.264,0,0,0-4.6162-4.6158l-1.414-1.414a5.2637,5.2637,0,0,1,7.4443,7.4438l-6.03,6.03A5.2461,5.2461,0,0,1,18.7061,27.585Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.2642,29.9971A5.2619,5.2619,0,0,1,6.542,21.0137l6.03-6.03a5.2636,5.2636,0,1,1,7.4438,7.4438l-1.414-1.414a3.2639,3.2639,0,1,0-4.6158-4.6158l-6.03,6.03a3.264,3.264,0,0,0,4.6157,4.6162l1.414,1.4141A5.2452,5.2452,0,0,1,10.2642,29.9971Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 10H10V12H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 6H14V8H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H14V4H2z" }), children);
1330
1354
  });
1331
- if (process.env.NODE_ENV !== "production") ToggleOff.propTypes = require_iconPropTypes.iconPropTypes;
1332
- const ToggleOn = react.default.forwardRef(function ToggleOn({ children, size = 16, ...rest }, ref) {
1333
- return react.default.createElement(require_Icon_js, {
1355
+ if (process.env.NODE_ENV !== "production") TextLink.propTypes = require_iconPropTypes.iconPropTypes;
1356
+ const TextLinkAnalysis = /* @__PURE__ */ react.default.forwardRef(function TextLinkAnalysis({ children, size = 16, ...rest }, ref) {
1357
+ return react.default.createElement(require_Icon.Icon, {
1334
1358
  width: size,
1335
1359
  height: size,
1336
1360
  ref,
@@ -1338,11 +1362,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1338
1362
  viewBox: "0 0 32 32",
1339
1363
  fill: "currentColor",
1340
1364
  ...rest
1341
- }, /* @__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);
1365
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 10H16V12H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H20V8H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 2H20V4H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z" }), children);
1342
1366
  });
1343
- if (process.env.NODE_ENV !== "production") ToggleOn.propTypes = require_iconPropTypes.iconPropTypes;
1344
- const ToolBox = react.default.forwardRef(function ToolBox({ children, size = 16, ...rest }, ref) {
1345
- return react.default.createElement(require_Icon_js, {
1367
+ if (process.env.NODE_ENV !== "production") TextLinkAnalysis.propTypes = require_iconPropTypes.iconPropTypes;
1368
+ const TextMining = /* @__PURE__ */ react.default.forwardRef(function TextMining({ children, size = 16, ...rest }, ref) {
1369
+ return react.default.createElement(require_Icon.Icon, {
1346
1370
  width: size,
1347
1371
  height: size,
1348
1372
  ref,
@@ -1350,11 +1374,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1350
1374
  viewBox: "0 0 32 32",
1351
1375
  fill: "currentColor",
1352
1376
  ...rest
1353
- }, /* @__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);
1377
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 28H26V30H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 24H30V26H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 20H30V22H18z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z" }), children);
1354
1378
  });
1355
- if (process.env.NODE_ENV !== "production") ToolBox.propTypes = require_iconPropTypes.iconPropTypes;
1356
- const ToolKit = react.default.forwardRef(function ToolKit({ children, size = 16, ...rest }, ref) {
1357
- return react.default.createElement(require_Icon_js, {
1379
+ if (process.env.NODE_ENV !== "production") TextMining.propTypes = require_iconPropTypes.iconPropTypes;
1380
+ const TextMiningApplier = /* @__PURE__ */ react.default.forwardRef(function TextMiningApplier({ children, size = 16, ...rest }, ref) {
1381
+ return react.default.createElement(require_Icon.Icon, {
1358
1382
  width: size,
1359
1383
  height: size,
1360
1384
  ref,
@@ -1362,11 +1386,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1362
1386
  viewBox: "0 0 32 32",
1363
1387
  fill: "currentColor",
1364
1388
  ...rest
1365
- }, /* @__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);
1389
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 19 27 24 20 29 20 19z" }), children);
1366
1390
  });
1367
- if (process.env.NODE_ENV !== "production") ToolKit.propTypes = require_iconPropTypes.iconPropTypes;
1368
- const Tools = react.default.forwardRef(function Tools({ children, size = 16, ...rest }, ref) {
1369
- return react.default.createElement(require_Icon_js, {
1391
+ if (process.env.NODE_ENV !== "production") TextMiningApplier.propTypes = require_iconPropTypes.iconPropTypes;
1392
+ const Theater = /* @__PURE__ */ react.default.forwardRef(function Theater({ children, size = 16, ...rest }, ref) {
1393
+ return react.default.createElement(require_Icon.Icon, {
1370
1394
  width: size,
1371
1395
  height: size,
1372
1396
  ref,
@@ -1374,11 +1398,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1374
1398
  viewBox: "0 0 32 32",
1375
1399
  fill: "currentColor",
1376
1400
  ...rest
1377
- }, /* @__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);
1401
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,25a6.9908,6.9908,0,0,1-5.833-3.1287l1.666-1.1074a5.0007,5.0007,0,0,0,8.334,0l1.666,1.1074A6.9908,6.9908,0,0,1,20,25Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,24,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,16,14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,8H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V14a10.01,10.01,0,0,0,8.8027,9.9214A9.9989,9.9989,0,0,0,30,20V10A2.0023,2.0023,0,0,0,28,8ZM4,14V4H20V8H12a2.0023,2.0023,0,0,0-2,2V20a9.9628,9.9628,0,0,0,.168,1.78A8.0081,8.0081,0,0,1,4,14Zm24,6a8,8,0,0,1-16,0V10H28Z" }), children);
1378
1402
  });
1379
- if (process.env.NODE_ENV !== "production") Tools.propTypes = require_iconPropTypes.iconPropTypes;
1380
- const ToolsAlt = react.default.forwardRef(function ToolsAlt({ children, size = 16, ...rest }, ref) {
1381
- return react.default.createElement(require_Icon_js, {
1403
+ if (process.env.NODE_ENV !== "production") Theater.propTypes = require_iconPropTypes.iconPropTypes;
1404
+ const ThisSideUp = /* @__PURE__ */ react.default.forwardRef(function ThisSideUp({ children, size = 16, ...rest }, ref) {
1405
+ return react.default.createElement(require_Icon.Icon, {
1382
1406
  width: size,
1383
1407
  height: size,
1384
1408
  ref,
@@ -1386,11 +1410,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1386
1410
  viewBox: "0 0 32 32",
1387
1411
  fill: "currentColor",
1388
1412
  ...rest
1389
- }, /* @__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);
1413
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M7 5.828 7 24 9 24 9 5.828 12.586 9.414 14 8 8 2 2 8 3.414 9.414 7 5.828z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23 5.828 23 24 25 24 25 5.828 28.586 9.414 30 8 24 2 18 8 19.414 9.414 23 5.828z" }), children);
1390
1414
  });
1391
- if (process.env.NODE_ENV !== "production") ToolsAlt.propTypes = require_iconPropTypes.iconPropTypes;
1392
- const TopDataSets = react.default.forwardRef(function TopDataSets({ children, size = 16, ...rest }, ref) {
1393
- return react.default.createElement(require_Icon_js, {
1415
+ if (process.env.NODE_ENV !== "production") ThisSideUp.propTypes = require_iconPropTypes.iconPropTypes;
1416
+ const WatsonHealthThreshold = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthThreshold({ children, size = 16, ...rest }, ref) {
1417
+ return react.default.createElement(require_Icon.Icon, {
1394
1418
  width: size,
1395
1419
  height: size,
1396
1420
  ref,
@@ -1398,11 +1422,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1398
1422
  viewBox: "0 0 32 32",
1399
1423
  fill: "currentColor",
1400
1424
  ...rest
1401
- }, /* @__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);
1425
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM6,6H26V16H24v2h2v2H24v2h2v2H24v2H22V24H20v2H18V24H16v2H14V24H12v2H10V24H8v2H6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 20H10V22H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 20H14V22H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 20H18V22H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 20H22V22H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 16H10V18H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 16H18V18H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 16H22V18H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 12H22V14H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 8H22V10H20z" }), children);
1402
1426
  });
1403
- if (process.env.NODE_ENV !== "production") TopDataSets.propTypes = require_iconPropTypes.iconPropTypes;
1404
- const TopPrograms = react.default.forwardRef(function TopPrograms({ children, size = 16, ...rest }, ref) {
1405
- return react.default.createElement(require_Icon_js, {
1427
+ if (process.env.NODE_ENV !== "production") WatsonHealthThreshold.propTypes = require_iconPropTypes.iconPropTypes;
1428
+ const Thumbnail_1 = /* @__PURE__ */ react.default.forwardRef(function Thumbnail_1({ children, size = 16, ...rest }, ref) {
1429
+ return react.default.createElement(require_Icon.Icon, {
1406
1430
  width: size,
1407
1431
  height: size,
1408
1432
  ref,
@@ -1410,11 +1434,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1410
1434
  viewBox: "0 0 32 32",
1411
1435
  fill: "currentColor",
1412
1436
  ...rest
1413
- }, /* @__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);
1437
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20ZM4,4V18H28V4Z" }), children);
1414
1438
  });
1415
- if (process.env.NODE_ENV !== "production") TopPrograms.propTypes = require_iconPropTypes.iconPropTypes;
1416
- const Tornado = react.default.forwardRef(function Tornado({ children, size = 16, ...rest }, ref) {
1417
- return react.default.createElement(require_Icon_js, {
1439
+ if (process.env.NODE_ENV !== "production") Thumbnail_1.propTypes = require_iconPropTypes.iconPropTypes;
1440
+ const Thumbnail_2 = /* @__PURE__ */ react.default.forwardRef(function Thumbnail_2({ children, size = 16, ...rest }, ref) {
1441
+ return react.default.createElement(require_Icon.Icon, {
1418
1442
  width: size,
1419
1443
  height: size,
1420
1444
  ref,
@@ -1422,11 +1446,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1422
1446
  viewBox: "0 0 32 32",
1423
1447
  fill: "currentColor",
1424
1448
  ...rest
1425
- }, /* @__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);
1449
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,20H4a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,20ZM4,14v4H8V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,20H14a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,20Zm-4-6v4h4V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,20H24a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,20Zm-4-6v4h4V14Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,10H4A2,2,0,0,1,2,8V4A2,2,0,0,1,4,2H8a2,2,0,0,1,2,2V8A2,2,0,0,1,8,10ZM4,4V8H8V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,10H14a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,18,10ZM14,4V8h4V4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,10H24a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,28,10ZM24,4V8h4V4Z" }), children);
1426
1450
  });
1427
- if (process.env.NODE_ENV !== "production") Tornado.propTypes = require_iconPropTypes.iconPropTypes;
1428
- const TornadoWarning = react.default.forwardRef(function TornadoWarning({ children, size = 16, ...rest }, ref) {
1429
- return react.default.createElement(require_Icon_js, {
1451
+ if (process.env.NODE_ENV !== "production") Thumbnail_2.propTypes = require_iconPropTypes.iconPropTypes;
1452
+ const WatsonHealthThumbnailPreview = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthThumbnailPreview({ children, size = 16, ...rest }, ref) {
1453
+ return react.default.createElement(require_Icon.Icon, {
1430
1454
  width: size,
1431
1455
  height: size,
1432
1456
  ref,
@@ -1434,14 +1458,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1434
1458
  viewBox: "0 0 32 32",
1435
1459
  fill: "currentColor",
1436
1460
  ...rest
1437
- }, /* @__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", {
1438
- fill: "none",
1439
- d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"
1440
- }), /* @__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);
1461
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,12H4a2.0023,2.0023,0,0,0-2,2V28a2.002,2.002,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V14A2.0027,2.0027,0,0,0,28,12ZM20,28H12V27a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Zm8,0H22V27a3.0033,3.0033,0,0,0-3-3H13a3.0033,3.0033,0,0,0-3,3v1H4V14H28.002Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,23a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,16,23Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,16,17Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,4V8a2.0027,2.0027,0,0,1-2,2H24a2.0027,2.0027,0,0,1-2-2V4a2.0027,2.0027,0,0,1,2-2h4A2.0027,2.0027,0,0,1,30,4ZM28,8l.002-4H24V8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,4V8a2.0027,2.0027,0,0,1-2,2H14a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h4A2.0027,2.0027,0,0,1,20,4ZM18,8l.002-4H14V8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,4V8a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,8V4A2.0023,2.0023,0,0,1,4,2H8A2.0023,2.0023,0,0,1,10,4ZM8,8l.0015-4H4V8Z" }), children);
1441
1462
  });
1442
- if (process.env.NODE_ENV !== "production") TornadoWarning.propTypes = require_iconPropTypes.iconPropTypes;
1443
- const Touch_1 = react.default.forwardRef(function Touch_1({ children, size = 16, ...rest }, ref) {
1444
- return react.default.createElement(require_Icon_js, {
1463
+ if (process.env.NODE_ENV !== "production") WatsonHealthThumbnailPreview.propTypes = require_iconPropTypes.iconPropTypes;
1464
+ const ThumbsDown = /* @__PURE__ */ react.default.forwardRef(function ThumbsDown({ children, size = 16, ...rest }, ref) {
1465
+ return react.default.createElement(require_Icon.Icon, {
1445
1466
  width: size,
1446
1467
  height: size,
1447
1468
  ref,
@@ -1449,11 +1470,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1449
1470
  viewBox: "0 0 32 32",
1450
1471
  fill: "currentColor",
1451
1472
  ...rest
1452
- }, /* @__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);
1473
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,16V9a7.0078,7.0078,0,0,0-7-7H2V16H8.4648l3.5774,5.3662.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H17a3.0033,3.0033,0,0,0,3-3V20h6A4.0045,4.0045,0,0,0,30,16ZM8,14H4V4H8Zm20,2a2.0025,2.0025,0,0,1-2,2H18v8a1.0008,1.0008,0,0,1-1,1H14.8672l-.9094-6.3662L10,14.6973V4H23a5.0057,5.0057,0,0,1,5,5Z" }), children);
1453
1474
  });
1454
- if (process.env.NODE_ENV !== "production") Touch_1.propTypes = require_iconPropTypes.iconPropTypes;
1455
- const Touch_1Filled = react.default.forwardRef(function Touch_1Filled({ children, size = 16, ...rest }, ref) {
1456
- return react.default.createElement(require_Icon_js, {
1475
+ if (process.env.NODE_ENV !== "production") ThumbsDown.propTypes = require_iconPropTypes.iconPropTypes;
1476
+ const ThumbsDownFilled = /* @__PURE__ */ react.default.forwardRef(function ThumbsDownFilled({ children, size = 16, ...rest }, ref) {
1477
+ return react.default.createElement(require_Icon.Icon, {
1457
1478
  width: size,
1458
1479
  height: size,
1459
1480
  ref,
@@ -1461,11 +1482,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1461
1482
  viewBox: "0 0 32 32",
1462
1483
  fill: "currentColor",
1463
1484
  ...rest
1464
- }, /* @__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);
1485
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 2H7V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,2H9V16.8027l3.0422,4.5635.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H15a3.0033,3.0033,0,0,0,3-3V20h8a4.0045,4.0045,0,0,0,4-4V9A7.0078,7.0078,0,0,0,23,2Z" }), children);
1465
1486
  });
1466
- if (process.env.NODE_ENV !== "production") Touch_1Filled.propTypes = require_iconPropTypes.iconPropTypes;
1467
- const Touch_1Down = react.default.forwardRef(function Touch_1Down({ children, size = 16, ...rest }, ref) {
1468
- return react.default.createElement(require_Icon_js, {
1487
+ if (process.env.NODE_ENV !== "production") ThumbsDownFilled.propTypes = require_iconPropTypes.iconPropTypes;
1488
+ const ThumbsUp = /* @__PURE__ */ react.default.forwardRef(function ThumbsUp({ children, size = 16, ...rest }, ref) {
1489
+ return react.default.createElement(require_Icon.Icon, {
1469
1490
  width: size,
1470
1491
  height: size,
1471
1492
  ref,
@@ -1473,11 +1494,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1473
1494
  viewBox: "0 0 32 32",
1474
1495
  fill: "currentColor",
1475
1496
  ...rest
1476
- }, /* @__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);
1497
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,12H20V6a3.0033,3.0033,0,0,0-3-3H14.8672a2.0094,2.0094,0,0,0-1.98,1.7173l-.8453,5.9165L8.4648,16H2V30H23a7.0078,7.0078,0,0,0,7-7V16A4.0045,4.0045,0,0,0,26,12ZM8,28H4V18H8Zm20-5a5.0057,5.0057,0,0,1-5,5H10V17.3027l3.9578-5.9365L14.8672,5H17a1.0008,1.0008,0,0,1,1,1v8h8a2.0025,2.0025,0,0,1,2,2Z" }), children);
1477
1498
  });
1478
- if (process.env.NODE_ENV !== "production") Touch_1Down.propTypes = require_iconPropTypes.iconPropTypes;
1479
- const Touch_1DownFilled = react.default.forwardRef(function Touch_1DownFilled({ children, size = 16, ...rest }, ref) {
1480
- return react.default.createElement(require_Icon_js, {
1499
+ if (process.env.NODE_ENV !== "production") ThumbsUp.propTypes = require_iconPropTypes.iconPropTypes;
1500
+ const ThumbsUpFilled = /* @__PURE__ */ react.default.forwardRef(function ThumbsUpFilled({ children, size = 16, ...rest }, ref) {
1501
+ return react.default.createElement(require_Icon.Icon, {
1481
1502
  width: size,
1482
1503
  height: size,
1483
1504
  ref,
@@ -1485,11 +1506,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1485
1506
  viewBox: "0 0 32 32",
1486
1507
  fill: "currentColor",
1487
1508
  ...rest
1488
- }, /* @__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);
1509
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 16H7V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,30H9V15.1973l3.0422-4.5635.8453-5.9165A2.0094,2.0094,0,0,1,14.8672,3H15a3.0033,3.0033,0,0,1,3,3v6h8a4.0045,4.0045,0,0,1,4,4v7A7.0078,7.0078,0,0,1,23,30Z" }), children);
1489
1510
  });
1490
- if (process.env.NODE_ENV !== "production") Touch_1DownFilled.propTypes = require_iconPropTypes.iconPropTypes;
1491
- const Touch_2 = react.default.forwardRef(function Touch_2({ children, size = 16, ...rest }, ref) {
1492
- return react.default.createElement(require_Icon_js, {
1511
+ if (process.env.NODE_ENV !== "production") ThumbsUpFilled.propTypes = require_iconPropTypes.iconPropTypes;
1512
+ const ThumbsUpDouble = /* @__PURE__ */ react.default.forwardRef(function ThumbsUpDouble({ children, size = 16, ...rest }, ref) {
1513
+ return react.default.createElement(require_Icon.Icon, {
1493
1514
  width: size,
1494
1515
  height: size,
1495
1516
  ref,
@@ -1497,11 +1518,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1497
1518
  viewBox: "0 0 32 32",
1498
1519
  fill: "currentColor",
1499
1520
  ...rest
1500
- }, /* @__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);
1521
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.7637,13.9999h-5.7637l-.0024-4.4316c0-2.1011-1.2324-3.5684-2.9976-3.5684h-1c-1.5273,0-1.7539,1.5273-1.8755,2.3477-.0225.1509-.6826,4.8052-.6826,4.8052l-2.0431,3.8472H2v13h16.3325c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295h0ZM4,27.9999v-9h1.9998l-.0017,9h-1.9981ZM23,23.3324c0,2.5737-2.0938,4.6675-4.6675,4.6675h-10.3325v-9.751l2.3735-4.4692s.7983-5.6035.8433-5.7798h.7832c.9697,0,.9976,1.4077.9976,1.5684l.0024,6.4316h7.7637c1.2344,0,2.2363.9951,2.2363,2.2295v5.103ZM31,13.2295v5.103c0,2.321-1.194,4.3667-2.9983,5.5613l-1.0042-1.7393c1.2073-.8446,2.0024-2.2402,2.0024-3.8221v-5.103c0-1.2344-1.0019-2.2295-2.2363-2.2295h-7.7637l-.0024-6.4315c0-.1608-.0279-1.5685-.9976-1.5685h-.7832c-.0174.0681-.1475.948-.3002,2.0001h-2.0273c.1234-.8691.2266-1.5944.2352-1.6523.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296Z" }), children);
1501
1522
  });
1502
- if (process.env.NODE_ENV !== "production") Touch_2.propTypes = require_iconPropTypes.iconPropTypes;
1503
- const Touch_2Filled = react.default.forwardRef(function Touch_2Filled({ children, size = 16, ...rest }, ref) {
1504
- return react.default.createElement(require_Icon_js, {
1523
+ if (process.env.NODE_ENV !== "production") ThumbsUpDouble.propTypes = require_iconPropTypes.iconPropTypes;
1524
+ const ThumbsUpDoubleFilled = /* @__PURE__ */ react.default.forwardRef(function ThumbsUpDoubleFilled({ children, size = 16, ...rest }, ref) {
1525
+ return react.default.createElement(require_Icon.Icon, {
1505
1526
  width: size,
1506
1527
  height: size,
1507
1528
  ref,
@@ -1509,11 +1530,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1509
1530
  viewBox: "0 0 32 32",
1510
1531
  fill: "currentColor",
1511
1532
  ...rest
1512
- }, /* @__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);
1533
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,13.2295v5.103c0,2.7286-1.6495,5.0769-4.0023,6.1077v-8.2107c0-2.3369-2.1663-4.2478-4.2363-4.2295h-5.7637s-.0024-3.4316-.0024-3.4316c-.0933-2.0102-1.1168-3.4102-2.1021-3.5719.0672-.4727.2256-1.6102.2313-1.6488.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296ZM20.7614,14h0s-5.7637-.0001-5.7637-.0001l-.0024-4.4315c0-2.1012-1.2324-3.5685-2.9976-3.5685h-1c-1.5273,0-1.7539,1.5272-1.8755,2.3478-.0225.1509-.6826,4.8052-.6826,4.8052l-1.4423,2.7158-.0019,14.1313h11.3348c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295ZM4.9951,30l.0026-13H1.9977v13s2.9974,0,2.9974,0Z" }), children);
1513
1534
  });
1514
- if (process.env.NODE_ENV !== "production") Touch_2Filled.propTypes = require_iconPropTypes.iconPropTypes;
1515
- const TouchInteraction = react.default.forwardRef(function TouchInteraction({ children, size = 16, ...rest }, ref) {
1516
- return react.default.createElement(require_Icon_js, {
1535
+ if (process.env.NODE_ENV !== "production") ThumbsUpDoubleFilled.propTypes = require_iconPropTypes.iconPropTypes;
1536
+ const Thunderstorm = /* @__PURE__ */ react.default.forwardRef(function Thunderstorm({ children, size = 16, ...rest }, ref) {
1537
+ return react.default.createElement(require_Icon.Icon, {
1517
1538
  width: size,
1518
1539
  height: size,
1519
1540
  ref,
@@ -1521,11 +1542,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1521
1542
  viewBox: "0 0 32 32",
1522
1543
  fill: "currentColor",
1523
1544
  ...rest
1524
- }, /* @__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);
1545
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.87 30.5 14.13 29.5 17.28 24 11.28 24 16.13 15.5 17.87 16.5 14.72 22 20.72 22 15.87 30.5z" }), children);
1525
1546
  });
1526
- if (process.env.NODE_ENV !== "production") TouchInteraction.propTypes = require_iconPropTypes.iconPropTypes;
1527
- const Tour = react.default.forwardRef(function Tour({ children, size = 16, ...rest }, ref) {
1528
- return react.default.createElement(require_Icon_js, {
1547
+ if (process.env.NODE_ENV !== "production") Thunderstorm.propTypes = require_iconPropTypes.iconPropTypes;
1548
+ const ThunderstormScattered = /* @__PURE__ */ react.default.forwardRef(function ThunderstormScattered({ children, size = 16, ...rest }, ref) {
1549
+ return react.default.createElement(require_Icon.Icon, {
1529
1550
  width: size,
1530
1551
  height: size,
1531
1552
  ref,
@@ -1533,15 +1554,20 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1533
1554
  viewBox: "0 0 32 32",
1534
1555
  fill: "currentColor",
1535
1556
  ...rest
1536
- }, /* @__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", {
1537
- cx: "24",
1538
- cy: "8",
1539
- r: "2"
1540
- }), /* @__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);
1557
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11Zm-4.0732,3.4893a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1558
+ d: "M26.732 16.233H29.732V18.233H26.732z",
1559
+ transform: "rotate(225 28.232 17.233)"
1560
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 10H32V12H29z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1561
+ d: "M26.732 3.768H29.732V5.768H26.732z",
1562
+ transform: "rotate(-45 28.232 4.768)"
1563
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 0H22V3H20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1564
+ d: "M12.268 3.768H15.268V5.768H12.268z",
1565
+ transform: "rotate(225 13.768 4.768)"
1566
+ }), children);
1541
1567
  });
1542
- if (process.env.NODE_ENV !== "production") Tour.propTypes = require_iconPropTypes.iconPropTypes;
1543
- const Trace = react.default.forwardRef(function Trace({ children, size = 16, ...rest }, ref) {
1544
- return react.default.createElement(require_Icon_js, {
1568
+ if (process.env.NODE_ENV !== "production") ThunderstormScattered.propTypes = require_iconPropTypes.iconPropTypes;
1569
+ const ThunderstormScatteredNight = /* @__PURE__ */ react.default.forwardRef(function ThunderstormScatteredNight({ children, size = 16, ...rest }, ref) {
1570
+ return react.default.createElement(require_Icon.Icon, {
1545
1571
  width: size,
1546
1572
  height: size,
1547
1573
  ref,
@@ -1549,11 +1575,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1549
1575
  viewBox: "0 0 32 32",
1550
1576
  fill: "currentColor",
1551
1577
  ...rest
1552
- }, /* @__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);
1578
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.844,13.0347a1.52,1.52,0,0,0-1.231-.8658,5.3562,5.3562,0,0,1-3.4094-1.7158A6.4652,6.4652,0,0,1,23.9187,4.06a1.6039,1.6039,0,0,0-.3-1.5459,1.4547,1.4547,0,0,0-1.3591-.4922l-.0191.0039a7.8544,7.8544,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9549,5.9549,0,0,0,5.88-7.1455,7.502,7.502,0,0,0,4.8669-3.3A1.537,1.537,0,0,0,29.844,13.0347Zm-5.6926,2.9179a5.9658,5.9658,0,0,0-3.502-2.7085A7.5084,7.5084,0,0,0,18.0288,9.55a6.0085,6.0085,0,0,1,3.77-5.3335,8.4582,8.4582,0,0,0,1.9392,7.5967A7.4037,7.4037,0,0,0,27.64,14.041,5.4419,5.4419,0,0,1,24.1514,15.9526Z" }), children);
1553
1579
  });
1554
- if (process.env.NODE_ENV !== "production") Trace.propTypes = require_iconPropTypes.iconPropTypes;
1555
- const TrafficEvent = react.default.forwardRef(function TrafficEvent({ children, size = 16, ...rest }, ref) {
1556
- return react.default.createElement(require_Icon_js, {
1580
+ if (process.env.NODE_ENV !== "production") ThunderstormScatteredNight.propTypes = require_iconPropTypes.iconPropTypes;
1581
+ const ThunderstormSevere = /* @__PURE__ */ react.default.forwardRef(function ThunderstormSevere({ children, size = 16, ...rest }, ref) {
1582
+ return react.default.createElement(require_Icon.Icon, {
1557
1583
  width: size,
1558
1584
  height: size,
1559
1585
  ref,
@@ -1561,11 +1587,14 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1561
1587
  viewBox: "0 0 32 32",
1562
1588
  fill: "currentColor",
1563
1589
  ...rest
1564
- }, /* @__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);
1590
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,21,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,9,32Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.901 30.496 14.165 29.504 17.309 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.9516,15A4.399,4.399,0,0,1,28,15.5,4.5049,4.5049,0,0,1,23.5,20H23v2h.5A6.5075,6.5075,0,0,0,30,15.5c0-.17-.0312-.333-.0444-.5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1591
+ fill: "none",
1592
+ d: "M25.75,8h-1.5V4h1.5ZM25,9a1,1,0,1,0,1,1A1,1,0,0,0,25,9Z"
1593
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31.9115,11.9355,25.6283.3706a.7181.7181,0,0,0-1.2568,0L18.0883,11.9355A.72.72,0,0,0,18.72,13H31.28A.72.72,0,0,0,31.9115,11.9355ZM24.25,4h1.5V8h-1.5ZM25,11a1,1,0,1,1,1-1A1,1,0,0,1,25,11Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8.144,11.019l.8154-.0639.0991-.812a6.9863,6.9863,0,0,1,9.97-5.45L20,2.9468A8.9777,8.9777,0,0,0,7.2,9.1362,6.4929,6.4929,0,0,0,7.43,21.9043L6.1059,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.4471-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.3559-8.981Z" }), children);
1565
1594
  });
1566
- if (process.env.NODE_ENV !== "production") TrafficEvent.propTypes = require_iconPropTypes.iconPropTypes;
1567
- const TrafficFlow = react.default.forwardRef(function TrafficFlow({ children, size = 16, ...rest }, ref) {
1568
- return react.default.createElement(require_Icon_js, {
1595
+ if (process.env.NODE_ENV !== "production") ThunderstormSevere.propTypes = require_iconPropTypes.iconPropTypes;
1596
+ const ThunderstormStrong = /* @__PURE__ */ react.default.forwardRef(function ThunderstormStrong({ children, size = 16, ...rest }, ref) {
1597
+ return react.default.createElement(require_Icon.Icon, {
1569
1598
  width: size,
1570
1599
  height: size,
1571
1600
  ref,
@@ -1573,11 +1602,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1573
1602
  viewBox: "0 0 32 32",
1574
1603
  fill: "currentColor",
1575
1604
  ...rest
1576
- }, /* @__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);
1605
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,21,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,9,32Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.901 30.496 14.165 29.504 17.31 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0,6.4929,6.4929,0,0,0,.23,12.7681L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20H23v2h.5A6.4974,6.4974,0,0,0,24.8008,9.1362Z" }), children);
1577
1606
  });
1578
- if (process.env.NODE_ENV !== "production") TrafficFlow.propTypes = require_iconPropTypes.iconPropTypes;
1579
- const TrafficFlowIncident = react.default.forwardRef(function TrafficFlowIncident({ children, size = 16, ...rest }, ref) {
1580
- return react.default.createElement(require_Icon_js, {
1607
+ if (process.env.NODE_ENV !== "production") ThunderstormStrong.propTypes = require_iconPropTypes.iconPropTypes;
1608
+ const Ticket = /* @__PURE__ */ react.default.forwardRef(function Ticket({ children, size = 16, ...rest }, ref) {
1609
+ return react.default.createElement(require_Icon.Icon, {
1581
1610
  width: size,
1582
1611
  height: size,
1583
1612
  ref,
@@ -1585,11 +1614,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1585
1614
  viewBox: "0 0 32 32",
1586
1615
  fill: "currentColor",
1587
1616
  ...rest
1588
- }, /* @__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);
1617
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,14a1,1,0,0,0,1-1V8a2,2,0,0,0-2-2H4A2,2,0,0,0,2,8v5a1,1,0,0,0,1,1,2,2,0,0,1,0,4,1,1,0,0,0-1,1v5a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19a1,1,0,0,0-1-1,2,2,0,0,1,0-4Zm-1,5.87V24H21V21H19v3H4V19.87a4,4,0,0,0,0-7.74V8H19v3h2V8h7v4.13a4,4,0,0,0,0,7.74Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 13H21V19H19z" }), children);
1589
1618
  });
1590
- if (process.env.NODE_ENV !== "production") TrafficFlowIncident.propTypes = require_iconPropTypes.iconPropTypes;
1591
- const TrafficIncident = react.default.forwardRef(function TrafficIncident({ children, size = 16, ...rest }, ref) {
1592
- return react.default.createElement(require_Icon_js, {
1619
+ if (process.env.NODE_ENV !== "production") Ticket.propTypes = require_iconPropTypes.iconPropTypes;
1620
+ const Tides = /* @__PURE__ */ react.default.forwardRef(function Tides({ children, size = 16, ...rest }, ref) {
1621
+ return react.default.createElement(require_Icon.Icon, {
1593
1622
  width: size,
1594
1623
  height: size,
1595
1624
  ref,
@@ -1597,14 +1626,11 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1597
1626
  viewBox: "0 0 32 32",
1598
1627
  fill: "currentColor",
1599
1628
  ...rest
1600
- }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 28H30V30H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
1601
- d: "M11.314 11.514H17.314V13.514H11.314z",
1602
- transform: "rotate(-45 14.314 12.514)"
1603
- }), /* @__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);
1629
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 7 9 2 4 7 5.413 8.416 8 5.833 8 14 10 14 10 5.833 12.586 8.414 14 7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.586 7.586 24 10.167 24 2 22 2 22 10.167 19.413 7.584 18 9 23 14 28 9 26.586 7.586z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,17a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,8,17a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,4,20H2v2H4a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,20,22H30V20Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,24,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,20,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,28H2v2H12a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,28,30h2V28Z" }), children);
1604
1630
  });
1605
- if (process.env.NODE_ENV !== "production") TrafficIncident.propTypes = require_iconPropTypes.iconPropTypes;
1606
- const TrafficWeatherIncident = react.default.forwardRef(function TrafficWeatherIncident({ children, size = 16, ...rest }, ref) {
1607
- return react.default.createElement(require_Icon_js, {
1631
+ if (process.env.NODE_ENV !== "production") Tides.propTypes = require_iconPropTypes.iconPropTypes;
1632
+ const Tif = /* @__PURE__ */ react.default.forwardRef(function Tif({ children, size = 16, ...rest }, ref) {
1633
+ return react.default.createElement(require_Icon.Icon, {
1608
1634
  width: size,
1609
1635
  height: size,
1610
1636
  ref,
@@ -1612,23 +1638,20 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1612
1638
  viewBox: "0 0 32 32",
1613
1639
  fill: "currentColor",
1614
1640
  ...rest
1615
- }, /* @__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);
1641
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z" }), /* @__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);
1616
1642
  });
1617
- if (process.env.NODE_ENV !== "production") TrafficWeatherIncident.propTypes = require_iconPropTypes.iconPropTypes;
1618
- const TrafficCone = react.default.forwardRef(function TrafficCone({ children, size = 16, ...rest }, ref) {
1619
- return react.default.createElement(require_Icon_js, {
1643
+ if (process.env.NODE_ENV !== "production") Tif.propTypes = require_iconPropTypes.iconPropTypes;
1644
+ const Time = /* @__PURE__ */ react.default.forwardRef(function Time({ children, size = 16, ...rest }, ref) {
1645
+ if (size === 20 || size === "20" || size === "20px") return react.default.createElement(require_Icon.Icon, {
1620
1646
  width: size,
1621
1647
  height: size,
1622
1648
  ref,
1623
1649
  xmlns: "http://www.w3.org/2000/svg",
1624
- viewBox: "0 0 32 32",
1650
+ viewBox: "0 0 20 20",
1625
1651
  fill: "currentColor",
1626
1652
  ...rest
1627
- }, /* @__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);
1628
- });
1629
- if (process.env.NODE_ENV !== "production") TrafficCone.propTypes = require_iconPropTypes.iconPropTypes;
1630
- const Train = react.default.forwardRef(function Train({ children, size = 16, ...rest }, ref) {
1631
- return react.default.createElement(require_Icon_js, {
1653
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,19c-5,0-9-4-9-9s4-9,9-9s9,4,9,9S15,19,10,19z M10,2.3c-4.3,0-7.7,3.5-7.7,7.7s3.5,7.7,7.7,7.7s7.7-3.5,7.7-7.7 S14.3,2.3,10,2.3z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 13.9 9.4 10.3 9.4 4 10.6 4 10.6 9.7 13.9 13z" }), children);
1654
+ return react.default.createElement(require_Icon.Icon, {
1632
1655
  width: size,
1633
1656
  height: size,
1634
1657
  ref,
@@ -1636,9 +1659,41 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1636
1659
  viewBox: "0 0 32 32",
1637
1660
  fill: "currentColor",
1638
1661
  ...rest
1639
- }, /* @__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);
1662
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z" }), children);
1640
1663
  });
1641
- if (process.env.NODE_ENV !== "production") Train.propTypes = require_iconPropTypes.iconPropTypes;
1664
+ if (process.env.NODE_ENV !== "production") Time.propTypes = require_iconPropTypes.iconPropTypes;
1665
+ exports.QT = QT;
1666
+ exports.QTAlt = QTAlt;
1667
+ exports.Sustainability = Sustainability;
1668
+ exports.Svg = Svg;
1669
+ exports.Swim = Swim;
1670
+ exports.SwimlaneDVertical = SwimlaneDVertical;
1671
+ exports.Switch = Switch;
1672
+ exports.SwitchLayer_2 = SwitchLayer_2;
1673
+ exports.SwitchLayer_3 = SwitchLayer_3;
1674
+ exports.Switcher = Switcher;
1675
+ exports.Swot = Swot;
1676
+ exports.SwotFilled = SwotFilled;
1677
+ exports.SyncSettings = SyncSettings;
1678
+ exports.SysProvision = SysProvision;
1679
+ exports.SysplexDistributor = SysplexDistributor;
1680
+ exports.Table = Table;
1681
+ exports.TableAdd = TableAdd;
1682
+ exports.TableAlias = TableAlias;
1683
+ exports.TableBuilt = TableBuilt;
1684
+ exports.TableOfContents = TableOfContents;
1685
+ exports.TableShortcut = TableShortcut;
1686
+ exports.TableSplit = TableSplit;
1687
+ exports.Tablet = Tablet;
1688
+ exports.TabletLandscape = TabletLandscape;
1689
+ exports.Tag = Tag;
1690
+ exports.TagEdit = TagEdit;
1691
+ exports.TagExport = TagExport;
1692
+ exports.TagGroup = TagGroup;
1693
+ exports.TagImport = TagImport;
1694
+ exports.TagNone = TagNone;
1695
+ exports.Tank = Tank;
1696
+ exports.Task = Task;
1642
1697
  exports.TaskAdd = TaskAdd;
1643
1698
  exports.TaskApproved = TaskApproved;
1644
1699
  exports.TaskAssetView = TaskAssetView;
@@ -1729,47 +1784,14 @@ var require_bucket_18 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
1729
1784
  exports.Tides = Tides;
1730
1785
  exports.Tif = Tif;
1731
1786
  exports.Time = Time;
1732
- exports.TimeFilled = TimeFilled;
1733
- exports.TimePlot = TimePlot;
1734
- exports.Timer = Timer;
1735
- exports.TimingBelt = TimingBelt;
1736
- exports.ToggleOff = ToggleOff;
1737
- exports.ToggleOffFill = ToggleOffFill;
1738
- exports.ToggleOn = ToggleOn;
1739
- exports.ToggleOnFill = ToggleOnFill;
1740
- exports.ToolBox = ToolBox;
1741
- exports.ToolKit = ToolKit;
1742
- exports.Tools = Tools;
1743
- exports.ToolsAlt = ToolsAlt;
1744
- exports.TopDataSets = TopDataSets;
1745
- exports.TopPrograms = TopPrograms;
1746
- exports.Tornado = Tornado;
1747
- exports.TornadoWarning = TornadoWarning;
1748
- exports.TouchInteraction = TouchInteraction;
1749
- exports.Touch_1 = Touch_1;
1750
- exports.Touch_1Down = Touch_1Down;
1751
- exports.Touch_1DownFilled = Touch_1DownFilled;
1752
- exports.Touch_1Filled = Touch_1Filled;
1753
- exports.Touch_2 = Touch_2;
1754
- exports.Touch_2Filled = Touch_2Filled;
1755
- exports.Tour = Tour;
1756
- exports.Trace = Trace;
1757
- exports.TrafficCone = TrafficCone;
1758
- exports.TrafficEvent = TrafficEvent;
1759
- exports.TrafficFlow = TrafficFlow;
1760
- exports.TrafficFlowIncident = TrafficFlowIncident;
1761
- exports.TrafficIncident = TrafficIncident;
1762
- exports.TrafficWeatherIncident = TrafficWeatherIncident;
1763
- exports.Train = Train;
1764
1787
  exports.WatsonHealthTextAnnotationToggle = WatsonHealthTextAnnotationToggle;
1765
1788
  exports.WatsonHealthThreshold = WatsonHealthThreshold;
1766
1789
  exports.WatsonHealthThumbnailPreview = WatsonHealthThumbnailPreview;
1767
1790
  }));
1768
-
1769
1791
  //#endregion
1770
- Object.defineProperty(exports, 'default', {
1771
- enumerable: true,
1772
- get: function () {
1773
- return require_bucket_18();
1774
- }
1775
- });
1792
+ Object.defineProperty(exports, "default", {
1793
+ enumerable: true,
1794
+ get: function() {
1795
+ return require_bucket_18();
1796
+ }
1797
+ });