@carbon/ibm-products 2.65.0 → 2.66.0-rc.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.
- package/css/index-full-carbon.css +482 -64
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +14 -20
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +29 -22
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +123 -39
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/_virtual/_rollupPluginBabelHelpers.js +1 -510
- package/es/components/APIKeyModal/APIKeyDownloader.js +32 -50
- package/es/components/APIKeyModal/APIKeyModal.js +164 -217
- package/es/components/AboutModal/AboutModal.js +50 -52
- package/es/components/ActionBar/ActionBar.js +62 -56
- package/es/components/ActionBar/ActionBarItem.js +25 -18
- package/es/components/ActionBar/ActionBarOverflowItems.js +21 -19
- package/es/components/ActionSet/ActionSet.js +92 -88
- package/es/components/AddSelect/AddSelect.js +22 -20
- package/es/components/AddSelect/AddSelectBody.js +143 -154
- package/es/components/AddSelect/AddSelectBreadcrumbs.js +21 -14
- package/es/components/AddSelect/AddSelectColumn.js +97 -123
- package/es/components/AddSelect/AddSelectFilter.js +72 -79
- package/es/components/AddSelect/AddSelectFormControl.js +41 -35
- package/es/components/AddSelect/AddSelectList.js +24 -26
- package/es/components/AddSelect/AddSelectMetaPanel.js +24 -26
- package/es/components/AddSelect/AddSelectRow.js +86 -83
- package/es/components/AddSelect/AddSelectSidebar.js +56 -59
- package/es/components/AddSelect/AddSelectSort.js +31 -31
- package/es/components/AddSelect/add-select-utils.js +46 -41
- package/es/components/AddSelect/hooks/useFocus.js +7 -11
- package/es/components/AddSelect/hooks/useItemSort.js +13 -14
- package/es/components/AddSelect/hooks/useParentSelect.js +10 -8
- package/es/components/AddSelect/hooks/usePath.js +33 -36
- package/es/components/BigNumbers/BigNumbers.js +43 -46
- package/es/components/BigNumbers/BigNumbersSkeleton.js +15 -12
- package/es/components/BigNumbers/constants.js +5 -5
- package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +112 -127
- package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +70 -74
- package/es/components/Card/Card.d.ts +15 -11
- package/es/components/Card/Card.js +187 -171
- package/es/components/Card/CardFooter.js +32 -33
- package/es/components/Card/CardHeader.js +59 -46
- package/es/components/Carousel/Carousel.js +102 -118
- package/es/components/Carousel/CarouselItem.js +9 -8
- package/es/components/Cascade/Cascade.js +30 -25
- package/es/components/Checklist/Checklist.js +64 -75
- package/es/components/Checklist/Checklist.types.js +2 -2
- package/es/components/Checklist/ChecklistChart.js +22 -31
- package/es/components/Checklist/ChecklistIcon.js +14 -15
- package/es/components/Coachmark/Coachmark.js +71 -89
- package/es/components/Coachmark/CoachmarkDragbar.js +30 -40
- package/es/components/Coachmark/CoachmarkHeader.js +18 -21
- package/es/components/Coachmark/CoachmarkOverlay.js +70 -79
- package/es/components/Coachmark/CoachmarkTagline.js +19 -21
- package/es/components/Coachmark/utils/constants.js +10 -9
- package/es/components/Coachmark/utils/context.js +2 -2
- package/es/components/Coachmark/utils/enums.js +2 -2
- package/es/components/Coachmark/utils/hooks.js +12 -12
- package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +15 -15
- package/es/components/CoachmarkButton/CoachmarkButton.js +10 -9
- package/es/components/CoachmarkFixed/CoachmarkFixed.js +50 -68
- package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +16 -15
- package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +54 -72
- package/es/components/CoachmarkStack/CoachmarkStack.js +64 -82
- package/es/components/CoachmarkStack/CoachmarkStackHome.js +55 -62
- package/es/components/ComboButton/ComboButton.js +45 -52
- package/es/components/ComboButton/ComboButtonItem/index.js +4 -3
- package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +106 -105
- package/es/components/ConditionBuilder/ConditionBuilder.js +34 -45
- package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +15 -2
- package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +72 -92
- package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
- package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +61 -38
- package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +31 -27
- package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +25 -24
- package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +16 -16
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +101 -108
- package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +14 -20
- package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -1
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +59 -72
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +30 -39
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +18 -19
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +40 -51
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +59 -94
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +14 -13
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +19 -30
- package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +182 -200
- package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +34 -33
- package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +52 -65
- package/es/components/ConditionBuilder/utils/useDataConfigs.js +11 -30
- package/es/components/ConditionBuilder/utils/useTranslations.js +7 -6
- package/es/components/ConditionBuilder/utils/util.js +27 -36
- package/es/components/CreateFullPage/CreateFullPage.d.ts +5 -1
- package/es/components/CreateFullPage/CreateFullPage.js +99 -151
- package/es/components/CreateFullPage/CreateFullPageStep.js +65 -59
- package/es/components/CreateInfluencer/CreateInfluencer.js +25 -29
- package/es/components/CreateModal/CreateModal.js +40 -36
- package/es/components/CreateSidePanel/CreateSidePanel.js +40 -39
- package/es/components/CreateTearsheet/CreateTearsheet.d.ts +1 -1
- package/es/components/CreateTearsheet/CreateTearsheet.js +113 -164
- package/es/components/CreateTearsheet/CreateTearsheetDivider.js +9 -7
- package/es/components/CreateTearsheet/CreateTearsheetStep.js +73 -69
- package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +30 -30
- package/es/components/DataSpreadsheet/DataSpreadsheet.js +296 -339
- package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +215 -215
- package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +122 -121
- package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +15 -13
- package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +35 -53
- package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +10 -9
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +40 -46
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +29 -28
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +73 -88
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +16 -15
- package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +10 -12
- package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -1
- package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +11 -12
- package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +75 -124
- package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +25 -25
- package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +32 -31
- package/es/components/DataSpreadsheet/utils/getCellSize.js +2 -4
- package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +9 -9
- package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +12 -14
- package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +40 -36
- package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +37 -34
- package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +22 -23
- package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +37 -34
- package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +65 -76
- package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +94 -88
- package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +29 -26
- package/es/components/DataSpreadsheet/utils/removeCellSelections.js +9 -11
- package/es/components/DataSpreadsheet/utils/selectAllCells.js +17 -14
- package/es/components/Datagrid/Datagrid/Datagrid.js +27 -24
- package/es/components/Datagrid/Datagrid/DatagridBody.js +7 -6
- package/es/components/Datagrid/Datagrid/DatagridContent.js +130 -112
- package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +19 -18
- package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +42 -43
- package/es/components/Datagrid/Datagrid/DatagridHead.js +9 -10
- package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +172 -125
- package/es/components/Datagrid/Datagrid/DatagridRefBody.js +18 -15
- package/es/components/Datagrid/Datagrid/DatagridRow.js +101 -91
- package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +63 -61
- package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +48 -57
- package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +18 -15
- package/es/components/Datagrid/Datagrid/DatagridToolbar.js +83 -96
- package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +74 -76
- package/es/components/Datagrid/Datagrid/DraggableElement.js +38 -29
- package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +9 -7
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +18 -20
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +34 -36
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +56 -85
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +88 -106
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +27 -29
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +96 -104
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +125 -136
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +90 -106
- package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +41 -46
- package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +13 -13
- package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +23 -30
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +2 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +212 -219
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +13 -11
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +4 -3
- package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +44 -42
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +28 -17
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +196 -191
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +41 -39
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +7 -9
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +18 -15
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +5 -3
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +84 -73
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +22 -26
- package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +24 -28
- package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +19 -18
- package/es/components/Datagrid/Datagrid/addons/stateReducer.js +211 -173
- package/es/components/Datagrid/common-column-ids.js +1 -1
- package/es/components/Datagrid/useActionsColumn.js +81 -61
- package/es/components/Datagrid/useColumnCenterAlign.js +17 -27
- package/es/components/Datagrid/useColumnRightAlign.js +17 -28
- package/es/components/Datagrid/useCustomizeColumns.js +18 -20
- package/es/components/Datagrid/useDatagrid.js +13 -18
- package/es/components/Datagrid/useDefaultStringRenderer.js +19 -20
- package/es/components/Datagrid/useDisableSelectRows.js +49 -57
- package/es/components/Datagrid/useEditableCell.js +1 -1
- package/es/components/Datagrid/useExpandedRow.js +20 -25
- package/es/components/Datagrid/useFiltering.js +53 -58
- package/es/components/Datagrid/useFlexResize.js +31 -29
- package/es/components/Datagrid/useFloatingScroll.js +40 -38
- package/es/components/Datagrid/useFocusRowExpander.js +16 -15
- package/es/components/Datagrid/useInfiniteScroll.js +22 -20
- package/es/components/Datagrid/useInitialColumnSort.js +22 -21
- package/es/components/Datagrid/useInlineEdit.js +24 -26
- package/es/components/Datagrid/useNestedRowExpander.js +63 -80
- package/es/components/Datagrid/useNestedRows.js +45 -45
- package/es/components/Datagrid/useOnRowClick.js +32 -26
- package/es/components/Datagrid/useParentDimensions.js +35 -37
- package/es/components/Datagrid/useResizeTable.js +11 -9
- package/es/components/Datagrid/useRowExpander.js +30 -27
- package/es/components/Datagrid/useRowIsMouseOver.js +22 -28
- package/es/components/Datagrid/useRowRenderer.js +25 -35
- package/es/components/Datagrid/useRowSize.js +27 -24
- package/es/components/Datagrid/useSelectAllToggle.js +47 -46
- package/es/components/Datagrid/useSelectRows.js +90 -107
- package/es/components/Datagrid/useSkeletonRows.js +14 -25
- package/es/components/Datagrid/useSortableColumns.js +61 -87
- package/es/components/Datagrid/useStickyColumn.js +84 -94
- package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +5 -16
- package/es/components/Decorator/Decorator.js +3 -3
- package/es/components/DecoratorBase/DecoratorBase.js +94 -88
- package/es/components/DecoratorBase/DecoratorIcon.js +15 -15
- package/es/components/DecoratorBase/utils.js +8 -6
- package/es/components/DecoratorDualButton/DecoratorDualButton.js +4 -4
- package/es/components/DecoratorLink/DecoratorLink.js +4 -4
- package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +4 -4
- package/es/components/DelimitedList/DelimitedList.js +16 -15
- package/es/components/DescriptionList/DescriptionList.js +21 -17
- package/es/components/DescriptionList/DescriptionListBody.js +9 -9
- package/es/components/DescriptionList/DescriptionListCell.js +9 -9
- package/es/components/DescriptionList/DescriptionListRow.js +9 -9
- package/es/components/DescriptionList/constants.js +1 -1
- package/es/components/EditFullPage/EditFullPage.js +16 -10
- package/es/components/EditInPlace/EditInPlace.js +80 -78
- package/es/components/EditSidePanel/EditSidePanel.js +50 -47
- package/es/components/EditTearsheet/EditTearsheet.js +65 -99
- package/es/components/EditTearsheet/EditTearsheetForm.js +36 -28
- package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +15 -10
- package/es/components/EditUpdateCards/EditUpdateCards.d.ts +2 -9
- package/es/components/EditUpdateCards/EditUpdateCards.js +42 -31
- package/es/components/EmptyStates/EmptyState.js +38 -34
- package/es/components/EmptyStates/EmptyStateContent.js +29 -21
- package/es/components/EmptyStates/EmptyStateIllustration.js +15 -28
- package/es/components/EmptyStates/EmptyStateV2.js +34 -29
- package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +28 -25
- package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +28 -25
- package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +28 -25
- package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +28 -25
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +28 -25
- package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +28 -25
- package/es/components/EmptyStates/assets/ErrorIllustration.js +27 -26
- package/es/components/EmptyStates/assets/NoDataIllustration.js +25 -24
- package/es/components/EmptyStates/assets/NoTagsIllustration.js +54 -53
- package/es/components/EmptyStates/assets/NotFoundIllustration.js +38 -37
- package/es/components/EmptyStates/assets/NotificationsIllustration.js +43 -42
- package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +38 -37
- package/es/components/ExportModal/ExportModal.js +82 -94
- package/es/components/ExpressiveCard/ExpressiveCard.d.ts +2 -10
- package/es/components/ExpressiveCard/ExpressiveCard.js +11 -5
- package/es/components/FeatureFlags/index.js +33 -43
- package/es/components/FilterPanel/FilterPanel.js +12 -12
- package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +20 -20
- package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +21 -25
- package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +13 -13
- package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +54 -60
- package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +15 -15
- package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +13 -13
- package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +21 -25
- package/es/components/FilterSummary/FilterSummary.js +60 -67
- package/es/components/FullPageError/FullPageError.js +28 -26
- package/es/components/FullPageError/assets/Error403SVG.js +4 -2
- package/es/components/FullPageError/assets/Error404SVG.js +4 -2
- package/es/components/FullPageError/assets/ErrorGenericSVG.js +4 -2
- package/es/components/GetStartedCard/GetStartedCard.js +6 -6
- package/es/components/Guidebanner/Guidebanner.js +46 -63
- package/es/components/Guidebanner/GuidebannerElement.js +14 -14
- package/es/components/Guidebanner/GuidebannerElementButton.js +15 -17
- package/es/components/Guidebanner/GuidebannerElementLink.js +9 -9
- package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +18 -18
- package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +18 -18
- package/es/components/HTTPErrors/HTTPErrorContent.js +23 -22
- package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +18 -18
- package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +83 -81
- package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +87 -85
- package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +83 -81
- package/es/components/ImportModal/ImportModal.js +125 -162
- package/es/components/InlineTip/InlineTip.js +46 -61
- package/es/components/InlineTip/InlineTipButton.js +9 -9
- package/es/components/InlineTip/InlineTipLink.js +12 -13
- package/es/components/InlineTip/utils.js +9 -19
- package/es/components/InterstitialScreen/InterstitialScreen.js +62 -83
- package/es/components/InterstitialScreen/InterstitialScreenBody.js +56 -62
- package/es/components/InterstitialScreen/InterstitialScreenFooter.js +87 -118
- package/es/components/InterstitialScreen/InterstitialScreenHeader.js +29 -25
- package/es/components/MultiAddSelect/MultiAddSelect.js +5 -7
- package/es/components/Nav/Nav.js +39 -43
- package/es/components/Nav/NavItem.js +44 -51
- package/es/components/Nav/NavItemLink.js +9 -8
- package/es/components/Nav/NavList.js +57 -66
- package/es/components/NonLinearReading/NonLinearReading.js +18 -23
- package/es/components/NotificationsPanel/NotificationsPanel.js +178 -258
- package/es/components/NotificationsPanel/utils.js +26 -24
- package/es/components/OptionsTile/OptionsTile.js +90 -82
- package/es/components/PageHeader/PageHeader.js +293 -256
- package/es/components/PageHeader/PageHeaderTitle.js +43 -36
- package/es/components/PageHeader/PageHeaderUtils.js +31 -28
- package/es/components/ProductiveCard/ProductiveCard.d.ts +2 -13
- package/es/components/ProductiveCard/ProductiveCard.js +20 -14
- package/es/components/RemoveModal/RemoveModal.js +46 -49
- package/es/components/Saving/Saving.js +54 -59
- package/es/components/ScrollGradient/ScrollGradient.js +63 -66
- package/es/components/ScrollGradient/constants.js +13 -24
- package/es/components/SearchBar/SearchBar.d.ts +5 -6
- package/es/components/SearchBar/SearchBar.js +62 -68
- package/es/components/SidePanel/SidePanel.d.ts +2 -5
- package/es/components/SidePanel/SidePanel.js +242 -245
- package/es/components/SidePanel/constants.js +1 -1
- package/es/components/SimpleHeader/SimpleHeader.js +22 -25
- package/es/components/SingleAddSelect/SingleAddSelect.js +3 -3
- package/es/components/StatusIcon/StatusIcon.js +195 -281
- package/es/components/StatusIndicator/StatusIndicator.js +21 -24
- package/es/components/StatusIndicator/StatusIndicatorStep.js +18 -18
- package/es/components/StringFormatter/StringFormatter.js +62 -38
- package/es/components/StringFormatter/utils/enums.js +13 -13
- package/es/components/TagOverflow/TagOverflow.js +70 -74
- package/es/components/TagOverflow/TagOverflowModal.js +49 -52
- package/es/components/TagOverflow/TagOverflowPopover.js +63 -61
- package/es/components/TagOverflow/constants.js +1 -1
- package/es/components/TagSet/TagSet.js +104 -130
- package/es/components/TagSet/TagSetModal.js +48 -51
- package/es/components/TagSet/TagSetOverflow.js +54 -50
- package/es/components/Tearsheet/Tearsheet.js +22 -22
- package/es/components/Tearsheet/TearsheetNarrow.js +20 -19
- package/es/components/Tearsheet/TearsheetShell.js +160 -156
- package/es/components/Toolbar/Toolbar.js +44 -47
- package/es/components/Toolbar/ToolbarButton.js +25 -24
- package/es/components/Toolbar/ToolbarGroup.js +9 -8
- package/es/components/TooltipTrigger/TooltipTrigger.js +10 -9
- package/es/components/TruncatedList/TruncatedList.js +44 -61
- package/es/components/UserAvatar/UserAvatar.js +49 -48
- package/es/components/UserProfileImage/UserProfileImage.js +59 -74
- package/es/components/WebTerminal/WebTerminal.js +64 -67
- package/es/components/WebTerminal/WebTerminalContentWrapper.js +16 -11
- package/es/components/WebTerminal/hooks/index.js +21 -23
- package/es/components/_Canary/Canary.js +13 -8
- package/es/global/js/hooks/useActiveElement.js +5 -9
- package/es/global/js/hooks/useClickOutside.js +4 -4
- package/es/global/js/hooks/useControllableState.js +3 -7
- package/es/global/js/hooks/useCreateComponentFocus.js +16 -30
- package/es/global/js/hooks/useCreateComponentStepChange.js +99 -190
- package/es/global/js/hooks/useFocus.js +64 -85
- package/es/global/js/hooks/useIsomorphicEffect.js +1 -1
- package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +48 -58
- package/es/global/js/hooks/useOverflowString.js +13 -24
- package/es/global/js/hooks/usePortalTarget.js +5 -11
- package/es/global/js/hooks/usePrefersReducedMotion.js +12 -12
- package/es/global/js/hooks/usePrefix.js +1 -3
- package/es/global/js/hooks/usePresence.js +8 -12
- package/es/global/js/hooks/usePreviousValue.js +3 -3
- package/es/global/js/hooks/useResetCreateComponent.js +15 -13
- package/es/global/js/hooks/useResizeObserver.js +26 -34
- package/es/global/js/hooks/useRetrieveFormTitles.js +10 -9
- package/es/global/js/hooks/useRetrieveStepData.js +21 -20
- package/es/global/js/hooks/useValidCreateStepCount.js +3 -3
- package/es/global/js/hooks/useWindowResize.js +23 -23
- package/es/global/js/hooks/useWindowScroll.js +15 -18
- package/es/global/js/package-settings.js +43 -56
- package/es/global/js/utils/Wrap.js +19 -18
- package/es/global/js/utils/clamp.js +1 -1
- package/es/global/js/utils/debounce.js +6 -6
- package/es/global/js/utils/deepCloneObject.js +7 -16
- package/es/global/js/utils/deepCompareObject.js +9 -18
- package/es/global/js/utils/devtools.js +3 -2
- package/es/global/js/utils/getFocusableElements.js +2 -13
- package/es/global/js/utils/getNodeTextContent.js +6 -15
- package/es/global/js/utils/getNumberOfHiddenSteps.js +3 -3
- package/es/global/js/utils/getScrollbarWidth.js +3 -3
- package/es/global/js/utils/getSupportedLocale.js +3 -3
- package/es/global/js/utils/lastIndexInArray.js +3 -4
- package/es/global/js/utils/pconsole.js +15 -22
- package/es/global/js/utils/props-helper.js +34 -40
- package/es/global/js/utils/rangeWithCallback.js +2 -2
- package/es/global/js/utils/scrollableAncestor.js +8 -17
- package/es/global/js/utils/throttle.js +4 -4
- package/es/global/js/utils/useId.js +11 -3
- package/es/global/js/utils/uuidv4.js +3 -7
- package/es/global/js/utils/wait.js +1 -3
- package/es/node_modules/@carbon/icons-react/es/Icon.js +17 -19
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +1263 -1136
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +1330 -1186
- package/es/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -1
- package/es/node_modules/@carbon/icons-react/node_modules/@carbon/icon-helpers/es/index.js +3 -5
- package/es/node_modules/prop-types/checkPropTypes.js +4 -5
- package/es/node_modules/prop-types/factoryWithThrowingShims.js +1 -1
- package/es/node_modules/prop-types/factoryWithTypeCheckers.js +6 -7
- package/es/settings.js +15 -19
- package/lib/_virtual/_rollupPluginBabelHelpers.js +0 -530
- package/lib/components/APIKeyModal/APIKeyDownloader.js +31 -49
- package/lib/components/APIKeyModal/APIKeyModal.js +163 -216
- package/lib/components/AboutModal/AboutModal.js +49 -51
- package/lib/components/ActionBar/ActionBar.js +61 -55
- package/lib/components/ActionBar/ActionBarItem.js +24 -17
- package/lib/components/ActionBar/ActionBarOverflowItems.js +21 -19
- package/lib/components/ActionSet/ActionSet.js +91 -87
- package/lib/components/AddSelect/AddSelect.js +20 -18
- package/lib/components/AddSelect/AddSelectBody.js +140 -151
- package/lib/components/AddSelect/AddSelectBreadcrumbs.js +21 -14
- package/lib/components/AddSelect/AddSelectColumn.js +96 -122
- package/lib/components/AddSelect/AddSelectFilter.js +71 -78
- package/lib/components/AddSelect/AddSelectFormControl.js +41 -35
- package/lib/components/AddSelect/AddSelectList.js +23 -25
- package/lib/components/AddSelect/AddSelectMetaPanel.js +24 -26
- package/lib/components/AddSelect/AddSelectRow.js +85 -82
- package/lib/components/AddSelect/AddSelectSidebar.js +56 -59
- package/lib/components/AddSelect/AddSelectSort.js +30 -30
- package/lib/components/AddSelect/add-select-utils.js +46 -41
- package/lib/components/AddSelect/hooks/useFocus.js +7 -11
- package/lib/components/AddSelect/hooks/useItemSort.js +13 -14
- package/lib/components/AddSelect/hooks/useParentSelect.js +10 -8
- package/lib/components/AddSelect/hooks/usePath.js +33 -36
- package/lib/components/BigNumbers/BigNumbers.js +42 -45
- package/lib/components/BigNumbers/BigNumbersSkeleton.js +14 -11
- package/lib/components/BigNumbers/constants.js +5 -5
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +111 -126
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +69 -73
- package/lib/components/Card/Card.d.ts +15 -11
- package/lib/components/Card/Card.js +185 -169
- package/lib/components/Card/CardFooter.js +32 -33
- package/lib/components/Card/CardHeader.js +58 -45
- package/lib/components/Carousel/Carousel.js +101 -117
- package/lib/components/Carousel/CarouselItem.js +8 -7
- package/lib/components/Cascade/Cascade.js +30 -25
- package/lib/components/Checklist/Checklist.js +63 -74
- package/lib/components/Checklist/Checklist.types.js +2 -2
- package/lib/components/Checklist/ChecklistChart.js +21 -30
- package/lib/components/Checklist/ChecklistIcon.js +13 -14
- package/lib/components/Coachmark/Coachmark.js +70 -88
- package/lib/components/Coachmark/CoachmarkDragbar.js +29 -39
- package/lib/components/Coachmark/CoachmarkHeader.js +17 -20
- package/lib/components/Coachmark/CoachmarkOverlay.js +69 -78
- package/lib/components/Coachmark/CoachmarkTagline.js +18 -20
- package/lib/components/Coachmark/utils/constants.js +10 -9
- package/lib/components/Coachmark/utils/context.js +2 -2
- package/lib/components/Coachmark/utils/enums.js +2 -2
- package/lib/components/Coachmark/utils/hooks.js +12 -12
- package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +14 -14
- package/lib/components/CoachmarkButton/CoachmarkButton.js +9 -8
- package/lib/components/CoachmarkFixed/CoachmarkFixed.js +49 -67
- package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +15 -14
- package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +53 -71
- package/lib/components/CoachmarkStack/CoachmarkStack.js +63 -81
- package/lib/components/CoachmarkStack/CoachmarkStackHome.js +54 -61
- package/lib/components/ComboButton/ComboButton.js +44 -51
- package/lib/components/ComboButton/ComboButtonItem/index.js +4 -3
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +105 -104
- package/lib/components/ConditionBuilder/ConditionBuilder.js +33 -44
- package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +15 -2
- package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +72 -92
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +59 -36
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +30 -26
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +24 -23
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +16 -16
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +99 -106
- package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +14 -20
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -1
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +58 -71
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +29 -38
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +17 -18
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +40 -51
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +59 -94
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +14 -13
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +19 -30
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +182 -200
- package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +34 -33
- package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +52 -65
- package/lib/components/ConditionBuilder/utils/useDataConfigs.js +11 -30
- package/lib/components/ConditionBuilder/utils/useTranslations.js +7 -6
- package/lib/components/ConditionBuilder/utils/util.js +27 -36
- package/lib/components/CreateFullPage/CreateFullPage.d.ts +5 -1
- package/lib/components/CreateFullPage/CreateFullPage.js +98 -150
- package/lib/components/CreateFullPage/CreateFullPageStep.js +64 -58
- package/lib/components/CreateInfluencer/CreateInfluencer.js +25 -29
- package/lib/components/CreateModal/CreateModal.js +39 -35
- package/lib/components/CreateSidePanel/CreateSidePanel.js +39 -38
- package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +1 -1
- package/lib/components/CreateTearsheet/CreateTearsheet.js +112 -163
- package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +8 -6
- package/lib/components/CreateTearsheet/CreateTearsheetStep.js +72 -68
- package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +29 -29
- package/lib/components/DataSpreadsheet/DataSpreadsheet.js +292 -335
- package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +213 -213
- package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +121 -120
- package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +15 -13
- package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +35 -53
- package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +10 -9
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +40 -46
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +29 -28
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +72 -87
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +16 -15
- package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +9 -11
- package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -1
- package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +10 -11
- package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +73 -122
- package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +25 -25
- package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +31 -30
- package/lib/components/DataSpreadsheet/utils/getCellSize.js +2 -4
- package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +9 -9
- package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +12 -14
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +40 -36
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +37 -34
- package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +21 -22
- package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +37 -34
- package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +64 -75
- package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +93 -87
- package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +29 -26
- package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +9 -11
- package/lib/components/DataSpreadsheet/utils/selectAllCells.js +17 -14
- package/lib/components/Datagrid/Datagrid/Datagrid.js +26 -23
- package/lib/components/Datagrid/Datagrid/DatagridBody.js +7 -6
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +129 -111
- package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +19 -18
- package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +41 -42
- package/lib/components/Datagrid/Datagrid/DatagridHead.js +9 -10
- package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +170 -123
- package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +17 -14
- package/lib/components/Datagrid/Datagrid/DatagridRow.js +99 -89
- package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +62 -60
- package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +47 -56
- package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +17 -14
- package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +83 -96
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +73 -75
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +37 -28
- package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +9 -7
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +17 -19
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +34 -36
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +56 -85
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +86 -104
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +26 -28
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +96 -104
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +124 -135
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +90 -106
- package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +40 -45
- package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +13 -13
- package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +23 -30
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +2 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +211 -218
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +11 -9
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +4 -3
- package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +44 -42
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +28 -17
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +195 -190
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +41 -39
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +7 -9
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +18 -15
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +5 -3
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +84 -73
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +22 -26
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +23 -27
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +19 -18
- package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +211 -173
- package/lib/components/Datagrid/common-column-ids.js +1 -1
- package/lib/components/Datagrid/useActionsColumn.js +80 -60
- package/lib/components/Datagrid/useColumnCenterAlign.js +17 -27
- package/lib/components/Datagrid/useColumnRightAlign.js +17 -28
- package/lib/components/Datagrid/useCustomizeColumns.js +17 -19
- package/lib/components/Datagrid/useDatagrid.js +12 -17
- package/lib/components/Datagrid/useDefaultStringRenderer.js +19 -20
- package/lib/components/Datagrid/useDisableSelectRows.js +49 -57
- package/lib/components/Datagrid/useEditableCell.js +1 -1
- package/lib/components/Datagrid/useExpandedRow.js +20 -25
- package/lib/components/Datagrid/useFiltering.js +51 -56
- package/lib/components/Datagrid/useFlexResize.js +31 -29
- package/lib/components/Datagrid/useFloatingScroll.js +40 -38
- package/lib/components/Datagrid/useFocusRowExpander.js +16 -15
- package/lib/components/Datagrid/useInfiniteScroll.js +22 -20
- package/lib/components/Datagrid/useInitialColumnSort.js +22 -21
- package/lib/components/Datagrid/useInlineEdit.js +24 -26
- package/lib/components/Datagrid/useNestedRowExpander.js +61 -78
- package/lib/components/Datagrid/useNestedRows.js +45 -45
- package/lib/components/Datagrid/useOnRowClick.js +32 -26
- package/lib/components/Datagrid/useParentDimensions.js +35 -37
- package/lib/components/Datagrid/useResizeTable.js +11 -9
- package/lib/components/Datagrid/useRowExpander.js +28 -25
- package/lib/components/Datagrid/useRowIsMouseOver.js +22 -28
- package/lib/components/Datagrid/useRowRenderer.js +25 -35
- package/lib/components/Datagrid/useRowSize.js +26 -23
- package/lib/components/Datagrid/useSelectAllToggle.js +47 -46
- package/lib/components/Datagrid/useSelectRows.js +89 -106
- package/lib/components/Datagrid/useSkeletonRows.js +14 -25
- package/lib/components/Datagrid/useSortableColumns.js +61 -87
- package/lib/components/Datagrid/useStickyColumn.js +84 -94
- package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +5 -16
- package/lib/components/Decorator/Decorator.js +3 -3
- package/lib/components/DecoratorBase/DecoratorBase.js +93 -87
- package/lib/components/DecoratorBase/DecoratorIcon.js +14 -14
- package/lib/components/DecoratorBase/utils.js +8 -6
- package/lib/components/DecoratorDualButton/DecoratorDualButton.js +4 -4
- package/lib/components/DecoratorLink/DecoratorLink.js +4 -4
- package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +4 -4
- package/lib/components/DelimitedList/DelimitedList.js +15 -14
- package/lib/components/DescriptionList/DescriptionList.js +20 -16
- package/lib/components/DescriptionList/DescriptionListBody.js +8 -8
- package/lib/components/DescriptionList/DescriptionListCell.js +8 -8
- package/lib/components/DescriptionList/DescriptionListRow.js +8 -8
- package/lib/components/DescriptionList/constants.js +1 -1
- package/lib/components/EditFullPage/EditFullPage.js +15 -9
- package/lib/components/EditInPlace/EditInPlace.js +79 -77
- package/lib/components/EditSidePanel/EditSidePanel.js +49 -46
- package/lib/components/EditTearsheet/EditTearsheet.js +64 -98
- package/lib/components/EditTearsheet/EditTearsheetForm.js +35 -27
- package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +14 -9
- package/lib/components/EditUpdateCards/EditUpdateCards.d.ts +2 -9
- package/lib/components/EditUpdateCards/EditUpdateCards.js +41 -30
- package/lib/components/EmptyStates/EmptyState.js +37 -33
- package/lib/components/EmptyStates/EmptyStateContent.js +28 -20
- package/lib/components/EmptyStates/EmptyStateIllustration.js +14 -27
- package/lib/components/EmptyStates/EmptyStateV2.js +33 -28
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +27 -24
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +27 -24
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +27 -24
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +27 -24
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +27 -24
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +27 -24
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +26 -25
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +24 -23
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +53 -52
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +37 -36
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +42 -41
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +37 -36
- package/lib/components/ExportModal/ExportModal.js +81 -93
- package/lib/components/ExpressiveCard/ExpressiveCard.d.ts +2 -10
- package/lib/components/ExpressiveCard/ExpressiveCard.js +11 -5
- package/lib/components/FeatureFlags/index.js +33 -43
- package/lib/components/FilterPanel/FilterPanel.js +11 -11
- package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +19 -19
- package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +20 -24
- package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +12 -12
- package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +53 -59
- package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +14 -14
- package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +12 -12
- package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +20 -24
- package/lib/components/FilterSummary/FilterSummary.js +59 -66
- package/lib/components/FullPageError/FullPageError.js +27 -25
- package/lib/components/FullPageError/assets/Error403SVG.js +4 -2
- package/lib/components/FullPageError/assets/Error404SVG.js +4 -2
- package/lib/components/FullPageError/assets/ErrorGenericSVG.js +4 -2
- package/lib/components/GetStartedCard/GetStartedCard.js +5 -5
- package/lib/components/Guidebanner/Guidebanner.js +45 -62
- package/lib/components/Guidebanner/GuidebannerElement.js +13 -13
- package/lib/components/Guidebanner/GuidebannerElementButton.js +14 -16
- package/lib/components/Guidebanner/GuidebannerElementLink.js +8 -8
- package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +17 -17
- package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +17 -17
- package/lib/components/HTTPErrors/HTTPErrorContent.js +22 -21
- package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +17 -17
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +83 -81
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +87 -85
- package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +83 -81
- package/lib/components/ImportModal/ImportModal.js +124 -161
- package/lib/components/InlineTip/InlineTip.js +44 -59
- package/lib/components/InlineTip/InlineTipButton.js +8 -8
- package/lib/components/InlineTip/InlineTipLink.js +11 -12
- package/lib/components/InlineTip/utils.js +9 -19
- package/lib/components/InterstitialScreen/InterstitialScreen.js +61 -82
- package/lib/components/InterstitialScreen/InterstitialScreenBody.js +55 -61
- package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +86 -117
- package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +29 -25
- package/lib/components/MultiAddSelect/MultiAddSelect.js +5 -7
- package/lib/components/Nav/Nav.js +38 -42
- package/lib/components/Nav/NavItem.js +43 -50
- package/lib/components/Nav/NavItemLink.js +9 -8
- package/lib/components/Nav/NavList.js +56 -65
- package/lib/components/NonLinearReading/NonLinearReading.js +17 -22
- package/lib/components/NotificationsPanel/NotificationsPanel.js +177 -257
- package/lib/components/NotificationsPanel/utils.js +26 -24
- package/lib/components/OptionsTile/OptionsTile.js +88 -80
- package/lib/components/PageHeader/PageHeader.js +292 -255
- package/lib/components/PageHeader/PageHeaderTitle.js +42 -35
- package/lib/components/PageHeader/PageHeaderUtils.js +31 -28
- package/lib/components/ProductiveCard/ProductiveCard.d.ts +2 -13
- package/lib/components/ProductiveCard/ProductiveCard.js +19 -13
- package/lib/components/RemoveModal/RemoveModal.js +45 -48
- package/lib/components/Saving/Saving.js +51 -56
- package/lib/components/ScrollGradient/ScrollGradient.js +62 -65
- package/lib/components/ScrollGradient/constants.js +13 -24
- package/lib/components/SearchBar/SearchBar.d.ts +5 -6
- package/lib/components/SearchBar/SearchBar.js +61 -67
- package/lib/components/SidePanel/SidePanel.d.ts +2 -5
- package/lib/components/SidePanel/SidePanel.js +243 -244
- package/lib/components/SidePanel/constants.js +1 -1
- package/lib/components/SimpleHeader/SimpleHeader.js +21 -24
- package/lib/components/SingleAddSelect/SingleAddSelect.js +3 -3
- package/lib/components/StatusIcon/StatusIcon.js +194 -280
- package/lib/components/StatusIndicator/StatusIndicator.js +20 -23
- package/lib/components/StatusIndicator/StatusIndicatorStep.js +17 -17
- package/lib/components/StringFormatter/StringFormatter.js +60 -36
- package/lib/components/StringFormatter/utils/enums.js +13 -13
- package/lib/components/TagOverflow/TagOverflow.js +69 -73
- package/lib/components/TagOverflow/TagOverflowModal.js +48 -51
- package/lib/components/TagOverflow/TagOverflowPopover.js +62 -60
- package/lib/components/TagOverflow/constants.js +1 -1
- package/lib/components/TagSet/TagSet.js +103 -129
- package/lib/components/TagSet/TagSetModal.js +47 -50
- package/lib/components/TagSet/TagSetOverflow.js +53 -49
- package/lib/components/Tearsheet/Tearsheet.js +21 -21
- package/lib/components/Tearsheet/TearsheetNarrow.js +19 -18
- package/lib/components/Tearsheet/TearsheetShell.js +156 -152
- package/lib/components/Toolbar/Toolbar.js +43 -46
- package/lib/components/Toolbar/ToolbarButton.js +24 -23
- package/lib/components/Toolbar/ToolbarGroup.js +8 -7
- package/lib/components/TooltipTrigger/TooltipTrigger.js +9 -8
- package/lib/components/TruncatedList/TruncatedList.js +43 -60
- package/lib/components/UserAvatar/UserAvatar.js +48 -47
- package/lib/components/UserProfileImage/UserProfileImage.js +58 -73
- package/lib/components/WebTerminal/WebTerminal.js +63 -66
- package/lib/components/WebTerminal/WebTerminalContentWrapper.js +15 -10
- package/lib/components/WebTerminal/hooks/index.js +21 -23
- package/lib/components/_Canary/Canary.js +12 -7
- package/lib/global/js/hooks/useActiveElement.js +5 -9
- package/lib/global/js/hooks/useClickOutside.js +4 -4
- package/lib/global/js/hooks/useControllableState.js +3 -7
- package/lib/global/js/hooks/useCreateComponentFocus.js +16 -30
- package/lib/global/js/hooks/useCreateComponentStepChange.js +99 -190
- package/lib/global/js/hooks/useFocus.js +64 -85
- package/lib/global/js/hooks/useIsomorphicEffect.js +1 -1
- package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +48 -58
- package/lib/global/js/hooks/useOverflowString.js +13 -24
- package/lib/global/js/hooks/usePortalTarget.js +5 -11
- package/lib/global/js/hooks/usePrefersReducedMotion.js +12 -12
- package/lib/global/js/hooks/usePrefix.js +1 -3
- package/lib/global/js/hooks/usePresence.js +8 -12
- package/lib/global/js/hooks/usePreviousValue.js +3 -3
- package/lib/global/js/hooks/useResetCreateComponent.js +15 -13
- package/lib/global/js/hooks/useResizeObserver.js +26 -34
- package/lib/global/js/hooks/useRetrieveFormTitles.js +10 -9
- package/lib/global/js/hooks/useRetrieveStepData.js +21 -20
- package/lib/global/js/hooks/useValidCreateStepCount.js +3 -3
- package/lib/global/js/hooks/useWindowResize.js +23 -23
- package/lib/global/js/hooks/useWindowScroll.js +15 -18
- package/lib/global/js/package-settings.js +43 -56
- package/lib/global/js/utils/Wrap.js +18 -17
- package/lib/global/js/utils/clamp.js +1 -1
- package/lib/global/js/utils/debounce.js +6 -6
- package/lib/global/js/utils/deepCloneObject.js +7 -16
- package/lib/global/js/utils/deepCompareObject.js +9 -18
- package/lib/global/js/utils/devtools.js +3 -2
- package/lib/global/js/utils/getFocusableElements.js +2 -13
- package/lib/global/js/utils/getNodeTextContent.js +6 -15
- package/lib/global/js/utils/getNumberOfHiddenSteps.js +3 -3
- package/lib/global/js/utils/getScrollbarWidth.js +3 -3
- package/lib/global/js/utils/getSupportedLocale.js +3 -3
- package/lib/global/js/utils/lastIndexInArray.js +3 -4
- package/lib/global/js/utils/pconsole.js +15 -22
- package/lib/global/js/utils/props-helper.js +34 -40
- package/lib/global/js/utils/rangeWithCallback.js +2 -2
- package/lib/global/js/utils/scrollableAncestor.js +8 -17
- package/lib/global/js/utils/throttle.js +4 -4
- package/lib/global/js/utils/useId.js +11 -3
- package/lib/global/js/utils/uuidv4.js +3 -7
- package/lib/global/js/utils/wait.js +1 -3
- package/lib/index.js +1 -4
- package/lib/node_modules/@carbon/icons-react/es/Icon.js +17 -19
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +1263 -1136
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +1330 -1186
- package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -1
- package/lib/node_modules/@carbon/icons-react/node_modules/@carbon/icon-helpers/es/index.js +3 -5
- package/lib/node_modules/prop-types/checkPropTypes.js +4 -5
- package/lib/node_modules/prop-types/factoryWithThrowingShims.js +1 -1
- package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +6 -7
- package/lib/settings.js +15 -19
- package/package.json +13 -13
- package/scss/components/Datagrid/styles/_useSortableColumns.scss +3 -0
- package/scss/components/NotificationsPanel/_notifications-panel.scss +16 -4
- package/scss/components/StringFormatter/_string-formatter.scss +18 -2
- package/scss/components/Tearsheet/_tearsheet.scss +1 -22
- package/telemetry.yml +2 -3
- package/es/global/js/utils/checkForOverflow.js +0 -21
- package/lib/global/js/utils/checkForOverflow.js +0 -23
@@ -5,151 +5,27 @@
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
6
6
|
*/
|
7
7
|
|
8
|
-
import { objectWithoutProperties as _objectWithoutProperties, objectSpread2 as _objectSpread2 } from '../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
9
8
|
import React__default from 'react';
|
10
9
|
import Icon from '../Icon.js';
|
11
10
|
import { i as iconPropTypes } from '../iconPropTypes-4cbeb95d.js';
|
12
11
|
|
13
|
-
var _excluded = ["children", "size"],
|
14
|
-
_excluded2 = ["children", "size"],
|
15
|
-
_excluded3 = ["children", "size"],
|
16
|
-
_excluded4 = ["children", "size"],
|
17
|
-
_excluded5 = ["children", "size"],
|
18
|
-
_excluded6 = ["children", "size"],
|
19
|
-
_excluded7 = ["children", "size"],
|
20
|
-
_excluded8 = ["children", "size"],
|
21
|
-
_excluded9 = ["children", "size"],
|
22
|
-
_excluded10 = ["children", "size"],
|
23
|
-
_excluded11 = ["children", "size"],
|
24
|
-
_excluded12 = ["children", "size"],
|
25
|
-
_excluded13 = ["children", "size"],
|
26
|
-
_excluded14 = ["children", "size"],
|
27
|
-
_excluded15 = ["children", "size"],
|
28
|
-
_excluded16 = ["children", "size"],
|
29
|
-
_excluded17 = ["children", "size"],
|
30
|
-
_excluded18 = ["children", "size"],
|
31
|
-
_excluded19 = ["children", "size"],
|
32
|
-
_excluded20 = ["children", "size"],
|
33
|
-
_excluded21 = ["children", "size"],
|
34
|
-
_excluded22 = ["children", "size"],
|
35
|
-
_excluded23 = ["children", "size"],
|
36
|
-
_excluded24 = ["children", "size"],
|
37
|
-
_excluded25 = ["children", "size"],
|
38
|
-
_excluded26 = ["children", "size"],
|
39
|
-
_excluded27 = ["children", "size"],
|
40
|
-
_excluded28 = ["children", "size"],
|
41
|
-
_excluded29 = ["children", "size"],
|
42
|
-
_excluded30 = ["children", "size"],
|
43
|
-
_excluded31 = ["children", "size"],
|
44
|
-
_excluded32 = ["children", "size"],
|
45
|
-
_excluded33 = ["children", "size"],
|
46
|
-
_excluded34 = ["children", "size"],
|
47
|
-
_excluded35 = ["children", "size"],
|
48
|
-
_excluded36 = ["children", "size"],
|
49
|
-
_excluded37 = ["children", "size"],
|
50
|
-
_excluded38 = ["children", "size"],
|
51
|
-
_excluded39 = ["children", "size"],
|
52
|
-
_excluded40 = ["children", "size"],
|
53
|
-
_excluded41 = ["children", "size"],
|
54
|
-
_excluded42 = ["children", "size"],
|
55
|
-
_excluded43 = ["children", "size"],
|
56
|
-
_excluded44 = ["children", "size"],
|
57
|
-
_excluded45 = ["children", "size"],
|
58
|
-
_excluded46 = ["children", "size"],
|
59
|
-
_excluded47 = ["children", "size"],
|
60
|
-
_excluded48 = ["children", "size"],
|
61
|
-
_excluded49 = ["children", "size"],
|
62
|
-
_excluded50 = ["children", "size"],
|
63
|
-
_excluded51 = ["children", "size"],
|
64
|
-
_excluded52 = ["children", "size"],
|
65
|
-
_excluded53 = ["children", "size"],
|
66
|
-
_excluded54 = ["children", "size"],
|
67
|
-
_excluded55 = ["children", "size"],
|
68
|
-
_excluded56 = ["children", "size"],
|
69
|
-
_excluded57 = ["children", "size"],
|
70
|
-
_excluded58 = ["children", "size"],
|
71
|
-
_excluded59 = ["children", "size"],
|
72
|
-
_excluded60 = ["children", "size"],
|
73
|
-
_excluded61 = ["children", "size"],
|
74
|
-
_excluded62 = ["children", "size"],
|
75
|
-
_excluded63 = ["children", "size"],
|
76
|
-
_excluded64 = ["children", "size"],
|
77
|
-
_excluded65 = ["children", "size"],
|
78
|
-
_excluded66 = ["children", "size"],
|
79
|
-
_excluded67 = ["children", "size"],
|
80
|
-
_excluded68 = ["children", "size"],
|
81
|
-
_excluded69 = ["children", "size"],
|
82
|
-
_excluded70 = ["children", "size"],
|
83
|
-
_excluded71 = ["children", "size"],
|
84
|
-
_excluded72 = ["children", "size"],
|
85
|
-
_excluded73 = ["children", "size"],
|
86
|
-
_excluded74 = ["children", "size"],
|
87
|
-
_excluded75 = ["children", "size"],
|
88
|
-
_excluded76 = ["children", "size"],
|
89
|
-
_excluded77 = ["children", "size"],
|
90
|
-
_excluded78 = ["children", "size"],
|
91
|
-
_excluded79 = ["children", "size"],
|
92
|
-
_excluded80 = ["children", "size"],
|
93
|
-
_excluded81 = ["children", "size"],
|
94
|
-
_excluded82 = ["children", "size"],
|
95
|
-
_excluded83 = ["children", "size"],
|
96
|
-
_excluded84 = ["children", "size"],
|
97
|
-
_excluded85 = ["children", "size"],
|
98
|
-
_excluded86 = ["children", "size"],
|
99
|
-
_excluded87 = ["children", "size"],
|
100
|
-
_excluded88 = ["children", "size"],
|
101
|
-
_excluded89 = ["children", "size"],
|
102
|
-
_excluded90 = ["children", "size"],
|
103
|
-
_excluded91 = ["children", "size"],
|
104
|
-
_excluded92 = ["children", "size"],
|
105
|
-
_excluded93 = ["children", "size"],
|
106
|
-
_excluded94 = ["children", "size"],
|
107
|
-
_excluded95 = ["children", "size"],
|
108
|
-
_excluded96 = ["children", "size"],
|
109
|
-
_excluded97 = ["children", "size"],
|
110
|
-
_excluded98 = ["children", "size"],
|
111
|
-
_excluded99 = ["children", "size"],
|
112
|
-
_excluded100 = ["children", "size"],
|
113
|
-
_excluded101 = ["children", "size"],
|
114
|
-
_excluded102 = ["children", "size"],
|
115
|
-
_excluded103 = ["children", "size"],
|
116
|
-
_excluded104 = ["children", "size"],
|
117
|
-
_excluded105 = ["children", "size"],
|
118
|
-
_excluded106 = ["children", "size"],
|
119
|
-
_excluded107 = ["children", "size"],
|
120
|
-
_excluded108 = ["children", "size"],
|
121
|
-
_excluded109 = ["children", "size"],
|
122
|
-
_excluded110 = ["children", "size"],
|
123
|
-
_excluded111 = ["children", "size"],
|
124
|
-
_excluded112 = ["children", "size"],
|
125
|
-
_excluded113 = ["children", "size"],
|
126
|
-
_excluded114 = ["children", "size"],
|
127
|
-
_excluded115 = ["children", "size"],
|
128
|
-
_excluded116 = ["children", "size"],
|
129
|
-
_excluded117 = ["children", "size"],
|
130
|
-
_excluded118 = ["children", "size"],
|
131
|
-
_excluded119 = ["children", "size"],
|
132
|
-
_excluded120 = ["children", "size"],
|
133
|
-
_excluded121 = ["children", "size"],
|
134
|
-
_excluded122 = ["children", "size"],
|
135
|
-
_excluded123 = ["children", "size"],
|
136
|
-
_excluded124 = ["children", "size"],
|
137
|
-
_excluded125 = ["children", "size"];
|
138
12
|
var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _circle, _circle2, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _circle3, _path29, _path30, _circle4, _path31, _path32, _circle5, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _rect, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _path85, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _path93, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _path106, _path107, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _path117, _circle6, _circle7, _path118, _circle8, _circle9, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _circle10, _circle11, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _circle12, _path158, _path159, _path160, _path161, _path162, _path163, _path164, _circle13, _path165, _path166, _path167, _path168, _path169, _path170, _path171, _path172, _path173, _path174, _circle14, _circle15, _path175, _path176, _path177, _path178, _path179, _circle16, _path180, _path181, _path182, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _path203, _path204;
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
size =
|
144
|
-
rest
|
145
|
-
|
13
|
+
const didWarnAboutDeprecation = {};
|
14
|
+
const KeyboardOff = /*#__PURE__*/React__default.forwardRef(function KeyboardOff(_ref, ref) {
|
15
|
+
let {
|
16
|
+
children,
|
17
|
+
size = 16,
|
18
|
+
...rest
|
19
|
+
} = _ref;
|
20
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
146
21
|
width: size,
|
147
22
|
height: size,
|
148
23
|
ref: ref,
|
149
24
|
xmlns: "http://www.w3.org/2000/svg",
|
150
25
|
viewBox: "0 0 32 32",
|
151
|
-
fill: "currentColor"
|
152
|
-
|
26
|
+
fill: "currentColor",
|
27
|
+
...rest
|
28
|
+
}, _path || (_path = /*#__PURE__*/React__default.createElement("path", {
|
153
29
|
d: "M6 12H8V14H6zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM22 12H26V14H22zM22 16H26V18H22z"
|
154
30
|
})), _path2 || (_path2 = /*#__PURE__*/React__default.createElement("path", {
|
155
31
|
d: "M14.2 10H28v13h2V10c0-1.1-.9-2-2-2H12.2L14.2 10zM30 28.6L3.4 2 2 3.4 6.6 8H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h20.6l4 4L30 28.6zM4 24V10h4.6l2 2H10v2h2.6l2 2H14v2h2.6l2 2H10v2h10.6l2 2H4z"
|
@@ -158,38 +34,42 @@ var KeyboardOff = /*#__PURE__*/React__default.forwardRef(function KeyboardOff(_r
|
|
158
34
|
if (process.env.NODE_ENV !== "production") {
|
159
35
|
KeyboardOff.propTypes = iconPropTypes;
|
160
36
|
}
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
size =
|
165
|
-
rest
|
166
|
-
|
37
|
+
const KioskDevice = /*#__PURE__*/React__default.forwardRef(function KioskDevice(_ref2, ref) {
|
38
|
+
let {
|
39
|
+
children,
|
40
|
+
size = 16,
|
41
|
+
...rest
|
42
|
+
} = _ref2;
|
43
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
167
44
|
width: size,
|
168
45
|
height: size,
|
169
46
|
ref: ref,
|
170
47
|
xmlns: "http://www.w3.org/2000/svg",
|
171
48
|
viewBox: "0 0 32 32",
|
172
|
-
fill: "currentColor"
|
173
|
-
|
49
|
+
fill: "currentColor",
|
50
|
+
...rest
|
51
|
+
}, _path3 || (_path3 = /*#__PURE__*/React__default.createElement("path", {
|
174
52
|
d: "M26,19c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v13c0,1.1.9,2,2,2h7v9H4v2h24v-2h-9v-9h7ZM17,28h-2v-9h2v9ZM6,17V4h20v13H6ZM16,13c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1Z"
|
175
53
|
})), children);
|
176
54
|
});
|
177
55
|
if (process.env.NODE_ENV !== "production") {
|
178
56
|
KioskDevice.propTypes = iconPropTypes;
|
179
57
|
}
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
size =
|
184
|
-
rest
|
185
|
-
|
58
|
+
const Kubelet = /*#__PURE__*/React__default.forwardRef(function Kubelet(_ref3, ref) {
|
59
|
+
let {
|
60
|
+
children,
|
61
|
+
size = 16,
|
62
|
+
...rest
|
63
|
+
} = _ref3;
|
64
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
186
65
|
width: size,
|
187
66
|
height: size,
|
188
67
|
ref: ref,
|
189
68
|
xmlns: "http://www.w3.org/2000/svg",
|
190
69
|
viewBox: "0 0 32 32",
|
191
|
-
fill: "currentColor"
|
192
|
-
|
70
|
+
fill: "currentColor",
|
71
|
+
...rest
|
72
|
+
}, _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
|
193
73
|
strokeWidth: "0",
|
194
74
|
d: "m20.0444,27.2942l-3.0825-10.018-1.0132,3.04c-.1361.4084-.5183.6838-.9487.6838h-6s0-2,0-2h5.2793s1.772-5.3162,1.772-5.3162c.1307-.4123.5162-.6902.9487-.6838.4374.0046.8225.2891.9555.7058l3.0088,9.7783,1.0742-3.7589c.1227-.4293.5151-.7252.9615-.7252h5s0,2,0,2h-4.2456s-1.7933,6.2747-1.7933,6.2747c-.1216.4256-.5085.7207-.9511.7253h-.01c-.4389,0-.8265-.2863-.9556-.7058Z"
|
195
75
|
})), _path5 || (_path5 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -200,44 +80,48 @@ var Kubelet = /*#__PURE__*/React__default.forwardRef(function Kubelet(_ref3, ref
|
|
200
80
|
if (process.env.NODE_ENV !== "production") {
|
201
81
|
Kubelet.propTypes = iconPropTypes;
|
202
82
|
}
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
size =
|
207
|
-
rest
|
83
|
+
const Kubernetes = /*#__PURE__*/React__default.forwardRef(function Kubernetes(_ref4, ref) {
|
84
|
+
let {
|
85
|
+
children,
|
86
|
+
size = 16,
|
87
|
+
...rest
|
88
|
+
} = _ref4;
|
208
89
|
if (process.env.NODE_ENV !== "production") {
|
209
90
|
if (!didWarnAboutDeprecation["Kubernetes"]) {
|
210
91
|
didWarnAboutDeprecation["Kubernetes"] = true;
|
211
92
|
console.warn("The current kubernetes icon has been replaced by logo--kubernetes. As a result, the Kubernetes component will be removed in the next major version of @carbon/icons-react.");
|
212
93
|
}
|
213
94
|
}
|
214
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
95
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
215
96
|
width: size,
|
216
97
|
height: size,
|
217
98
|
ref: ref,
|
218
99
|
xmlns: "http://www.w3.org/2000/svg",
|
219
100
|
viewBox: "0 0 32 32",
|
220
|
-
fill: "currentColor"
|
221
|
-
|
101
|
+
fill: "currentColor",
|
102
|
+
...rest
|
103
|
+
}, _path6 || (_path6 = /*#__PURE__*/React__default.createElement("path", {
|
222
104
|
d: "M29.2227,17.9639,25.9194,17.21a9.7843,9.7843,0,0,0-1.5249-6.6245l2.54-2.0254L25.6875,6.9961,23.1482,9.0205A9.97,9.97,0,0,0,17,6.0508V3H15V6.0508a9.97,9.97,0,0,0-6.1482,2.97L6.3125,6.9961,5.0654,8.56l2.54,2.0254A9.7843,9.7843,0,0,0,6.0806,17.21l-3.3033.7544.4454,1.9492L6.52,19.1606a10.0359,10.0359,0,0,0,4.2688,5.358l-1.33,2.7631,1.8018.8677L12.59,25.3882a9.8113,9.8113,0,0,0,6.8208,0L20.74,28.1494l1.8018-.8682-1.33-2.7626a10.0359,10.0359,0,0,0,4.2688-5.358l3.2973.7525ZM24,16c0,.2573-.0148.5112-.0386.7627l-5-1.1416a2.9664,2.9664,0,0,0-.1376-.5942L22.82,11.84A7.9392,7.9392,0,0,1,24,16Zm-9,0a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,15,16Zm6.5758-5.7256L17.58,13.4609a3.0028,3.0028,0,0,0-.58-.2768V8.0693A7.9762,7.9762,0,0,1,21.5758,10.2744ZM15,8.0693v5.1148a3.0028,3.0028,0,0,0-.58.2768l-3.9956-3.1865A7.9762,7.9762,0,0,1,15,8.0693ZM8,16a7.9392,7.9392,0,0,1,1.18-4.16l3.9962,3.1866a2.9664,2.9664,0,0,0-.1376.5942l-5,1.1416C8.0148,16.5112,8,16.2573,8,16Zm.4835,2.7124,4.9752-1.1362a3.0132,3.0132,0,0,0,.4146.5366L11.6594,22.71A8.031,8.031,0,0,1,8.4835,18.7124ZM16,24a7.9679,7.9679,0,0,1-2.54-.42l2.2206-4.6123A2.9988,2.9988,0,0,0,16,19a2.9988,2.9988,0,0,0,.319-.0322L18.54,23.58A7.9546,7.9546,0,0,1,16,24Zm4.3406-1.29-2.2139-4.5976a3.0132,3.0132,0,0,0,.4146-.5366l4.9752,1.1362A8.031,8.031,0,0,1,20.3406,22.71Z"
|
223
105
|
})), children);
|
224
106
|
});
|
225
107
|
if (process.env.NODE_ENV !== "production") {
|
226
108
|
Kubernetes.propTypes = iconPropTypes;
|
227
109
|
}
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
size =
|
232
|
-
rest
|
233
|
-
|
110
|
+
const KubernetesControlPlaneNode = /*#__PURE__*/React__default.forwardRef(function KubernetesControlPlaneNode(_ref5, ref) {
|
111
|
+
let {
|
112
|
+
children,
|
113
|
+
size = 16,
|
114
|
+
...rest
|
115
|
+
} = _ref5;
|
116
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
234
117
|
width: size,
|
235
118
|
height: size,
|
236
119
|
ref: ref,
|
237
120
|
xmlns: "http://www.w3.org/2000/svg",
|
238
121
|
viewBox: "0 0 32 32",
|
239
|
-
fill: "currentColor"
|
240
|
-
|
122
|
+
fill: "currentColor",
|
123
|
+
...rest
|
124
|
+
}, _path7 || (_path7 = /*#__PURE__*/React__default.createElement("path", {
|
241
125
|
d: "M22.951 20h-2.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h6.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h2.1843v-2Zm-5 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Zm5-10h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h2.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h6.1843v-2Zm-9 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Z"
|
242
126
|
})), _path8 || (_path8 = /*#__PURE__*/React__default.createElement("path", {
|
243
127
|
d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z"
|
@@ -249,19 +133,21 @@ var KubernetesControlPlaneNode = /*#__PURE__*/React__default.forwardRef(function
|
|
249
133
|
if (process.env.NODE_ENV !== "production") {
|
250
134
|
KubernetesControlPlaneNode.propTypes = iconPropTypes;
|
251
135
|
}
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
size =
|
256
|
-
rest
|
257
|
-
|
136
|
+
const KubernetesIpAddress = /*#__PURE__*/React__default.forwardRef(function KubernetesIpAddress(_ref6, ref) {
|
137
|
+
let {
|
138
|
+
children,
|
139
|
+
size = 16,
|
140
|
+
...rest
|
141
|
+
} = _ref6;
|
142
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
258
143
|
width: size,
|
259
144
|
height: size,
|
260
145
|
ref: ref,
|
261
146
|
xmlns: "http://www.w3.org/2000/svg",
|
262
147
|
viewBox: "0 0 32 32",
|
263
|
-
fill: "currentColor"
|
264
|
-
|
148
|
+
fill: "currentColor",
|
149
|
+
...rest
|
150
|
+
}, _circle || (_circle = /*#__PURE__*/React__default.createElement("circle", {
|
265
151
|
cx: "16",
|
266
152
|
cy: "9",
|
267
153
|
r: "2"
|
@@ -276,19 +162,21 @@ var KubernetesIpAddress = /*#__PURE__*/React__default.forwardRef(function Kubern
|
|
276
162
|
if (process.env.NODE_ENV !== "production") {
|
277
163
|
KubernetesIpAddress.propTypes = iconPropTypes;
|
278
164
|
}
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
size =
|
283
|
-
rest
|
284
|
-
|
165
|
+
const KubernetesOperator = /*#__PURE__*/React__default.forwardRef(function KubernetesOperator(_ref7, ref) {
|
166
|
+
let {
|
167
|
+
children,
|
168
|
+
size = 16,
|
169
|
+
...rest
|
170
|
+
} = _ref7;
|
171
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
285
172
|
width: size,
|
286
173
|
height: size,
|
287
174
|
ref: ref,
|
288
175
|
xmlns: "http://www.w3.org/2000/svg",
|
289
176
|
viewBox: "0 0 32 32",
|
290
|
-
fill: "currentColor"
|
291
|
-
|
177
|
+
fill: "currentColor",
|
178
|
+
...rest
|
179
|
+
}, _path11 || (_path11 = /*#__PURE__*/React__default.createElement("path", {
|
292
180
|
strokeWidth: "0",
|
293
181
|
d: "m19,21h-6c-1.1028,0-2-.8972-2-2v-6c0-1.1028.8972-2,2-2h6c1.1028,0,2,.8972,2,2v6c0,1.1028-.8972,2-2,2Zm-6-8v6h6v-6h-6Z"
|
294
182
|
})), _path12 || (_path12 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -299,19 +187,21 @@ var KubernetesOperator = /*#__PURE__*/React__default.forwardRef(function Kuberne
|
|
299
187
|
if (process.env.NODE_ENV !== "production") {
|
300
188
|
KubernetesOperator.propTypes = iconPropTypes;
|
301
189
|
}
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
size =
|
306
|
-
rest
|
307
|
-
|
190
|
+
const KubernetesPod = /*#__PURE__*/React__default.forwardRef(function KubernetesPod(_ref8, ref) {
|
191
|
+
let {
|
192
|
+
children,
|
193
|
+
size = 16,
|
194
|
+
...rest
|
195
|
+
} = _ref8;
|
196
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
308
197
|
width: size,
|
309
198
|
height: size,
|
310
199
|
ref: ref,
|
311
200
|
xmlns: "http://www.w3.org/2000/svg",
|
312
201
|
viewBox: "0 0 32 32",
|
313
|
-
fill: "currentColor"
|
314
|
-
|
202
|
+
fill: "currentColor",
|
203
|
+
...rest
|
204
|
+
}, _path13 || (_path13 = /*#__PURE__*/React__default.createElement("path", {
|
315
205
|
d: "m22.5046,11.6368l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z"
|
316
206
|
})), _path14 || (_path14 = /*#__PURE__*/React__default.createElement("path", {
|
317
207
|
d: "m16,31c-.1741,0-.3481-.0454-.5039-.1362l-12-7c-.3071-.1792-.4961-.5081-.4961-.8638v-14c0-.3557.189-.6846.4961-.8638L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l11,6.4166-1.0078,1.7275-10.4961-6.1227-11,6.4166v12.8513l11,6.4166,11-6.4166v-7.4257h2v8c0,.3557-.189.6846-.4961.8638l-12,7c-.1558.0908-.3298.1362-.5039.1362Z"
|
@@ -320,19 +210,21 @@ var KubernetesPod = /*#__PURE__*/React__default.forwardRef(function KubernetesPo
|
|
320
210
|
if (process.env.NODE_ENV !== "production") {
|
321
211
|
KubernetesPod.propTypes = iconPropTypes;
|
322
212
|
}
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
size =
|
327
|
-
rest
|
328
|
-
|
213
|
+
const KubernetesWorkerNode = /*#__PURE__*/React__default.forwardRef(function KubernetesWorkerNode(_ref9, ref) {
|
214
|
+
let {
|
215
|
+
children,
|
216
|
+
size = 16,
|
217
|
+
...rest
|
218
|
+
} = _ref9;
|
219
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
329
220
|
width: size,
|
330
221
|
height: size,
|
331
222
|
ref: ref,
|
332
223
|
xmlns: "http://www.w3.org/2000/svg",
|
333
224
|
viewBox: "0 0 32 32",
|
334
|
-
fill: "currentColor"
|
335
|
-
|
225
|
+
fill: "currentColor",
|
226
|
+
...rest
|
227
|
+
}, _path15 || (_path15 = /*#__PURE__*/React__default.createElement("path", {
|
336
228
|
d: "M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"
|
337
229
|
})), _path16 || (_path16 = /*#__PURE__*/React__default.createElement("path", {
|
338
230
|
d: "m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"
|
@@ -344,19 +236,21 @@ var KubernetesWorkerNode = /*#__PURE__*/React__default.forwardRef(function Kuber
|
|
344
236
|
if (process.env.NODE_ENV !== "production") {
|
345
237
|
KubernetesWorkerNode.propTypes = iconPropTypes;
|
346
238
|
}
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
size =
|
351
|
-
rest
|
352
|
-
|
239
|
+
const Label = /*#__PURE__*/React__default.forwardRef(function Label(_ref10, ref) {
|
240
|
+
let {
|
241
|
+
children,
|
242
|
+
size = 16,
|
243
|
+
...rest
|
244
|
+
} = _ref10;
|
245
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
353
246
|
width: size,
|
354
247
|
height: size,
|
355
248
|
ref: ref,
|
356
249
|
xmlns: "http://www.w3.org/2000/svg",
|
357
250
|
viewBox: "0 0 32 32",
|
358
|
-
fill: "currentColor"
|
359
|
-
|
251
|
+
fill: "currentColor",
|
252
|
+
...rest
|
253
|
+
}, _path18 || (_path18 = /*#__PURE__*/React__default.createElement("path", {
|
360
254
|
d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2.0023 2.0023 0 0023 13zm0 8H19V19h4zM13 9H9a2.002 2.002 0 00-2 2V23H9V18h4v5h2V11A2.002 2.002 0 0013 9zM9 16V11h4v5z"
|
361
255
|
})), _path19 || (_path19 = /*#__PURE__*/React__default.createElement("path", {
|
362
256
|
d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z"
|
@@ -365,38 +259,42 @@ var Label = /*#__PURE__*/React__default.forwardRef(function Label(_ref10, ref) {
|
|
365
259
|
if (process.env.NODE_ENV !== "production") {
|
366
260
|
Label.propTypes = iconPropTypes;
|
367
261
|
}
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
size =
|
372
|
-
rest
|
373
|
-
|
262
|
+
const Language = /*#__PURE__*/React__default.forwardRef(function Language(_ref11, ref) {
|
263
|
+
let {
|
264
|
+
children,
|
265
|
+
size = 16,
|
266
|
+
...rest
|
267
|
+
} = _ref11;
|
268
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
374
269
|
width: size,
|
375
270
|
height: size,
|
376
271
|
ref: ref,
|
377
272
|
xmlns: "http://www.w3.org/2000/svg",
|
378
273
|
viewBox: "0 0 32 32",
|
379
|
-
fill: "currentColor"
|
380
|
-
|
274
|
+
fill: "currentColor",
|
275
|
+
...rest
|
276
|
+
}, _path20 || (_path20 = /*#__PURE__*/React__default.createElement("path", {
|
381
277
|
d: "M18 19H24V21H18zM18 15H30V17H18zM18 11H30V13H18zM14 21V19H9V17H7v2H2v2h8.2148a8.5914 8.5914 0 01-2.2159 3.9771A9.2731 9.2731 0 016.5521 23H4.3334a10.8553 10.8553 0 002.1451 3.2966A14.6584 14.6584 0 013 28.127L3.7021 30a16.42 16.42 0 004.2907-2.3362A16.4883 16.4883 0 0012.2979 30L13 28.127A14.664 14.664 0 019.5228 26.3 10.3132 10.3132 0 0012.2516 21zM11.1666 13H13.333L8.75 2H6.5832L2 13H4.1664L5 11h5.3335zM5.8331 9L7.6665 4.6 9.5 9z"
|
382
278
|
})), children);
|
383
279
|
});
|
384
280
|
if (process.env.NODE_ENV !== "production") {
|
385
281
|
Language.propTypes = iconPropTypes;
|
386
282
|
}
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
size =
|
391
|
-
rest
|
392
|
-
|
283
|
+
const Laptop = /*#__PURE__*/React__default.forwardRef(function Laptop(_ref12, ref) {
|
284
|
+
let {
|
285
|
+
children,
|
286
|
+
size = 16,
|
287
|
+
...rest
|
288
|
+
} = _ref12;
|
289
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
393
290
|
width: size,
|
394
291
|
height: size,
|
395
292
|
ref: ref,
|
396
293
|
xmlns: "http://www.w3.org/2000/svg",
|
397
294
|
viewBox: "0 0 32 32",
|
398
|
-
fill: "currentColor"
|
399
|
-
|
295
|
+
fill: "currentColor",
|
296
|
+
...rest
|
297
|
+
}, _path21 || (_path21 = /*#__PURE__*/React__default.createElement("path", {
|
400
298
|
d: "M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z",
|
401
299
|
transform: "translate(0 .005)"
|
402
300
|
})), _path22 || (_path22 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -406,71 +304,78 @@ var Laptop = /*#__PURE__*/React__default.forwardRef(function Laptop(_ref12, ref)
|
|
406
304
|
if (process.env.NODE_ENV !== "production") {
|
407
305
|
Laptop.propTypes = iconPropTypes;
|
408
306
|
}
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
size =
|
413
|
-
rest
|
414
|
-
|
307
|
+
const Lasso = /*#__PURE__*/React__default.forwardRef(function Lasso(_ref13, ref) {
|
308
|
+
let {
|
309
|
+
children,
|
310
|
+
size = 16,
|
311
|
+
...rest
|
312
|
+
} = _ref13;
|
313
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
415
314
|
width: size,
|
416
315
|
height: size,
|
417
316
|
ref: ref,
|
418
317
|
xmlns: "http://www.w3.org/2000/svg",
|
419
318
|
viewBox: "0 0 32 32",
|
420
|
-
fill: "currentColor"
|
421
|
-
|
319
|
+
fill: "currentColor",
|
320
|
+
...rest
|
321
|
+
}, _path23 || (_path23 = /*#__PURE__*/React__default.createElement("path", {
|
422
322
|
d: "M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z"
|
423
323
|
})), children);
|
424
324
|
});
|
425
325
|
if (process.env.NODE_ENV !== "production") {
|
426
326
|
Lasso.propTypes = iconPropTypes;
|
427
327
|
}
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
size =
|
432
|
-
rest
|
433
|
-
|
328
|
+
const LassoPolygon = /*#__PURE__*/React__default.forwardRef(function LassoPolygon(_ref14, ref) {
|
329
|
+
let {
|
330
|
+
children,
|
331
|
+
size = 16,
|
332
|
+
...rest
|
333
|
+
} = _ref14;
|
334
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
434
335
|
width: size,
|
435
336
|
height: size,
|
436
337
|
ref: ref,
|
437
338
|
xmlns: "http://www.w3.org/2000/svg",
|
438
339
|
viewBox: "0 0 32 32",
|
439
|
-
fill: "currentColor"
|
440
|
-
|
340
|
+
fill: "currentColor",
|
341
|
+
...rest
|
342
|
+
}, _path24 || (_path24 = /*#__PURE__*/React__default.createElement("path", {
|
441
343
|
d: "M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z"
|
442
344
|
})), children);
|
443
345
|
});
|
444
346
|
if (process.env.NODE_ENV !== "production") {
|
445
347
|
LassoPolygon.propTypes = iconPropTypes;
|
446
348
|
}
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
size =
|
451
|
-
rest
|
349
|
+
const Launch = /*#__PURE__*/React__default.forwardRef(function Launch(_ref15, ref) {
|
350
|
+
let {
|
351
|
+
children,
|
352
|
+
size = 16,
|
353
|
+
...rest
|
354
|
+
} = _ref15;
|
452
355
|
if (size === 16 || size === "16" || size === "16px") {
|
453
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
356
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
454
357
|
width: size,
|
455
358
|
height: size,
|
456
359
|
ref: ref,
|
457
360
|
xmlns: "http://www.w3.org/2000/svg",
|
458
361
|
viewBox: "0 0 16 16",
|
459
|
-
fill: "currentColor"
|
460
|
-
|
362
|
+
fill: "currentColor",
|
363
|
+
...rest
|
364
|
+
}, _path25 || (_path25 = /*#__PURE__*/React__default.createElement("path", {
|
461
365
|
d: "M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z"
|
462
366
|
})), _path26 || (_path26 = /*#__PURE__*/React__default.createElement("path", {
|
463
367
|
d: "M10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"
|
464
368
|
})), children);
|
465
369
|
}
|
466
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
370
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
467
371
|
width: size,
|
468
372
|
height: size,
|
469
373
|
ref: ref,
|
470
374
|
xmlns: "http://www.w3.org/2000/svg",
|
471
375
|
viewBox: "0 0 32 32",
|
472
|
-
fill: "currentColor"
|
473
|
-
|
376
|
+
fill: "currentColor",
|
377
|
+
...rest
|
378
|
+
}, _path27 || (_path27 = /*#__PURE__*/React__default.createElement("path", {
|
474
379
|
d: "M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z"
|
475
380
|
})), _path28 || (_path28 = /*#__PURE__*/React__default.createElement("path", {
|
476
381
|
d: "M20 2L20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"
|
@@ -479,19 +384,21 @@ var Launch = /*#__PURE__*/React__default.forwardRef(function Launch(_ref15, ref)
|
|
479
384
|
if (process.env.NODE_ENV !== "production") {
|
480
385
|
Launch.propTypes = iconPropTypes;
|
481
386
|
}
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
size =
|
486
|
-
rest
|
487
|
-
|
387
|
+
const WatsonHealthLaunchStudy_1 = /*#__PURE__*/React__default.forwardRef(function WatsonHealthLaunchStudy_1(_ref16, ref) {
|
388
|
+
let {
|
389
|
+
children,
|
390
|
+
size = 16,
|
391
|
+
...rest
|
392
|
+
} = _ref16;
|
393
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
488
394
|
width: size,
|
489
395
|
height: size,
|
490
396
|
ref: ref,
|
491
397
|
xmlns: "http://www.w3.org/2000/svg",
|
492
398
|
viewBox: "0 0 32 32",
|
493
|
-
fill: "currentColor"
|
494
|
-
|
399
|
+
fill: "currentColor",
|
400
|
+
...rest
|
401
|
+
}, _circle3 || (_circle3 = /*#__PURE__*/React__default.createElement("circle", {
|
495
402
|
cx: "23",
|
496
403
|
cy: "25",
|
497
404
|
r: "1"
|
@@ -504,19 +411,21 @@ var WatsonHealthLaunchStudy_1 = /*#__PURE__*/React__default.forwardRef(function
|
|
504
411
|
if (process.env.NODE_ENV !== "production") {
|
505
412
|
WatsonHealthLaunchStudy_1.propTypes = iconPropTypes;
|
506
413
|
}
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
size =
|
511
|
-
rest
|
512
|
-
|
414
|
+
const WatsonHealthLaunchStudy_2 = /*#__PURE__*/React__default.forwardRef(function WatsonHealthLaunchStudy_2(_ref17, ref) {
|
415
|
+
let {
|
416
|
+
children,
|
417
|
+
size = 16,
|
418
|
+
...rest
|
419
|
+
} = _ref17;
|
420
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
513
421
|
width: size,
|
514
422
|
height: size,
|
515
423
|
ref: ref,
|
516
424
|
xmlns: "http://www.w3.org/2000/svg",
|
517
425
|
viewBox: "0 0 32 32",
|
518
|
-
fill: "currentColor"
|
519
|
-
|
426
|
+
fill: "currentColor",
|
427
|
+
...rest
|
428
|
+
}, _circle4 || (_circle4 = /*#__PURE__*/React__default.createElement("circle", {
|
520
429
|
cx: "23",
|
521
430
|
cy: "7",
|
522
431
|
r: "1"
|
@@ -529,19 +438,21 @@ var WatsonHealthLaunchStudy_2 = /*#__PURE__*/React__default.forwardRef(function
|
|
529
438
|
if (process.env.NODE_ENV !== "production") {
|
530
439
|
WatsonHealthLaunchStudy_2.propTypes = iconPropTypes;
|
531
440
|
}
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
size =
|
536
|
-
rest
|
537
|
-
|
441
|
+
const WatsonHealthLaunchStudy_3 = /*#__PURE__*/React__default.forwardRef(function WatsonHealthLaunchStudy_3(_ref18, ref) {
|
442
|
+
let {
|
443
|
+
children,
|
444
|
+
size = 16,
|
445
|
+
...rest
|
446
|
+
} = _ref18;
|
447
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
538
448
|
width: size,
|
539
449
|
height: size,
|
540
450
|
ref: ref,
|
541
451
|
xmlns: "http://www.w3.org/2000/svg",
|
542
452
|
viewBox: "0 0 32 32",
|
543
|
-
fill: "currentColor"
|
544
|
-
|
453
|
+
fill: "currentColor",
|
454
|
+
...rest
|
455
|
+
}, _circle5 || (_circle5 = /*#__PURE__*/React__default.createElement("circle", {
|
545
456
|
cx: "23",
|
546
457
|
cy: "25",
|
547
458
|
r: "1"
|
@@ -554,19 +465,21 @@ var WatsonHealthLaunchStudy_3 = /*#__PURE__*/React__default.forwardRef(function
|
|
554
465
|
if (process.env.NODE_ENV !== "production") {
|
555
466
|
WatsonHealthLaunchStudy_3.propTypes = iconPropTypes;
|
556
467
|
}
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
size =
|
561
|
-
rest
|
562
|
-
|
468
|
+
const Layers = /*#__PURE__*/React__default.forwardRef(function Layers(_ref19, ref) {
|
469
|
+
let {
|
470
|
+
children,
|
471
|
+
size = 16,
|
472
|
+
...rest
|
473
|
+
} = _ref19;
|
474
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
563
475
|
width: size,
|
564
476
|
height: size,
|
565
477
|
ref: ref,
|
566
478
|
xmlns: "http://www.w3.org/2000/svg",
|
567
479
|
viewBox: "0 0 32 32",
|
568
|
-
fill: "currentColor"
|
569
|
-
|
480
|
+
fill: "currentColor",
|
481
|
+
...rest
|
482
|
+
}, _path35 || (_path35 = /*#__PURE__*/React__default.createElement("path", {
|
570
483
|
d: "M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z"
|
571
484
|
})), _path36 || (_path36 = /*#__PURE__*/React__default.createElement("path", {
|
572
485
|
d: "M16 30a.9967.9967 0 01-.4741-.12l-13-7L3.4741 21.12 16 27.8643 28.5259 21.12l.9482 1.7607-13 7A.9967.9967 0 0116 30zM16 18a.9967.9967 0 01-.4741-.12l-13-7a1 1 0 010-1.7607l13-7a.9982.9982 0 01.9482 0l13 7a1 1 0 010 1.7607l-13 7A.9967.9967 0 0116 18zM5.1094 10L16 15.8643 26.8906 10 16 4.1358z"
|
@@ -575,19 +488,21 @@ var Layers = /*#__PURE__*/React__default.forwardRef(function Layers(_ref19, ref)
|
|
575
488
|
if (process.env.NODE_ENV !== "production") {
|
576
489
|
Layers.propTypes = iconPropTypes;
|
577
490
|
}
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
size =
|
582
|
-
rest
|
583
|
-
|
491
|
+
const LayersExternal = /*#__PURE__*/React__default.forwardRef(function LayersExternal(_ref20, ref) {
|
492
|
+
let {
|
493
|
+
children,
|
494
|
+
size = 16,
|
495
|
+
...rest
|
496
|
+
} = _ref20;
|
497
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
584
498
|
width: size,
|
585
499
|
height: size,
|
586
500
|
ref: ref,
|
587
501
|
xmlns: "http://www.w3.org/2000/svg",
|
588
502
|
viewBox: "0 0 32 32",
|
589
|
-
fill: "currentColor"
|
590
|
-
|
503
|
+
fill: "currentColor",
|
504
|
+
...rest
|
505
|
+
}, _path37 || (_path37 = /*#__PURE__*/React__default.createElement("path", {
|
591
506
|
strokeWidth: "0",
|
592
507
|
d: "m16,24c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"
|
593
508
|
})), _path38 || (_path38 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -598,19 +513,21 @@ var LayersExternal = /*#__PURE__*/React__default.forwardRef(function LayersExter
|
|
598
513
|
if (process.env.NODE_ENV !== "production") {
|
599
514
|
LayersExternal.propTypes = iconPropTypes;
|
600
515
|
}
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
size =
|
605
|
-
rest
|
606
|
-
|
516
|
+
const Legend = /*#__PURE__*/React__default.forwardRef(function Legend(_ref21, ref) {
|
517
|
+
let {
|
518
|
+
children,
|
519
|
+
size = 16,
|
520
|
+
...rest
|
521
|
+
} = _ref21;
|
522
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
607
523
|
width: size,
|
608
524
|
height: size,
|
609
525
|
ref: ref,
|
610
526
|
xmlns: "http://www.w3.org/2000/svg",
|
611
527
|
viewBox: "0 0 32 32",
|
612
|
-
fill: "currentColor"
|
613
|
-
|
528
|
+
fill: "currentColor",
|
529
|
+
...rest
|
530
|
+
}, _path39 || (_path39 = /*#__PURE__*/React__default.createElement("path", {
|
614
531
|
d: "M16 22H30V24H16z"
|
615
532
|
})), _rect || (_rect = /*#__PURE__*/React__default.createElement("rect", {
|
616
533
|
width: "6",
|
@@ -625,513 +542,567 @@ var Legend = /*#__PURE__*/React__default.forwardRef(function Legend(_ref21, ref)
|
|
625
542
|
if (process.env.NODE_ENV !== "production") {
|
626
543
|
Legend.propTypes = iconPropTypes;
|
627
544
|
}
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
size =
|
632
|
-
rest
|
633
|
-
|
545
|
+
const LetterAa = /*#__PURE__*/React__default.forwardRef(function LetterAa(_ref22, ref) {
|
546
|
+
let {
|
547
|
+
children,
|
548
|
+
size = 16,
|
549
|
+
...rest
|
550
|
+
} = _ref22;
|
551
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
634
552
|
width: size,
|
635
553
|
height: size,
|
636
554
|
ref: ref,
|
637
555
|
xmlns: "http://www.w3.org/2000/svg",
|
638
556
|
viewBox: "0 0 32 32",
|
639
|
-
fill: "currentColor"
|
640
|
-
|
557
|
+
fill: "currentColor",
|
558
|
+
...rest
|
559
|
+
}, _path41 || (_path41 = /*#__PURE__*/React__default.createElement("path", {
|
641
560
|
d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2 2 0 0023 13zm0 8H19V19h4zM13 9H9a2 2 0 00-2 2V23H9V18h4v5h2V11A2 2 0 0013 9zM9 16V11h4v5z"
|
642
561
|
})), children);
|
643
562
|
});
|
644
563
|
if (process.env.NODE_ENV !== "production") {
|
645
564
|
LetterAa.propTypes = iconPropTypes;
|
646
565
|
}
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
size =
|
651
|
-
rest
|
652
|
-
|
566
|
+
const LetterBb = /*#__PURE__*/React__default.forwardRef(function LetterBb(_ref23, ref) {
|
567
|
+
let {
|
568
|
+
children,
|
569
|
+
size = 16,
|
570
|
+
...rest
|
571
|
+
} = _ref23;
|
572
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
653
573
|
width: size,
|
654
574
|
height: size,
|
655
575
|
ref: ref,
|
656
576
|
xmlns: "http://www.w3.org/2000/svg",
|
657
577
|
viewBox: "0 0 32 32",
|
658
|
-
fill: "currentColor"
|
659
|
-
|
578
|
+
fill: "currentColor",
|
579
|
+
...rest
|
580
|
+
}, _path42 || (_path42 = /*#__PURE__*/React__default.createElement("path", {
|
660
581
|
d: "M23 13H19V9H17V23h6a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM15 12a3 3 0 00-3-3H7V23h5a3 3 0 003-3V18a3 3 0 00-.78-2A3 3 0 0015 14zM9 11h3a1 1 0 011 1v2a1 1 0 01-1 1H9zm4 9a1 1 0 01-1 1H9V17h3a1 1 0 011 1z"
|
661
582
|
})), children);
|
662
583
|
});
|
663
584
|
if (process.env.NODE_ENV !== "production") {
|
664
585
|
LetterBb.propTypes = iconPropTypes;
|
665
586
|
}
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
size =
|
670
|
-
rest
|
671
|
-
|
587
|
+
const LetterCc = /*#__PURE__*/React__default.forwardRef(function LetterCc(_ref24, ref) {
|
588
|
+
let {
|
589
|
+
children,
|
590
|
+
size = 16,
|
591
|
+
...rest
|
592
|
+
} = _ref24;
|
593
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
672
594
|
width: size,
|
673
595
|
height: size,
|
674
596
|
ref: ref,
|
675
597
|
xmlns: "http://www.w3.org/2000/svg",
|
676
598
|
viewBox: "0 0 32 32",
|
677
|
-
fill: "currentColor"
|
678
|
-
|
599
|
+
fill: "currentColor",
|
600
|
+
...rest
|
601
|
+
}, _path43 || (_path43 = /*#__PURE__*/React__default.createElement("path", {
|
679
602
|
d: "M24 23H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v6h5zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z"
|
680
603
|
})), children);
|
681
604
|
});
|
682
605
|
if (process.env.NODE_ENV !== "production") {
|
683
606
|
LetterCc.propTypes = iconPropTypes;
|
684
607
|
}
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
size =
|
689
|
-
rest
|
690
|
-
|
608
|
+
const LetterDd = /*#__PURE__*/React__default.forwardRef(function LetterDd(_ref25, ref) {
|
609
|
+
let {
|
610
|
+
children,
|
611
|
+
size = 16,
|
612
|
+
...rest
|
613
|
+
} = _ref25;
|
614
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
691
615
|
width: size,
|
692
616
|
height: size,
|
693
617
|
ref: ref,
|
694
618
|
xmlns: "http://www.w3.org/2000/svg",
|
695
619
|
viewBox: "0 0 32 32",
|
696
|
-
fill: "currentColor"
|
697
|
-
|
620
|
+
fill: "currentColor",
|
621
|
+
...rest
|
622
|
+
}, _path44 || (_path44 = /*#__PURE__*/React__default.createElement("path", {
|
698
623
|
d: "M23 9v4H19a2 2 0 00-2 2v6a2 2 0 002 2h6V9zm-4 6h4v6H19zM11 23H7V9h4a4 4 0 014 4v6A4 4 0 0111 23zM9 21h2a2 2 0 002-2V13a2 2 0 00-2-2H9z"
|
699
624
|
})), children);
|
700
625
|
});
|
701
626
|
if (process.env.NODE_ENV !== "production") {
|
702
627
|
LetterDd.propTypes = iconPropTypes;
|
703
628
|
}
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
size =
|
708
|
-
rest
|
709
|
-
|
629
|
+
const LetterEe = /*#__PURE__*/React__default.forwardRef(function LetterEe(_ref26, ref) {
|
630
|
+
let {
|
631
|
+
children,
|
632
|
+
size = 16,
|
633
|
+
...rest
|
634
|
+
} = _ref26;
|
635
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
710
636
|
width: size,
|
711
637
|
height: size,
|
712
638
|
ref: ref,
|
713
639
|
xmlns: "http://www.w3.org/2000/svg",
|
714
640
|
viewBox: "0 0 32 32",
|
715
|
-
fill: "currentColor"
|
716
|
-
|
641
|
+
fill: "currentColor",
|
642
|
+
...rest
|
643
|
+
}, _path45 || (_path45 = /*#__PURE__*/React__default.createElement("path", {
|
717
644
|
d: "M25 19V15a2.0023 2.0023 0 00-2-2H19a2.0023 2.0023 0 00-2 2v6a2.0077 2.0077 0 002 2h5V21H19V19zm-6-4h4v2H19zM15 11L15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z"
|
718
645
|
})), children);
|
719
646
|
});
|
720
647
|
if (process.env.NODE_ENV !== "production") {
|
721
648
|
LetterEe.propTypes = iconPropTypes;
|
722
649
|
}
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
size =
|
727
|
-
rest
|
728
|
-
|
650
|
+
const LetterFf = /*#__PURE__*/React__default.forwardRef(function LetterFf(_ref27, ref) {
|
651
|
+
let {
|
652
|
+
children,
|
653
|
+
size = 16,
|
654
|
+
...rest
|
655
|
+
} = _ref27;
|
656
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
729
657
|
width: size,
|
730
658
|
height: size,
|
731
659
|
ref: ref,
|
732
660
|
xmlns: "http://www.w3.org/2000/svg",
|
733
661
|
viewBox: "0 0 32 32",
|
734
|
-
fill: "currentColor"
|
735
|
-
|
662
|
+
fill: "currentColor",
|
663
|
+
...rest
|
664
|
+
}, _path46 || (_path46 = /*#__PURE__*/React__default.createElement("path", {
|
736
665
|
d: "M16 11L16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11zM24 11V9H21a2 2 0 00-2 2v2H17v2h2v8h2V15h3V13H21V11z"
|
737
666
|
})), children);
|
738
667
|
});
|
739
668
|
if (process.env.NODE_ENV !== "production") {
|
740
669
|
LetterFf.propTypes = iconPropTypes;
|
741
670
|
}
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
size =
|
746
|
-
rest
|
747
|
-
|
671
|
+
const LetterGg = /*#__PURE__*/React__default.forwardRef(function LetterGg(_ref28, ref) {
|
672
|
+
let {
|
673
|
+
children,
|
674
|
+
size = 16,
|
675
|
+
...rest
|
676
|
+
} = _ref28;
|
677
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
748
678
|
width: size,
|
749
679
|
height: size,
|
750
680
|
ref: ref,
|
751
681
|
xmlns: "http://www.w3.org/2000/svg",
|
752
682
|
viewBox: "0 0 32 32",
|
753
|
-
fill: "currentColor"
|
754
|
-
|
683
|
+
fill: "currentColor",
|
684
|
+
...rest
|
685
|
+
}, _path47 || (_path47 = /*#__PURE__*/React__default.createElement("path", {
|
755
686
|
d: "M19 13a2 2 0 00-2 2v6a2 2 0 002 2h4v2H18v2h5a2 2 0 002-2V13zm4 8H19V15h4zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h4V17H11V15h4z"
|
756
687
|
})), children);
|
757
688
|
});
|
758
689
|
if (process.env.NODE_ENV !== "production") {
|
759
690
|
LetterGg.propTypes = iconPropTypes;
|
760
691
|
}
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
size =
|
765
|
-
rest
|
766
|
-
|
692
|
+
const LetterHh = /*#__PURE__*/React__default.forwardRef(function LetterHh(_ref29, ref) {
|
693
|
+
let {
|
694
|
+
children,
|
695
|
+
size = 16,
|
696
|
+
...rest
|
697
|
+
} = _ref29;
|
698
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
767
699
|
width: size,
|
768
700
|
height: size,
|
769
701
|
ref: ref,
|
770
702
|
xmlns: "http://www.w3.org/2000/svg",
|
771
703
|
viewBox: "0 0 32 32",
|
772
|
-
fill: "currentColor"
|
773
|
-
|
704
|
+
fill: "currentColor",
|
705
|
+
...rest
|
706
|
+
}, _path48 || (_path48 = /*#__PURE__*/React__default.createElement("path", {
|
774
707
|
d: "M13 9L13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9zM23 13H19V9H17V23h2V15h4v8h2V15A2 2 0 0023 13z"
|
775
708
|
})), children);
|
776
709
|
});
|
777
710
|
if (process.env.NODE_ENV !== "production") {
|
778
711
|
LetterHh.propTypes = iconPropTypes;
|
779
712
|
}
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
size =
|
784
|
-
rest
|
785
|
-
|
713
|
+
const LetterIi = /*#__PURE__*/React__default.forwardRef(function LetterIi(_ref30, ref) {
|
714
|
+
let {
|
715
|
+
children,
|
716
|
+
size = 16,
|
717
|
+
...rest
|
718
|
+
} = _ref30;
|
719
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
786
720
|
width: size,
|
787
721
|
height: size,
|
788
722
|
ref: ref,
|
789
723
|
xmlns: "http://www.w3.org/2000/svg",
|
790
724
|
viewBox: "0 0 32 32",
|
791
|
-
fill: "currentColor"
|
792
|
-
|
725
|
+
fill: "currentColor",
|
726
|
+
...rest
|
727
|
+
}, _path49 || (_path49 = /*#__PURE__*/React__default.createElement("path", {
|
793
728
|
d: "M10 11L13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11zM20 13H22V23H20zM20 9H22V11H20z"
|
794
729
|
})), children);
|
795
730
|
});
|
796
731
|
if (process.env.NODE_ENV !== "production") {
|
797
732
|
LetterIi.propTypes = iconPropTypes;
|
798
733
|
}
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
size =
|
803
|
-
rest
|
804
|
-
|
734
|
+
const LetterJj = /*#__PURE__*/React__default.forwardRef(function LetterJj(_ref31, ref) {
|
735
|
+
let {
|
736
|
+
children,
|
737
|
+
size = 16,
|
738
|
+
...rest
|
739
|
+
} = _ref31;
|
740
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
805
741
|
width: size,
|
806
742
|
height: size,
|
807
743
|
ref: ref,
|
808
744
|
xmlns: "http://www.w3.org/2000/svg",
|
809
745
|
viewBox: "0 0 32 32",
|
810
|
-
fill: "currentColor"
|
811
|
-
|
746
|
+
fill: "currentColor",
|
747
|
+
...rest
|
748
|
+
}, _path50 || (_path50 = /*#__PURE__*/React__default.createElement("path", {
|
812
749
|
d: "M20 9H22V11H20zM20 25H17v2h3a2 2 0 002-2V13H20zM14 23H10a2 2 0 01-2-2V19h2v2h4V9h2V21A2 2 0 0114 23z"
|
813
750
|
})), children);
|
814
751
|
});
|
815
752
|
if (process.env.NODE_ENV !== "production") {
|
816
753
|
LetterJj.propTypes = iconPropTypes;
|
817
754
|
}
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
size =
|
822
|
-
rest
|
823
|
-
|
755
|
+
const LetterKk = /*#__PURE__*/React__default.forwardRef(function LetterKk(_ref32, ref) {
|
756
|
+
let {
|
757
|
+
children,
|
758
|
+
size = 16,
|
759
|
+
...rest
|
760
|
+
} = _ref32;
|
761
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
824
762
|
width: size,
|
825
763
|
height: size,
|
826
764
|
ref: ref,
|
827
765
|
xmlns: "http://www.w3.org/2000/svg",
|
828
766
|
viewBox: "0 0 32 32",
|
829
|
-
fill: "currentColor"
|
830
|
-
|
767
|
+
fill: "currentColor",
|
768
|
+
...rest
|
769
|
+
}, _path51 || (_path51 = /*#__PURE__*/React__default.createElement("path", {
|
831
770
|
d: "M15 9L12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9zM22.78 23L25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z"
|
832
771
|
})), children);
|
833
772
|
});
|
834
773
|
if (process.env.NODE_ENV !== "production") {
|
835
774
|
LetterKk.propTypes = iconPropTypes;
|
836
775
|
}
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
size =
|
841
|
-
rest
|
842
|
-
|
776
|
+
const LetterLl = /*#__PURE__*/React__default.forwardRef(function LetterLl(_ref33, ref) {
|
777
|
+
let {
|
778
|
+
children,
|
779
|
+
size = 16,
|
780
|
+
...rest
|
781
|
+
} = _ref33;
|
782
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
843
783
|
width: size,
|
844
784
|
height: size,
|
845
785
|
ref: ref,
|
846
786
|
xmlns: "http://www.w3.org/2000/svg",
|
847
787
|
viewBox: "0 0 32 32",
|
848
|
-
fill: "currentColor"
|
849
|
-
|
788
|
+
fill: "currentColor",
|
789
|
+
...rest
|
790
|
+
}, _path52 || (_path52 = /*#__PURE__*/React__default.createElement("path", {
|
850
791
|
d: "M11 21L11 9 9 9 9 23 17 23 17 21 11 21zM23 23H21a2 2 0 01-2-2V9h2V21h2z"
|
851
792
|
})), children);
|
852
793
|
});
|
853
794
|
if (process.env.NODE_ENV !== "production") {
|
854
795
|
LetterLl.propTypes = iconPropTypes;
|
855
796
|
}
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
size =
|
860
|
-
rest
|
861
|
-
|
797
|
+
const LetterMm = /*#__PURE__*/React__default.forwardRef(function LetterMm(_ref34, ref) {
|
798
|
+
let {
|
799
|
+
children,
|
800
|
+
size = 16,
|
801
|
+
...rest
|
802
|
+
} = _ref34;
|
803
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
862
804
|
width: size,
|
863
805
|
height: size,
|
864
806
|
ref: ref,
|
865
807
|
xmlns: "http://www.w3.org/2000/svg",
|
866
808
|
viewBox: "0 0 32 32",
|
867
|
-
fill: "currentColor"
|
868
|
-
|
809
|
+
fill: "currentColor",
|
810
|
+
...rest
|
811
|
+
}, _path53 || (_path53 = /*#__PURE__*/React__default.createElement("path", {
|
869
812
|
d: "M24 13H16V23h2V15h2v8h2V15h2v8h2V15A2 2 0 0024 13zM12 9L10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z"
|
870
813
|
})), children);
|
871
814
|
});
|
872
815
|
if (process.env.NODE_ENV !== "production") {
|
873
816
|
LetterMm.propTypes = iconPropTypes;
|
874
817
|
}
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
size =
|
879
|
-
rest
|
880
|
-
|
818
|
+
const LetterNn = /*#__PURE__*/React__default.forwardRef(function LetterNn(_ref35, ref) {
|
819
|
+
let {
|
820
|
+
children,
|
821
|
+
size = 16,
|
822
|
+
...rest
|
823
|
+
} = _ref35;
|
824
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
881
825
|
width: size,
|
882
826
|
height: size,
|
883
827
|
ref: ref,
|
884
828
|
xmlns: "http://www.w3.org/2000/svg",
|
885
829
|
viewBox: "0 0 32 32",
|
886
|
-
fill: "currentColor"
|
887
|
-
|
830
|
+
fill: "currentColor",
|
831
|
+
...rest
|
832
|
+
}, _path54 || (_path54 = /*#__PURE__*/React__default.createElement("path", {
|
888
833
|
d: "M25 23H23V15H19v8H17V13h6a2 2 0 012 2zM13 19L9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z"
|
889
834
|
})), children);
|
890
835
|
});
|
891
836
|
if (process.env.NODE_ENV !== "production") {
|
892
837
|
LetterNn.propTypes = iconPropTypes;
|
893
838
|
}
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
size =
|
898
|
-
rest
|
899
|
-
|
839
|
+
const LetterOo = /*#__PURE__*/React__default.forwardRef(function LetterOo(_ref36, ref) {
|
840
|
+
let {
|
841
|
+
children,
|
842
|
+
size = 16,
|
843
|
+
...rest
|
844
|
+
} = _ref36;
|
845
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
900
846
|
width: size,
|
901
847
|
height: size,
|
902
848
|
ref: ref,
|
903
849
|
xmlns: "http://www.w3.org/2000/svg",
|
904
850
|
viewBox: "0 0 32 32",
|
905
|
-
fill: "currentColor"
|
906
|
-
|
851
|
+
fill: "currentColor",
|
852
|
+
...rest
|
853
|
+
}, _path55 || (_path55 = /*#__PURE__*/React__default.createElement("path", {
|
907
854
|
d: "M23 23H19a2 2 0 01-2-2V15a2 2 0 012-2h4a2 2 0 012 2v6A2 2 0 0123 23zm-4-8v6h4V15zM13 23H9a2 2 0 01-2-2V11A2 2 0 019 9h4a2 2 0 012 2V21A2 2 0 0113 23zM9 11V21h4V11z"
|
908
855
|
})), children);
|
909
856
|
});
|
910
857
|
if (process.env.NODE_ENV !== "production") {
|
911
858
|
LetterOo.propTypes = iconPropTypes;
|
912
859
|
}
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
size =
|
917
|
-
rest
|
918
|
-
|
860
|
+
const LetterPp = /*#__PURE__*/React__default.forwardRef(function LetterPp(_ref37, ref) {
|
861
|
+
let {
|
862
|
+
children,
|
863
|
+
size = 16,
|
864
|
+
...rest
|
865
|
+
} = _ref37;
|
866
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
919
867
|
width: size,
|
920
868
|
height: size,
|
921
869
|
ref: ref,
|
922
870
|
xmlns: "http://www.w3.org/2000/svg",
|
923
871
|
viewBox: "0 0 32 32",
|
924
|
-
fill: "currentColor"
|
925
|
-
|
872
|
+
fill: "currentColor",
|
873
|
+
...rest
|
874
|
+
}, _path56 || (_path56 = /*#__PURE__*/React__default.createElement("path", {
|
926
875
|
d: "M23 13H17V27h2V23h4a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM9 23H7V9h6a2 2 0 012 2v5a2 2 0 01-2 2H9zm0-7h4V11H9z"
|
927
876
|
})), children);
|
928
877
|
});
|
929
878
|
if (process.env.NODE_ENV !== "production") {
|
930
879
|
LetterPp.propTypes = iconPropTypes;
|
931
880
|
}
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
size =
|
936
|
-
rest
|
937
|
-
|
881
|
+
const LetterQq = /*#__PURE__*/React__default.forwardRef(function LetterQq(_ref38, ref) {
|
882
|
+
let {
|
883
|
+
children,
|
884
|
+
size = 16,
|
885
|
+
...rest
|
886
|
+
} = _ref38;
|
887
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
938
888
|
width: size,
|
939
889
|
height: size,
|
940
890
|
ref: ref,
|
941
891
|
xmlns: "http://www.w3.org/2000/svg",
|
942
892
|
viewBox: "0 0 32 32",
|
943
|
-
fill: "currentColor"
|
944
|
-
|
893
|
+
fill: "currentColor",
|
894
|
+
...rest
|
895
|
+
}, _path57 || (_path57 = /*#__PURE__*/React__default.createElement("path", {
|
945
896
|
d: "M19 13a2 2 0 00-2 2v6a2 2 0 002 2h4v4h2V13zm4 8H19V15h4zM13 9H9a2 2 0 00-2 2V21a2 2 0 002 2h1v2a2 2 0 002 2h2V25H12V23h1a2 2 0 002-2V11A2 2 0 0013 9zM9 21V11h4V21z"
|
946
897
|
})), children);
|
947
898
|
});
|
948
899
|
if (process.env.NODE_ENV !== "production") {
|
949
900
|
LetterQq.propTypes = iconPropTypes;
|
950
901
|
}
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
size =
|
955
|
-
rest
|
956
|
-
|
902
|
+
const LetterRr = /*#__PURE__*/React__default.forwardRef(function LetterRr(_ref39, ref) {
|
903
|
+
let {
|
904
|
+
children,
|
905
|
+
size = 16,
|
906
|
+
...rest
|
907
|
+
} = _ref39;
|
908
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
957
909
|
width: size,
|
958
910
|
height: size,
|
959
911
|
ref: ref,
|
960
912
|
xmlns: "http://www.w3.org/2000/svg",
|
961
913
|
viewBox: "0 0 32 32",
|
962
|
-
fill: "currentColor"
|
963
|
-
|
914
|
+
fill: "currentColor",
|
915
|
+
...rest
|
916
|
+
}, _path58 || (_path58 = /*#__PURE__*/React__default.createElement("path", {
|
964
917
|
d: "M16 15V11a2 2 0 00-2-2H8V23h2V17h1.48l2.34 6H16l-2.33-6H14A2 2 0 0016 15zm-6-4h4v4H10zM24 13L18 13 18 23 20 23 20 15 24 15 24 13z"
|
965
918
|
})), children);
|
966
919
|
});
|
967
920
|
if (process.env.NODE_ENV !== "production") {
|
968
921
|
LetterRr.propTypes = iconPropTypes;
|
969
922
|
}
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
size =
|
974
|
-
rest
|
975
|
-
|
923
|
+
const LetterSs = /*#__PURE__*/React__default.forwardRef(function LetterSs(_ref40, ref) {
|
924
|
+
let {
|
925
|
+
children,
|
926
|
+
size = 16,
|
927
|
+
...rest
|
928
|
+
} = _ref40;
|
929
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
976
930
|
width: size,
|
977
931
|
height: size,
|
978
932
|
ref: ref,
|
979
933
|
xmlns: "http://www.w3.org/2000/svg",
|
980
934
|
viewBox: "0 0 32 32",
|
981
|
-
fill: "currentColor"
|
982
|
-
|
935
|
+
fill: "currentColor",
|
936
|
+
...rest
|
937
|
+
}, _path59 || (_path59 = /*#__PURE__*/React__default.createElement("path", {
|
983
938
|
d: "M22 23H17V21h5V19H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v2h3a2 2 0 012 2v2A2 2 0 0122 23zM13 23H7V21h6V17H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9v4h4a2 2 0 012 2v4A2 2 0 0113 23z"
|
984
939
|
})), children);
|
985
940
|
});
|
986
941
|
if (process.env.NODE_ENV !== "production") {
|
987
942
|
LetterSs.propTypes = iconPropTypes;
|
988
943
|
}
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
size =
|
993
|
-
rest
|
994
|
-
|
944
|
+
const LetterTt = /*#__PURE__*/React__default.forwardRef(function LetterTt(_ref41, ref) {
|
945
|
+
let {
|
946
|
+
children,
|
947
|
+
size = 16,
|
948
|
+
...rest
|
949
|
+
} = _ref41;
|
950
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
995
951
|
width: size,
|
996
952
|
height: size,
|
997
953
|
ref: ref,
|
998
954
|
xmlns: "http://www.w3.org/2000/svg",
|
999
955
|
viewBox: "0 0 32 32",
|
1000
|
-
fill: "currentColor"
|
1001
|
-
|
956
|
+
fill: "currentColor",
|
957
|
+
...rest
|
958
|
+
}, _path60 || (_path60 = /*#__PURE__*/React__default.createElement("path", {
|
1002
959
|
d: "M8 11L11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11zM23 15V13H20V11H18v2H16v2h2v6a2 2 0 002 2h3V21H20V15z"
|
1003
960
|
})), children);
|
1004
961
|
});
|
1005
962
|
if (process.env.NODE_ENV !== "production") {
|
1006
963
|
LetterTt.propTypes = iconPropTypes;
|
1007
964
|
}
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
size =
|
1012
|
-
rest
|
1013
|
-
|
965
|
+
const LetterUu = /*#__PURE__*/React__default.forwardRef(function LetterUu(_ref42, ref) {
|
966
|
+
let {
|
967
|
+
children,
|
968
|
+
size = 16,
|
969
|
+
...rest
|
970
|
+
} = _ref42;
|
971
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1014
972
|
width: size,
|
1015
973
|
height: size,
|
1016
974
|
ref: ref,
|
1017
975
|
xmlns: "http://www.w3.org/2000/svg",
|
1018
976
|
viewBox: "0 0 32 32",
|
1019
|
-
fill: "currentColor"
|
1020
|
-
|
977
|
+
fill: "currentColor",
|
978
|
+
...rest
|
979
|
+
}, _path61 || (_path61 = /*#__PURE__*/React__default.createElement("path", {
|
1021
980
|
d: "M23 23H19a2 2 0 01-2-2V13h2v8h4V13h2v8A2 2 0 0123 23zM13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23z"
|
1022
981
|
})), children);
|
1023
982
|
});
|
1024
983
|
if (process.env.NODE_ENV !== "production") {
|
1025
984
|
LetterUu.propTypes = iconPropTypes;
|
1026
985
|
}
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
size =
|
1031
|
-
rest
|
1032
|
-
|
986
|
+
const LetterVv = /*#__PURE__*/React__default.forwardRef(function LetterVv(_ref43, ref) {
|
987
|
+
let {
|
988
|
+
children,
|
989
|
+
size = 16,
|
990
|
+
...rest
|
991
|
+
} = _ref43;
|
992
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1033
993
|
width: size,
|
1034
994
|
height: size,
|
1035
995
|
ref: ref,
|
1036
996
|
xmlns: "http://www.w3.org/2000/svg",
|
1037
997
|
viewBox: "0 0 32 32",
|
1038
|
-
fill: "currentColor"
|
1039
|
-
|
998
|
+
fill: "currentColor",
|
999
|
+
...rest
|
1000
|
+
}, _path62 || (_path62 = /*#__PURE__*/React__default.createElement("path", {
|
1040
1001
|
d: "M25 13L23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13zM13 9L11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z"
|
1041
1002
|
})), children);
|
1042
1003
|
});
|
1043
1004
|
if (process.env.NODE_ENV !== "production") {
|
1044
1005
|
LetterVv.propTypes = iconPropTypes;
|
1045
1006
|
}
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
size =
|
1050
|
-
rest
|
1051
|
-
|
1007
|
+
const LetterWw = /*#__PURE__*/React__default.forwardRef(function LetterWw(_ref44, ref) {
|
1008
|
+
let {
|
1009
|
+
children,
|
1010
|
+
size = 16,
|
1011
|
+
...rest
|
1012
|
+
} = _ref44;
|
1013
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1052
1014
|
width: size,
|
1053
1015
|
height: size,
|
1054
1016
|
ref: ref,
|
1055
1017
|
xmlns: "http://www.w3.org/2000/svg",
|
1056
1018
|
viewBox: "0 0 32 32",
|
1057
|
-
fill: "currentColor"
|
1058
|
-
|
1019
|
+
fill: "currentColor",
|
1020
|
+
...rest
|
1021
|
+
}, _path63 || (_path63 = /*#__PURE__*/React__default.createElement("path", {
|
1059
1022
|
d: "M24.3 13L23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13zM12.21 9L11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z"
|
1060
1023
|
})), children);
|
1061
1024
|
});
|
1062
1025
|
if (process.env.NODE_ENV !== "production") {
|
1063
1026
|
LetterWw.propTypes = iconPropTypes;
|
1064
1027
|
}
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
size =
|
1069
|
-
rest
|
1070
|
-
|
1028
|
+
const LetterXx = /*#__PURE__*/React__default.forwardRef(function LetterXx(_ref45, ref) {
|
1029
|
+
let {
|
1030
|
+
children,
|
1031
|
+
size = 16,
|
1032
|
+
...rest
|
1033
|
+
} = _ref45;
|
1034
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1071
1035
|
width: size,
|
1072
1036
|
height: size,
|
1073
1037
|
ref: ref,
|
1074
1038
|
xmlns: "http://www.w3.org/2000/svg",
|
1075
1039
|
viewBox: "0 0 32 32",
|
1076
|
-
fill: "currentColor"
|
1077
|
-
|
1040
|
+
fill: "currentColor",
|
1041
|
+
...rest
|
1042
|
+
}, _path64 || (_path64 = /*#__PURE__*/React__default.createElement("path", {
|
1078
1043
|
d: "M15 9L13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9zM25 13L23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z"
|
1079
1044
|
})), children);
|
1080
1045
|
});
|
1081
1046
|
if (process.env.NODE_ENV !== "production") {
|
1082
1047
|
LetterXx.propTypes = iconPropTypes;
|
1083
1048
|
}
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
size =
|
1088
|
-
rest
|
1089
|
-
|
1049
|
+
const LetterYy = /*#__PURE__*/React__default.forwardRef(function LetterYy(_ref46, ref) {
|
1050
|
+
let {
|
1051
|
+
children,
|
1052
|
+
size = 16,
|
1053
|
+
...rest
|
1054
|
+
} = _ref46;
|
1055
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1090
1056
|
width: size,
|
1091
1057
|
height: size,
|
1092
1058
|
ref: ref,
|
1093
1059
|
xmlns: "http://www.w3.org/2000/svg",
|
1094
1060
|
viewBox: "0 0 32 32",
|
1095
|
-
fill: "currentColor"
|
1096
|
-
|
1061
|
+
fill: "currentColor",
|
1062
|
+
...rest
|
1063
|
+
}, _path65 || (_path65 = /*#__PURE__*/React__default.createElement("path", {
|
1097
1064
|
d: "M15 9L13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9zM23 13l-2 7.52L19.08 13H17l3.15 9.87L19.53 25H17v2h2.26a2 2 0 001.91-1.42L25 13z"
|
1098
1065
|
})), children);
|
1099
1066
|
});
|
1100
1067
|
if (process.env.NODE_ENV !== "production") {
|
1101
1068
|
LetterYy.propTypes = iconPropTypes;
|
1102
1069
|
}
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
size =
|
1107
|
-
rest
|
1108
|
-
|
1070
|
+
const LetterZz = /*#__PURE__*/React__default.forwardRef(function LetterZz(_ref47, ref) {
|
1071
|
+
let {
|
1072
|
+
children,
|
1073
|
+
size = 16,
|
1074
|
+
...rest
|
1075
|
+
} = _ref47;
|
1076
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1109
1077
|
width: size,
|
1110
1078
|
height: size,
|
1111
1079
|
ref: ref,
|
1112
1080
|
xmlns: "http://www.w3.org/2000/svg",
|
1113
1081
|
viewBox: "0 0 32 32",
|
1114
|
-
fill: "currentColor"
|
1115
|
-
|
1082
|
+
fill: "currentColor",
|
1083
|
+
...rest
|
1084
|
+
}, _path66 || (_path66 = /*#__PURE__*/React__default.createElement("path", {
|
1116
1085
|
d: "M25 15L25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15zM15 9L7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z"
|
1117
1086
|
})), children);
|
1118
1087
|
});
|
1119
1088
|
if (process.env.NODE_ENV !== "production") {
|
1120
1089
|
LetterZz.propTypes = iconPropTypes;
|
1121
1090
|
}
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
size =
|
1126
|
-
rest
|
1127
|
-
|
1091
|
+
const License = /*#__PURE__*/React__default.forwardRef(function License(_ref48, ref) {
|
1092
|
+
let {
|
1093
|
+
children,
|
1094
|
+
size = 16,
|
1095
|
+
...rest
|
1096
|
+
} = _ref48;
|
1097
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1128
1098
|
width: size,
|
1129
1099
|
height: size,
|
1130
1100
|
ref: ref,
|
1131
1101
|
xmlns: "http://www.w3.org/2000/svg",
|
1132
1102
|
viewBox: "0 0 32 32",
|
1133
|
-
fill: "currentColor"
|
1134
|
-
|
1103
|
+
fill: "currentColor",
|
1104
|
+
...rest
|
1105
|
+
}, _path67 || (_path67 = /*#__PURE__*/React__default.createElement("path", {
|
1135
1106
|
d: "M10 6H22V8H10zM10 10H22V12H10zM10 24H16V26H10zM10 14H16V16H10z"
|
1136
1107
|
})), _path68 || (_path68 = /*#__PURE__*/React__default.createElement("path", {
|
1137
1108
|
d: "M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z"
|
@@ -1140,19 +1111,21 @@ var License = /*#__PURE__*/React__default.forwardRef(function License(_ref48, re
|
|
1140
1111
|
if (process.env.NODE_ENV !== "production") {
|
1141
1112
|
License.propTypes = iconPropTypes;
|
1142
1113
|
}
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
size =
|
1147
|
-
rest
|
1148
|
-
|
1114
|
+
const LicenseDraft = /*#__PURE__*/React__default.forwardRef(function LicenseDraft(_ref49, ref) {
|
1115
|
+
let {
|
1116
|
+
children,
|
1117
|
+
size = 16,
|
1118
|
+
...rest
|
1119
|
+
} = _ref49;
|
1120
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1149
1121
|
width: size,
|
1150
1122
|
height: size,
|
1151
1123
|
ref: ref,
|
1152
1124
|
xmlns: "http://www.w3.org/2000/svg",
|
1153
1125
|
viewBox: "0 0 32 32",
|
1154
|
-
fill: "currentColor"
|
1155
|
-
|
1126
|
+
fill: "currentColor",
|
1127
|
+
...rest
|
1128
|
+
}, _path69 || (_path69 = /*#__PURE__*/React__default.createElement("path", {
|
1156
1129
|
d: "M8 6H20V8H8zM8 10H20V12H8zM8 14H14V16H8zM8 24H12V26H8z"
|
1157
1130
|
})), _path70 || (_path70 = /*#__PURE__*/React__default.createElement("path", {
|
1158
1131
|
d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM12 30H6a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 016 2H22a2.0021 2.0021 0 012 2V14H22V4H6V28h6z"
|
@@ -1161,19 +1134,21 @@ var LicenseDraft = /*#__PURE__*/React__default.forwardRef(function LicenseDraft(
|
|
1161
1134
|
if (process.env.NODE_ENV !== "production") {
|
1162
1135
|
LicenseDraft.propTypes = iconPropTypes;
|
1163
1136
|
}
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
size =
|
1168
|
-
rest
|
1169
|
-
|
1137
|
+
const LicenseGlobal = /*#__PURE__*/React__default.forwardRef(function LicenseGlobal(_ref50, ref) {
|
1138
|
+
let {
|
1139
|
+
children,
|
1140
|
+
size = 16,
|
1141
|
+
...rest
|
1142
|
+
} = _ref50;
|
1143
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1170
1144
|
width: size,
|
1171
1145
|
height: size,
|
1172
1146
|
ref: ref,
|
1173
1147
|
xmlns: "http://www.w3.org/2000/svg",
|
1174
1148
|
viewBox: "0 0 32 32",
|
1175
|
-
fill: "currentColor"
|
1176
|
-
|
1149
|
+
fill: "currentColor",
|
1150
|
+
...rest
|
1151
|
+
}, _path71 || (_path71 = /*#__PURE__*/React__default.createElement("path", {
|
1177
1152
|
d: "M22 14a8 8 0 108 8A8.0092 8.0092 0 0022 14zm5.91 7H25.9563a12.03 12.03 0 00-1.2183-4.3325A6.01 6.01 0 0127.91 21zm-7.8545 0A10.0135 10.0135 0 0122 16.0146 10.0121 10.0121 0 0123.9448 21zm3.89 2A10.01 10.01 0 0122 27.9854 10.0121 10.0121 0 0120.0552 23zm-4.6831-6.332A12.0265 12.0265 0 0018.0435 21H16.09A6.01 6.01 0 0119.2617 16.668zM16.09 23h1.9532a12.0265 12.0265 0 001.2182 4.332A6.01 6.01 0 0116.09 23zm8.6482 4.332A12.0242 12.0242 0 0025.9565 23H27.91A6.0088 6.0088 0 0124.7385 27.332zM6 14H12V16H6zM6 6H18V8H6zM6 10H18V12H6zM6 24H12V26H6z"
|
1178
1153
|
})), _path72 || (_path72 = /*#__PURE__*/React__default.createElement("path", {
|
1179
1154
|
d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z"
|
@@ -1182,19 +1157,21 @@ var LicenseGlobal = /*#__PURE__*/React__default.forwardRef(function LicenseGloba
|
|
1182
1157
|
if (process.env.NODE_ENV !== "production") {
|
1183
1158
|
LicenseGlobal.propTypes = iconPropTypes;
|
1184
1159
|
}
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
size =
|
1189
|
-
rest
|
1190
|
-
|
1160
|
+
const LicenseMaintenance = /*#__PURE__*/React__default.forwardRef(function LicenseMaintenance(_ref51, ref) {
|
1161
|
+
let {
|
1162
|
+
children,
|
1163
|
+
size = 16,
|
1164
|
+
...rest
|
1165
|
+
} = _ref51;
|
1166
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1191
1167
|
width: size,
|
1192
1168
|
height: size,
|
1193
1169
|
ref: ref,
|
1194
1170
|
xmlns: "http://www.w3.org/2000/svg",
|
1195
1171
|
viewBox: "0 0 32 32",
|
1196
|
-
fill: "currentColor"
|
1197
|
-
|
1172
|
+
fill: "currentColor",
|
1173
|
+
...rest
|
1174
|
+
}, _path73 || (_path73 = /*#__PURE__*/React__default.createElement("path", {
|
1198
1175
|
d: "M8 14H14V16H8zM8 6H20V8H8zM8 10H20V12H8zM8 24H14V26H8zM30 24V22H27.8989a4.9678 4.9678 0 00-.7319-1.7529l1.49-1.49-1.414-1.414-1.49 1.49A4.9678 4.9678 0 0024 18.1011V16H22v2.1011a4.9678 4.9678 0 00-1.7529.7319l-1.49-1.49-1.414 1.414 1.49 1.49A4.9678 4.9678 0 0018.1011 22H16v2h2.1011a4.9678 4.9678 0 00.7319 1.7529l-1.49 1.49 1.414 1.414 1.49-1.49A4.9678 4.9678 0 0022 27.8989V30h2V27.8989a4.9678 4.9678 0 001.7529-.7319l1.49 1.49 1.414-1.414-1.49-1.49A4.9678 4.9678 0 0027.8989 24zm-7 2a3 3 0 113-3A3.0033 3.0033 0 0123 26z"
|
1199
1176
|
})), _path74 || (_path74 = /*#__PURE__*/React__default.createElement("path", {
|
1200
1177
|
d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"
|
@@ -1203,19 +1180,21 @@ var LicenseMaintenance = /*#__PURE__*/React__default.forwardRef(function License
|
|
1203
1180
|
if (process.env.NODE_ENV !== "production") {
|
1204
1181
|
LicenseMaintenance.propTypes = iconPropTypes;
|
1205
1182
|
}
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
size =
|
1210
|
-
rest
|
1211
|
-
|
1183
|
+
const LicenseMaintenanceDraft = /*#__PURE__*/React__default.forwardRef(function LicenseMaintenanceDraft(_ref52, ref) {
|
1184
|
+
let {
|
1185
|
+
children,
|
1186
|
+
size = 16,
|
1187
|
+
...rest
|
1188
|
+
} = _ref52;
|
1189
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1212
1190
|
width: size,
|
1213
1191
|
height: size,
|
1214
1192
|
ref: ref,
|
1215
1193
|
xmlns: "http://www.w3.org/2000/svg",
|
1216
1194
|
viewBox: "0 0 32 32",
|
1217
|
-
fill: "currentColor"
|
1218
|
-
|
1195
|
+
fill: "currentColor",
|
1196
|
+
...rest
|
1197
|
+
}, _path75 || (_path75 = /*#__PURE__*/React__default.createElement("path", {
|
1219
1198
|
d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM20 13V11H17.8579a3.94 3.94 0 00-.4248-1.019L18.95 8.4644 17.5356 7.05 16.019 8.5669A3.9443 3.9443 0 0015 8.1421V6H13V8.1421a3.9443 3.9443 0 00-1.019.4248L10.4644 7.05 9.05 8.4644 10.5669 9.981A3.94 3.94 0 0010.1421 11H8v2h2.1421a3.94 3.94 0 00.4248 1.019L9.05 15.5356 10.4644 16.95l1.5166-1.5166A3.9443 3.9443 0 0013 15.8579V18h2V15.8579a3.9443 3.9443 0 001.019-.4248L17.5356 16.95 18.95 15.5356 17.4331 14.019A3.94 3.94 0 0017.8579 13zm-6 1a2 2 0 112-2A2.0025 2.0025 0 0114 14z"
|
1220
1199
|
})), _path76 || (_path76 = /*#__PURE__*/React__default.createElement("path", {
|
1221
1200
|
d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"
|
@@ -1224,19 +1203,21 @@ var LicenseMaintenanceDraft = /*#__PURE__*/React__default.forwardRef(function Li
|
|
1224
1203
|
if (process.env.NODE_ENV !== "production") {
|
1225
1204
|
LicenseMaintenanceDraft.propTypes = iconPropTypes;
|
1226
1205
|
}
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
size =
|
1231
|
-
rest
|
1232
|
-
|
1206
|
+
const LicenseThirdParty = /*#__PURE__*/React__default.forwardRef(function LicenseThirdParty(_ref53, ref) {
|
1207
|
+
let {
|
1208
|
+
children,
|
1209
|
+
size = 16,
|
1210
|
+
...rest
|
1211
|
+
} = _ref53;
|
1212
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1233
1213
|
width: size,
|
1234
1214
|
height: size,
|
1235
1215
|
ref: ref,
|
1236
1216
|
xmlns: "http://www.w3.org/2000/svg",
|
1237
1217
|
viewBox: "0 0 32 32",
|
1238
|
-
fill: "currentColor"
|
1239
|
-
|
1218
|
+
fill: "currentColor",
|
1219
|
+
...rest
|
1220
|
+
}, _path77 || (_path77 = /*#__PURE__*/React__default.createElement("path", {
|
1240
1221
|
d: "M8 14H14V16H8zM8 6H20V8H8zM8 10H20V12H8zM8 24H14V26H8zM27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM24 24a4 4 0 10-4-4A4 4 0 0024 24zm0-6a2 2 0 11-2 2A2 2 0 0124 18z"
|
1241
1222
|
})), _path78 || (_path78 = /*#__PURE__*/React__default.createElement("path", {
|
1242
1223
|
d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"
|
@@ -1245,19 +1226,21 @@ var LicenseThirdParty = /*#__PURE__*/React__default.forwardRef(function LicenseT
|
|
1245
1226
|
if (process.env.NODE_ENV !== "production") {
|
1246
1227
|
LicenseThirdParty.propTypes = iconPropTypes;
|
1247
1228
|
}
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
size =
|
1252
|
-
rest
|
1253
|
-
|
1229
|
+
const LicenseThirdPartyDraft = /*#__PURE__*/React__default.forwardRef(function LicenseThirdPartyDraft(_ref54, ref) {
|
1230
|
+
let {
|
1231
|
+
children,
|
1232
|
+
size = 16,
|
1233
|
+
...rest
|
1234
|
+
} = _ref54;
|
1235
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1254
1236
|
width: size,
|
1255
1237
|
height: size,
|
1256
1238
|
ref: ref,
|
1257
1239
|
xmlns: "http://www.w3.org/2000/svg",
|
1258
1240
|
viewBox: "0 0 32 32",
|
1259
|
-
fill: "currentColor"
|
1260
|
-
|
1241
|
+
fill: "currentColor",
|
1242
|
+
...rest
|
1243
|
+
}, _path79 || (_path79 = /*#__PURE__*/React__default.createElement("path", {
|
1261
1244
|
d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM17 15H11a3 3 0 00-3 3v1h2V18a1 1 0 011-1h6a1 1 0 011 1v1h2V18A3 3 0 0017 15zM14 14a4 4 0 10-4-4A4 4 0 0014 14zm0-6a2 2 0 11-2 2A2 2 0 0114 8z"
|
1262
1245
|
})), _path80 || (_path80 = /*#__PURE__*/React__default.createElement("path", {
|
1263
1246
|
d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"
|
@@ -1266,39 +1249,43 @@ var LicenseThirdPartyDraft = /*#__PURE__*/React__default.forwardRef(function Lic
|
|
1266
1249
|
if (process.env.NODE_ENV !== "production") {
|
1267
1250
|
LicenseThirdPartyDraft.propTypes = iconPropTypes;
|
1268
1251
|
}
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
size =
|
1273
|
-
rest
|
1274
|
-
|
1252
|
+
const Lifesaver = /*#__PURE__*/React__default.forwardRef(function Lifesaver(_ref55, ref) {
|
1253
|
+
let {
|
1254
|
+
children,
|
1255
|
+
size = 16,
|
1256
|
+
...rest
|
1257
|
+
} = _ref55;
|
1258
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1275
1259
|
width: size,
|
1276
1260
|
height: size,
|
1277
1261
|
ref: ref,
|
1278
1262
|
xmlns: "http://www.w3.org/2000/svg",
|
1279
1263
|
viewBox: "0 0 32 32",
|
1280
|
-
fill: "currentColor"
|
1281
|
-
|
1264
|
+
fill: "currentColor",
|
1265
|
+
...rest
|
1266
|
+
}, _path81 || (_path81 = /*#__PURE__*/React__default.createElement("path", {
|
1282
1267
|
d: "M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z"
|
1283
1268
|
})), children);
|
1284
1269
|
});
|
1285
1270
|
if (process.env.NODE_ENV !== "production") {
|
1286
1271
|
Lifesaver.propTypes = iconPropTypes;
|
1287
1272
|
}
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
size =
|
1292
|
-
rest
|
1273
|
+
const Light = /*#__PURE__*/React__default.forwardRef(function Light(_ref56, ref) {
|
1274
|
+
let {
|
1275
|
+
children,
|
1276
|
+
size = 16,
|
1277
|
+
...rest
|
1278
|
+
} = _ref56;
|
1293
1279
|
if (size === 16 || size === "16" || size === "16px") {
|
1294
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
1280
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1295
1281
|
width: size,
|
1296
1282
|
height: size,
|
1297
1283
|
ref: ref,
|
1298
1284
|
xmlns: "http://www.w3.org/2000/svg",
|
1299
1285
|
viewBox: "0 0 16 16",
|
1300
|
-
fill: "currentColor"
|
1301
|
-
|
1286
|
+
fill: "currentColor",
|
1287
|
+
...rest
|
1288
|
+
}, _path82 || (_path82 = /*#__PURE__*/React__default.createElement("path", {
|
1302
1289
|
d: "M7.5 1H8.5V3.5H7.5z"
|
1303
1290
|
})), _path83 || (_path83 = /*#__PURE__*/React__default.createElement("path", {
|
1304
1291
|
d: "M10.8 3.4H13.3V4.4H10.8z",
|
@@ -1322,14 +1309,15 @@ var Light = /*#__PURE__*/React__default.forwardRef(function Light(_ref56, ref) {
|
|
1322
1309
|
d: "M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z"
|
1323
1310
|
})), children);
|
1324
1311
|
}
|
1325
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
1312
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1326
1313
|
width: size,
|
1327
1314
|
height: size,
|
1328
1315
|
ref: ref,
|
1329
1316
|
xmlns: "http://www.w3.org/2000/svg",
|
1330
1317
|
viewBox: "0 0 32 32",
|
1331
|
-
fill: "currentColor"
|
1332
|
-
|
1318
|
+
fill: "currentColor",
|
1319
|
+
...rest
|
1320
|
+
}, _path91 || (_path91 = /*#__PURE__*/React__default.createElement("path", {
|
1333
1321
|
d: "M15 2H17V7H15z"
|
1334
1322
|
})), _path92 || (_path92 = /*#__PURE__*/React__default.createElement("path", {
|
1335
1323
|
d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
|
@@ -1356,19 +1344,21 @@ var Light = /*#__PURE__*/React__default.forwardRef(function Light(_ref56, ref) {
|
|
1356
1344
|
if (process.env.NODE_ENV !== "production") {
|
1357
1345
|
Light.propTypes = iconPropTypes;
|
1358
1346
|
}
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
size =
|
1363
|
-
rest
|
1364
|
-
|
1347
|
+
const LightFilled = /*#__PURE__*/React__default.forwardRef(function LightFilled(_ref57, ref) {
|
1348
|
+
let {
|
1349
|
+
children,
|
1350
|
+
size = 16,
|
1351
|
+
...rest
|
1352
|
+
} = _ref57;
|
1353
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1365
1354
|
width: size,
|
1366
1355
|
height: size,
|
1367
1356
|
ref: ref,
|
1368
1357
|
xmlns: "http://www.w3.org/2000/svg",
|
1369
1358
|
viewBox: "0 0 32 32",
|
1370
|
-
fill: "currentColor"
|
1371
|
-
|
1359
|
+
fill: "currentColor",
|
1360
|
+
...rest
|
1361
|
+
}, _path100 || (_path100 = /*#__PURE__*/React__default.createElement("path", {
|
1372
1362
|
d: "M15 2H17V7H15z"
|
1373
1363
|
})), _path101 || (_path101 = /*#__PURE__*/React__default.createElement("path", {
|
1374
1364
|
d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
|
@@ -1395,38 +1385,42 @@ var LightFilled = /*#__PURE__*/React__default.forwardRef(function LightFilled(_r
|
|
1395
1385
|
if (process.env.NODE_ENV !== "production") {
|
1396
1386
|
LightFilled.propTypes = iconPropTypes;
|
1397
1387
|
}
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
size =
|
1402
|
-
rest
|
1403
|
-
|
1388
|
+
const Lightning = /*#__PURE__*/React__default.forwardRef(function Lightning(_ref58, ref) {
|
1389
|
+
let {
|
1390
|
+
children,
|
1391
|
+
size = 16,
|
1392
|
+
...rest
|
1393
|
+
} = _ref58;
|
1394
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1404
1395
|
width: size,
|
1405
1396
|
height: size,
|
1406
1397
|
ref: ref,
|
1407
1398
|
xmlns: "http://www.w3.org/2000/svg",
|
1408
1399
|
viewBox: "0 0 32 32",
|
1409
|
-
fill: "currentColor"
|
1410
|
-
|
1400
|
+
fill: "currentColor",
|
1401
|
+
...rest
|
1402
|
+
}, _path109 || (_path109 = /*#__PURE__*/React__default.createElement("path", {
|
1411
1403
|
d: "M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"
|
1412
1404
|
})), children);
|
1413
1405
|
});
|
1414
1406
|
if (process.env.NODE_ENV !== "production") {
|
1415
1407
|
Lightning.propTypes = iconPropTypes;
|
1416
1408
|
}
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
size =
|
1421
|
-
rest
|
1422
|
-
|
1409
|
+
const Link = /*#__PURE__*/React__default.forwardRef(function Link(_ref59, ref) {
|
1410
|
+
let {
|
1411
|
+
children,
|
1412
|
+
size = 16,
|
1413
|
+
...rest
|
1414
|
+
} = _ref59;
|
1415
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1423
1416
|
width: size,
|
1424
1417
|
height: size,
|
1425
1418
|
ref: ref,
|
1426
1419
|
xmlns: "http://www.w3.org/2000/svg",
|
1427
1420
|
viewBox: "0 0 32 32",
|
1428
|
-
fill: "currentColor"
|
1429
|
-
|
1421
|
+
fill: "currentColor",
|
1422
|
+
...rest
|
1423
|
+
}, _path110 || (_path110 = /*#__PURE__*/React__default.createElement("path", {
|
1430
1424
|
d: "M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z"
|
1431
1425
|
})), _path111 || (_path111 = /*#__PURE__*/React__default.createElement("path", {
|
1432
1426
|
d: "M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z"
|
@@ -1435,38 +1429,42 @@ var Link = /*#__PURE__*/React__default.forwardRef(function Link(_ref59, ref) {
|
|
1435
1429
|
if (process.env.NODE_ENV !== "production") {
|
1436
1430
|
Link.propTypes = iconPropTypes;
|
1437
1431
|
}
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
size =
|
1442
|
-
rest
|
1443
|
-
|
1432
|
+
const Linux = /*#__PURE__*/React__default.forwardRef(function Linux(_ref60, ref) {
|
1433
|
+
let {
|
1434
|
+
children,
|
1435
|
+
size = 16,
|
1436
|
+
...rest
|
1437
|
+
} = _ref60;
|
1438
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1444
1439
|
width: size,
|
1445
1440
|
height: size,
|
1446
1441
|
ref: ref,
|
1447
1442
|
xmlns: "http://www.w3.org/2000/svg",
|
1448
1443
|
viewBox: "0 0 32 32",
|
1449
|
-
fill: "currentColor"
|
1450
|
-
|
1444
|
+
fill: "currentColor",
|
1445
|
+
...rest
|
1446
|
+
}, _path112 || (_path112 = /*#__PURE__*/React__default.createElement("path", {
|
1451
1447
|
d: "M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z"
|
1452
1448
|
})), children);
|
1453
1449
|
});
|
1454
1450
|
if (process.env.NODE_ENV !== "production") {
|
1455
1451
|
Linux.propTypes = iconPropTypes;
|
1456
1452
|
}
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
size =
|
1461
|
-
rest
|
1462
|
-
|
1453
|
+
const LinuxAlt = /*#__PURE__*/React__default.forwardRef(function LinuxAlt(_ref61, ref) {
|
1454
|
+
let {
|
1455
|
+
children,
|
1456
|
+
size = 16,
|
1457
|
+
...rest
|
1458
|
+
} = _ref61;
|
1459
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1463
1460
|
width: size,
|
1464
1461
|
height: size,
|
1465
1462
|
ref: ref,
|
1466
1463
|
xmlns: "http://www.w3.org/2000/svg",
|
1467
1464
|
viewBox: "0 0 32 32",
|
1468
|
-
fill: "currentColor"
|
1469
|
-
|
1465
|
+
fill: "currentColor",
|
1466
|
+
...rest
|
1467
|
+
}, _path113 || (_path113 = /*#__PURE__*/React__default.createElement("path", {
|
1470
1468
|
d: "M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z"
|
1471
1469
|
})), _path114 || (_path114 = /*#__PURE__*/React__default.createElement("path", {
|
1472
1470
|
d: "M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z"
|
@@ -1475,19 +1473,21 @@ var LinuxAlt = /*#__PURE__*/React__default.forwardRef(function LinuxAlt(_ref61,
|
|
1475
1473
|
if (process.env.NODE_ENV !== "production") {
|
1476
1474
|
LinuxAlt.propTypes = iconPropTypes;
|
1477
1475
|
}
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
size =
|
1482
|
-
rest
|
1483
|
-
|
1476
|
+
const LinuxNamespace = /*#__PURE__*/React__default.forwardRef(function LinuxNamespace(_ref62, ref) {
|
1477
|
+
let {
|
1478
|
+
children,
|
1479
|
+
size = 16,
|
1480
|
+
...rest
|
1481
|
+
} = _ref62;
|
1482
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1484
1483
|
width: size,
|
1485
1484
|
height: size,
|
1486
1485
|
ref: ref,
|
1487
1486
|
xmlns: "http://www.w3.org/2000/svg",
|
1488
1487
|
viewBox: "0 0 32 32",
|
1489
|
-
fill: "currentColor"
|
1490
|
-
|
1488
|
+
fill: "currentColor",
|
1489
|
+
...rest
|
1490
|
+
}, _path115 || (_path115 = /*#__PURE__*/React__default.createElement("path", {
|
1491
1491
|
strokeWidth: "0",
|
1492
1492
|
d: "M26 2H28V30H26zM20 25H6c-1.1046 0-2-.8954-2-2v-14c0-1.1046.8954-2 2-2h14c1.1046 0 2 .8954 2 2v14c0 1.1046-.8954 2-2 2zm0-16H6v14h14v-14z"
|
1493
1493
|
})), children);
|
@@ -1495,58 +1495,64 @@ var LinuxNamespace = /*#__PURE__*/React__default.forwardRef(function LinuxNamesp
|
|
1495
1495
|
if (process.env.NODE_ENV !== "production") {
|
1496
1496
|
LinuxNamespace.propTypes = iconPropTypes;
|
1497
1497
|
}
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
size =
|
1502
|
-
rest
|
1503
|
-
|
1498
|
+
const List = /*#__PURE__*/React__default.forwardRef(function List(_ref63, ref) {
|
1499
|
+
let {
|
1500
|
+
children,
|
1501
|
+
size = 16,
|
1502
|
+
...rest
|
1503
|
+
} = _ref63;
|
1504
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1504
1505
|
width: size,
|
1505
1506
|
height: size,
|
1506
1507
|
ref: ref,
|
1507
1508
|
xmlns: "http://www.w3.org/2000/svg",
|
1508
1509
|
viewBox: "0 0 32 32",
|
1509
|
-
fill: "currentColor"
|
1510
|
-
|
1510
|
+
fill: "currentColor",
|
1511
|
+
...rest
|
1512
|
+
}, _path116 || (_path116 = /*#__PURE__*/React__default.createElement("path", {
|
1511
1513
|
d: "M10 6H28V8H10zM10 24H28V26H10zM10 15H28V17H10zM4 15H6V17H4zM4 6H6V8H4zM4 24H6V26H4z"
|
1512
1514
|
})), children);
|
1513
1515
|
});
|
1514
1516
|
if (process.env.NODE_ENV !== "production") {
|
1515
1517
|
List.propTypes = iconPropTypes;
|
1516
1518
|
}
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
size =
|
1521
|
-
rest
|
1522
|
-
|
1519
|
+
const ListBoxes = /*#__PURE__*/React__default.forwardRef(function ListBoxes(_ref64, ref) {
|
1520
|
+
let {
|
1521
|
+
children,
|
1522
|
+
size = 16,
|
1523
|
+
...rest
|
1524
|
+
} = _ref64;
|
1525
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1523
1526
|
width: size,
|
1524
1527
|
height: size,
|
1525
1528
|
ref: ref,
|
1526
1529
|
xmlns: "http://www.w3.org/2000/svg",
|
1527
1530
|
viewBox: "0 0 32 32",
|
1528
|
-
fill: "currentColor"
|
1529
|
-
|
1531
|
+
fill: "currentColor",
|
1532
|
+
...rest
|
1533
|
+
}, _path117 || (_path117 = /*#__PURE__*/React__default.createElement("path", {
|
1530
1534
|
d: "M16 8H30V10H16zM16 22H30V24H16zM10 14H4a2.0023 2.0023 0 01-2-2V6A2.0023 2.0023 0 014 4h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0110 14zM4 6v6h6.0012L10 6zM10 28H4a2.0023 2.0023 0 01-2-2V20a2.0023 2.0023 0 012-2h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0110 28zM4 20v6h6.0012L10 20z"
|
1531
1535
|
})), children);
|
1532
1536
|
});
|
1533
1537
|
if (process.env.NODE_ENV !== "production") {
|
1534
1538
|
ListBoxes.propTypes = iconPropTypes;
|
1535
1539
|
}
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
size =
|
1540
|
-
rest
|
1540
|
+
const ListBulleted = /*#__PURE__*/React__default.forwardRef(function ListBulleted(_ref65, ref) {
|
1541
|
+
let {
|
1542
|
+
children,
|
1543
|
+
size = 16,
|
1544
|
+
...rest
|
1545
|
+
} = _ref65;
|
1541
1546
|
if (size === 16 || size === "16" || size === "16px") {
|
1542
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
1547
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1543
1548
|
width: size,
|
1544
1549
|
height: size,
|
1545
1550
|
ref: ref,
|
1546
1551
|
xmlns: "http://www.w3.org/2000/svg",
|
1547
1552
|
viewBox: "0 0 16 16",
|
1548
|
-
fill: "currentColor"
|
1549
|
-
|
1553
|
+
fill: "currentColor",
|
1554
|
+
...rest
|
1555
|
+
}, _circle6 || (_circle6 = /*#__PURE__*/React__default.createElement("circle", {
|
1550
1556
|
cx: "3.5",
|
1551
1557
|
cy: "4.5",
|
1552
1558
|
r: "1.5"
|
@@ -1558,14 +1564,15 @@ var ListBulleted = /*#__PURE__*/React__default.forwardRef(function ListBulleted(
|
|
1558
1564
|
d: "M8 11H15V12H8zM8 4H15V5H8z"
|
1559
1565
|
})), children);
|
1560
1566
|
}
|
1561
|
-
return /*#__PURE__*/React__default.createElement(Icon,
|
1567
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1562
1568
|
width: size,
|
1563
1569
|
height: size,
|
1564
1570
|
ref: ref,
|
1565
1571
|
xmlns: "http://www.w3.org/2000/svg",
|
1566
1572
|
viewBox: "0 0 32 32",
|
1567
|
-
fill: "currentColor"
|
1568
|
-
|
1573
|
+
fill: "currentColor",
|
1574
|
+
...rest
|
1575
|
+
}, _circle8 || (_circle8 = /*#__PURE__*/React__default.createElement("circle", {
|
1569
1576
|
cx: "7",
|
1570
1577
|
cy: "9",
|
1571
1578
|
r: "3"
|
@@ -1580,57 +1587,63 @@ var ListBulleted = /*#__PURE__*/React__default.forwardRef(function ListBulleted(
|
|
1580
1587
|
if (process.env.NODE_ENV !== "production") {
|
1581
1588
|
ListBulleted.propTypes = iconPropTypes;
|
1582
1589
|
}
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
size =
|
1587
|
-
rest
|
1588
|
-
|
1590
|
+
const ListChecked = /*#__PURE__*/React__default.forwardRef(function ListChecked(_ref66, ref) {
|
1591
|
+
let {
|
1592
|
+
children,
|
1593
|
+
size = 16,
|
1594
|
+
...rest
|
1595
|
+
} = _ref66;
|
1596
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1589
1597
|
width: size,
|
1590
1598
|
height: size,
|
1591
1599
|
ref: ref,
|
1592
1600
|
xmlns: "http://www.w3.org/2000/svg",
|
1593
1601
|
viewBox: "0 0 32 32",
|
1594
|
-
fill: "currentColor"
|
1595
|
-
|
1602
|
+
fill: "currentColor",
|
1603
|
+
...rest
|
1604
|
+
}, _path120 || (_path120 = /*#__PURE__*/React__default.createElement("path", {
|
1596
1605
|
d: "M16 22H30V24H16zM14 19.4L12.6 18 6 24.6 3.4 22 2 23.4 6 27.4zM16 8H30V10H16zM14 5.4L12.6 4 6 10.6 3.4 8 2 9.4 6 13.4z"
|
1597
1606
|
})), children);
|
1598
1607
|
});
|
1599
1608
|
if (process.env.NODE_ENV !== "production") {
|
1600
1609
|
ListChecked.propTypes = iconPropTypes;
|
1601
1610
|
}
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
size =
|
1606
|
-
rest
|
1607
|
-
|
1611
|
+
const ListCheckedMirror = /*#__PURE__*/React__default.forwardRef(function ListCheckedMirror(_ref67, ref) {
|
1612
|
+
let {
|
1613
|
+
children,
|
1614
|
+
size = 16,
|
1615
|
+
...rest
|
1616
|
+
} = _ref67;
|
1617
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1608
1618
|
width: size,
|
1609
1619
|
height: size,
|
1610
1620
|
ref: ref,
|
1611
1621
|
xmlns: "http://www.w3.org/2000/svg",
|
1612
1622
|
viewBox: "0 0 32 32",
|
1613
|
-
fill: "currentColor"
|
1614
|
-
|
1623
|
+
fill: "currentColor",
|
1624
|
+
...rest
|
1625
|
+
}, _path121 || (_path121 = /*#__PURE__*/React__default.createElement("path", {
|
1615
1626
|
d: "M30 19.4L28.6 18 22 24.6 19.4 22 18 23.4 22 27.4zM2 22H16V24H2zM30 5.4L28.6 4 22 10.6 19.4 8 18 9.4 22 13.4zM2 8H16V10H2z"
|
1616
1627
|
})), children);
|
1617
1628
|
});
|
1618
1629
|
if (process.env.NODE_ENV !== "production") {
|
1619
1630
|
ListCheckedMirror.propTypes = iconPropTypes;
|
1620
1631
|
}
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
size =
|
1625
|
-
rest
|
1626
|
-
|
1632
|
+
const ListDropdown = /*#__PURE__*/React__default.forwardRef(function ListDropdown(_ref68, ref) {
|
1633
|
+
let {
|
1634
|
+
children,
|
1635
|
+
size = 16,
|
1636
|
+
...rest
|
1637
|
+
} = _ref68;
|
1638
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1627
1639
|
width: size,
|
1628
1640
|
height: size,
|
1629
1641
|
ref: ref,
|
1630
1642
|
xmlns: "http://www.w3.org/2000/svg",
|
1631
1643
|
viewBox: "0 0 32 32",
|
1632
|
-
fill: "currentColor"
|
1633
|
-
|
1644
|
+
fill: "currentColor",
|
1645
|
+
...rest
|
1646
|
+
}, _path122 || (_path122 = /*#__PURE__*/React__default.createElement("path", {
|
1634
1647
|
d: "M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z"
|
1635
1648
|
})), _path123 || (_path123 = /*#__PURE__*/React__default.createElement("path", {
|
1636
1649
|
d: "M15 11H17V13H15zM19 11H26V13H19zM15 17H17V19H15zM19 17H26V19H19zM15 23H17V25H15zM19 23H26V25H19z"
|
@@ -1639,209 +1652,231 @@ var ListDropdown = /*#__PURE__*/React__default.forwardRef(function ListDropdown(
|
|
1639
1652
|
if (process.env.NODE_ENV !== "production") {
|
1640
1653
|
ListDropdown.propTypes = iconPropTypes;
|
1641
1654
|
}
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
size =
|
1646
|
-
rest
|
1647
|
-
|
1655
|
+
const ListNumbered = /*#__PURE__*/React__default.forwardRef(function ListNumbered(_ref69, ref) {
|
1656
|
+
let {
|
1657
|
+
children,
|
1658
|
+
size = 16,
|
1659
|
+
...rest
|
1660
|
+
} = _ref69;
|
1661
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1648
1662
|
width: size,
|
1649
1663
|
height: size,
|
1650
1664
|
ref: ref,
|
1651
1665
|
xmlns: "http://www.w3.org/2000/svg",
|
1652
1666
|
viewBox: "0 0 32 32",
|
1653
|
-
fill: "currentColor"
|
1654
|
-
|
1667
|
+
fill: "currentColor",
|
1668
|
+
...rest
|
1669
|
+
}, _path124 || (_path124 = /*#__PURE__*/React__default.createElement("path", {
|
1655
1670
|
d: "M16 22H30V24H16zM16 8H30V10H16zM8 12L8 4 6 4 6 5 4 5 4 7 6 7 6 12 4 12 4 14 6 14 8 14 10 14 10 12 8 12zM10 28H4V24a2 2 0 012-2H8V20H4V18H8a2 2 0 012 2v2a2 2 0 01-2 2H6v2h4z"
|
1656
1671
|
})), children);
|
1657
1672
|
});
|
1658
1673
|
if (process.env.NODE_ENV !== "production") {
|
1659
1674
|
ListNumbered.propTypes = iconPropTypes;
|
1660
1675
|
}
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
size =
|
1665
|
-
rest
|
1666
|
-
|
1676
|
+
const ListNumberedMirror = /*#__PURE__*/React__default.forwardRef(function ListNumberedMirror(_ref70, ref) {
|
1677
|
+
let {
|
1678
|
+
children,
|
1679
|
+
size = 16,
|
1680
|
+
...rest
|
1681
|
+
} = _ref70;
|
1682
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1667
1683
|
width: size,
|
1668
1684
|
height: size,
|
1669
1685
|
ref: ref,
|
1670
1686
|
xmlns: "http://www.w3.org/2000/svg",
|
1671
1687
|
viewBox: "0 0 32 32",
|
1672
|
-
fill: "currentColor"
|
1673
|
-
|
1688
|
+
fill: "currentColor",
|
1689
|
+
...rest
|
1690
|
+
}, _path125 || (_path125 = /*#__PURE__*/React__default.createElement("path", {
|
1674
1691
|
d: "M28 28h-6v-4c0-1.1.9-2 2-2h2v-2h-4v-2h4c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-2v2h4V28zM2 22H16V24H2zM26 12L26 4 24 4 24 5 22 5 22 7 24 7 24 12 22 12 22 14 24 14 26 14 28 14 28 12zM2 8H16V10H2z"
|
1675
1692
|
})), children);
|
1676
1693
|
});
|
1677
1694
|
if (process.env.NODE_ENV !== "production") {
|
1678
1695
|
ListNumberedMirror.propTypes = iconPropTypes;
|
1679
1696
|
}
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
size =
|
1684
|
-
rest
|
1685
|
-
|
1697
|
+
const LoadBalancerApplication = /*#__PURE__*/React__default.forwardRef(function LoadBalancerApplication(_ref71, ref) {
|
1698
|
+
let {
|
1699
|
+
children,
|
1700
|
+
size = 16,
|
1701
|
+
...rest
|
1702
|
+
} = _ref71;
|
1703
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1686
1704
|
width: size,
|
1687
1705
|
height: size,
|
1688
1706
|
ref: ref,
|
1689
1707
|
xmlns: "http://www.w3.org/2000/svg",
|
1690
1708
|
viewBox: "0 0 32 32",
|
1691
|
-
fill: "currentColor"
|
1692
|
-
|
1709
|
+
fill: "currentColor",
|
1710
|
+
...rest
|
1711
|
+
}, _path126 || (_path126 = /*#__PURE__*/React__default.createElement("path", {
|
1693
1712
|
d: "M4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM25 16H17V14H15v2H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM9 2V12H23V2zm2 2h2v6H11zm10 6H15V4h6z"
|
1694
1713
|
})), children);
|
1695
1714
|
});
|
1696
1715
|
if (process.env.NODE_ENV !== "production") {
|
1697
1716
|
LoadBalancerApplication.propTypes = iconPropTypes;
|
1698
1717
|
}
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
size =
|
1703
|
-
rest
|
1704
|
-
|
1718
|
+
const LoadBalancerClassic = /*#__PURE__*/React__default.forwardRef(function LoadBalancerClassic(_ref72, ref) {
|
1719
|
+
let {
|
1720
|
+
children,
|
1721
|
+
size = 16,
|
1722
|
+
...rest
|
1723
|
+
} = _ref72;
|
1724
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1705
1725
|
width: size,
|
1706
1726
|
height: size,
|
1707
1727
|
ref: ref,
|
1708
1728
|
xmlns: "http://www.w3.org/2000/svg",
|
1709
1729
|
viewBox: "0 0 32 32",
|
1710
|
-
fill: "currentColor"
|
1711
|
-
|
1730
|
+
fill: "currentColor",
|
1731
|
+
...rest
|
1732
|
+
}, _path127 || (_path127 = /*#__PURE__*/React__default.createElement("path", {
|
1712
1733
|
d: "M4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM25 16H17V12H15v4H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM20 10V2H12v8zM14 8V4h4V8z"
|
1713
1734
|
})), children);
|
1714
1735
|
});
|
1715
1736
|
if (process.env.NODE_ENV !== "production") {
|
1716
1737
|
LoadBalancerClassic.propTypes = iconPropTypes;
|
1717
1738
|
}
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1721
|
-
size =
|
1722
|
-
rest
|
1723
|
-
|
1739
|
+
const LoadBalancerGlobal = /*#__PURE__*/React__default.forwardRef(function LoadBalancerGlobal(_ref73, ref) {
|
1740
|
+
let {
|
1741
|
+
children,
|
1742
|
+
size = 16,
|
1743
|
+
...rest
|
1744
|
+
} = _ref73;
|
1745
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1724
1746
|
width: size,
|
1725
1747
|
height: size,
|
1726
1748
|
ref: ref,
|
1727
1749
|
xmlns: "http://www.w3.org/2000/svg",
|
1728
1750
|
viewBox: "0 0 32 32",
|
1729
|
-
fill: "currentColor"
|
1730
|
-
|
1751
|
+
fill: "currentColor",
|
1752
|
+
...rest
|
1753
|
+
}, _path128 || (_path128 = /*#__PURE__*/React__default.createElement("path", {
|
1731
1754
|
d: "M4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM25 16H17V12H15v4H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM16 10a4 4 0 114-4A4.0045 4.0045 0 0116 10zm0-6a2 2 0 102 2A2.0021 2.0021 0 0016 4z"
|
1732
1755
|
})), children);
|
1733
1756
|
});
|
1734
1757
|
if (process.env.NODE_ENV !== "production") {
|
1735
1758
|
LoadBalancerGlobal.propTypes = iconPropTypes;
|
1736
1759
|
}
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
size =
|
1741
|
-
rest
|
1742
|
-
|
1760
|
+
const LoadBalancerListener = /*#__PURE__*/React__default.forwardRef(function LoadBalancerListener(_ref74, ref) {
|
1761
|
+
let {
|
1762
|
+
children,
|
1763
|
+
size = 16,
|
1764
|
+
...rest
|
1765
|
+
} = _ref74;
|
1766
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1743
1767
|
width: size,
|
1744
1768
|
height: size,
|
1745
1769
|
ref: ref,
|
1746
1770
|
xmlns: "http://www.w3.org/2000/svg",
|
1747
1771
|
viewBox: "0 0 32 32",
|
1748
|
-
fill: "currentColor"
|
1749
|
-
|
1772
|
+
fill: "currentColor",
|
1773
|
+
...rest
|
1774
|
+
}, _path129 || (_path129 = /*#__PURE__*/React__default.createElement("path", {
|
1750
1775
|
d: "M15 8H17V10H15zM19 8H21V10H19zM11 8H13V10H11zM25 16H17V13H15v3H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM11 3H21V5H11z"
|
1751
1776
|
})), children);
|
1752
1777
|
});
|
1753
1778
|
if (process.env.NODE_ENV !== "production") {
|
1754
1779
|
LoadBalancerListener.propTypes = iconPropTypes;
|
1755
1780
|
}
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
size =
|
1760
|
-
rest
|
1761
|
-
|
1781
|
+
const LoadBalancerLocal = /*#__PURE__*/React__default.forwardRef(function LoadBalancerLocal(_ref75, ref) {
|
1782
|
+
let {
|
1783
|
+
children,
|
1784
|
+
size = 16,
|
1785
|
+
...rest
|
1786
|
+
} = _ref75;
|
1787
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1762
1788
|
width: size,
|
1763
1789
|
height: size,
|
1764
1790
|
ref: ref,
|
1765
1791
|
xmlns: "http://www.w3.org/2000/svg",
|
1766
1792
|
viewBox: "0 0 32 32",
|
1767
|
-
fill: "currentColor"
|
1768
|
-
|
1793
|
+
fill: "currentColor",
|
1794
|
+
...rest
|
1795
|
+
}, _path130 || (_path130 = /*#__PURE__*/React__default.createElement("path", {
|
1769
1796
|
d: "M25 16H17V10H15v6H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM11 5H21V7H11z"
|
1770
1797
|
})), children);
|
1771
1798
|
});
|
1772
1799
|
if (process.env.NODE_ENV !== "production") {
|
1773
1800
|
LoadBalancerLocal.propTypes = iconPropTypes;
|
1774
1801
|
}
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
size =
|
1779
|
-
rest
|
1780
|
-
|
1802
|
+
const LoadBalancerNetwork = /*#__PURE__*/React__default.forwardRef(function LoadBalancerNetwork(_ref76, ref) {
|
1803
|
+
let {
|
1804
|
+
children,
|
1805
|
+
size = 16,
|
1806
|
+
...rest
|
1807
|
+
} = _ref76;
|
1808
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1781
1809
|
width: size,
|
1782
1810
|
height: size,
|
1783
1811
|
ref: ref,
|
1784
1812
|
xmlns: "http://www.w3.org/2000/svg",
|
1785
1813
|
viewBox: "0 0 32 32",
|
1786
|
-
fill: "currentColor"
|
1787
|
-
|
1814
|
+
fill: "currentColor",
|
1815
|
+
...rest
|
1816
|
+
}, _path131 || (_path131 = /*#__PURE__*/React__default.createElement("path", {
|
1788
1817
|
d: "M25 16H17V12H15v4H7a2.0023 2.0023 0 00-2 2v4H7V18h8v4h2V18h8v4h2V18A2.0023 2.0023 0 0025 16zM20 10V2H12v8h8zM14 8V4h4V8zM26 24a2.9948 2.9948 0 00-2.8157 2H18.8157a2.982 2.982 0 00-5.6314 0H8.8157a3 3 0 100 2h4.3686a2.982 2.982 0 005.6314 0h4.3686A2.9947 2.9947 0 1026 24zM6 28a1 1 0 111-1A1.0009 1.0009 0 016 28zm10 0a1 1 0 111-1A1.0009 1.0009 0 0116 28zm10 0a1 1 0 111-1A1.0009 1.0009 0 0126 28z"
|
1789
1818
|
})), children);
|
1790
1819
|
});
|
1791
1820
|
if (process.env.NODE_ENV !== "production") {
|
1792
1821
|
LoadBalancerNetwork.propTypes = iconPropTypes;
|
1793
1822
|
}
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
1797
|
-
size =
|
1798
|
-
rest
|
1799
|
-
|
1823
|
+
const LoadBalancerPool = /*#__PURE__*/React__default.forwardRef(function LoadBalancerPool(_ref77, ref) {
|
1824
|
+
let {
|
1825
|
+
children,
|
1826
|
+
size = 16,
|
1827
|
+
...rest
|
1828
|
+
} = _ref77;
|
1829
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1800
1830
|
width: size,
|
1801
1831
|
height: size,
|
1802
1832
|
ref: ref,
|
1803
1833
|
xmlns: "http://www.w3.org/2000/svg",
|
1804
1834
|
viewBox: "0 0 32 32",
|
1805
|
-
fill: "currentColor"
|
1806
|
-
|
1835
|
+
fill: "currentColor",
|
1836
|
+
...rest
|
1837
|
+
}, _path132 || (_path132 = /*#__PURE__*/React__default.createElement("path", {
|
1807
1838
|
d: "M10 15H22V17H10zM8.7 6.2852A2.9665 2.9665 0 009 5 3 3 0 106 8a2.96 2.96 0 001.2852-.3008L10 10.4141V13h2V9.5859zM6 6A1 1 0 117 5 1.0009 1.0009 0 016 6zM19 5a3 3 0 10-4 2.8154V13h2V7.8159A2.9957 2.9957 0 0019 5zM16 6a1 1 0 111-1A1.0009 1.0009 0 0116 6zM26 2a3.0033 3.0033 0 00-3 3 2.9665 2.9665 0 00.3 1.2852L20 9.5859V13h2V10.4141l2.7148-2.7149A2.96 2.96 0 0026 8a3 3 0 000-6zm0 4a1 1 0 111-1A1.0009 1.0009 0 0126 6zM12 19H10v2.5859L7.2854 24.3008A2.9609 2.9609 0 006 24a3 3 0 103 3 2.9665 2.9665 0 00-.3-1.2852L12 22.4141zM6 28a1 1 0 111-1A1.0009 1.0009 0 016 28zM17 24.1841V19H15v5.1841a3 3 0 102 0zM16 28a1 1 0 111-1A1.0009 1.0009 0 0116 28zM26 24a2.9609 2.9609 0 00-1.2854.3008L22 21.5859V19H20v3.4141l3.3 3.3007A2.9665 2.9665 0 0023 27a3 3 0 103-3zm0 4a1 1 0 111-1A1.0009 1.0009 0 0126 28z"
|
1808
1839
|
})), children);
|
1809
1840
|
});
|
1810
1841
|
if (process.env.NODE_ENV !== "production") {
|
1811
1842
|
LoadBalancerPool.propTypes = iconPropTypes;
|
1812
1843
|
}
|
1813
|
-
|
1814
|
-
|
1815
|
-
|
1816
|
-
size =
|
1817
|
-
rest
|
1818
|
-
|
1844
|
+
const LoadBalancerVpc = /*#__PURE__*/React__default.forwardRef(function LoadBalancerVpc(_ref78, ref) {
|
1845
|
+
let {
|
1846
|
+
children,
|
1847
|
+
size = 16,
|
1848
|
+
...rest
|
1849
|
+
} = _ref78;
|
1850
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1819
1851
|
width: size,
|
1820
1852
|
height: size,
|
1821
1853
|
ref: ref,
|
1822
1854
|
xmlns: "http://www.w3.org/2000/svg",
|
1823
1855
|
viewBox: "0 0 32 32",
|
1824
|
-
fill: "currentColor"
|
1825
|
-
|
1856
|
+
fill: "currentColor",
|
1857
|
+
...rest
|
1858
|
+
}, _path133 || (_path133 = /*#__PURE__*/React__default.createElement("path", {
|
1826
1859
|
d: "M8 30H2V24H8zM4 28H6V26H4zM19 30H13V24h6zm-4-2h2V26H15zM30 30H24V24h6zm-4-2h2V26H26zM16 10a4 4 0 114-4A4.0045 4.0045 0 0116 10zm0-6a2 2 0 102 2A2.002 2.002 0 0016 4zM26 16H21a4.0045 4.0045 0 01-4-4H15a4.0045 4.0045 0 01-4 4H6a2.0023 2.0023 0 00-2 2v4H6V18h5A5.9694 5.9694 0 0015 16.46V22h2V16.46A5.9694 5.9694 0 0021 18h5v4h2V18A2.0023 2.0023 0 0026 16z"
|
1827
1860
|
})), children);
|
1828
1861
|
});
|
1829
1862
|
if (process.env.NODE_ENV !== "production") {
|
1830
1863
|
LoadBalancerVpc.propTypes = iconPropTypes;
|
1831
1864
|
}
|
1832
|
-
|
1833
|
-
|
1834
|
-
|
1835
|
-
size =
|
1836
|
-
rest
|
1837
|
-
|
1865
|
+
const Location = /*#__PURE__*/React__default.forwardRef(function Location(_ref79, ref) {
|
1866
|
+
let {
|
1867
|
+
children,
|
1868
|
+
size = 16,
|
1869
|
+
...rest
|
1870
|
+
} = _ref79;
|
1871
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1838
1872
|
width: size,
|
1839
1873
|
height: size,
|
1840
1874
|
ref: ref,
|
1841
1875
|
xmlns: "http://www.w3.org/2000/svg",
|
1842
1876
|
viewBox: "0 0 32 32",
|
1843
|
-
fill: "currentColor"
|
1844
|
-
|
1877
|
+
fill: "currentColor",
|
1878
|
+
...rest
|
1879
|
+
}, _path134 || (_path134 = /*#__PURE__*/React__default.createElement("path", {
|
1845
1880
|
d: "M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z"
|
1846
1881
|
})), _path135 || (_path135 = /*#__PURE__*/React__default.createElement("path", {
|
1847
1882
|
d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"
|
@@ -1850,19 +1885,21 @@ var Location = /*#__PURE__*/React__default.forwardRef(function Location(_ref79,
|
|
1850
1885
|
if (process.env.NODE_ENV !== "production") {
|
1851
1886
|
Location.propTypes = iconPropTypes;
|
1852
1887
|
}
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
1856
|
-
size =
|
1857
|
-
rest
|
1858
|
-
|
1888
|
+
const LocationCompany = /*#__PURE__*/React__default.forwardRef(function LocationCompany(_ref80, ref) {
|
1889
|
+
let {
|
1890
|
+
children,
|
1891
|
+
size = 16,
|
1892
|
+
...rest
|
1893
|
+
} = _ref80;
|
1894
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1859
1895
|
width: size,
|
1860
1896
|
height: size,
|
1861
1897
|
ref: ref,
|
1862
1898
|
xmlns: "http://www.w3.org/2000/svg",
|
1863
1899
|
viewBox: "0 0 32 32",
|
1864
|
-
fill: "currentColor"
|
1865
|
-
|
1900
|
+
fill: "currentColor",
|
1901
|
+
...rest
|
1902
|
+
}, _path136 || (_path136 = /*#__PURE__*/React__default.createElement("path", {
|
1866
1903
|
d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"
|
1867
1904
|
})), _path137 || (_path137 = /*#__PURE__*/React__default.createElement("path", {
|
1868
1905
|
d: "M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Z"
|
@@ -1873,19 +1910,21 @@ var LocationCompany = /*#__PURE__*/React__default.forwardRef(function LocationCo
|
|
1873
1910
|
if (process.env.NODE_ENV !== "production") {
|
1874
1911
|
LocationCompany.propTypes = iconPropTypes;
|
1875
1912
|
}
|
1876
|
-
|
1877
|
-
|
1878
|
-
|
1879
|
-
size =
|
1880
|
-
rest
|
1881
|
-
|
1913
|
+
const LocationCompanyFilled = /*#__PURE__*/React__default.forwardRef(function LocationCompanyFilled(_ref81, ref) {
|
1914
|
+
let {
|
1915
|
+
children,
|
1916
|
+
size = 16,
|
1917
|
+
...rest
|
1918
|
+
} = _ref81;
|
1919
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1882
1920
|
width: size,
|
1883
1921
|
height: size,
|
1884
1922
|
ref: ref,
|
1885
1923
|
xmlns: "http://www.w3.org/2000/svg",
|
1886
1924
|
viewBox: "0 0 32 32",
|
1887
|
-
fill: "currentColor"
|
1888
|
-
|
1925
|
+
fill: "currentColor",
|
1926
|
+
...rest
|
1927
|
+
}, _path139 || (_path139 = /*#__PURE__*/React__default.createElement("path", {
|
1889
1928
|
fill: "none",
|
1890
1929
|
d: "M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Zm-4-2H15v2h2Zm0-4H15v2h2Z"
|
1891
1930
|
})), _path140 || (_path140 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -1895,38 +1934,42 @@ var LocationCompanyFilled = /*#__PURE__*/React__default.forwardRef(function Loca
|
|
1895
1934
|
if (process.env.NODE_ENV !== "production") {
|
1896
1935
|
LocationCompanyFilled.propTypes = iconPropTypes;
|
1897
1936
|
}
|
1898
|
-
|
1899
|
-
|
1900
|
-
|
1901
|
-
size =
|
1902
|
-
rest
|
1903
|
-
|
1937
|
+
const LocationCurrent = /*#__PURE__*/React__default.forwardRef(function LocationCurrent(_ref82, ref) {
|
1938
|
+
let {
|
1939
|
+
children,
|
1940
|
+
size = 16,
|
1941
|
+
...rest
|
1942
|
+
} = _ref82;
|
1943
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1904
1944
|
width: size,
|
1905
1945
|
height: size,
|
1906
1946
|
ref: ref,
|
1907
1947
|
xmlns: "http://www.w3.org/2000/svg",
|
1908
1948
|
viewBox: "0 0 32 32",
|
1909
|
-
fill: "currentColor"
|
1910
|
-
|
1949
|
+
fill: "currentColor",
|
1950
|
+
...rest
|
1951
|
+
}, _path141 || (_path141 = /*#__PURE__*/React__default.createElement("path", {
|
1911
1952
|
d: "M4,12.9835a1,1,0,0,0,.6289.9448l9.6015,3.8409,3.8407,9.6019A1,1,0,0,0,19,28h.0162a1.0009,1.0009,0,0,0,.9238-.6582l8-22.0007A1,1,0,0,0,26.658,4.0594l-22,8A1.0011,1.0011,0,0,0,4,12.9835Z"
|
1912
1953
|
})), children);
|
1913
1954
|
});
|
1914
1955
|
if (process.env.NODE_ENV !== "production") {
|
1915
1956
|
LocationCurrent.propTypes = iconPropTypes;
|
1916
1957
|
}
|
1917
|
-
|
1918
|
-
|
1919
|
-
|
1920
|
-
size =
|
1921
|
-
rest
|
1922
|
-
|
1958
|
+
const LocationFilled = /*#__PURE__*/React__default.forwardRef(function LocationFilled(_ref83, ref) {
|
1959
|
+
let {
|
1960
|
+
children,
|
1961
|
+
size = 16,
|
1962
|
+
...rest
|
1963
|
+
} = _ref83;
|
1964
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1923
1965
|
width: size,
|
1924
1966
|
height: size,
|
1925
1967
|
ref: ref,
|
1926
1968
|
xmlns: "http://www.w3.org/2000/svg",
|
1927
1969
|
viewBox: "0 0 32 32",
|
1928
|
-
fill: "currentColor"
|
1929
|
-
|
1970
|
+
fill: "currentColor",
|
1971
|
+
...rest
|
1972
|
+
}, _path142 || (_path142 = /*#__PURE__*/React__default.createElement("path", {
|
1930
1973
|
d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,17Z"
|
1931
1974
|
})), _circle10 || (_circle10 = /*#__PURE__*/React__default.createElement("circle", {
|
1932
1975
|
cx: "16",
|
@@ -1938,19 +1981,21 @@ var LocationFilled = /*#__PURE__*/React__default.forwardRef(function LocationFil
|
|
1938
1981
|
if (process.env.NODE_ENV !== "production") {
|
1939
1982
|
LocationFilled.propTypes = iconPropTypes;
|
1940
1983
|
}
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
size =
|
1945
|
-
rest
|
1946
|
-
|
1984
|
+
const LocationHazard = /*#__PURE__*/React__default.forwardRef(function LocationHazard(_ref84, ref) {
|
1985
|
+
let {
|
1986
|
+
children,
|
1987
|
+
size = 16,
|
1988
|
+
...rest
|
1989
|
+
} = _ref84;
|
1990
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1947
1991
|
width: size,
|
1948
1992
|
height: size,
|
1949
1993
|
ref: ref,
|
1950
1994
|
xmlns: "http://www.w3.org/2000/svg",
|
1951
1995
|
viewBox: "0 0 32 32",
|
1952
|
-
fill: "currentColor"
|
1953
|
-
|
1996
|
+
fill: "currentColor",
|
1997
|
+
...rest
|
1998
|
+
}, _circle11 || (_circle11 = /*#__PURE__*/React__default.createElement("circle", {
|
1954
1999
|
cx: "16",
|
1955
2000
|
cy: "20.5",
|
1956
2001
|
r: "1.5"
|
@@ -1963,19 +2008,21 @@ var LocationHazard = /*#__PURE__*/React__default.forwardRef(function LocationHaz
|
|
1963
2008
|
if (process.env.NODE_ENV !== "production") {
|
1964
2009
|
LocationHazard.propTypes = iconPropTypes;
|
1965
2010
|
}
|
1966
|
-
|
1967
|
-
|
1968
|
-
|
1969
|
-
size =
|
1970
|
-
rest
|
1971
|
-
|
2011
|
+
const LocationHazardFilled = /*#__PURE__*/React__default.forwardRef(function LocationHazardFilled(_ref85, ref) {
|
2012
|
+
let {
|
2013
|
+
children,
|
2014
|
+
size = 16,
|
2015
|
+
...rest
|
2016
|
+
} = _ref85;
|
2017
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1972
2018
|
width: size,
|
1973
2019
|
height: size,
|
1974
2020
|
ref: ref,
|
1975
2021
|
xmlns: "http://www.w3.org/2000/svg",
|
1976
2022
|
viewBox: "0 0 32 32",
|
1977
|
-
fill: "currentColor"
|
1978
|
-
|
2023
|
+
fill: "currentColor",
|
2024
|
+
...rest
|
2025
|
+
}, _path145 || (_path145 = /*#__PURE__*/React__default.createElement("path", {
|
1979
2026
|
fill: "none",
|
1980
2027
|
d: "M16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Zm-1.125-6h2.25V7h-2.25Z"
|
1981
2028
|
})), _path146 || (_path146 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -1985,19 +2032,21 @@ var LocationHazardFilled = /*#__PURE__*/React__default.forwardRef(function Locat
|
|
1985
2032
|
if (process.env.NODE_ENV !== "production") {
|
1986
2033
|
LocationHazardFilled.propTypes = iconPropTypes;
|
1987
2034
|
}
|
1988
|
-
|
1989
|
-
|
1990
|
-
|
1991
|
-
size =
|
1992
|
-
rest
|
1993
|
-
|
2035
|
+
const LocationHeart = /*#__PURE__*/React__default.forwardRef(function LocationHeart(_ref86, ref) {
|
2036
|
+
let {
|
2037
|
+
children,
|
2038
|
+
size = 16,
|
2039
|
+
...rest
|
2040
|
+
} = _ref86;
|
2041
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
1994
2042
|
width: size,
|
1995
2043
|
height: size,
|
1996
2044
|
ref: ref,
|
1997
2045
|
xmlns: "http://www.w3.org/2000/svg",
|
1998
2046
|
viewBox: "0 0 32 32",
|
1999
|
-
fill: "currentColor"
|
2000
|
-
|
2047
|
+
fill: "currentColor",
|
2048
|
+
...rest
|
2049
|
+
}, _path147 || (_path147 = /*#__PURE__*/React__default.createElement("path", {
|
2001
2050
|
d: "M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"
|
2002
2051
|
})), _path148 || (_path148 = /*#__PURE__*/React__default.createElement("path", {
|
2003
2052
|
d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"
|
@@ -2006,19 +2055,21 @@ var LocationHeart = /*#__PURE__*/React__default.forwardRef(function LocationHear
|
|
2006
2055
|
if (process.env.NODE_ENV !== "production") {
|
2007
2056
|
LocationHeart.propTypes = iconPropTypes;
|
2008
2057
|
}
|
2009
|
-
|
2010
|
-
|
2011
|
-
|
2012
|
-
size =
|
2013
|
-
rest
|
2014
|
-
|
2058
|
+
const LocationHeartFilled = /*#__PURE__*/React__default.forwardRef(function LocationHeartFilled(_ref87, ref) {
|
2059
|
+
let {
|
2060
|
+
children,
|
2061
|
+
size = 16,
|
2062
|
+
...rest
|
2063
|
+
} = _ref87;
|
2064
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2015
2065
|
width: size,
|
2016
2066
|
height: size,
|
2017
2067
|
ref: ref,
|
2018
2068
|
xmlns: "http://www.w3.org/2000/svg",
|
2019
2069
|
viewBox: "0 0 32 32",
|
2020
|
-
fill: "currentColor"
|
2021
|
-
|
2070
|
+
fill: "currentColor",
|
2071
|
+
...rest
|
2072
|
+
}, _path149 || (_path149 = /*#__PURE__*/React__default.createElement("path", {
|
2022
2073
|
fill: "none",
|
2023
2074
|
d: "M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"
|
2024
2075
|
})), _path150 || (_path150 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -2028,19 +2079,21 @@ var LocationHeartFilled = /*#__PURE__*/React__default.forwardRef(function Locati
|
|
2028
2079
|
if (process.env.NODE_ENV !== "production") {
|
2029
2080
|
LocationHeartFilled.propTypes = iconPropTypes;
|
2030
2081
|
}
|
2031
|
-
|
2032
|
-
|
2033
|
-
|
2034
|
-
size =
|
2035
|
-
rest
|
2036
|
-
|
2082
|
+
const LocationInfo = /*#__PURE__*/React__default.forwardRef(function LocationInfo(_ref88, ref) {
|
2083
|
+
let {
|
2084
|
+
children,
|
2085
|
+
size = 16,
|
2086
|
+
...rest
|
2087
|
+
} = _ref88;
|
2088
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2037
2089
|
width: size,
|
2038
2090
|
height: size,
|
2039
2091
|
ref: ref,
|
2040
2092
|
xmlns: "http://www.w3.org/2000/svg",
|
2041
2093
|
viewBox: "0 0 32 32",
|
2042
|
-
fill: "currentColor"
|
2043
|
-
|
2094
|
+
fill: "currentColor",
|
2095
|
+
...rest
|
2096
|
+
}, _path151 || (_path151 = /*#__PURE__*/React__default.createElement("path", {
|
2044
2097
|
strokeWidth: "0",
|
2045
2098
|
d: "M17 18L17 11 13 11 13 13 15 13 15 18 12 18 12 20 20 20 20 18 17 18zM15.5 6c-.8284 0-1.5.6716-1.5 1.5s.6716 1.5 1.5 1.5 1.5-.6716 1.5-1.5-.6716-1.5-1.5-1.5z"
|
2046
2099
|
})), _path152 || (_path152 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -2051,19 +2104,21 @@ var LocationInfo = /*#__PURE__*/React__default.forwardRef(function LocationInfo(
|
|
2051
2104
|
if (process.env.NODE_ENV !== "production") {
|
2052
2105
|
LocationInfo.propTypes = iconPropTypes;
|
2053
2106
|
}
|
2054
|
-
|
2055
|
-
|
2056
|
-
|
2057
|
-
size =
|
2058
|
-
rest
|
2059
|
-
|
2107
|
+
const LocationInfoFilled = /*#__PURE__*/React__default.forwardRef(function LocationInfoFilled(_ref89, ref) {
|
2108
|
+
let {
|
2109
|
+
children,
|
2110
|
+
size = 16,
|
2111
|
+
...rest
|
2112
|
+
} = _ref89;
|
2113
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2060
2114
|
width: size,
|
2061
2115
|
height: size,
|
2062
2116
|
ref: ref,
|
2063
2117
|
xmlns: "http://www.w3.org/2000/svg",
|
2064
2118
|
viewBox: "0 0 32 32",
|
2065
|
-
fill: "currentColor"
|
2066
|
-
|
2119
|
+
fill: "currentColor",
|
2120
|
+
...rest
|
2121
|
+
}, _path153 || (_path153 = /*#__PURE__*/React__default.createElement("path", {
|
2067
2122
|
strokeWidth: "0",
|
2068
2123
|
d: "m16,2c-6.0654,0-11,4.936-11,11,0,2.3931.7656,4.6729,2.2163,6.5996,0,0,.3003.3945.3481.4517l8.4355,9.9487,8.439-9.9526c.0444-.0532.3447-.4478.3447-.4478l.0015-.0024c1.4492-1.9243,2.2148-4.2041,2.2148-6.5972,0-6.064-4.9346-11-11-11Zm-.5,4c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"
|
2069
2124
|
})), _path154 || (_path154 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -2075,19 +2130,21 @@ var LocationInfoFilled = /*#__PURE__*/React__default.forwardRef(function Locatio
|
|
2075
2130
|
if (process.env.NODE_ENV !== "production") {
|
2076
2131
|
LocationInfoFilled.propTypes = iconPropTypes;
|
2077
2132
|
}
|
2078
|
-
|
2079
|
-
|
2080
|
-
|
2081
|
-
size =
|
2082
|
-
rest
|
2083
|
-
|
2133
|
+
const LocationPerson = /*#__PURE__*/React__default.forwardRef(function LocationPerson(_ref90, ref) {
|
2134
|
+
let {
|
2135
|
+
children,
|
2136
|
+
size = 16,
|
2137
|
+
...rest
|
2138
|
+
} = _ref90;
|
2139
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2084
2140
|
width: size,
|
2085
2141
|
height: size,
|
2086
2142
|
ref: ref,
|
2087
2143
|
xmlns: "http://www.w3.org/2000/svg",
|
2088
2144
|
viewBox: "0 0 32 32",
|
2089
|
-
fill: "currentColor"
|
2090
|
-
|
2145
|
+
fill: "currentColor",
|
2146
|
+
...rest
|
2147
|
+
}, _path155 || (_path155 = /*#__PURE__*/React__default.createElement("path", {
|
2091
2148
|
d: "M20 19H18V17H14v2H12V17a2.0021 2.0021 0 012-2h4a2.0021 2.0021 0 012 2zM16 14a3 3 0 113-3A3.0033 3.0033 0 0116 14zm0-4a1 1 0 101 1A1.0011 1.0011 0 0016 10z"
|
2092
2149
|
})), _path156 || (_path156 = /*#__PURE__*/React__default.createElement("path", {
|
2093
2150
|
d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"
|
@@ -2096,19 +2153,21 @@ var LocationPerson = /*#__PURE__*/React__default.forwardRef(function LocationPer
|
|
2096
2153
|
if (process.env.NODE_ENV !== "production") {
|
2097
2154
|
LocationPerson.propTypes = iconPropTypes;
|
2098
2155
|
}
|
2099
|
-
|
2100
|
-
|
2101
|
-
|
2102
|
-
size =
|
2103
|
-
rest
|
2104
|
-
|
2156
|
+
const LocationPersonFilled = /*#__PURE__*/React__default.forwardRef(function LocationPersonFilled(_ref91, ref) {
|
2157
|
+
let {
|
2158
|
+
children,
|
2159
|
+
size = 16,
|
2160
|
+
...rest
|
2161
|
+
} = _ref91;
|
2162
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2105
2163
|
width: size,
|
2106
2164
|
height: size,
|
2107
2165
|
ref: ref,
|
2108
2166
|
xmlns: "http://www.w3.org/2000/svg",
|
2109
2167
|
viewBox: "0 0 32 32",
|
2110
|
-
fill: "currentColor"
|
2111
|
-
|
2168
|
+
fill: "currentColor",
|
2169
|
+
...rest
|
2170
|
+
}, _path157 || (_path157 = /*#__PURE__*/React__default.createElement("path", {
|
2112
2171
|
fill: "none",
|
2113
2172
|
d: "M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Zm-1-8a3,3,0,1,0-3,3A3.0033,3.0033,0,0,0,19,11Zm-2,0a1,1,0,1,1-1-1A1.0011,1.0011,0,0,1,17,11Z"
|
2114
2173
|
})), _circle12 || (_circle12 = /*#__PURE__*/React__default.createElement("circle", {
|
@@ -2122,38 +2181,42 @@ var LocationPersonFilled = /*#__PURE__*/React__default.forwardRef(function Locat
|
|
2122
2181
|
if (process.env.NODE_ENV !== "production") {
|
2123
2182
|
LocationPersonFilled.propTypes = iconPropTypes;
|
2124
2183
|
}
|
2125
|
-
|
2126
|
-
|
2127
|
-
|
2128
|
-
size =
|
2129
|
-
rest
|
2130
|
-
|
2184
|
+
const LocationSave = /*#__PURE__*/React__default.forwardRef(function LocationSave(_ref92, ref) {
|
2185
|
+
let {
|
2186
|
+
children,
|
2187
|
+
size = 16,
|
2188
|
+
...rest
|
2189
|
+
} = _ref92;
|
2190
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2131
2191
|
width: size,
|
2132
2192
|
height: size,
|
2133
2193
|
ref: ref,
|
2134
2194
|
xmlns: "http://www.w3.org/2000/svg",
|
2135
2195
|
viewBox: "0 0 32 32",
|
2136
|
-
fill: "currentColor"
|
2137
|
-
|
2196
|
+
fill: "currentColor",
|
2197
|
+
...rest
|
2198
|
+
}, _path159 || (_path159 = /*#__PURE__*/React__default.createElement("path", {
|
2138
2199
|
d: "M18 30h2V28a1.0009 1.0009 0 011-1h6a1.0009 1.0009 0 011 1v2h2V28a3.0033 3.0033 0 00-3-3H21a3.0033 3.0033 0 00-3 3zM24 24a4 4 0 114-4A4.0042 4.0042 0 0124 24zm0-6a2 2 0 102 2A2.0023 2.0023 0 0024 18zM25.3418 10.06l-22-8A1 1 0 002.06 3.3415l8 22A1.001 1.001 0 0010.9839 26H11a1 1 0 00.9287-.6289L15.77 15.7692l9.6016-3.8408a1 1 0 00-.0293-1.8687zM14.6284 14.0709v0l-.3979.1591-.1591.3979 0 0-3.0269 7.5678L4.6719 4.6715l17.5244 6.3726z"
|
2139
2200
|
})), children);
|
2140
2201
|
});
|
2141
2202
|
if (process.env.NODE_ENV !== "production") {
|
2142
2203
|
LocationSave.propTypes = iconPropTypes;
|
2143
2204
|
}
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2147
|
-
size =
|
2148
|
-
rest
|
2149
|
-
|
2205
|
+
const LocationStar = /*#__PURE__*/React__default.forwardRef(function LocationStar(_ref93, ref) {
|
2206
|
+
let {
|
2207
|
+
children,
|
2208
|
+
size = 16,
|
2209
|
+
...rest
|
2210
|
+
} = _ref93;
|
2211
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2150
2212
|
width: size,
|
2151
2213
|
height: size,
|
2152
2214
|
ref: ref,
|
2153
2215
|
xmlns: "http://www.w3.org/2000/svg",
|
2154
2216
|
viewBox: "0 0 32 32",
|
2155
|
-
fill: "currentColor"
|
2156
|
-
|
2217
|
+
fill: "currentColor",
|
2218
|
+
...rest
|
2219
|
+
}, _path160 || (_path160 = /*#__PURE__*/React__default.createElement("path", {
|
2157
2220
|
d: "M16 7L17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"
|
2158
2221
|
})), _path161 || (_path161 = /*#__PURE__*/React__default.createElement("path", {
|
2159
2222
|
d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"
|
@@ -2162,19 +2225,21 @@ var LocationStar = /*#__PURE__*/React__default.forwardRef(function LocationStar(
|
|
2162
2225
|
if (process.env.NODE_ENV !== "production") {
|
2163
2226
|
LocationStar.propTypes = iconPropTypes;
|
2164
2227
|
}
|
2165
|
-
|
2166
|
-
|
2167
|
-
|
2168
|
-
size =
|
2169
|
-
rest
|
2170
|
-
|
2228
|
+
const LocationStarFilled = /*#__PURE__*/React__default.forwardRef(function LocationStarFilled(_ref94, ref) {
|
2229
|
+
let {
|
2230
|
+
children,
|
2231
|
+
size = 16,
|
2232
|
+
...rest
|
2233
|
+
} = _ref94;
|
2234
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2171
2235
|
width: size,
|
2172
2236
|
height: size,
|
2173
2237
|
ref: ref,
|
2174
2238
|
xmlns: "http://www.w3.org/2000/svg",
|
2175
2239
|
viewBox: "0 0 32 32",
|
2176
|
-
fill: "currentColor"
|
2177
|
-
|
2240
|
+
fill: "currentColor",
|
2241
|
+
...rest
|
2242
|
+
}, _path162 || (_path162 = /*#__PURE__*/React__default.createElement("path", {
|
2178
2243
|
fill: "none",
|
2179
2244
|
d: "M16 7L17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"
|
2180
2245
|
})), _path163 || (_path163 = /*#__PURE__*/React__default.createElement("path", {
|
@@ -2184,38 +2249,42 @@ var LocationStarFilled = /*#__PURE__*/React__default.forwardRef(function Locatio
|
|
2184
2249
|
if (process.env.NODE_ENV !== "production") {
|
2185
2250
|
LocationStarFilled.propTypes = iconPropTypes;
|
2186
2251
|
}
|
2187
|
-
|
2188
|
-
|
2189
|
-
|
2190
|
-
size =
|
2191
|
-
rest
|
2192
|
-
|
2252
|
+
const Locked = /*#__PURE__*/React__default.forwardRef(function Locked(_ref95, ref) {
|
2253
|
+
let {
|
2254
|
+
children,
|
2255
|
+
size = 16,
|
2256
|
+
...rest
|
2257
|
+
} = _ref95;
|
2258
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2193
2259
|
width: size,
|
2194
2260
|
height: size,
|
2195
2261
|
ref: ref,
|
2196
2262
|
xmlns: "http://www.w3.org/2000/svg",
|
2197
2263
|
viewBox: "0 0 32 32",
|
2198
|
-
fill: "currentColor"
|
2199
|
-
|
2264
|
+
fill: "currentColor",
|
2265
|
+
...rest
|
2266
|
+
}, _path164 || (_path164 = /*#__PURE__*/React__default.createElement("path", {
|
2200
2267
|
d: "M24,14H22V8A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14ZM12,8a4,4,0,0,1,8,0v6H12ZM24,28H8V16H24Z"
|
2201
2268
|
})), children);
|
2202
2269
|
});
|
2203
2270
|
if (process.env.NODE_ENV !== "production") {
|
2204
2271
|
Locked.propTypes = iconPropTypes;
|
2205
2272
|
}
|
2206
|
-
|
2207
|
-
|
2208
|
-
|
2209
|
-
size =
|
2210
|
-
rest
|
2211
|
-
|
2273
|
+
const LogicalPartition = /*#__PURE__*/React__default.forwardRef(function LogicalPartition(_ref96, ref) {
|
2274
|
+
let {
|
2275
|
+
children,
|
2276
|
+
size = 16,
|
2277
|
+
...rest
|
2278
|
+
} = _ref96;
|
2279
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2212
2280
|
width: size,
|
2213
2281
|
height: size,
|
2214
2282
|
ref: ref,
|
2215
2283
|
xmlns: "http://www.w3.org/2000/svg",
|
2216
2284
|
viewBox: "0 0 32 32",
|
2217
|
-
fill: "currentColor"
|
2218
|
-
|
2285
|
+
fill: "currentColor",
|
2286
|
+
...rest
|
2287
|
+
}, _circle13 || (_circle13 = /*#__PURE__*/React__default.createElement("circle", {
|
2219
2288
|
cx: "9",
|
2220
2289
|
cy: "7",
|
2221
2290
|
r: "1"
|
@@ -2226,19 +2295,21 @@ var LogicalPartition = /*#__PURE__*/React__default.forwardRef(function LogicalPa
|
|
2226
2295
|
if (process.env.NODE_ENV !== "production") {
|
2227
2296
|
LogicalPartition.propTypes = iconPropTypes;
|
2228
2297
|
}
|
2229
|
-
|
2230
|
-
|
2231
|
-
|
2232
|
-
size =
|
2233
|
-
rest
|
2234
|
-
|
2298
|
+
const Login = /*#__PURE__*/React__default.forwardRef(function Login(_ref97, ref) {
|
2299
|
+
let {
|
2300
|
+
children,
|
2301
|
+
size = 16,
|
2302
|
+
...rest
|
2303
|
+
} = _ref97;
|
2304
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2235
2305
|
width: size,
|
2236
2306
|
height: size,
|
2237
2307
|
ref: ref,
|
2238
2308
|
xmlns: "http://www.w3.org/2000/svg",
|
2239
2309
|
viewBox: "0 0 32 32",
|
2240
|
-
fill: "currentColor"
|
2241
|
-
|
2310
|
+
fill: "currentColor",
|
2311
|
+
...rest
|
2312
|
+
}, _path166 || (_path166 = /*#__PURE__*/React__default.createElement("path", {
|
2242
2313
|
d: "M26,30H14a2,2,0,0,1-2-2V25h2v3H26V4H14V7H12V4a2,2,0,0,1,2-2H26a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z"
|
2243
2314
|
})), _path167 || (_path167 = /*#__PURE__*/React__default.createElement("path", {
|
2244
2315
|
d: "M14.59 20.59L18.17 17 4 17 4 15 18.17 15 14.59 11.41 16 10 22 16 16 22 14.59 20.59z"
|
@@ -2247,19 +2318,21 @@ var Login = /*#__PURE__*/React__default.forwardRef(function Login(_ref97, ref) {
|
|
2247
2318
|
if (process.env.NODE_ENV !== "production") {
|
2248
2319
|
Login.propTypes = iconPropTypes;
|
2249
2320
|
}
|
2250
|
-
|
2251
|
-
|
2252
|
-
|
2253
|
-
size =
|
2254
|
-
rest
|
2255
|
-
|
2321
|
+
const LogoAngular = /*#__PURE__*/React__default.forwardRef(function LogoAngular(_ref98, ref) {
|
2322
|
+
let {
|
2323
|
+
children,
|
2324
|
+
size = 16,
|
2325
|
+
...rest
|
2326
|
+
} = _ref98;
|
2327
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2256
2328
|
width: size,
|
2257
2329
|
height: size,
|
2258
2330
|
ref: ref,
|
2259
2331
|
xmlns: "http://www.w3.org/2000/svg",
|
2260
2332
|
viewBox: "0 0 32 32",
|
2261
|
-
fill: "currentColor"
|
2262
|
-
|
2333
|
+
fill: "currentColor",
|
2334
|
+
...rest
|
2335
|
+
}, _path168 || (_path168 = /*#__PURE__*/React__default.createElement("path", {
|
2263
2336
|
d: "M13.5,16h4.9L16,10.8L13.5,16z"
|
2264
2337
|
})), _path169 || (_path169 = /*#__PURE__*/React__default.createElement("path", {
|
2265
2338
|
d: "M16,3L3,7.6l2.7,15.8L16,29l10.3-5.6L29,7.6L16,3z M21.1,21.6l-1.5-3.2h-7.1l-1.5,3.2H8.6L16,5.3l7.4,16.2H21.1z"
|
@@ -2268,114 +2341,126 @@ var LogoAngular = /*#__PURE__*/React__default.forwardRef(function LogoAngular(_r
|
|
2268
2341
|
if (process.env.NODE_ENV !== "production") {
|
2269
2342
|
LogoAngular.propTypes = iconPropTypes;
|
2270
2343
|
}
|
2271
|
-
|
2272
|
-
|
2273
|
-
|
2274
|
-
size =
|
2275
|
-
rest
|
2276
|
-
|
2344
|
+
const LogoAnsibleCommunity = /*#__PURE__*/React__default.forwardRef(function LogoAnsibleCommunity(_ref99, ref) {
|
2345
|
+
let {
|
2346
|
+
children,
|
2347
|
+
size = 16,
|
2348
|
+
...rest
|
2349
|
+
} = _ref99;
|
2350
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2277
2351
|
width: size,
|
2278
2352
|
height: size,
|
2279
2353
|
ref: ref,
|
2280
2354
|
xmlns: "http://www.w3.org/2000/svg",
|
2281
2355
|
viewBox: "0 0 32 32",
|
2282
|
-
fill: "currentColor"
|
2283
|
-
|
2356
|
+
fill: "currentColor",
|
2357
|
+
...rest
|
2358
|
+
}, _path170 || (_path170 = /*#__PURE__*/React__default.createElement("path", {
|
2284
2359
|
d: "M27.8,27.7L17.5,3.1C17.2,2.4,16.6,2,15.9,2c-0.7,0-1.3,0.4-1.6,1.1L3,30h3.9l4.5-11.1l13.3,10.7c0.5,0.4,0.9,0.6,1.4,0.6 c1,0,1.9-0.7,1.9-1.8C28,28.2,27.9,28,27.8,27.7z M15.9,7.5l6.7,16.4L12.5,16L15.9,7.5z"
|
2285
2360
|
})), children);
|
2286
2361
|
});
|
2287
2362
|
if (process.env.NODE_ENV !== "production") {
|
2288
2363
|
LogoAnsibleCommunity.propTypes = iconPropTypes;
|
2289
2364
|
}
|
2290
|
-
|
2291
|
-
|
2292
|
-
|
2293
|
-
size =
|
2294
|
-
rest
|
2295
|
-
|
2365
|
+
const LogoDigg = /*#__PURE__*/React__default.forwardRef(function LogoDigg(_ref100, ref) {
|
2366
|
+
let {
|
2367
|
+
children,
|
2368
|
+
size = 16,
|
2369
|
+
...rest
|
2370
|
+
} = _ref100;
|
2371
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2296
2372
|
width: size,
|
2297
2373
|
height: size,
|
2298
2374
|
ref: ref,
|
2299
2375
|
xmlns: "http://www.w3.org/2000/svg",
|
2300
2376
|
viewBox: "0 0 32 32",
|
2301
|
-
fill: "currentColor"
|
2302
|
-
|
2377
|
+
fill: "currentColor",
|
2378
|
+
...rest
|
2379
|
+
}, _path171 || (_path171 = /*#__PURE__*/React__default.createElement("path", {
|
2303
2380
|
d: "M6.48 7.6v3.92H2V21H9.28V7.6zm0 11.2H4.8v-5H6.48zM10.4 11.52H13.2V21.04H10.4zM10.4 7.6H13.2V10.399999999999999H10.4zM14.32 11.52V21H18.8v1.12H14.32V24.4H21.6V11.52zM18.8 18.8H17.12v-5H18.8zM22.72 11.52V21H27.2v1.12H22.72V24.4H30V11.52zM27.2 18.8H25.52v-5H27.2z"
|
2304
2381
|
})), children);
|
2305
2382
|
});
|
2306
2383
|
if (process.env.NODE_ENV !== "production") {
|
2307
2384
|
LogoDigg.propTypes = iconPropTypes;
|
2308
2385
|
}
|
2309
|
-
|
2310
|
-
|
2311
|
-
|
2312
|
-
size =
|
2313
|
-
rest
|
2314
|
-
|
2386
|
+
const LogoDiscord = /*#__PURE__*/React__default.forwardRef(function LogoDiscord(_ref101, ref) {
|
2387
|
+
let {
|
2388
|
+
children,
|
2389
|
+
size = 16,
|
2390
|
+
...rest
|
2391
|
+
} = _ref101;
|
2392
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2315
2393
|
width: size,
|
2316
2394
|
height: size,
|
2317
2395
|
ref: ref,
|
2318
2396
|
xmlns: "http://www.w3.org/2000/svg",
|
2319
2397
|
viewBox: "0 0 32 32",
|
2320
|
-
fill: "currentColor"
|
2321
|
-
|
2398
|
+
fill: "currentColor",
|
2399
|
+
...rest
|
2400
|
+
}, _path172 || (_path172 = /*#__PURE__*/React__default.createElement("path", {
|
2322
2401
|
d: "M25.7,7.1C23.9,6.3,22,5.7,20,5.3c0,0-0.1,0-0.1,0c-0.2,0.4-0.5,1-0.7,1.5c-2.2-0.3-4.3-0.3-6.4,0c-0.2-0.5-0.5-1-0.7-1.5 c0,0-0.1,0-0.1,0c-2,0.3-3.9,0.9-5.7,1.8c0,0,0,0,0,0c-3.6,5.4-4.6,10.7-4.1,15.9c0,0,0,0.1,0,0.1c2.4,1.8,4.7,2.8,7,3.5 c0,0,0.1,0,0.1,0c0.5-0.7,1-1.5,1.4-2.3c0,0,0-0.1,0-0.1c-0.8-0.3-1.5-0.6-2.2-1c-0.1,0-0.1-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.3 c0,0,0.1,0,0.1,0c4.6,2.1,9.5,2.1,14.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0,0,0.1,0,0.1c-0.7,0.4-1.4,0.8-2.2,1 c0,0-0.1,0.1,0,0.1c0.4,0.8,0.9,1.6,1.4,2.3c0,0,0.1,0,0.1,0c2.3-0.7,4.6-1.8,7-3.5c0,0,0,0,0-0.1C30.5,17,28.9,11.8,25.7,7.1 C25.7,7.1,25.7,7.1,25.7,7.1z M11.4,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C13.9,18.6,12.8,19.9,11.4,19.9z M20.7,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C23.2,18.6,22.1,19.9,20.7,19.9z"
|
2323
2402
|
})), children);
|
2324
2403
|
});
|
2325
2404
|
if (process.env.NODE_ENV !== "production") {
|
2326
2405
|
LogoDiscord.propTypes = iconPropTypes;
|
2327
2406
|
}
|
2328
|
-
|
2329
|
-
|
2330
|
-
|
2331
|
-
size =
|
2332
|
-
rest
|
2333
|
-
|
2407
|
+
const LogoFacebook = /*#__PURE__*/React__default.forwardRef(function LogoFacebook(_ref102, ref) {
|
2408
|
+
let {
|
2409
|
+
children,
|
2410
|
+
size = 16,
|
2411
|
+
...rest
|
2412
|
+
} = _ref102;
|
2413
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2334
2414
|
width: size,
|
2335
2415
|
height: size,
|
2336
2416
|
ref: ref,
|
2337
2417
|
xmlns: "http://www.w3.org/2000/svg",
|
2338
2418
|
viewBox: "0 0 32 32",
|
2339
|
-
fill: "currentColor"
|
2340
|
-
|
2419
|
+
fill: "currentColor",
|
2420
|
+
...rest
|
2421
|
+
}, _path173 || (_path173 = /*#__PURE__*/React__default.createElement("path", {
|
2341
2422
|
d: "M26.67,4H5.33A1.34,1.34,0,0,0,4,5.33V26.67A1.34,1.34,0,0,0,5.33,28H16.82V18.72H13.7V15.09h3.12V12.42c0-3.1,1.89-4.79,4.67-4.79.93,0,1.86,0,2.79.14V11H22.37c-1.51,0-1.8.72-1.8,1.77v2.31h3.6l-.47,3.63H20.57V28h6.1A1.34,1.34,0,0,0,28,26.67V5.33A1.34,1.34,0,0,0,26.67,4Z"
|
2342
2423
|
})), children);
|
2343
2424
|
});
|
2344
2425
|
if (process.env.NODE_ENV !== "production") {
|
2345
2426
|
LogoFacebook.propTypes = iconPropTypes;
|
2346
2427
|
}
|
2347
|
-
|
2348
|
-
|
2349
|
-
|
2350
|
-
size =
|
2351
|
-
rest
|
2352
|
-
|
2428
|
+
const LogoFigma = /*#__PURE__*/React__default.forwardRef(function LogoFigma(_ref103, ref) {
|
2429
|
+
let {
|
2430
|
+
children,
|
2431
|
+
size = 16,
|
2432
|
+
...rest
|
2433
|
+
} = _ref103;
|
2434
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2353
2435
|
width: size,
|
2354
2436
|
height: size,
|
2355
2437
|
ref: ref,
|
2356
2438
|
xmlns: "http://www.w3.org/2000/svg",
|
2357
2439
|
viewBox: "0 0 32 32",
|
2358
|
-
fill: "currentColor"
|
2359
|
-
|
2440
|
+
fill: "currentColor",
|
2441
|
+
...rest
|
2442
|
+
}, _path174 || (_path174 = /*#__PURE__*/React__default.createElement("path", {
|
2360
2443
|
d: "M23.6,11.6c1-0.6,1.7-1.5,2.1-2.6c0.4-1.1,0.4-2.2,0.1-3.3c-0.3-1.1-1-2-1.9-2.7c-0.9-0.7-2.1-1-3.2-1h-9.2 c-1.2,0-2.3,0.4-3.2,1C7.2,3.7,6.6,4.7,6.2,5.7C5.9,6.8,5.9,8,6.3,9c0.4,1.1,1.1,2,2.1,2.6c-0.7,0.5-1.4,1.1-1.8,1.9 C6.2,14.3,6,15.1,6,16c0,0.9,0.2,1.7,0.6,2.5c0.4,0.8,1,1.4,1.8,1.9c-1,0.6-1.7,1.5-2.1,2.6c-0.4,1.1-0.4,2.2-0.1,3.3 c0.3,1.1,1,2,2,2.7c0.9,0.7,2.1,1,3.2,1c1.4,0,2.8-0.6,3.9-1.5c1-1,1.6-2.3,1.6-3.7v-4.8c1,0.9,2.3,1.4,3.6,1.4h0.1 c1.2,0,2.3-0.4,3.2-1c0.9-0.7,1.6-1.6,1.9-2.7c0.3-1.1,0.3-2.2-0.1-3.3C25.3,13.1,24.5,12.2,23.6,11.6z M16.9,3.7h3.7 c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2s0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2 c-0.4,0.3-0.8,0.6-1.2,0.8c-0.5,0.2-1,0.2-1.4,0.2h-3.7V3.7z M11.4,3.7h3.7v7h-3.7c-0.9,0-1.8-0.4-2.4-1.1C8.3,9,8,8.1,8,7.2 s0.4-1.8,1-2.4C9.6,4.2,10.5,3.8,11.4,3.7L11.4,3.7z M7.8,16c0-0.9,0.4-1.8,1.1-2.5c0.7-0.7,1.6-1,2.6-1h3.7v7h-3.7 c-1,0-1.9-0.4-2.6-1C8.2,17.8,7.8,16.9,7.8,16L7.8,16z M15.1,24.7c0,1-0.4,1.9-1.1,2.5c-0.7,0.7-1.6,1-2.6,1c-0.5,0-1,0-1.4-0.2 c-0.5-0.2-0.9-0.4-1.2-0.7c-0.4-0.3-0.6-0.7-0.8-1.2c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.8,0.8-1.2 c0.4-0.3,0.8-0.6,1.2-0.8c0.5-0.2,1-0.2,1.4-0.2h3.7L15.1,24.7z M20.6,19.5h-0.1c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.7-1-1.5-1-2.4 c0-0.9,0.4-1.8,1-2.4c0.6-0.7,1.5-1,2.4-1.1h0.1c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2 c0.2,0.4,0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8C21.6,19.5,21.1,19.5,20.6,19.5 L20.6,19.5z"
|
2361
2444
|
})), children);
|
2362
2445
|
});
|
2363
2446
|
if (process.env.NODE_ENV !== "production") {
|
2364
2447
|
LogoFigma.propTypes = iconPropTypes;
|
2365
2448
|
}
|
2366
|
-
|
2367
|
-
|
2368
|
-
|
2369
|
-
size =
|
2370
|
-
rest
|
2371
|
-
|
2449
|
+
const LogoFlickr = /*#__PURE__*/React__default.forwardRef(function LogoFlickr(_ref104, ref) {
|
2450
|
+
let {
|
2451
|
+
children,
|
2452
|
+
size = 16,
|
2453
|
+
...rest
|
2454
|
+
} = _ref104;
|
2455
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2372
2456
|
width: size,
|
2373
2457
|
height: size,
|
2374
2458
|
ref: ref,
|
2375
2459
|
xmlns: "http://www.w3.org/2000/svg",
|
2376
2460
|
viewBox: "0 0 32 32",
|
2377
|
-
fill: "currentColor"
|
2378
|
-
|
2461
|
+
fill: "currentColor",
|
2462
|
+
...rest
|
2463
|
+
}, _circle14 || (_circle14 = /*#__PURE__*/React__default.createElement("circle", {
|
2379
2464
|
cx: "8",
|
2380
2465
|
cy: "16",
|
2381
2466
|
r: "6"
|
@@ -2388,38 +2473,42 @@ var LogoFlickr = /*#__PURE__*/React__default.forwardRef(function LogoFlickr(_ref
|
|
2388
2473
|
if (process.env.NODE_ENV !== "production") {
|
2389
2474
|
LogoFlickr.propTypes = iconPropTypes;
|
2390
2475
|
}
|
2391
|
-
|
2392
|
-
|
2393
|
-
|
2394
|
-
size =
|
2395
|
-
rest
|
2396
|
-
|
2476
|
+
const LogoGit = /*#__PURE__*/React__default.forwardRef(function LogoGit(_ref105, ref) {
|
2477
|
+
let {
|
2478
|
+
children,
|
2479
|
+
size = 16,
|
2480
|
+
...rest
|
2481
|
+
} = _ref105;
|
2482
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2397
2483
|
width: size,
|
2398
2484
|
height: size,
|
2399
2485
|
ref: ref,
|
2400
2486
|
xmlns: "http://www.w3.org/2000/svg",
|
2401
2487
|
viewBox: "0 0 32 32",
|
2402
|
-
fill: "currentColor"
|
2403
|
-
|
2488
|
+
fill: "currentColor",
|
2489
|
+
...rest
|
2490
|
+
}, _path175 || (_path175 = /*#__PURE__*/React__default.createElement("path", {
|
2404
2491
|
d: "M29.5242,14.8021L17.2022,2.5241c-.7013-.6988-1.8032-.6988-2.5045,0h0l-2.5045,2.4955,3.2057,3.1943c.8014-.2995,1.6029,0,2.2039.4991.6011.5989.8014,1.3975.5009,2.1961l3.1055,3.0945c.8014-.2995,1.6029,0,2.2039.4991.8014.7986.8014,2.1961,0,2.9947h0c-.8014.7986-2.2039.7986-3.0054,0-.6011-.5989-.8014-1.4973-.5009-2.2959l-2.9052-2.8948v7.5865c1.102.4991,1.5027,1.7968,1.0018,2.8948-.1002.1996-.2004.3993-.4007.5989-.8014.7986-2.2039.7986-3.0054,0h0c-.8014-.7986-.8014-2.1961,0-2.9947h0c.2004-.1996.4007-.3993.7013-.4991v-7.6863c-.3005-.0998-.5009-.2995-.7013-.4991-.6011-.5989-.8014-1.4973-.5009-2.2959l-3.2057-3.1943L2.4759,14.7023c-.7013.6988-.7013,1.7968,0,2.5954h0l12.2218,12.1783c.7013.6988,1.8032.6988,2.5045,0l12.2218-12.1783c.7013-.6988.7013-1.7968,0-2.5954"
|
2405
2492
|
})), children);
|
2406
2493
|
});
|
2407
2494
|
if (process.env.NODE_ENV !== "production") {
|
2408
2495
|
LogoGit.propTypes = iconPropTypes;
|
2409
2496
|
}
|
2410
|
-
|
2411
|
-
|
2412
|
-
|
2413
|
-
size =
|
2414
|
-
rest
|
2415
|
-
|
2497
|
+
const LogoGithub = /*#__PURE__*/React__default.forwardRef(function LogoGithub(_ref106, ref) {
|
2498
|
+
let {
|
2499
|
+
children,
|
2500
|
+
size = 16,
|
2501
|
+
...rest
|
2502
|
+
} = _ref106;
|
2503
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2416
2504
|
width: size,
|
2417
2505
|
height: size,
|
2418
2506
|
ref: ref,
|
2419
2507
|
xmlns: "http://www.w3.org/2000/svg",
|
2420
2508
|
viewBox: "0 0 32 32",
|
2421
|
-
fill: "currentColor"
|
2422
|
-
|
2509
|
+
fill: "currentColor",
|
2510
|
+
...rest
|
2511
|
+
}, _path176 || (_path176 = /*#__PURE__*/React__default.createElement("path", {
|
2423
2512
|
fillRule: "evenodd",
|
2424
2513
|
d: "M16,2a14,14,0,0,0-4.43,27.28c.7.13,1-.3,1-.67s0-1.21,0-2.38c-3.89.84-4.71-1.88-4.71-1.88A3.71,3.71,0,0,0,6.24,22.3c-1.27-.86.1-.85.1-.85A2.94,2.94,0,0,1,8.48,22.9a3,3,0,0,0,4.08,1.16,2.93,2.93,0,0,1,.88-1.87c-3.1-.36-6.37-1.56-6.37-6.92a5.4,5.4,0,0,1,1.44-3.76,5,5,0,0,1,.14-3.7s1.17-.38,3.85,1.43a13.3,13.3,0,0,1,7,0c2.67-1.81,3.84-1.43,3.84-1.43a5,5,0,0,1,.14,3.7,5.4,5.4,0,0,1,1.44,3.76c0,5.38-3.27,6.56-6.39,6.91a3.33,3.33,0,0,1,.95,2.59c0,1.87,0,3.38,0,3.84s.25.81,1,.67A14,14,0,0,0,16,2Z"
|
2425
2514
|
})), children);
|
@@ -2427,38 +2516,42 @@ var LogoGithub = /*#__PURE__*/React__default.forwardRef(function LogoGithub(_ref
|
|
2427
2516
|
if (process.env.NODE_ENV !== "production") {
|
2428
2517
|
LogoGithub.propTypes = iconPropTypes;
|
2429
2518
|
}
|
2430
|
-
|
2431
|
-
|
2432
|
-
|
2433
|
-
size =
|
2434
|
-
rest
|
2435
|
-
|
2519
|
+
const LogoGitlab = /*#__PURE__*/React__default.forwardRef(function LogoGitlab(_ref107, ref) {
|
2520
|
+
let {
|
2521
|
+
children,
|
2522
|
+
size = 16,
|
2523
|
+
...rest
|
2524
|
+
} = _ref107;
|
2525
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2436
2526
|
width: size,
|
2437
2527
|
height: size,
|
2438
2528
|
ref: ref,
|
2439
2529
|
xmlns: "http://www.w3.org/2000/svg",
|
2440
2530
|
viewBox: "0 0 32 32",
|
2441
|
-
fill: "currentColor"
|
2442
|
-
|
2531
|
+
fill: "currentColor",
|
2532
|
+
...rest
|
2533
|
+
}, _path177 || (_path177 = /*#__PURE__*/React__default.createElement("path", {
|
2443
2534
|
d: "m28.5678,12.8926l-.0366-.0934-3.5388-9.2356c-.072-.181-.1995-.3346-.3642-.4386-.3375-.2095-.7699-.1863-1.083.0582-.1512.1228-.2608.2892-.3141.4765l-2.3894,7.3105h-9.6756l-2.3894-7.3105c-.0518-.1884-.1617-.3556-.3141-.4779-.3131-.2445-.7455-.2677-1.083-.0582-.1643.1045-.2917.2579-.3642.4386l-3.5456,9.2315-.0352.0934c-1.0465,2.7345-.1578,5.8315,2.1796,7.5948l.0122.0095.0325.023,5.3908,4.037,2.667,2.0185,1.6246,1.2265c.3905.2965.9308.2965,1.3213,0l1.6246-1.2265,2.667-2.0185,5.4233-4.0614.0135-.0108c2.3319-1.7635,3.219-4.8551,2.1769-7.5867Z"
|
2444
2535
|
})), children);
|
2445
2536
|
});
|
2446
2537
|
if (process.env.NODE_ENV !== "production") {
|
2447
2538
|
LogoGitlab.propTypes = iconPropTypes;
|
2448
2539
|
}
|
2449
|
-
|
2450
|
-
|
2451
|
-
|
2452
|
-
size =
|
2453
|
-
rest
|
2454
|
-
|
2540
|
+
const LogoGlassdoor = /*#__PURE__*/React__default.forwardRef(function LogoGlassdoor(_ref108, ref) {
|
2541
|
+
let {
|
2542
|
+
children,
|
2543
|
+
size = 16,
|
2544
|
+
...rest
|
2545
|
+
} = _ref108;
|
2546
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2455
2547
|
width: size,
|
2456
2548
|
height: size,
|
2457
2549
|
ref: ref,
|
2458
2550
|
xmlns: "http://www.w3.org/2000/svg",
|
2459
2551
|
viewBox: "0 0 32 32",
|
2460
|
-
fill: "currentColor"
|
2461
|
-
|
2552
|
+
fill: "currentColor",
|
2553
|
+
...rest
|
2554
|
+
}, _path178 || (_path178 = /*#__PURE__*/React__default.createElement("path", {
|
2462
2555
|
d: "M10.8281,28H21.1719a3.43,3.43,0,0,0,3.43-3.43V10.3306h-3.43V24.57H7.3981A3.43,3.43,0,0,0,10.8281,28Z"
|
2463
2556
|
})), _path179 || (_path179 = /*#__PURE__*/React__default.createElement("path", {
|
2464
2557
|
d: "M21.1719,4H10.8281a3.43,3.43,0,0,0-3.43,3.43v14.24h3.43V7.43H24.6019A3.43,3.43,0,0,0,21.1719,4Z"
|
@@ -2467,19 +2560,21 @@ var LogoGlassdoor = /*#__PURE__*/React__default.forwardRef(function LogoGlassdoo
|
|
2467
2560
|
if (process.env.NODE_ENV !== "production") {
|
2468
2561
|
LogoGlassdoor.propTypes = iconPropTypes;
|
2469
2562
|
}
|
2470
|
-
|
2471
|
-
|
2472
|
-
|
2473
|
-
size =
|
2474
|
-
rest
|
2475
|
-
|
2563
|
+
const LogoInstagram = /*#__PURE__*/React__default.forwardRef(function LogoInstagram(_ref109, ref) {
|
2564
|
+
let {
|
2565
|
+
children,
|
2566
|
+
size = 16,
|
2567
|
+
...rest
|
2568
|
+
} = _ref109;
|
2569
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2476
2570
|
width: size,
|
2477
2571
|
height: size,
|
2478
2572
|
ref: ref,
|
2479
2573
|
xmlns: "http://www.w3.org/2000/svg",
|
2480
2574
|
viewBox: "0 0 32 32",
|
2481
|
-
fill: "currentColor"
|
2482
|
-
|
2575
|
+
fill: "currentColor",
|
2576
|
+
...rest
|
2577
|
+
}, _circle16 || (_circle16 = /*#__PURE__*/React__default.createElement("circle", {
|
2483
2578
|
cx: "22.406",
|
2484
2579
|
cy: "9.594",
|
2485
2580
|
r: "1.44"
|
@@ -2492,57 +2587,63 @@ var LogoInstagram = /*#__PURE__*/React__default.forwardRef(function LogoInstagra
|
|
2492
2587
|
if (process.env.NODE_ENV !== "production") {
|
2493
2588
|
LogoInstagram.propTypes = iconPropTypes;
|
2494
2589
|
}
|
2495
|
-
|
2496
|
-
|
2497
|
-
|
2498
|
-
size =
|
2499
|
-
rest
|
2500
|
-
|
2590
|
+
const LogoInvision = /*#__PURE__*/React__default.forwardRef(function LogoInvision(_ref110, ref) {
|
2591
|
+
let {
|
2592
|
+
children,
|
2593
|
+
size = 16,
|
2594
|
+
...rest
|
2595
|
+
} = _ref110;
|
2596
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2501
2597
|
width: size,
|
2502
2598
|
height: size,
|
2503
2599
|
ref: ref,
|
2504
2600
|
xmlns: "http://www.w3.org/2000/svg",
|
2505
2601
|
viewBox: "0 0 32 32",
|
2506
|
-
fill: "currentColor"
|
2507
|
-
|
2602
|
+
fill: "currentColor",
|
2603
|
+
...rest
|
2604
|
+
}, _path182 || (_path182 = /*#__PURE__*/React__default.createElement("path", {
|
2508
2605
|
d: "M4,4v24h24V4H4z M12.1,9c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c0,0,0,0,0,0c-0.8,0-1.4-0.6-1.4-1.4 C10.8,9.6,11.4,9,12.1,9z M21.5,22.2c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1l0.7-2.4c0.1-0.2,0.1-0.5,0.1-0.7 c0-0.8-0.5-1.3-1.2-1.3c-1,0-1.6,0.7-1.9,2L15.9,22h-2.3l0.4-1.7c-0.7,1.1-1.6,1.8-2.8,1.8c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1 l1.1-4.3H8.7L9.2,13h3.9l-1.5,6.1c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4,0.2,0.5,0.5,0.6c0.2,0,1.6,0,2.4-1.8l1-4.1h-1.6l0.5-1.8h3.5 l-0.5,2.1c0.6-1.2,1.9-2.2,3.1-2.2c1.3,0,2.4,0.9,2.4,2.7c0,0.5-0.1,1-0.2,1.5l-0.7,2.4c-0.1,0.2-0.1,0.4-0.1,0.6 c0,0.4,0.2,0.6,0.5,0.6c0.3,0,0.7-0.2,1.2-1.5l0.9,0.4C23.7,21.4,22.7,22.2,21.5,22.2z"
|
2509
2606
|
})), children);
|
2510
2607
|
});
|
2511
2608
|
if (process.env.NODE_ENV !== "production") {
|
2512
2609
|
LogoInvision.propTypes = iconPropTypes;
|
2513
2610
|
}
|
2514
|
-
|
2515
|
-
|
2516
|
-
|
2517
|
-
size =
|
2518
|
-
rest
|
2519
|
-
|
2611
|
+
const LogoJupyter = /*#__PURE__*/React__default.forwardRef(function LogoJupyter(_ref111, ref) {
|
2612
|
+
let {
|
2613
|
+
children,
|
2614
|
+
size = 16,
|
2615
|
+
...rest
|
2616
|
+
} = _ref111;
|
2617
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2520
2618
|
width: size,
|
2521
2619
|
height: size,
|
2522
2620
|
ref: ref,
|
2523
2621
|
xmlns: "http://www.w3.org/2000/svg",
|
2524
2622
|
viewBox: "0 0 32 32",
|
2525
|
-
fill: "currentColor"
|
2526
|
-
|
2623
|
+
fill: "currentColor",
|
2624
|
+
...rest
|
2625
|
+
}, _path183 || (_path183 = /*#__PURE__*/React__default.createElement("path", {
|
2527
2626
|
d: "M26.0766 3.5878a1.69 1.69 0 11-1.76-1.5853 1.67 1.67 0 011.76 1.5853zM16.2191 23.1113c-4.4866 0-8.43-1.61-10.4688-3.9882a11.1618 11.1618 0 0020.9377 0C24.6541 21.5011 20.7257 23.1113 16.2191 23.1113zM16.2191 7.6483c4.4867 0 8.43 1.61 10.4689 3.9881a11.1618 11.1618 0 00-20.9377 0C7.7892 9.2535 11.7126 7.6483 16.2191 7.6483zM10.0427 27.7388a2.1085 2.1085 0 11-.2031-.7976 2.1278 2.1278 0 01.2031.7976zM6.26 7.1064A1.2263 1.2263 0 117.4517 5.83 1.2415 1.2415 0 016.26 7.1064z"
|
2528
2627
|
})), children);
|
2529
2628
|
});
|
2530
2629
|
if (process.env.NODE_ENV !== "production") {
|
2531
2630
|
LogoJupyter.propTypes = iconPropTypes;
|
2532
2631
|
}
|
2533
|
-
|
2534
|
-
|
2535
|
-
|
2536
|
-
size =
|
2537
|
-
rest
|
2538
|
-
|
2632
|
+
const LogoKeybase = /*#__PURE__*/React__default.forwardRef(function LogoKeybase(_ref112, ref) {
|
2633
|
+
let {
|
2634
|
+
children,
|
2635
|
+
size = 16,
|
2636
|
+
...rest
|
2637
|
+
} = _ref112;
|
2638
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2539
2639
|
width: size,
|
2540
2640
|
height: size,
|
2541
2641
|
ref: ref,
|
2542
2642
|
xmlns: "http://www.w3.org/2000/svg",
|
2543
2643
|
viewBox: "0 0 32 32",
|
2544
|
-
fill: "currentColor"
|
2545
|
-
|
2644
|
+
fill: "currentColor",
|
2645
|
+
...rest
|
2646
|
+
}, _path184 || (_path184 = /*#__PURE__*/React__default.createElement("path", {
|
2546
2647
|
d: "M14.1233 26.9328a1.1122 1.1122 0 11-1.1121-1.1122 1.112 1.112 0 011.1121 1.1122M21.0257 26.9328a1.1122 1.1122 0 11-1.1122-1.1122 1.1121 1.1121 0 011.1122 1.1122"
|
2547
2648
|
})), _path185 || (_path185 = /*#__PURE__*/React__default.createElement("path", {
|
2548
2649
|
d: "M9.999 5.797H10.973V6.771H9.999z",
|
@@ -2554,19 +2655,21 @@ var LogoKeybase = /*#__PURE__*/React__default.forwardRef(function LogoKeybase(_r
|
|
2554
2655
|
if (process.env.NODE_ENV !== "production") {
|
2555
2656
|
LogoKeybase.propTypes = iconPropTypes;
|
2556
2657
|
}
|
2557
|
-
|
2558
|
-
|
2559
|
-
|
2560
|
-
size =
|
2561
|
-
rest
|
2562
|
-
|
2658
|
+
const LogoKubernetes = /*#__PURE__*/React__default.forwardRef(function LogoKubernetes(_ref113, ref) {
|
2659
|
+
let {
|
2660
|
+
children,
|
2661
|
+
size = 16,
|
2662
|
+
...rest
|
2663
|
+
} = _ref113;
|
2664
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2563
2665
|
width: size,
|
2564
2666
|
height: size,
|
2565
2667
|
ref: ref,
|
2566
2668
|
xmlns: "http://www.w3.org/2000/svg",
|
2567
2669
|
viewBox: "0 0 32 32",
|
2568
|
-
fill: "currentColor"
|
2569
|
-
|
2670
|
+
fill: "currentColor",
|
2671
|
+
...rest
|
2672
|
+
}, _path187 || (_path187 = /*#__PURE__*/React__default.createElement("path", {
|
2570
2673
|
d: "M15.134 17.189L15.999 17.605 16.862 17.19 17.076 16.259 16.479 15.512 15.518 15.512 14.919 16.257 15.134 17.189zM14.2166 13.88l.0024.0019a.5239.5239 0 00.8321-.4013l0-.003.0127-.0063L15.242 10.33c-.2173.0268-.43.0635-.6333.1094a6.2 6.2 0 00-2.9727 1.6176l2.5752 1.8257zM12.8347 16.2622l.003-.001a.5241.5241 0 00.206-.9008l-.0024-.002.0029-.0127-2.3515-2.1035a6.1775 6.1775 0 00-.8746 3.9l3.0142-.87zM13.8645 18.501a.5229.5229 0 00-.6059-.3989l-.0034 0-.0049-.0063-3.0908.5249a6.2052 6.2052 0 002.4863 3.1108l1.1972-2.8935-.0087-.0117.0009-.003A.5184.5184 0 0013.8645 18.501zM16.4622 19.6431l-.0015-.0025a.53.53 0 00-.48-.2759.5269.5269 0 00-.4434.2769l-.0015.0029H15.533l-1.52 2.7481a6.2277 6.2277 0 003.38.1723c.207-.0468.41-.104.6044-.1684l-1.5234-2.7534zM18.7371 18.09l-.0034 0a.51.51 0 00-.1206-.0088.5263.5263 0 00-.4546.7319l.001.0024-.004.0054 1.21 2.9234A6.185 6.185 0 0021.86 18.61l-3.1176-.5269zM21.2893 13.2437L18.951 15.3364l.0014.0064-.0024.0019a.5249.5249 0 00.2055.9014l.0035.0005.0024.0132 3.0293.872a6.2915 6.2915 0 00-.9014-3.8881zM16.9383 13.4673l0 .0029a.5161.5161 0 00.1143.3037.5236.5236 0 00.7192.0967l.0025-.0019.0088.0039 2.5586-1.814a6.2307 6.2307 0 00-3.584-1.7285l.1777 3.1357z"
|
2571
2674
|
})), _path188 || (_path188 = /*#__PURE__*/React__default.createElement("path", {
|
2572
2675
|
d: "M30.3806,19.0376,27.9016,8.2705a1.9057,1.9057,0,0,0-1.038-1.291L16.83,2.1885a1.9332,1.9332,0,0,0-1.6656,0L5.1326,6.9819a1.9072,1.9072,0,0,0-1.0381,1.291L1.6194,19.04A1.89,1.89,0,0,0,1.88,20.499a1.8364,1.8364,0,0,0,.1088.1514l6.9439,8.6338a1.9244,1.9244,0,0,0,1.5.7158l11.1357-.0024a1.9251,1.9251,0,0,0,1.5-.7149L30.01,20.6479A1.8911,1.8911,0,0,0,30.3806,19.0376Zm-3.8115-.13a.6432.6432,0,0,1-.7812.4429l-.0039,0-.0049-.001-.0069-.0019-.0048-.002-.0572-.0117c-.0346-.0068-.07-.0142-.0981-.0215a2.4643,2.4643,0,0,1-.3589-.1328c-.0576-.0249-.1172-.0513-.1807-.0752l-.0175-.0063a5.5192,5.5192,0,0,0-1.0284-.3013.4119.4119,0,0,0-.2954.0981l-.0371.0254-.0019.0015-.002,0c-.0439-.0088-.1748-.0322-.2519-.0444a7.8166,7.8166,0,0,1-3.459,4.351c.0093.022.02.05.0307.0806a.9352.9352,0,0,0,.0669.1567l.002.002-.001.0029-.0166.042a.4148.4148,0,0,0-.03.3091,5.69,5.69,0,0,0,.5322.9517c.0376.0561.0757.1084.1128.1591a2.4,2.4,0,0,1,.2095.32c.0166.0312.0371.0752.0552.1137l.0229.0484a.6083.6083,0,1,1-1.0947.5176l-.0224-.0455c-.0186-.038-.0381-.0776-.0518-.1088a2.5059,2.5059,0,0,1-.1211-.3658c-.0166-.0595-.0337-.1215-.0537-.185l-.0059-.0166a5.5441,5.5441,0,0,0-.4052-.9922.4177.4177,0,0,0-.2627-.1709l-.0415-.0127-.0015,0-.0015-.0019c-.01-.0171-.0337-.0611-.0595-.1075-.0235-.042-.0484-.0874-.0664-.12a7.8868,7.8868,0,0,1-1.0269.3091,7.7588,7.7588,0,0,1-4.51-.3233l-.1352.2442-.002.001a.481.481,0,0,0-.2563.124,2.2827,2.2827,0,0,0-.336.7207c-.04.1172-.08.2383-.1279.3569-.0205.064-.0376.127-.0537.188a2.4747,2.4747,0,0,1-.12.3623c-.0127.03-.0313.0669-.0493.1025l-.0245.0494h0l-.0005.0024-.0019.002a.6773.6773,0,0,1-.5952.3945.5484.5484,0,0,1-.24-.0542.6426.6426,0,0,1-.2578-.86c.0088-.0171.0176-.0371.0274-.0576.0171-.0371.0346-.0757.05-.1045a2.53,2.53,0,0,1,.21-.3222c.0367-.05.0747-.1026.1118-.1578a5.8209,5.8209,0,0,0,.543-.976.5889.5889,0,0,0-.0532-.336l0-.0019,0-.002.1074-.2573a7.8224,7.8224,0,0,1-3.46-4.32l-.2593.0444-.0015-.001-.0264-.0151a.5961.5961,0,0,0-.3159-.106,5.5447,5.5447,0,0,0-1.0283.3013l-.0171.0064c-.062.0239-.1211.0488-.1782.0732a2.4949,2.4949,0,0,1-.3613.1333c-.0308.0083-.0708.0171-.1094.0249l-.0459.01-.0049.0019-.0068.002-.0049.001-.0039,0a.6078.6078,0,1,1-.2695-1.18l.0039-.001.0053-.0015.002,0,.0034-.0009.0469-.0113c.04-.01.081-.02.1133-.0258a2.4132,2.4132,0,0,1,.3808-.0357c.063-.0024.1284-.0054.1958-.0107l.0142-.0015A5.554,5.554,0,0,0,7.77,17.92a.72.72,0,0,0,.231-.227l.0244-.0318.001-.0014.0014,0,.2471-.0718a7.7765,7.7765,0,0,1,1.2246-5.4126l-.19-.17,0-.002-.0044-.0278a.5983.5983,0,0,0-.1153-.3159,5.6171,5.6171,0,0,0-.8916-.6265c-.0585-.0342-.1157-.0649-.1713-.0942a2.4731,2.4731,0,0,1-.3267-.1973c-.0264-.0195-.0586-.0459-.0894-.0713l-.0356-.0288L7.67,10.6387l-.0049-.0039A.7045.7045,0,0,1,7.4041,10.2a.5725.5725,0,0,1,.1128-.4575A.5835.5835,0,0,1,8,9.5288a.7226.7226,0,0,1,.4214.1592l.0361.0283c.0332.0259.07.0552.0972.0781a2.5254,2.5254,0,0,1,.2671.2759c.04.0469.0825.0952.1284.1441l.01.01a5.5221,5.5221,0,0,0,.7989.72.4159.4159,0,0,0,.31.0406l.043-.0069h.0019l.0015.001c.0357.0264.1484.1074.2134.1514a7.7273,7.7273,0,0,1,3.9233-2.24,7.9671,7.9671,0,0,1,1.0816-.1665l.0141-.2515.001-.0014a.6486.6486,0,0,0,.1939-.3076,5.5779,5.5779,0,0,0-.066-1.0791l-.0009-.0088c-.0093-.0664-.021-.13-.0328-.1914a2.5611,2.5611,0,0,1-.0493-.38c-.0009-.03-.0005-.0679,0-.1045l.0005-.05-.0005-.0073,0-.0093a.6088.6088,0,1,1,1.211,0l.0009.0605c.001.0386.0015.0791.0005.11a2.5348,2.5348,0,0,1-.0493.38c-.0117.0615-.0234.125-.0327.1914l-.0039.0317a5.4479,5.4479,0,0,0-.064,1.0567.4132.4132,0,0,0,.1616.2666l.0328.03.0019.0015v.0019c.0015.0435.0083.1836.0137.2637a7.79,7.79,0,0,1,2.7173.7559,7.8812,7.8812,0,0,1,2.2632,1.65l.226-.1612h.002l.0312.002a.5914.5914,0,0,0,.33-.041,5.4885,5.4885,0,0,0,.7871-.71l.0215-.022c.0454-.0478.0869-.0952.1274-.1416a2.57,2.57,0,0,1,.27-.2783c.0263-.0229.062-.05.0967-.0776l.0366-.0288a.6088.6088,0,1,1,.7544.9472l-.0435.0357c-.0307.0254-.063.0517-.0884.0708a2.4733,2.4733,0,0,1-.3266.1968c-.0562.0293-.1143.06-.1734.0947a5.6889,5.6889,0,0,0-.8921.6269.4152.4152,0,0,0-.1079.293l-.0034.044v.0019l-.0014.001c-.0162.0146-.0508.0459-.0914.082s-.0864.0772-.1186.1065a7.7983,7.7983,0,0,1,1.25,5.3994l.24.07.001.001.0171.0254a.6014.6014,0,0,0,.24.2334,5.595,5.595,0,0,0,1.063.1757l.0122.001c.0674.0059.1328.0083.1963.0108a2.4617,2.4617,0,0,1,.38.0356c.0312.0059.0713.0156.11.0254l.0644.0156A.643.643,0,0,1,26.5691,18.9077Z"
|
@@ -2575,152 +2678,168 @@ var LogoKubernetes = /*#__PURE__*/React__default.forwardRef(function LogoKuberne
|
|
2575
2678
|
if (process.env.NODE_ENV !== "production") {
|
2576
2679
|
LogoKubernetes.propTypes = iconPropTypes;
|
2577
2680
|
}
|
2578
|
-
|
2579
|
-
|
2580
|
-
|
2581
|
-
size =
|
2582
|
-
rest
|
2583
|
-
|
2681
|
+
const LogoLinkedin = /*#__PURE__*/React__default.forwardRef(function LogoLinkedin(_ref114, ref) {
|
2682
|
+
let {
|
2683
|
+
children,
|
2684
|
+
size = 16,
|
2685
|
+
...rest
|
2686
|
+
} = _ref114;
|
2687
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2584
2688
|
width: size,
|
2585
2689
|
height: size,
|
2586
2690
|
ref: ref,
|
2587
2691
|
xmlns: "http://www.w3.org/2000/svg",
|
2588
2692
|
viewBox: "0 0 32 32",
|
2589
|
-
fill: "currentColor"
|
2590
|
-
|
2693
|
+
fill: "currentColor",
|
2694
|
+
...rest
|
2695
|
+
}, _path189 || (_path189 = /*#__PURE__*/React__default.createElement("path", {
|
2591
2696
|
d: "M26.2,4H5.8C4.8,4,4,4.8,4,5.7v20.5c0,0.9,0.8,1.7,1.8,1.7h20.4c1,0,1.8-0.8,1.8-1.7V5.7C28,4.8,27.2,4,26.2,4z M11.1,24.4 H7.6V13h3.5V24.4z M9.4,11.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1S10.5,11.4,9.4,11.4z M24.5,24.3 H21v-5.6c0-1.3,0-3.1-1.9-3.1c-1.9,0-2.1,1.5-2.1,2.9v5.7h-3.5V13h3.3v1.5h0.1c0.5-0.9,1.7-1.9,3.4-1.9c3.6,0,4.3,2.4,4.3,5.5V24.3z"
|
2592
2697
|
})), children);
|
2593
2698
|
});
|
2594
2699
|
if (process.env.NODE_ENV !== "production") {
|
2595
2700
|
LogoLinkedin.propTypes = iconPropTypes;
|
2596
2701
|
}
|
2597
|
-
|
2598
|
-
|
2599
|
-
|
2600
|
-
size =
|
2601
|
-
rest
|
2602
|
-
|
2702
|
+
const LogoLivestream = /*#__PURE__*/React__default.forwardRef(function LogoLivestream(_ref115, ref) {
|
2703
|
+
let {
|
2704
|
+
children,
|
2705
|
+
size = 16,
|
2706
|
+
...rest
|
2707
|
+
} = _ref115;
|
2708
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2603
2709
|
width: size,
|
2604
2710
|
height: size,
|
2605
2711
|
ref: ref,
|
2606
2712
|
xmlns: "http://www.w3.org/2000/svg",
|
2607
2713
|
viewBox: "0 0 32 32",
|
2608
|
-
fill: "currentColor"
|
2609
|
-
|
2714
|
+
fill: "currentColor",
|
2715
|
+
...rest
|
2716
|
+
}, _path190 || (_path190 = /*#__PURE__*/React__default.createElement("path", {
|
2610
2717
|
d: "M22.49 23.71h-.76c-2.26 0-4.52 0-6.78 0a3.12 3.12 0 01-2.41-1A14.91 14.91 0 0110 18.88c-1.3-2.6-2.54-5.22-3.82-7.82-.39-.8-.82-1.56-1.28-2.32A7.84 7.84 0 002 5.6c1.24 0 2.41 0 3.57 0a45.63 45.63 0 017 .61 8.09 8.09 0 016.34 5.09 48.51 48.51 0 012.17 7.36A26 26 0 0022.49 23.71zM28.1 26.38a2.93 2.93 0 01-2.74-2.64 42.08 42.08 0 01-.14-4.9 48 48 0 00-.61-7.58 3.75 3.75 0 00-.83-2h2.65c.54 0 .73.37.89.78A12.1 12.1 0 0128 13.28c.29 2.72.31 5.45.33 8.18a10.94 10.94 0 000 1.15c.09.78.4 1.1 1.17 1.08.5 0 .5-.06.5-.06v2.69A8.62 8.62 0 0128.1 26.38z"
|
2611
2718
|
})), children);
|
2612
2719
|
});
|
2613
2720
|
if (process.env.NODE_ENV !== "production") {
|
2614
2721
|
LogoLivestream.propTypes = iconPropTypes;
|
2615
2722
|
}
|
2616
|
-
|
2617
|
-
|
2618
|
-
|
2619
|
-
size =
|
2620
|
-
rest
|
2621
|
-
|
2723
|
+
const LogoMastodon = /*#__PURE__*/React__default.forwardRef(function LogoMastodon(_ref116, ref) {
|
2724
|
+
let {
|
2725
|
+
children,
|
2726
|
+
size = 16,
|
2727
|
+
...rest
|
2728
|
+
} = _ref116;
|
2729
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2622
2730
|
width: size,
|
2623
2731
|
height: size,
|
2624
2732
|
ref: ref,
|
2625
2733
|
xmlns: "http://www.w3.org/2000/svg",
|
2626
2734
|
viewBox: "0 0 32 32",
|
2627
|
-
fill: "currentColor"
|
2628
|
-
|
2735
|
+
fill: "currentColor",
|
2736
|
+
...rest
|
2737
|
+
}, _path191 || (_path191 = /*#__PURE__*/React__default.createElement("path", {
|
2629
2738
|
d: "m29.0581,11.1929c0-6.0742-3.9797-7.8545-3.9797-7.8545-2.0066-.9214-5.4522-1.3091-9.0318-1.3384h-.0879c-3.5798.0293-7.023.417-9.0296,1.3384,0,0-3.98,1.7803-3.98,7.8545,0,1.3911-.0271,3.0537.0171,4.8174.1445,5.9404,1.0889,11.7945,6.5811,13.2481,2.5322.6704,4.7063.8105,6.4573.7144,3.1755-.1758,4.958-1.1333,4.958-1.1333l-.1047-2.3037s-2.269.7153-4.8176.6284c-2.5249-.0869-5.1902-.2725-5.5986-3.3726-.0378-.272-.0566-.563-.0566-.8691,0,0,2.4785.606,5.6196.75,1.9207.0879,3.7219-.1128,5.5515-.3311,3.5083-.4189,6.563-2.5806,6.9468-4.5557.605-3.1113.5552-7.5928.5552-7.5928Zm-4.6943,7.8257h-2.9138v-7.1382c0-1.5049-.6331-2.2686-1.8997-2.2686-1.4002,0-2.1018.9058-2.1018,2.6973v3.9077h-2.8967v-3.9077c0-1.7915-.7019-2.6973-2.1021-2.6973-1.2666,0-1.8997.7637-1.8997,2.2686v7.1382h-2.9138v-7.3545c0-1.5029.3828-2.6978,1.1516-3.5811.7927-.8838,1.8308-1.3369,3.1196-1.3369,1.491,0,2.6204.5732,3.367,1.7192l.7256,1.2168.7261-1.2168c.7463-1.146,1.8755-1.7192,3.3667-1.7192,1.2886,0,2.3267.4531,3.1196,1.3369.7686.8833,1.1514,2.0781,1.1514,3.5811v7.3545Z"
|
2630
2739
|
})), children);
|
2631
2740
|
});
|
2632
2741
|
if (process.env.NODE_ENV !== "production") {
|
2633
2742
|
LogoMastodon.propTypes = iconPropTypes;
|
2634
2743
|
}
|
2635
|
-
|
2636
|
-
|
2637
|
-
|
2638
|
-
size =
|
2639
|
-
rest
|
2640
|
-
|
2744
|
+
const LogoMedium = /*#__PURE__*/React__default.forwardRef(function LogoMedium(_ref117, ref) {
|
2745
|
+
let {
|
2746
|
+
children,
|
2747
|
+
size = 16,
|
2748
|
+
...rest
|
2749
|
+
} = _ref117;
|
2750
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2641
2751
|
width: size,
|
2642
2752
|
height: size,
|
2643
2753
|
ref: ref,
|
2644
2754
|
xmlns: "http://www.w3.org/2000/svg",
|
2645
2755
|
viewBox: "0 0 32 32",
|
2646
|
-
fill: "currentColor"
|
2647
|
-
|
2756
|
+
fill: "currentColor",
|
2757
|
+
...rest
|
2758
|
+
}, _path192 || (_path192 = /*#__PURE__*/React__default.createElement("path", {
|
2648
2759
|
d: "M30 16c0 3.7-.6 6.7-1.4 6.7-.8 0-1.4-3-1.4-6.7s.6-6.7 1.4-6.7C29.4 9.3 30 12.3 30 16M26.5 16c0 4.1-1.8 7.5-3.9 7.5s-3.9-3.4-3.9-7.5 1.8-7.5 3.9-7.5S26.5 11.9 26.5 16M17.8 16c0 4.4-3.5 8-7.9 8S2 20.4 2 16s3.5-8 7.9-8S17.8 11.6 17.8 16"
|
2649
2760
|
})), children);
|
2650
2761
|
});
|
2651
2762
|
if (process.env.NODE_ENV !== "production") {
|
2652
2763
|
LogoMedium.propTypes = iconPropTypes;
|
2653
2764
|
}
|
2654
|
-
|
2655
|
-
|
2656
|
-
|
2657
|
-
size =
|
2658
|
-
rest
|
2659
|
-
|
2765
|
+
const LogoNpm = /*#__PURE__*/React__default.forwardRef(function LogoNpm(_ref118, ref) {
|
2766
|
+
let {
|
2767
|
+
children,
|
2768
|
+
size = 16,
|
2769
|
+
...rest
|
2770
|
+
} = _ref118;
|
2771
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2660
2772
|
width: size,
|
2661
2773
|
height: size,
|
2662
2774
|
ref: ref,
|
2663
2775
|
xmlns: "http://www.w3.org/2000/svg",
|
2664
2776
|
viewBox: "0 0 32 32",
|
2665
|
-
fill: "currentColor"
|
2666
|
-
|
2777
|
+
fill: "currentColor",
|
2778
|
+
...rest
|
2779
|
+
}, _path193 || (_path193 = /*#__PURE__*/React__default.createElement("path", {
|
2667
2780
|
d: "M4,28V4h24v24H4z M8.5,8.5v15H16v-12h4.5v12h3v-15H8.5z"
|
2668
2781
|
})), children);
|
2669
2782
|
});
|
2670
2783
|
if (process.env.NODE_ENV !== "production") {
|
2671
2784
|
LogoNpm.propTypes = iconPropTypes;
|
2672
2785
|
}
|
2673
|
-
|
2674
|
-
|
2675
|
-
|
2676
|
-
size =
|
2677
|
-
rest
|
2678
|
-
|
2786
|
+
const LogoOpenshift = /*#__PURE__*/React__default.forwardRef(function LogoOpenshift(_ref119, ref) {
|
2787
|
+
let {
|
2788
|
+
children,
|
2789
|
+
size = 16,
|
2790
|
+
...rest
|
2791
|
+
} = _ref119;
|
2792
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2679
2793
|
width: size,
|
2680
2794
|
height: size,
|
2681
2795
|
ref: ref,
|
2682
2796
|
xmlns: "http://www.w3.org/2000/svg",
|
2683
2797
|
viewBox: "0 0 32 32",
|
2684
|
-
fill: "currentColor"
|
2685
|
-
|
2798
|
+
fill: "currentColor",
|
2799
|
+
...rest
|
2800
|
+
}, _path194 || (_path194 = /*#__PURE__*/React__default.createElement("path", {
|
2686
2801
|
d: "M26.4612,15.7968A12.1352,12.1352,0,0,0,25.2821,11.48L29,10.13a11.9879,11.9879,0,0,0-1.0281-1.7382l-1.7431.635a11.9884,11.9884,0,0,0-21.71,7.9129l1.7477-.6412a12.19,12.19,0,0,0,.3309,1.9846L2.8838,19.6384A12.1451,12.1451,0,0,0,4.7565,23.7l1.9663-.7163.0026.0039a11.8856,11.8856,0,0,0,4.67,3.8909A12.013,12.013,0,0,0,27.34,21.0743a11.8725,11.8725,0,0,0,1.08-5.992Zm-2.92,3.4967a7.8,7.8,0,0,1-10.3533,3.7744,7.7207,7.7207,0,0,1-2.2714-1.6128l-1.9846.7235a7.84,7.84,0,0,1-2.0742-3.9895l.0009-.0008,3.7242-1.3566a7.8175,7.8175,0,0,1-.1232-2.0653l-1.7517.6362A7.7729,7.7729,0,0,1,19.7645,8.94h.0067a7.7442,7.7442,0,0,1,2.2646,1.615L23.78,9.921a7.8014,7.8014,0,0,1,1.229,1.6558l-3.71,1.3595a7.8245,7.8245,0,0,1,.9766,4.3882l1.9685-.7151A7.6714,7.6714,0,0,1,23.5411,19.2935Z"
|
2687
2802
|
})), children);
|
2688
2803
|
});
|
2689
2804
|
if (process.env.NODE_ENV !== "production") {
|
2690
2805
|
LogoOpenshift.propTypes = iconPropTypes;
|
2691
2806
|
}
|
2692
|
-
|
2693
|
-
|
2694
|
-
|
2695
|
-
size =
|
2696
|
-
rest
|
2697
|
-
|
2807
|
+
const LogoPinterest = /*#__PURE__*/React__default.forwardRef(function LogoPinterest(_ref120, ref) {
|
2808
|
+
let {
|
2809
|
+
children,
|
2810
|
+
size = 16,
|
2811
|
+
...rest
|
2812
|
+
} = _ref120;
|
2813
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2698
2814
|
width: size,
|
2699
2815
|
height: size,
|
2700
2816
|
ref: ref,
|
2701
2817
|
xmlns: "http://www.w3.org/2000/svg",
|
2702
2818
|
viewBox: "0 0 32 32",
|
2703
|
-
fill: "currentColor"
|
2704
|
-
|
2819
|
+
fill: "currentColor",
|
2820
|
+
...rest
|
2821
|
+
}, _path195 || (_path195 = /*#__PURE__*/React__default.createElement("path", {
|
2705
2822
|
d: "M16,2a14,14,0,0,0-5.1,27,13.24,13.24,0,0,1,0-4l1.65-7A5.05,5.05,0,0,1,12.17,16c0-1.94,1.13-3.4,2.53-3.4a1.76,1.76,0,0,1,1.77,2c0,1.2-.76,3-1.16,4.66a2,2,0,0,0,2.08,2.53c2.48,0,4.4-2.63,4.4-6.41a5.53,5.53,0,0,0-5.85-5.7,6.06,6.06,0,0,0-6.32,6.08,5.42,5.42,0,0,0,1,3.19.44.44,0,0,1,.1.4c-.11.44-.35,1.4-.39,1.59s-.21.31-.47.19c-1.75-.82-2.84-3.37-2.84-5.43,0-4.41,3.21-8.47,9.25-8.47,4.85,0,8.63,3.46,8.63,8.09,0,4.82-3,8.7-7.27,8.7a3.76,3.76,0,0,1-3.21-1.6l-.87,3.33a15.55,15.55,0,0,1-1.74,3.67A14.17,14.17,0,0,0,16,30,14,14,0,0,0,16,2"
|
2706
2823
|
})), children);
|
2707
2824
|
});
|
2708
2825
|
if (process.env.NODE_ENV !== "production") {
|
2709
2826
|
LogoPinterest.propTypes = iconPropTypes;
|
2710
2827
|
}
|
2711
|
-
|
2712
|
-
|
2713
|
-
|
2714
|
-
size =
|
2715
|
-
rest
|
2716
|
-
|
2828
|
+
const LogoPython = /*#__PURE__*/React__default.forwardRef(function LogoPython(_ref121, ref) {
|
2829
|
+
let {
|
2830
|
+
children,
|
2831
|
+
size = 16,
|
2832
|
+
...rest
|
2833
|
+
} = _ref121;
|
2834
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2717
2835
|
width: size,
|
2718
2836
|
height: size,
|
2719
2837
|
ref: ref,
|
2720
2838
|
xmlns: "http://www.w3.org/2000/svg",
|
2721
2839
|
viewBox: "0 0 32 32",
|
2722
|
-
fill: "currentColor"
|
2723
|
-
|
2840
|
+
fill: "currentColor",
|
2841
|
+
...rest
|
2842
|
+
}, _path196 || (_path196 = /*#__PURE__*/React__default.createElement("path", {
|
2724
2843
|
d: "M23.4882,9.14v2.9663a4.2843,4.2843,0,0,1-4.173,4.2352H12.6431a3.4077,3.4077,0,0,0-3.34,3.3945v6.3607c0,1.81,1.5742,2.8751,3.34,3.3945a11.1762,11.1762,0,0,0,6.6721,0c1.6817-.4869,3.34-1.4668,3.34-3.3945V23.55H15.983v-.8486H25.9951c1.9414,0,2.6648-1.3542,3.34-3.3867a11.4642,11.4642,0,0,0,0-6.7889c-.48-1.9327-1.3961-3.3867-3.34-3.3867ZM19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"
|
2725
2844
|
})), _path197 || (_path197 = /*#__PURE__*/React__default.createElement("path", {
|
2726
2845
|
fill: "none",
|
@@ -2735,38 +2854,42 @@ var LogoPython = /*#__PURE__*/React__default.forwardRef(function LogoPython(_ref
|
|
2735
2854
|
if (process.env.NODE_ENV !== "production") {
|
2736
2855
|
LogoPython.propTypes = iconPropTypes;
|
2737
2856
|
}
|
2738
|
-
|
2739
|
-
|
2740
|
-
|
2741
|
-
size =
|
2742
|
-
rest
|
2743
|
-
|
2857
|
+
const LogoQuora = /*#__PURE__*/React__default.forwardRef(function LogoQuora(_ref122, ref) {
|
2858
|
+
let {
|
2859
|
+
children,
|
2860
|
+
size = 16,
|
2861
|
+
...rest
|
2862
|
+
} = _ref122;
|
2863
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2744
2864
|
width: size,
|
2745
2865
|
height: size,
|
2746
2866
|
ref: ref,
|
2747
2867
|
xmlns: "http://www.w3.org/2000/svg",
|
2748
2868
|
viewBox: "0 0 32 32",
|
2749
|
-
fill: "currentColor"
|
2750
|
-
|
2869
|
+
fill: "currentColor",
|
2870
|
+
...rest
|
2871
|
+
}, _path200 || (_path200 = /*#__PURE__*/React__default.createElement("path", {
|
2751
2872
|
d: "M29,23.86H27a1.72,1.72,0,0,1-1.73,1.72c-1.15,0-1.82-.86-2.58-2a11,11,0,0,0,4.79-9.1c.09-7.19-5.85-11.89-12.17-11.89S3,7.37,3,14.37,9,26.16,15.17,26.16a10.71,10.71,0,0,0,3.07-.48c1.15,2.11,2.59,3.74,5.46,3.74A5,5,0,0,0,29,23.86Zm-8.14-3.45a6.31,6.31,0,0,0-5.56-3.16,6,6,0,0,0-3.74,1.15L12.2,20a2.56,2.56,0,0,1,.86-.1c1.82,0,3,1.53,4.12,3.64a7.58,7.58,0,0,1-1.91.19C10.86,23.76,9,20.6,9,14.47s1.91-9.3,6.23-9.3,6.32,3.16,6.32,9.3A20.68,20.68,0,0,1,20.83,20.41Z"
|
2752
2873
|
})), children);
|
2753
2874
|
});
|
2754
2875
|
if (process.env.NODE_ENV !== "production") {
|
2755
2876
|
LogoQuora.propTypes = iconPropTypes;
|
2756
2877
|
}
|
2757
|
-
|
2758
|
-
|
2759
|
-
|
2760
|
-
size =
|
2761
|
-
rest
|
2762
|
-
|
2878
|
+
const LogoRScript = /*#__PURE__*/React__default.forwardRef(function LogoRScript(_ref123, ref) {
|
2879
|
+
let {
|
2880
|
+
children,
|
2881
|
+
size = 16,
|
2882
|
+
...rest
|
2883
|
+
} = _ref123;
|
2884
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2763
2885
|
width: size,
|
2764
2886
|
height: size,
|
2765
2887
|
ref: ref,
|
2766
2888
|
xmlns: "http://www.w3.org/2000/svg",
|
2767
2889
|
viewBox: "0 0 32 32",
|
2768
|
-
fill: "currentColor"
|
2769
|
-
|
2890
|
+
fill: "currentColor",
|
2891
|
+
...rest
|
2892
|
+
}, _path201 || (_path201 = /*#__PURE__*/React__default.createElement("path", {
|
2770
2893
|
fillRule: "evenodd",
|
2771
2894
|
d: "M30,14.7842c0-5.1782-6.2681-9.376-14-9.376S2,9.606,2,14.7842c0,4.6147,4.9814,8.4419,11.5361,9.2226v2.9917l4.7762-.0019,0-2.9741a19.3812,19.3812,0,0,0,3.3418-.6646L23.593,27l5.3975-.0024-3.253-5.4849C28.3625,19.8086,30,17.4263,30,14.7842Zm-22.4983.7c0-3.54,4.7644-6.41,10.6414-6.41s10.2138,1.9629,10.2138,6.41A5.4694,5.4694,0,0,1,24.9587,20.61a3.2252,3.2252,0,0,0-.2978-.1749,10.4735,10.4735,0,0,0-1.34-.5048s4.1743-.31,4.1743-4.4659-4.3684-4.2343-4.3684-4.2343H13.5361V21.2554C9.97,20.22,7.5017,18.0283,7.5017,15.4839Zm13.7422,1.8452-2.8928.001.0014-2.6812,2.8914.0015a1.2476,1.2476,0,0,1,1.34,1.3149A1.3232,1.3232,0,0,1,21.2439,17.3291Zm-2.9326,3.4946h1.2825a.8785.8785,0,0,1,.6406.291,3.2917,3.2917,0,0,1,.51.63,22.4033,22.4033,0,0,1-2.4326.1455Z"
|
2772
2895
|
})), children);
|
@@ -2774,19 +2897,21 @@ var LogoRScript = /*#__PURE__*/React__default.forwardRef(function LogoRScript(_r
|
|
2774
2897
|
if (process.env.NODE_ENV !== "production") {
|
2775
2898
|
LogoRScript.propTypes = iconPropTypes;
|
2776
2899
|
}
|
2777
|
-
|
2778
|
-
|
2779
|
-
|
2780
|
-
size =
|
2781
|
-
rest
|
2782
|
-
|
2900
|
+
const LogoReact = /*#__PURE__*/React__default.forwardRef(function LogoReact(_ref124, ref) {
|
2901
|
+
let {
|
2902
|
+
children,
|
2903
|
+
size = 16,
|
2904
|
+
...rest
|
2905
|
+
} = _ref124;
|
2906
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2783
2907
|
width: size,
|
2784
2908
|
height: size,
|
2785
2909
|
ref: ref,
|
2786
2910
|
xmlns: "http://www.w3.org/2000/svg",
|
2787
2911
|
viewBox: "0 0 32 32",
|
2788
|
-
fill: "currentColor"
|
2789
|
-
|
2912
|
+
fill: "currentColor",
|
2913
|
+
...rest
|
2914
|
+
}, _path202 || (_path202 = /*#__PURE__*/React__default.createElement("path", {
|
2790
2915
|
d: "M25,11.6c-0.3-0.1-0.6-0.2-0.9-0.3c0-0.2,0.1-0.4,0.1-0.6c0.7-3.3,0.2-6-1.3-6.9c-1.5-0.8-3.9,0-6.3,2.1 c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2-0.1-0.3-0.3-0.5-0.4C13,3.9,10.5,3,9,3.9c-1.5,0.8-1.9,3.4-1.3,6.5c0.1,0.3,0.1,0.6,0.2,0.9 c-0.4,0.1-0.7,0.2-1,0.3c-3,1-4.9,2.7-4.9,4.3c0,1.7,2,3.5,5.1,4.5c0.2,0.1,0.5,0.2,0.8,0.2c-0.1,0.3-0.2,0.7-0.2,1 c-0.6,3.1-0.1,5.5,1.3,6.4c1.5,0.9,4,0,6.5-2.2c0.2-0.2,0.4-0.4,0.6-0.5c0.2,0.2,0.5,0.5,0.8,0.7c2.4,2.1,4.7,2.9,6.2,2 c1.5-0.9,2-3.5,1.4-6.7c0-0.2-0.1-0.5-0.2-0.8c0.2-0.1,0.4-0.1,0.5-0.2c3.2-1.1,5.3-2.8,5.3-4.5C30,14.3,28,12.7,25,11.6z M17.5,6.9 c2.1-1.8,4-2.5,4.9-2c0.9,0.5,1.3,2.7,0.7,5.6c0,0.2-0.1,0.4-0.1,0.6c-1.2-0.3-2.5-0.5-3.7-0.6c-0.7-1-1.5-2-2.4-3 C17.1,7.3,17.3,7.1,17.5,6.9L17.5,6.9z M10.3,17.4c0.3,0.5,0.5,1,0.8,1.5c0.3,0.5,0.6,1,0.9,1.4c-0.9-0.1-1.7-0.2-2.6-0.4 C9.6,19.1,9.9,18.3,10.3,17.4z M10.3,14.6c-0.4-0.8-0.6-1.6-0.9-2.4c0.8-0.2,1.7-0.3,2.5-0.4c-0.3,0.5-0.6,0.9-0.9,1.4 C10.8,13.6,10.5,14.1,10.3,14.6L10.3,14.6z M10.9,16c0.4-0.8,0.8-1.5,1.2-2.3c0.4-0.7,0.9-1.5,1.4-2.2c0.8-0.1,1.7-0.1,2.6-0.1 c0.9,0,1.7,0,2.6,0.1c0.5,0.7,0.9,1.4,1.3,2.2c0.4,0.7,0.8,1.5,1.2,2.3c-0.4,0.8-0.8,1.5-1.2,2.3c-0.4,0.7-0.9,1.5-1.3,2.2 c-0.8,0.1-1.7,0.1-2.6,0.1c-0.9,0-1.7,0-2.5-0.1c-0.5-0.7-0.9-1.4-1.4-2.2C11.7,17.5,11.3,16.8,10.9,16L10.9,16z M20.9,18.9 c0.3-0.5,0.6-1,0.8-1.5c0.4,0.8,0.7,1.6,0.9,2.5c-0.9,0.2-1.7,0.3-2.6,0.4C20.4,19.8,20.7,19.3,20.9,18.9z M21.7,14.6 c-0.3-0.5-0.5-1-0.8-1.5c-0.3-0.5-0.6-0.9-0.8-1.4c0.9,0.1,1.7,0.3,2.6,0.4C22.4,13,22.1,13.8,21.7,14.6z M16,8.3 c0.6,0.6,1.1,1.3,1.6,2c-1.1-0.1-2.2-0.1-3.3,0C14.9,9.6,15.5,8.9,16,8.3z M9.6,4.9c0.9-0.5,3,0.2,5.2,2.2c0.1,0.1,0.3,0.3,0.4,0.4 c-0.9,0.9-1.7,1.9-2.4,3c-1.3,0.1-2.5,0.3-3.7,0.6c-0.1-0.3-0.1-0.6-0.2-0.9C8.3,7.5,8.7,5.4,9.6,4.9z M8.2,19.6 c-0.2-0.1-0.5-0.1-0.7-0.2c-1.4-0.5-2.5-1.1-3.3-1.7c-0.7-0.6-1-1.2-1-1.7c0-1,1.5-2.3,4.1-3.2c0.3-0.1,0.6-0.2,1-0.3 C8.6,13.7,9,14.9,9.6,16C9,17.2,8.6,18.4,8.2,19.6z M14.7,25.1c-1.1,1-2.2,1.6-3.1,2c-0.9,0.3-1.5,0.3-2,0.1 c-0.9-0.5-1.3-2.5-0.8-5.1C8.9,21.7,9,21.4,9,21c1.2,0.3,2.5,0.5,3.8,0.5c0.7,1,1.5,2,2.4,3C15,24.7,14.9,24.9,14.7,25.1z M16,23.7 c-0.6-0.6-1.1-1.3-1.7-2c0.5,0,1.1,0,1.6,0c0.6,0,1.1,0,1.7,0C17.2,22.4,16.6,23.1,16,23.7z M23.3,25.4c-0.2,0.9-0.5,1.5-0.9,1.7 c-0.9,0.5-2.8-0.2-4.8-1.9c-0.2-0.2-0.5-0.4-0.7-0.6c0.8-0.9,1.6-1.9,2.3-3c1.3-0.1,2.5-0.3,3.8-0.6c0.1,0.2,0.1,0.5,0.2,0.7 C23.5,23.1,23.5,24.4,23.3,25.4z M24.3,19.4c-0.2,0-0.3,0.1-0.5,0.1c-0.4-1.2-0.9-2.4-1.4-3.6c0.5-1.1,1-2.3,1.4-3.5 c0.3,0.1,0.6,0.2,0.8,0.3c2.6,0.9,4.2,2.2,4.2,3.2C28.8,17.1,27.1,18.5,24.3,19.4z"
|
2791
2916
|
})), _path203 || (_path203 = /*#__PURE__*/React__default.createElement("path", {
|
2792
2917
|
d: "M16,18.5c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.7,0.9-1.1c0.2-0.5,0.2-1,0.1-1.5c-0.1-0.5-0.3-0.9-0.7-1.3 c-0.3-0.4-0.8-0.6-1.3-0.7c-0.5-0.1-1,0-1.5,0.1c-0.5,0.2-0.9,0.5-1.1,0.9c-0.3,0.4-0.4,0.9-0.4,1.4c0,0.3,0.1,0.7,0.2,1 c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.5,0.4,0.8,0.5C15.3,18.4,15.7,18.5,16,18.5z"
|
@@ -2795,19 +2920,21 @@ var LogoReact = /*#__PURE__*/React__default.forwardRef(function LogoReact(_ref12
|
|
2795
2920
|
if (process.env.NODE_ENV !== "production") {
|
2796
2921
|
LogoReact.propTypes = iconPropTypes;
|
2797
2922
|
}
|
2798
|
-
|
2799
|
-
|
2800
|
-
|
2801
|
-
size =
|
2802
|
-
rest
|
2803
|
-
|
2923
|
+
const LogoRedHatAiInstructlabOnIbmCloud = /*#__PURE__*/React__default.forwardRef(function LogoRedHatAiInstructlabOnIbmCloud(_ref125, ref) {
|
2924
|
+
let {
|
2925
|
+
children,
|
2926
|
+
size = 16,
|
2927
|
+
...rest
|
2928
|
+
} = _ref125;
|
2929
|
+
return /*#__PURE__*/React__default.createElement(Icon, {
|
2804
2930
|
width: size,
|
2805
2931
|
height: size,
|
2806
2932
|
ref: ref,
|
2807
2933
|
xmlns: "http://www.w3.org/2000/svg",
|
2808
2934
|
viewBox: "0 0 32 32",
|
2809
|
-
fill: "currentColor"
|
2810
|
-
|
2935
|
+
fill: "currentColor",
|
2936
|
+
...rest
|
2937
|
+
}, _path204 || (_path204 = /*#__PURE__*/React__default.createElement("path", {
|
2811
2938
|
d: "M13.2148,13.1793c.2327-.501-.4158-.9337-.9252-.8189-.3831.0863-.8737.7158-1.0126,1.0705.0842.5294,1.6957.2715,1.9378-.2516ZM12.8453,12.7614c.06.5895-.6263.5432-1.0515.5242.2484-.3642.5768-.7484,1.0515-.5242ZM16,21.8211c.9062-.0084,1.2-1.8673.4673-2.0052-.0768-.0137-.2548-.0231-.4673-.0253-.2126.0021-.3906.0116-.4674.0253-.7326.1379-.4389,1.9968.4674,2.0052ZM12.154,19.6017c1.2337-.0746,1.1996-2.8773-.0815-2.8101-1.4228.0746-1.2452,2.8903.0815,2.8101ZM26.8406,9.7584c-.52-.6715-1.2484-2.2767-2.0789-2.4473-1.2431-.2547-2.1147.3842-2.923,1.221-1.6652-1.2252-3.7147-2.3188-5.8387-2.3052-2.1241-.0137-4.1736,1.08-5.8387,2.3052-.8084-.8368-1.68-1.4757-2.9231-1.221-.8305.1705-1.5589,1.7758-2.0789,2.4473-.9073,1.1747-3.1978,3.1746-3.1588,4.7346.0484,1.9073,4.4714,7.2376,6.3776,7.5229.4211.0631.7842-.0421,1.1874-.0842.7214,1.4147,1.8981,2.4644,3.2742,3.1268,1.9797.953,4.3409.953,6.3207,0,1.376-.6624,2.5527-1.7121,3.2742-3.1268.4031.0421.7662.1473,1.1873.0842,1.9062-.2853,6.3292-5.6156,6.3777-7.5229.0389-1.56-2.2515-3.5599-3.1589-4.7346h-.0001ZM11.1285,9.2016c1.6884-1.1799,3.2167-1.8304,4.8715-1.7957,1.6547-.0347,3.183.6158,4.8714,1.7957.3747.261,1.4536,1.0516,1.6978,1.3547.5905.7305.5526,3.2515.5853,4.204h-2.1263c-.9337,0-1.8673.001-2.801,0-.3168,0-.6905.201-.9157.421-.6642.6505-.2316,1.52-.2632,2.3157-.3494-.1453-.6979-.2-1.0483-.2084-.3505.0084-.699.0632-1.0484.2084-.0316-.7958.401-1.6652-.2632-2.3157-.2252-.22-.5989-.421-.9157-.421-.9337.001-1.8673,0-2.801,0h-2.1263c.0327-.9526-.0052-3.4736.5853-4.204.2442-.3032,1.3231-1.0937,1.6978-1.3547ZM8.6855,20.9191c-1.3947-.0516-5.3871-4.9725-5.5187-6.3293-.1126-1.1673,2.2062-3.2589,2.9399-4.1998.3547-.4537,1.14-2.0147,1.641-2.0473.4168-.0263,1.3157.5378,1.5052.9052.3968.7684-.179.8516-.4274,1.4389-.5137,1.2126-.3632,2.7736-.4127,4.062-.782.1769-1.4136.5273-1.361,1.4294.0253.4453.9062,3.3241,1.141,3.7094.3074.5042.8189.7263,1.3894.7684l-.8968.2632h0ZM9.3718,20.2338c-.4716.0221-.7389-.319-.9337-.6968-.2158-.4189-1.0146-3.0568-1.0431-3.4894-.0347-.52.5684-.8505,1.0294-.8652,0,1.7273.481,3.4041.9473,5.0514h0ZM8.8455,15.1814h5.1051c.3379.0674.7642.5432.7852.9.0264.4274-.3221,2.5242-.4452,3.0189-.0569.2274-.1937.6463-.3453.8126-.5737.6305-3.1567.1979-4.0346.3084-.5968-1.6241-.8789-3.3209-1.0652-5.0399ZM16,24.7495c-2.481-.18-4.9062-1.5852-5.7861-4.0946.9337-.0937,2.0989.1274,2.9999,0,1.6063-.2263,1.34-1.7242,1.7368-2.8957.3389-.1053.6926-.1579,1.0494-.1705.3568.0126.7104.0652,1.0494.1705.3968,1.1715.1305,2.6694,1.7368,2.8957.901.1274,2.0662-.0937,2.9999,0-.8799,2.5094-3.3051,3.9146-5.7861,4.0946ZM18.0546,19.9128c-.1516-.1663-.2884-.5853-.3452-.8126-.1232-.4947-.4716-2.5915-.4453-3.0189.0211-.3568.4473-.8326.7852-.9h5.1051c-.1863,1.7189-.4684,3.4157-1.0652,5.0399-.8779-.1105-3.4609.3221-4.0346-.3084ZM23.5755,15.1825c.4611.0147,1.0641.3452,1.0294.8652-.0284.4326-.8273,3.0704-1.0431,3.4894-.1948.3779-.4621.7189-.9337.6968.4663-1.6473.9473-3.3241.9473-5.0514h.0001ZM23.3144,20.9191l-.8968-.2632c.5705-.0421,1.082-.2642,1.3894-.7684.2347-.3853,1.1157-3.2641,1.141-3.7094.0527-.9021-.5789-1.2526-1.361-1.4294-.0495-1.2883.101-2.8494-.4127-4.062-.2484-.5873-.8242-.6705-.4273-1.4389.1895-.3674,1.0884-.9315,1.5052-.9052.501.0326,1.2863,1.5936,1.641,2.0473.7336.941,3.0526,3.0325,2.9399,4.1998-.1315,1.3568-4.124,6.2777-5.5187,6.3293h0ZM20.723,13.4309c-.1389-.3547-.6295-.9842-1.0126-1.0705-.5095-.1147-1.1579.3179-.9252.8189.2421.5231,1.8536.781,1.9378.2516ZM20.2061,13.2857c-.4252.0189-1.1115.0652-1.0515-.5242.4747-.2242.8031.16,1.0515.5242ZM16,22.0274c-.6074,1.041-1.6042.2295-2.3115-.4252.3514,1.0421,1.1141,1.8438,1.985,2.1157.2104.0657.4424.0657.6529,0,.871-.2719,1.6337-1.0736,1.985-2.1157-.7073.6547-1.7042,1.4662-2.3115.4252h.0001ZM16.4631,23.3104c-.2929.1281-.6333.1281-.9262,0-.213-.0932-.4126-.2253-.5853-.3925.3663-.0379.7895-.0547,1.0484-.2895.2589.2347.682.2516,1.0483.2895-.1727.1671-.3723.2993-.5853.3925h.0001ZM19.9274,16.7916c-1.2811-.0672-1.3152,2.7355-.0814,2.8101,1.3266.0803,1.5042-2.7354.0814-2.8101Z"
|
2812
2939
|
})), children);
|
2813
2940
|
});
|