@carbon/ibm-products 2.50.0 → 2.51.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/README.md +1 -1
- package/css/index-full-carbon.css +56 -29
- 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 +3 -10
- 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 +3 -10
- 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 +34 -28
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/ActionBar/ActionBarOverflowItems.js +5 -0
- package/es/components/AddSelect/AddSelectBody.js +1 -1
- package/es/components/BigNumbers/BigNumbers.js +1 -1
- package/es/components/Coachmark/utils/enums.js +1 -0
- package/es/components/ConditionBuilder/ConditionBuilder.js +26 -20
- package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +44 -24
- package/es/components/CreateFullPage/CreateFullPage.d.ts +4 -2
- package/es/components/CreateFullPage/CreateFullPage.js +10 -3
- package/es/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
- package/es/components/CreateFullPage/CreateFullPageStep.js +5 -2
- package/es/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
- package/es/components/Datagrid/Datagrid/Datagrid.js +1 -1
- package/es/components/Datagrid/Datagrid/DatagridToolbar.js +12 -1
- package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -0
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +3 -8
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +15 -13
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +17 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +13 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +1 -12
- package/es/components/Datagrid/types/index.d.ts +4 -0
- package/es/components/Datagrid/useSelectRows.js +40 -19
- package/es/components/EditInPlace/EditInPlace.js +0 -3
- package/es/components/ExportModal/ExportModal.js +18 -5
- package/es/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
- package/es/components/NotificationsPanel/NotificationsPanel.js +14 -1
- package/es/components/OptionsTile/OptionsTile.d.ts +1 -1
- package/es/components/OptionsTile/OptionsTile.js +0 -1
- package/es/components/ProductiveCard/ProductiveCard.d.ts +4 -0
- package/es/components/ProductiveCard/ProductiveCard.js +4 -0
- package/es/components/ScrollGradient/ScrollGradient.js +1 -1
- package/es/components/SimpleHeader/SimpleHeader.d.ts +3 -1
- package/es/components/SimpleHeader/SimpleHeader.js +9 -2
- package/es/components/StringFormatter/StringFormatter.js +1 -1
- package/es/components/TagSet/TagSet.js +5 -0
- package/es/components/TagSet/TagSetOverflow.d.ts +4 -0
- package/es/components/TagSet/TagSetOverflow.js +13 -6
- package/es/components/Tearsheet/TearsheetShell.js +9 -2
- package/es/components/UserProfileImage/UserProfileImage.d.ts +1 -1
- package/es/components/UserProfileImage/UserProfileImage.js +1 -1
- package/es/global/js/utils/Wrap.d.ts +4 -0
- package/es/global/js/utils/Wrap.js +9 -3
- package/es/global/js/utils/devtools.js +1 -2
- package/es/node_modules/@carbon/icon-helpers/es/index.js +3 -3
- package/lib/_virtual/_commonjsHelpers.js +0 -2
- package/lib/_virtual/_rollupPluginBabelHelpers.js +2 -4
- package/lib/_virtual/index.js +0 -2
- package/lib/components/APIKeyModal/APIKeyDownloader.js +8 -14
- package/lib/components/APIKeyModal/APIKeyModal.js +70 -77
- package/lib/components/AboutModal/AboutModal.js +29 -36
- package/lib/components/ActionBar/ActionBar.js +26 -33
- package/lib/components/ActionBar/ActionBarItem.js +9 -16
- package/lib/components/ActionBar/ActionBarOverflowItems.js +23 -25
- package/lib/components/ActionSet/ActionSet.js +17 -24
- package/lib/components/AddSelect/AddSelect.js +62 -68
- package/lib/components/AddSelect/AddSelectBody.js +82 -89
- package/lib/components/AddSelect/AddSelectBreadcrumbs.js +6 -13
- package/lib/components/AddSelect/AddSelectColumn.js +29 -35
- package/lib/components/AddSelect/AddSelectFilter.js +30 -37
- package/lib/components/AddSelect/AddSelectFormControl.js +15 -21
- package/lib/components/AddSelect/AddSelectList.js +9 -16
- package/lib/components/AddSelect/AddSelectMetaPanel.js +16 -22
- package/lib/components/AddSelect/AddSelectRow.js +32 -39
- package/lib/components/AddSelect/AddSelectSidebar.js +29 -35
- package/lib/components/AddSelect/AddSelectSort.js +10 -16
- package/lib/components/AddSelect/add-select-utils.js +0 -2
- package/lib/components/AddSelect/hooks/useFocus.js +1 -1
- package/lib/components/AddSelect/hooks/useItemSort.js +0 -2
- package/lib/components/AddSelect/hooks/useParentSelect.js +1 -1
- package/lib/components/AddSelect/hooks/usePath.js +1 -1
- package/lib/components/BigNumbers/BigNumbers.js +39 -46
- package/lib/components/BigNumbers/constants.js +0 -2
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +35 -42
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +22 -29
- package/lib/components/Card/Card.js +73 -80
- package/lib/components/Card/CardFooter.js +28 -35
- package/lib/components/Card/CardHeader.js +37 -44
- package/lib/components/Carousel/Carousel.js +21 -28
- package/lib/components/Carousel/CarouselItem.js +5 -12
- package/lib/components/Cascade/Cascade.js +15 -22
- package/lib/components/Checklist/Checklist.js +50 -57
- package/lib/components/Checklist/Checklist.types.js +0 -2
- package/lib/components/Checklist/ChecklistChart.js +7 -15
- package/lib/components/Checklist/ChecklistIcon.js +7 -14
- package/lib/components/Coachmark/Coachmark.js +24 -31
- package/lib/components/Coachmark/CoachmarkDragbar.js +12 -19
- package/lib/components/Coachmark/CoachmarkHeader.js +9 -16
- package/lib/components/Coachmark/CoachmarkOverlay.js +14 -21
- package/lib/components/Coachmark/CoachmarkTagline.js +12 -19
- package/lib/components/Coachmark/utils/constants.js +0 -2
- package/lib/components/Coachmark/utils/context.js +0 -2
- package/lib/components/Coachmark/utils/enums.js +1 -2
- package/lib/components/Coachmark/utils/hooks.js +0 -2
- package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +10 -17
- package/lib/components/CoachmarkButton/CoachmarkButton.js +6 -13
- package/lib/components/CoachmarkFixed/CoachmarkFixed.js +13 -20
- package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +11 -18
- package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +25 -32
- package/lib/components/CoachmarkStack/CoachmarkStack.js +23 -30
- package/lib/components/CoachmarkStack/CoachmarkStackHome.js +29 -36
- package/lib/components/ComboButton/ComboButton.js +11 -18
- package/lib/components/ComboButton/ComboButtonItem/index.js +2 -8
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +34 -39
- package/lib/components/ConditionBuilder/ConditionBuilder.js +58 -59
- package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
- package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +18 -23
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +15 -20
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +20 -27
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +8 -12
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +4 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +63 -47
- package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +25 -31
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +0 -2
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +17 -23
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +9 -15
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +5 -11
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +13 -19
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +17 -23
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +6 -12
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +9 -15
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +27 -32
- package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +25 -30
- package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +0 -2
- package/lib/components/ConditionBuilder/utils/useDataConfigs.js +0 -2
- package/lib/components/ConditionBuilder/utils/useTranslations.js +0 -2
- package/lib/components/ConditionBuilder/utils/util.js +0 -2
- package/lib/components/CreateFullPage/CreateFullPage.d.ts +4 -2
- package/lib/components/CreateFullPage/CreateFullPage.js +53 -53
- package/lib/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
- package/lib/components/CreateFullPage/CreateFullPageStep.js +27 -31
- package/lib/components/CreateInfluencer/CreateInfluencer.js +15 -22
- package/lib/components/CreateModal/CreateModal.js +22 -29
- package/lib/components/CreateSidePanel/CreateSidePanel.js +24 -31
- package/lib/components/CreateTearsheet/CreateTearsheet.js +26 -33
- package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +3 -10
- package/lib/components/CreateTearsheet/CreateTearsheetStep.js +31 -38
- package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +24 -31
- package/lib/components/DataSpreadsheet/DataSpreadsheet.js +37 -44
- package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +54 -61
- package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +37 -44
- package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +0 -2
- package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
- package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +0 -2
- package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getCellSize.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
- package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
- package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +2 -4
- package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +0 -2
- package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +0 -2
- package/lib/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
- package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
- package/lib/components/Datagrid/Datagrid/Datagrid.js +10 -17
- package/lib/components/Datagrid/Datagrid/DatagridBody.js +5 -9
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +43 -50
- package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +4 -8
- package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +6 -11
- package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -6
- package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +12 -17
- package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +3 -8
- package/lib/components/Datagrid/Datagrid/DatagridRow.js +12 -17
- package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +4 -11
- package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +18 -23
- package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +3 -8
- package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +26 -20
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +5 -9
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +18 -22
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +11 -12
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +10 -11
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +25 -31
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +21 -30
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -13
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +18 -20
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -7
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +49 -39
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +54 -48
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +5 -11
- package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +11 -15
- package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -31
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +2 -6
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +18 -25
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +32 -39
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +2 -8
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +12 -17
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +11 -16
- package/lib/components/Datagrid/Datagrid/addons/Slug/DatagridSlug.js +2 -8
- package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +0 -2
- package/lib/components/Datagrid/common-column-ids.js +0 -2
- package/lib/components/Datagrid/types/index.d.ts +4 -0
- package/lib/components/Datagrid/useActionsColumn.js +12 -17
- package/lib/components/Datagrid/useColumnCenterAlign.js +4 -9
- package/lib/components/Datagrid/useColumnRightAlign.js +4 -9
- package/lib/components/Datagrid/useCustomizeColumns.js +6 -7
- package/lib/components/Datagrid/useDatagrid.js +4 -8
- package/lib/components/Datagrid/useDefaultStringRenderer.js +5 -10
- package/lib/components/Datagrid/useDisableSelectRows.js +1 -1
- package/lib/components/Datagrid/useEditableCell.js +2 -2
- package/lib/components/Datagrid/useExpandedRow.js +3 -3
- package/lib/components/Datagrid/useFiltering.js +5 -5
- package/lib/components/Datagrid/useFlexResize.js +1 -1
- package/lib/components/Datagrid/useFloatingScroll.js +2 -6
- package/lib/components/Datagrid/useFocusRowExpander.js +0 -2
- package/lib/components/Datagrid/useInfiniteScroll.js +4 -8
- package/lib/components/Datagrid/useInitialColumnSort.js +0 -2
- package/lib/components/Datagrid/useInlineEdit.js +7 -12
- package/lib/components/Datagrid/useNestedRowExpander.js +5 -10
- package/lib/components/Datagrid/useNestedRows.js +3 -7
- package/lib/components/Datagrid/useOnRowClick.js +1 -1
- package/lib/components/Datagrid/useParentDimensions.js +1 -1
- package/lib/components/Datagrid/useResizeTable.js +1 -1
- package/lib/components/Datagrid/useRowExpander.js +5 -10
- package/lib/components/Datagrid/useRowIsMouseOver.js +2 -6
- package/lib/components/Datagrid/useRowRenderer.js +2 -2
- package/lib/components/Datagrid/useRowSize.js +2 -2
- package/lib/components/Datagrid/useSelectAllToggle.js +3 -8
- package/lib/components/Datagrid/useSelectRows.js +45 -29
- package/lib/components/Datagrid/useSkeletonRows.js +1 -1
- package/lib/components/Datagrid/useSortableColumns.js +8 -13
- package/lib/components/Datagrid/useStickyColumn.js +4 -9
- package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +0 -2
- package/lib/components/Decorator/Decorator.js +16 -22
- package/lib/components/DecoratorBase/DecoratorBase.js +41 -48
- package/lib/components/DecoratorBase/DecoratorIcon.js +6 -13
- package/lib/components/DecoratorBase/utils.js +0 -2
- package/lib/components/DecoratorDualButton/DecoratorDualButton.js +21 -27
- package/lib/components/DecoratorLink/DecoratorLink.js +19 -25
- package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +19 -25
- package/lib/components/DelimitedList/DelimitedList.js +7 -14
- package/lib/components/DescriptionList/DescriptionList.js +8 -15
- package/lib/components/DescriptionList/DescriptionListBody.js +5 -12
- package/lib/components/DescriptionList/DescriptionListCell.js +5 -12
- package/lib/components/DescriptionList/DescriptionListRow.js +5 -12
- package/lib/components/DescriptionList/constants.js +0 -2
- package/lib/components/EditFullPage/EditFullPage.js +5 -12
- package/lib/components/EditInPlace/EditInPlace.js +35 -45
- package/lib/components/EditSidePanel/EditSidePanel.js +26 -33
- package/lib/components/EditTearsheet/EditTearsheet.js +24 -31
- package/lib/components/EditTearsheet/EditTearsheetForm.js +16 -23
- package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +5 -12
- package/lib/components/EditUpdateCards/EditUpdateCards.js +32 -39
- package/lib/components/EmptyStates/EmptyState.js +22 -29
- package/lib/components/EmptyStates/EmptyStateContent.js +18 -25
- package/lib/components/EmptyStates/EmptyStateIllustration.js +3 -7
- package/lib/components/EmptyStates/EmptyStateV2.js +25 -32
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +19 -26
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +19 -26
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +19 -26
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +19 -26
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +19 -26
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +19 -26
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +53 -58
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +43 -48
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +114 -119
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +84 -89
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +81 -86
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +74 -79
- package/lib/components/ExportModal/ExportModal.js +59 -53
- package/lib/components/ExpressiveCard/ExpressiveCard.js +28 -34
- package/lib/components/FeatureFlags/index.js +3 -9
- package/lib/components/FilterPanel/FilterPanel.js +7 -14
- package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +10 -17
- package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +13 -20
- package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +9 -16
- package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +17 -24
- package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +11 -18
- package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +9 -16
- package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +9 -16
- package/lib/components/FilterSummary/FilterSummary.js +22 -28
- package/lib/components/FullPageError/FullPageError.js +21 -28
- package/lib/components/FullPageError/assets/Error403SVG.js +129 -135
- package/lib/components/FullPageError/assets/Error404SVG.js +114 -120
- package/lib/components/FullPageError/assets/ErrorGenericSVG.js +128 -134
- package/lib/components/GetStartedCard/GetStartedCard.js +16 -22
- package/lib/components/Guidebanner/Guidebanner.js +32 -39
- package/lib/components/Guidebanner/GuidebannerElement.js +10 -17
- package/lib/components/Guidebanner/GuidebannerElementButton.js +9 -16
- package/lib/components/Guidebanner/GuidebannerElementLink.js +5 -12
- package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +5 -12
- package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +5 -12
- package/lib/components/HTTPErrors/HTTPErrorContent.js +5 -11
- package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +5 -12
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +358 -364
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +309 -315
- package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +321 -327
- package/lib/components/ImportModal/ImportModal.js +48 -55
- package/lib/components/InlineTip/InlineTip.js +38 -45
- package/lib/components/InlineTip/InlineTipButton.js +5 -12
- package/lib/components/InlineTip/InlineTipLink.js +6 -13
- package/lib/components/InlineTip/utils.js +2 -4
- package/lib/components/InterstitialScreen/InterstitialScreen.js +73 -80
- package/lib/components/InterstitialScreenView/InterstitialScreenView.js +6 -13
- package/lib/components/InterstitialScreenViewModule/InterstitialScreenViewModule.js +8 -15
- package/lib/components/MultiAddSelect/MultiAddSelect.js +45 -51
- package/lib/components/Nav/Nav.js +14 -21
- package/lib/components/Nav/NavItem.js +19 -24
- package/lib/components/Nav/NavItemLink.js +4 -8
- package/lib/components/Nav/NavList.js +12 -17
- package/lib/components/NonLinearReading/NonLinearReading.js +12 -19
- package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
- package/lib/components/NotificationsPanel/NotificationsPanel.js +104 -98
- package/lib/components/NotificationsPanel/utils.js +0 -2
- package/lib/components/OptionsTile/OptionsTile.d.ts +1 -1
- package/lib/components/OptionsTile/OptionsTile.js +40 -48
- package/lib/components/PageHeader/PageHeader.js +105 -112
- package/lib/components/PageHeader/PageHeaderTitle.js +23 -30
- package/lib/components/PageHeader/PageHeaderUtils.js +2 -9
- package/lib/components/ProductiveCard/ProductiveCard.d.ts +4 -0
- package/lib/components/ProductiveCard/ProductiveCard.js +39 -41
- package/lib/components/RemoveModal/RemoveModal.js +27 -34
- package/lib/components/Saving/Saving.js +27 -34
- package/lib/components/ScrollGradient/ScrollGradient.js +17 -24
- package/lib/components/ScrollGradient/constants.js +0 -2
- package/lib/components/SearchBar/SearchBar.js +22 -29
- package/lib/components/SidePanel/SidePanel.js +66 -73
- package/lib/components/SidePanel/constants.js +0 -2
- package/lib/components/SidePanel/motion/variants.js +0 -2
- package/lib/components/SimpleHeader/SimpleHeader.d.ts +3 -1
- package/lib/components/SimpleHeader/SimpleHeader.js +27 -27
- package/lib/components/SingleAddSelect/SingleAddSelect.js +21 -27
- package/lib/components/StatusIcon/StatusIcon.js +52 -59
- package/lib/components/StatusIndicator/StatusIndicator.js +13 -20
- package/lib/components/StatusIndicator/StatusIndicatorStep.js +14 -21
- package/lib/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +8 -17
- package/lib/components/StringFormatter/StringFormatter.js +12 -19
- package/lib/components/StringFormatter/utils/enums.js +0 -2
- package/lib/components/TagOverflow/TagOverflow.js +26 -33
- package/lib/components/TagOverflow/TagOverflowModal.js +17 -24
- package/lib/components/TagOverflow/TagOverflowPopover.js +22 -29
- package/lib/components/TagOverflow/constants.js +0 -2
- package/lib/components/TagSet/TagSet.js +39 -41
- package/lib/components/TagSet/TagSetModal.js +16 -23
- package/lib/components/TagSet/TagSetOverflow.d.ts +4 -0
- package/lib/components/TagSet/TagSetOverflow.js +32 -32
- package/lib/components/Tearsheet/Tearsheet.js +23 -29
- package/lib/components/Tearsheet/TearsheetNarrow.js +18 -24
- package/lib/components/Tearsheet/TearsheetShell.js +63 -63
- package/lib/components/Toolbar/Toolbar.js +3 -10
- package/lib/components/Toolbar/ToolbarButton.js +3 -10
- package/lib/components/Toolbar/ToolbarGroup.js +2 -9
- package/lib/components/TooltipTrigger/TooltipTrigger.js +4 -11
- package/lib/components/TruncatedList/TruncatedList.js +15 -22
- package/lib/components/UserAvatar/UserAvatar.js +18 -25
- package/lib/components/UserProfileImage/UserProfileImage.d.ts +1 -1
- package/lib/components/UserProfileImage/UserProfileImage.js +25 -32
- package/lib/components/WebTerminal/WebTerminal.js +26 -33
- package/lib/components/WebTerminal/WebTerminalContentWrapper.js +4 -11
- package/lib/components/WebTerminal/hooks/index.js +2 -8
- package/lib/components/_Canary/Canary.js +7 -14
- package/lib/feature-flags.js +3 -4
- package/lib/global/js/hooks/useActiveElement.js +0 -2
- package/lib/global/js/hooks/useClickOutside.js +0 -2
- package/lib/global/js/hooks/useControllableState.js +2 -4
- package/lib/global/js/hooks/useCreateComponentFocus.js +1 -3
- package/lib/global/js/hooks/useCreateComponentStepChange.js +0 -2
- package/lib/global/js/hooks/useFocus.js +1 -3
- package/lib/global/js/hooks/useIsomorphicEffect.js +0 -2
- package/lib/global/js/hooks/usePortalTarget.js +0 -2
- package/lib/global/js/hooks/usePrefersReducedMotion.js +1 -1
- package/lib/global/js/hooks/usePrefix.js +1 -3
- package/lib/global/js/hooks/usePreviousValue.js +0 -2
- package/lib/global/js/hooks/useResetCreateComponent.js +0 -2
- package/lib/global/js/hooks/useResizeObserver.js +0 -2
- package/lib/global/js/hooks/useRetrieveFormTitles.js +0 -2
- package/lib/global/js/hooks/useRetrieveStepData.js +0 -2
- package/lib/global/js/hooks/useValidCreateStepCount.js +0 -2
- package/lib/global/js/hooks/useWindowResize.js +1 -3
- package/lib/global/js/hooks/useWindowScroll.js +1 -3
- package/lib/global/js/package-settings.js +1 -1
- package/lib/global/js/utils/Wrap.d.ts +4 -0
- package/lib/global/js/utils/Wrap.js +16 -16
- package/lib/global/js/utils/deepCloneObject.js +1 -3
- package/lib/global/js/utils/devtools.js +0 -2
- package/lib/global/js/utils/getBezierValues.js +0 -2
- package/lib/global/js/utils/getFocusableElements.js +0 -2
- package/lib/global/js/utils/getNodeTextContent.js +1 -3
- package/lib/global/js/utils/getNumberOfHiddenSteps.js +0 -2
- package/lib/global/js/utils/getScrollbarWidth.js +0 -2
- package/lib/global/js/utils/keyboardNavigation.js +0 -2
- package/lib/global/js/utils/lastIndexInArray.js +0 -2
- package/lib/global/js/utils/motionConstants.js +0 -2
- package/lib/global/js/utils/pconsole.js +1 -1
- package/lib/global/js/utils/props-helper.js +10 -12
- package/lib/global/js/utils/rangeWithCallback.js +0 -2
- package/lib/global/js/utils/scrollableAncestor.js +1 -3
- package/lib/global/js/utils/uuidv4.js +1 -1
- package/lib/global/js/utils/wait.js +1 -1
- package/lib/global/js/utils/wrapFocus.js +1 -1
- package/lib/index.js +19 -21
- package/lib/node_modules/@carbon/colors/es/index.js +0 -2
- package/lib/node_modules/@carbon/icon-helpers/es/index.js +6 -8
- package/lib/node_modules/@carbon/icons-react/es/Icon.js +14 -18
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +525 -531
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +500 -506
- package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -3
- package/lib/node_modules/object-assign/index.js +0 -2
- package/lib/node_modules/prop-types/checkPropTypes.js +2 -4
- package/lib/node_modules/prop-types/factoryWithThrowingShims.js +0 -2
- package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +4 -10
- package/lib/node_modules/prop-types/index.js +2 -6
- package/lib/node_modules/prop-types/lib/ReactPropTypesSecret.js +0 -2
- package/lib/node_modules/prop-types/lib/has.js +0 -2
- package/lib/settings.js +9 -15
- package/package.json +11 -11
- package/scss/components/EditInPlace/_edit-in-place.scss +0 -11
- package/scss/components/SidePanel/_side-panel.scss +1 -0
- package/scss/components/TagSet/_tag-set.scss +2 -0
- package/telemetry.yml +3 -3
@@ -7,17 +7,11 @@
|
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
var _rollupPluginBabelHelpers = require('../../../../../_virtual/_rollupPluginBabelHelpers.js');
|
13
11
|
var React = require('react');
|
14
12
|
var Icon = require('../Icon.js');
|
15
13
|
var iconPropTypes4cbeb95d = require('../iconPropTypes-4cbeb95d.js');
|
16
14
|
|
17
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
18
|
-
|
19
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
20
|
-
|
21
15
|
var _excluded = ["children", "size"],
|
22
16
|
_excluded2 = ["children", "size"],
|
23
17
|
_excluded3 = ["children", "size"],
|
@@ -145,767 +139,767 @@ var _excluded = ["children", "size"],
|
|
145
139
|
_excluded125 = ["children", "size"];
|
146
140
|
var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _circle, _path30, _path31, _circle2, _path32, _circle3, _path33, _path34, _circle4, _path35, _circle5, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _circle6, _circle7, _circle8, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _circle9, _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, _circle10, _circle11, _path111, _path112, _path113, _path114, _path115, _path116, _path117, _path118, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _circle12, _path130, _path131, _circle13, _path132, _path133, _circle14, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _rect, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _path160, _path161, _path162, _path163, _path164, _path165, _path166, _path167, _path168, _path169, _path170, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _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, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _circle15, _circle16, _path219, _circle17, _circle18, _path220, _path221, _path222, _path223, _path224, _path225;
|
147
141
|
var didWarnAboutDeprecation = {};
|
148
|
-
var Incomplete = /*#__PURE__*/
|
142
|
+
var Incomplete = /*#__PURE__*/React.forwardRef(function Incomplete(_ref, ref) {
|
149
143
|
var children = _ref.children,
|
150
144
|
_ref$size = _ref.size,
|
151
145
|
size = _ref$size === void 0 ? 16 : _ref$size,
|
152
146
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
153
147
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
154
|
-
return /*#__PURE__*/
|
148
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
155
149
|
width: size,
|
156
150
|
height: size,
|
157
151
|
ref: ref,
|
158
152
|
xmlns: "http://www.w3.org/2000/svg",
|
159
153
|
viewBox: "0 0 16 16",
|
160
154
|
fill: "currentColor"
|
161
|
-
}, rest), _path || (_path = /*#__PURE__*/
|
155
|
+
}, rest), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
162
156
|
d: "M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2ZM8,4a4.0045,4.0045,0,0,1,4,4H4A4.0045,4.0045,0,0,1,8,4Z"
|
163
157
|
})), children);
|
164
158
|
}
|
165
|
-
return /*#__PURE__*/
|
159
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
166
160
|
width: size,
|
167
161
|
height: size,
|
168
162
|
ref: ref,
|
169
163
|
xmlns: "http://www.w3.org/2000/svg",
|
170
164
|
viewBox: "0 0 32 32",
|
171
165
|
fill: "currentColor"
|
172
|
-
}, rest), _path2 || (_path2 = /*#__PURE__*/
|
166
|
+
}, rest), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
173
167
|
d: "M23.7642 6.8593l1.2851-1.5315A13.976 13.976 0 0020.8672 2.887l-.6836 1.8776A11.9729 11.9729 0 0123.7642 6.8593zM27.81 14l1.9677-.4128A13.8888 13.8888 0 0028.14 9.0457L26.4087 10A12.52 12.52 0 0127.81 14zM20.1836 27.2354l.6836 1.8776a13.976 13.976 0 004.1821-2.4408l-1.2851-1.5315A11.9729 11.9729 0 0120.1836 27.2354zM26.4087 22L28.14 23a14.14 14.14 0 001.6382-4.5872L27.81 18.0659A12.1519 12.1519 0 0126.4087 22zM16 30V2a14 14 0 000 28z"
|
174
168
|
})), children);
|
175
169
|
});
|
176
170
|
if (process.env.NODE_ENV !== "production") {
|
177
171
|
Incomplete.propTypes = iconPropTypes4cbeb95d.i;
|
178
172
|
}
|
179
|
-
var IncompleteCancel = /*#__PURE__*/
|
173
|
+
var IncompleteCancel = /*#__PURE__*/React.forwardRef(function IncompleteCancel(_ref2, ref) {
|
180
174
|
var children = _ref2.children,
|
181
175
|
_ref2$size = _ref2.size,
|
182
176
|
size = _ref2$size === void 0 ? 16 : _ref2$size,
|
183
177
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref2, _excluded2);
|
184
|
-
return /*#__PURE__*/
|
178
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
185
179
|
width: size,
|
186
180
|
height: size,
|
187
181
|
ref: ref,
|
188
182
|
xmlns: "http://www.w3.org/2000/svg",
|
189
183
|
viewBox: "0 0 32 32",
|
190
184
|
fill: "currentColor"
|
191
|
-
}, rest), _path3 || (_path3 = /*#__PURE__*/
|
185
|
+
}, rest), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
192
186
|
d: "M30 21.41L28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25 30 21.41zM14 26A12 12 0 0114 2zM17.8257 4.7642a10.0288 10.0288 0 013.2422 2.1679l1.4133-1.4135a12.0359 12.0359 0 00-3.89-2.6016zM26 14a11.93 11.93 0 00-.9167-4.5908l-1.8472.7651A9.9428 9.9428 0 0124 14z"
|
193
187
|
})), children);
|
194
188
|
});
|
195
189
|
if (process.env.NODE_ENV !== "production") {
|
196
190
|
IncompleteCancel.propTypes = iconPropTypes4cbeb95d.i;
|
197
191
|
}
|
198
|
-
var IncompleteError = /*#__PURE__*/
|
192
|
+
var IncompleteError = /*#__PURE__*/React.forwardRef(function IncompleteError(_ref3, ref) {
|
199
193
|
var children = _ref3.children,
|
200
194
|
_ref3$size = _ref3.size,
|
201
195
|
size = _ref3$size === void 0 ? 16 : _ref3$size,
|
202
196
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref3, _excluded3);
|
203
|
-
return /*#__PURE__*/
|
197
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
204
198
|
width: size,
|
205
199
|
height: size,
|
206
200
|
ref: ref,
|
207
201
|
xmlns: "http://www.w3.org/2000/svg",
|
208
202
|
viewBox: "0 0 32 32",
|
209
203
|
fill: "currentColor"
|
210
|
-
}, rest), _path4 || (_path4 = /*#__PURE__*/
|
204
|
+
}, rest), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
|
211
205
|
d: "M14 26A12 12 0 0114 2zM17.8257 4.7642a10.0288 10.0288 0 013.2422 2.1679l1.4133-1.4135a12.0359 12.0359 0 00-3.89-2.6016zM26 14a11.93 11.93 0 00-.9167-4.5908l-1.8472.7651A9.9428 9.9428 0 0124 14zM30 24a6 6 0 10-6 6A6.0066 6.0066 0 0030 24zm-2 0a3.9521 3.9521 0 01-.5669 2.019L21.981 20.5669A3.9529 3.9529 0 0124 20 4.0045 4.0045 0 0128 24zm-8 0a3.9521 3.9521 0 01.5669-2.019l5.4521 5.4521A3.9529 3.9529 0 0124 28 4.0045 4.0045 0 0120 24z"
|
212
206
|
})), children);
|
213
207
|
});
|
214
208
|
if (process.env.NODE_ENV !== "production") {
|
215
209
|
IncompleteError.propTypes = iconPropTypes4cbeb95d.i;
|
216
210
|
}
|
217
|
-
var IncompleteWarning = /*#__PURE__*/
|
211
|
+
var IncompleteWarning = /*#__PURE__*/React.forwardRef(function IncompleteWarning(_ref4, ref) {
|
218
212
|
var children = _ref4.children,
|
219
213
|
_ref4$size = _ref4.size,
|
220
214
|
size = _ref4$size === void 0 ? 16 : _ref4$size,
|
221
215
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref4, _excluded4);
|
222
|
-
return /*#__PURE__*/
|
216
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
223
217
|
width: size,
|
224
218
|
height: size,
|
225
219
|
ref: ref,
|
226
220
|
xmlns: "http://www.w3.org/2000/svg",
|
227
221
|
viewBox: "0 0 32 32",
|
228
222
|
fill: "currentColor"
|
229
|
-
}, rest), _path5 || (_path5 = /*#__PURE__*/
|
223
|
+
}, rest), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
|
230
224
|
d: "M14 26A12 12 0 0114 2zM17.8257 4.7642a10.0288 10.0288 0 013.2422 2.1679l1.4133-1.4135a12.0359 12.0359 0 00-3.89-2.6016zM26 14a11.93 11.93 0 00-.9167-4.5908l-1.8472.7651A9.9428 9.9428 0 0124 14zM27.38 28H20.6178L24 21.2358zM24 18a1 1 0 00-.8947.5527l-5 10A1.0005 1.0005 0 0019 30H29a1 1 0 00.9214-1.3892L24.8946 18.5527A1 1 0 0024 18z"
|
231
225
|
})), children);
|
232
226
|
});
|
233
227
|
if (process.env.NODE_ENV !== "production") {
|
234
228
|
IncompleteWarning.propTypes = iconPropTypes4cbeb95d.i;
|
235
229
|
}
|
236
|
-
var IncreaseLevel = /*#__PURE__*/
|
230
|
+
var IncreaseLevel = /*#__PURE__*/React.forwardRef(function IncreaseLevel(_ref5, ref) {
|
237
231
|
var children = _ref5.children,
|
238
232
|
_ref5$size = _ref5.size,
|
239
233
|
size = _ref5$size === void 0 ? 16 : _ref5$size,
|
240
234
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref5, _excluded5);
|
241
|
-
return /*#__PURE__*/
|
235
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
242
236
|
width: size,
|
243
237
|
height: size,
|
244
238
|
ref: ref,
|
245
239
|
xmlns: "http://www.w3.org/2000/svg",
|
246
240
|
viewBox: "0 0 32 32",
|
247
241
|
fill: "currentColor"
|
248
|
-
}, rest), _path6 || (_path6 = /*#__PURE__*/
|
242
|
+
}, rest), _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
|
249
243
|
d: "M23 4L18 7.75 18 14.25 15 12 10 15.75 10 22.25 7 20 2 23.75 2 30 4 30 4 24.75 7 22.5 10 24.75 10 30 12 30 12 16.75 15 14.5 18 16.75 18 30 20 30 20 8.75 23 6.5 26 8.75 26 30 28 30 28 7.75 23 4z"
|
250
244
|
})), children);
|
251
245
|
});
|
252
246
|
if (process.env.NODE_ENV !== "production") {
|
253
247
|
IncreaseLevel.propTypes = iconPropTypes4cbeb95d.i;
|
254
248
|
}
|
255
|
-
var Industry = /*#__PURE__*/
|
249
|
+
var Industry = /*#__PURE__*/React.forwardRef(function Industry(_ref6, ref) {
|
256
250
|
var children = _ref6.children,
|
257
251
|
_ref6$size = _ref6.size,
|
258
252
|
size = _ref6$size === void 0 ? 16 : _ref6$size,
|
259
253
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref6, _excluded6);
|
260
|
-
return /*#__PURE__*/
|
254
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
261
255
|
width: size,
|
262
256
|
height: size,
|
263
257
|
ref: ref,
|
264
258
|
xmlns: "http://www.w3.org/2000/svg",
|
265
259
|
viewBox: "0 0 32 32",
|
266
260
|
fill: "currentColor"
|
267
|
-
}, rest), _path7 || (_path7 = /*#__PURE__*/
|
261
|
+
}, rest), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
|
268
262
|
d: "M29.53,6.15a1,1,0,0,0-1,0L20,10.38V7a1,1,0,0,0-1.45-.89L10,10.38V3A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V28H30V7A1,1,0,0,0,29.53,6.15ZM22,26H18V19h4Zm6,0H24V18a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v8H4V4H8v9.62l10-5v5l10-5Z"
|
269
263
|
})), children);
|
270
264
|
});
|
271
265
|
if (process.env.NODE_ENV !== "production") {
|
272
266
|
Industry.propTypes = iconPropTypes4cbeb95d.i;
|
273
267
|
}
|
274
|
-
var InfinitySymbol = /*#__PURE__*/
|
268
|
+
var InfinitySymbol = /*#__PURE__*/React.forwardRef(function InfinitySymbol(_ref7, ref) {
|
275
269
|
var children = _ref7.children,
|
276
270
|
_ref7$size = _ref7.size,
|
277
271
|
size = _ref7$size === void 0 ? 16 : _ref7$size,
|
278
272
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref7, _excluded7);
|
279
|
-
return /*#__PURE__*/
|
273
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
280
274
|
width: size,
|
281
275
|
height: size,
|
282
276
|
ref: ref,
|
283
277
|
xmlns: "http://www.w3.org/2000/svg",
|
284
278
|
viewBox: "0 0 32 32",
|
285
279
|
fill: "currentColor"
|
286
|
-
}, rest), _path8 || (_path8 = /*#__PURE__*/
|
280
|
+
}, rest), _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
|
287
281
|
d: "m23,23c-5.6558,0-7.8577-6.4109-7.9487-6.6837-.0173-.0514-1.8435-5.3163-6.0513-5.3163-2.7571,0-5,2.243-5,5s2.2429,5,5,5c1.5876,0,3.0134-.7322,4.2373-2.1764l1.5259,1.2932c-1.5989,1.8862-3.5916,2.8832-5.7632,2.8832-3.8599,0-7-3.1401-7-7s3.1401-7,7-7c5.6558,0,7.8577,6.4109,7.9487,6.6837.0173.0514,1.8435,5.3163,6.0513,5.3163,2.7571,0,5-2.243,5-5s-2.2429-5-5-5c-1.5876,0-3.0134.7322-4.2373,2.1764l-1.5259-1.2932c1.5989-1.8862,3.5916-2.8832,5.7632-2.8832,3.8599,0,7,3.1401,7,7s-3.1401,7-7,7Z"
|
288
282
|
})), children);
|
289
283
|
});
|
290
284
|
if (process.env.NODE_ENV !== "production") {
|
291
285
|
InfinitySymbol.propTypes = iconPropTypes4cbeb95d.i;
|
292
286
|
}
|
293
|
-
var Information = /*#__PURE__*/
|
287
|
+
var Information = /*#__PURE__*/React.forwardRef(function Information(_ref8, ref) {
|
294
288
|
var children = _ref8.children,
|
295
289
|
_ref8$size = _ref8.size,
|
296
290
|
size = _ref8$size === void 0 ? 16 : _ref8$size,
|
297
291
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref8, _excluded8);
|
298
292
|
if (size === 16 || size === "16" || size === "16px") {
|
299
|
-
return /*#__PURE__*/
|
293
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
300
294
|
width: size,
|
301
295
|
height: size,
|
302
296
|
ref: ref,
|
303
297
|
xmlns: "http://www.w3.org/2000/svg",
|
304
298
|
viewBox: "0 0 16 16",
|
305
299
|
fill: "currentColor"
|
306
|
-
}, rest), _path9 || (_path9 = /*#__PURE__*/
|
300
|
+
}, rest), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
|
307
301
|
d: "M8.5 11L8.5 6.5 6.5 6.5 6.5 7.5 7.5 7.5 7.5 11 6 11 6 12 10 12 10 11zM8 3.5c-.4 0-.8.3-.8.8S7.6 5 8 5c.4 0 .8-.3.8-.8S8.4 3.5 8 3.5z"
|
308
|
-
})), _path10 || (_path10 = /*#__PURE__*/
|
302
|
+
})), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
|
309
303
|
d: "M8,15c-3.9,0-7-3.1-7-7s3.1-7,7-7s7,3.1,7,7S11.9,15,8,15z M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z"
|
310
304
|
})), children);
|
311
305
|
}
|
312
|
-
return /*#__PURE__*/
|
306
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
313
307
|
width: size,
|
314
308
|
height: size,
|
315
309
|
ref: ref,
|
316
310
|
xmlns: "http://www.w3.org/2000/svg",
|
317
311
|
viewBox: "0 0 32 32",
|
318
312
|
fill: "currentColor"
|
319
|
-
}, rest), _path11 || (_path11 = /*#__PURE__*/
|
313
|
+
}, rest), _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
|
320
314
|
d: "M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
|
321
|
-
})), _path12 || (_path12 = /*#__PURE__*/
|
315
|
+
})), _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
|
322
316
|
d: "M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z"
|
323
317
|
})), children);
|
324
318
|
});
|
325
319
|
if (process.env.NODE_ENV !== "production") {
|
326
320
|
Information.propTypes = iconPropTypes4cbeb95d.i;
|
327
321
|
}
|
328
|
-
var InformationDisabled = /*#__PURE__*/
|
322
|
+
var InformationDisabled = /*#__PURE__*/React.forwardRef(function InformationDisabled(_ref9, ref) {
|
329
323
|
var children = _ref9.children,
|
330
324
|
_ref9$size = _ref9.size,
|
331
325
|
size = _ref9$size === void 0 ? 16 : _ref9$size,
|
332
326
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref9, _excluded9);
|
333
|
-
return /*#__PURE__*/
|
327
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
334
328
|
width: size,
|
335
329
|
height: size,
|
336
330
|
ref: ref,
|
337
331
|
xmlns: "http://www.w3.org/2000/svg",
|
338
332
|
viewBox: "0 0 32 32",
|
339
333
|
fill: "currentColor"
|
340
|
-
}, rest), _path13 || (_path13 = /*#__PURE__*/
|
334
|
+
}, rest), _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
|
341
335
|
d: "M30 3.4141L28.5859 2 2 28.5859 3.4141 30l3.4433-3.4434A13.9614 13.9614 0 0026.5565 6.8574zM28 16A11.9734 11.9734 0 018.2678 25.146L15 18.4141V22H13v2h7V22H17V16.4141l8.146-8.146A11.8967 11.8967 0 0128 16zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
|
342
|
-
})), _path14 || (_path14 = /*#__PURE__*/
|
336
|
+
})), _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
|
343
337
|
d: "M5.67,22.0854A11.9829,11.9829,0,0,1,22.0856,5.67L23.54,4.2163A13.985,13.985,0,0,0,4.2162,23.54Z"
|
344
338
|
})), children);
|
345
339
|
});
|
346
340
|
if (process.env.NODE_ENV !== "production") {
|
347
341
|
InformationDisabled.propTypes = iconPropTypes4cbeb95d.i;
|
348
342
|
}
|
349
|
-
var InformationFilled = /*#__PURE__*/
|
343
|
+
var InformationFilled = /*#__PURE__*/React.forwardRef(function InformationFilled(_ref10, ref) {
|
350
344
|
var children = _ref10.children,
|
351
345
|
_ref10$size = _ref10.size,
|
352
346
|
size = _ref10$size === void 0 ? 16 : _ref10$size,
|
353
347
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref10, _excluded10);
|
354
|
-
return /*#__PURE__*/
|
348
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
355
349
|
width: size,
|
356
350
|
height: size,
|
357
351
|
ref: ref,
|
358
352
|
xmlns: "http://www.w3.org/2000/svg",
|
359
353
|
viewBox: "0 0 32 32",
|
360
354
|
fill: "currentColor"
|
361
|
-
}, rest), _path15 || (_path15 = /*#__PURE__*/
|
355
|
+
}, rest), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
|
362
356
|
fill: "none",
|
363
357
|
d: "M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z",
|
364
358
|
"data-icon-path": "inner-path"
|
365
|
-
})), _path16 || (_path16 = /*#__PURE__*/
|
359
|
+
})), _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
|
366
360
|
d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,6a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"
|
367
361
|
})), children);
|
368
362
|
});
|
369
363
|
if (process.env.NODE_ENV !== "production") {
|
370
364
|
InformationFilled.propTypes = iconPropTypes4cbeb95d.i;
|
371
365
|
}
|
372
|
-
var InformationSquare = /*#__PURE__*/
|
366
|
+
var InformationSquare = /*#__PURE__*/React.forwardRef(function InformationSquare(_ref11, ref) {
|
373
367
|
var children = _ref11.children,
|
374
368
|
_ref11$size = _ref11.size,
|
375
369
|
size = _ref11$size === void 0 ? 16 : _ref11$size,
|
376
370
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref11, _excluded11);
|
377
|
-
return /*#__PURE__*/
|
371
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
378
372
|
width: size,
|
379
373
|
height: size,
|
380
374
|
ref: ref,
|
381
375
|
xmlns: "http://www.w3.org/2000/svg",
|
382
376
|
viewBox: "0 0 32 32",
|
383
377
|
fill: "currentColor"
|
384
|
-
}, rest), _path17 || (_path17 = /*#__PURE__*/
|
378
|
+
}, rest), _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
|
385
379
|
d: "M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
|
386
|
-
})), _path18 || (_path18 = /*#__PURE__*/
|
380
|
+
})), _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
|
387
381
|
d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26V6Z"
|
388
382
|
})), children);
|
389
383
|
});
|
390
384
|
if (process.env.NODE_ENV !== "production") {
|
391
385
|
InformationSquare.propTypes = iconPropTypes4cbeb95d.i;
|
392
386
|
}
|
393
|
-
var InformationSquareFilled = /*#__PURE__*/
|
387
|
+
var InformationSquareFilled = /*#__PURE__*/React.forwardRef(function InformationSquareFilled(_ref12, ref) {
|
394
388
|
var children = _ref12.children,
|
395
389
|
_ref12$size = _ref12.size,
|
396
390
|
size = _ref12$size === void 0 ? 16 : _ref12$size,
|
397
391
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref12, _excluded12);
|
398
|
-
return /*#__PURE__*/
|
392
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
399
393
|
width: size,
|
400
394
|
height: size,
|
401
395
|
ref: ref,
|
402
396
|
xmlns: "http://www.w3.org/2000/svg",
|
403
397
|
viewBox: "0 0 32 32",
|
404
398
|
fill: "currentColor"
|
405
|
-
}, rest), _path19 || (_path19 = /*#__PURE__*/
|
399
|
+
}, rest), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
|
406
400
|
fill: "none",
|
407
401
|
d: "M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z",
|
408
402
|
"data-icon-path": "inner-path"
|
409
|
-
})), _path20 || (_path20 = /*#__PURE__*/
|
403
|
+
})), _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
|
410
404
|
d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"
|
411
405
|
})), children);
|
412
406
|
});
|
413
407
|
if (process.env.NODE_ENV !== "production") {
|
414
408
|
InformationSquareFilled.propTypes = iconPropTypes4cbeb95d.i;
|
415
409
|
}
|
416
|
-
var InfrastructureClassic = /*#__PURE__*/
|
410
|
+
var InfrastructureClassic = /*#__PURE__*/React.forwardRef(function InfrastructureClassic(_ref13, ref) {
|
417
411
|
var children = _ref13.children,
|
418
412
|
_ref13$size = _ref13.size,
|
419
413
|
size = _ref13$size === void 0 ? 16 : _ref13$size,
|
420
414
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref13, _excluded13);
|
421
|
-
return /*#__PURE__*/
|
415
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
422
416
|
width: size,
|
423
417
|
height: size,
|
424
418
|
ref: ref,
|
425
419
|
xmlns: "http://www.w3.org/2000/svg",
|
426
420
|
viewBox: "0 0 32 32",
|
427
421
|
fill: "currentColor"
|
428
|
-
}, rest), _path21 || (_path21 = /*#__PURE__*/
|
422
|
+
}, rest), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
|
429
423
|
d: "M18 26H30V28H18zM18 21H30V23H18zM18 16H30V18H18z"
|
430
|
-
})), _path22 || (_path22 = /*#__PURE__*/
|
424
|
+
})), _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
|
431
425
|
d: "M14,25H9.5A7.4964,7.4964,0,0,1,8.1782,10.124,10,10,0,0,1,28,12H26a7.999,7.999,0,0,0-15.9507-.87l-.09.8335L9.123,12.02A5.4962,5.4962,0,0,0,9.5,23H14Z"
|
432
426
|
})), children);
|
433
427
|
});
|
434
428
|
if (process.env.NODE_ENV !== "production") {
|
435
429
|
InfrastructureClassic.propTypes = iconPropTypes4cbeb95d.i;
|
436
430
|
}
|
437
|
-
var Insert = /*#__PURE__*/
|
431
|
+
var Insert = /*#__PURE__*/React.forwardRef(function Insert(_ref14, ref) {
|
438
432
|
var children = _ref14.children,
|
439
433
|
_ref14$size = _ref14.size,
|
440
434
|
size = _ref14$size === void 0 ? 16 : _ref14$size,
|
441
435
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref14, _excluded14);
|
442
|
-
return /*#__PURE__*/
|
436
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
443
437
|
width: size,
|
444
438
|
height: size,
|
445
439
|
ref: ref,
|
446
440
|
xmlns: "http://www.w3.org/2000/svg",
|
447
441
|
viewBox: "0 0 32 32",
|
448
442
|
fill: "currentColor"
|
449
|
-
}, rest), _path23 || (_path23 = /*#__PURE__*/
|
443
|
+
}, rest), _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
|
450
444
|
d: "M2 9h9V2H2zM4 4H9V7H4zM2 19h9V12H2zm2-5H9v3H4zM2 29h9V22H2zm2-5H9v3H4zM27 9H18l3.41-3.59L20 4l-6 6 6 6 1.41-1.41L18 11h9a1 1 0 011 1V24a1 1 0 01-1 1H15v2H27a3 3 0 003-3V12A3 3 0 0027 9z"
|
451
445
|
})), children);
|
452
446
|
});
|
453
447
|
if (process.env.NODE_ENV !== "production") {
|
454
448
|
Insert.propTypes = iconPropTypes4cbeb95d.i;
|
455
449
|
}
|
456
|
-
var InsertPage = /*#__PURE__*/
|
450
|
+
var InsertPage = /*#__PURE__*/React.forwardRef(function InsertPage(_ref15, ref) {
|
457
451
|
var children = _ref15.children,
|
458
452
|
_ref15$size = _ref15.size,
|
459
453
|
size = _ref15$size === void 0 ? 16 : _ref15$size,
|
460
454
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref15, _excluded15);
|
461
|
-
return /*#__PURE__*/
|
455
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
462
456
|
width: size,
|
463
457
|
height: size,
|
464
458
|
ref: ref,
|
465
459
|
xmlns: "http://www.w3.org/2000/svg",
|
466
460
|
viewBox: "0 0 32 32",
|
467
461
|
fill: "currentColor"
|
468
|
-
}, rest), _path24 || (_path24 = /*#__PURE__*/
|
462
|
+
}, rest), _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
|
469
463
|
d: "M26 30H24V20H12V30H10V20a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2zM5.17 16L2 19.17 3.411 20.589 8 16 3.42 11.42 2 12.83 5.17 16zM24 14H12a2.0021 2.0021 0 01-2-2V2h2V12H24V2h2V12A2.0021 2.0021 0 0124 14z"
|
470
464
|
})), children);
|
471
465
|
});
|
472
466
|
if (process.env.NODE_ENV !== "production") {
|
473
467
|
InsertPage.propTypes = iconPropTypes4cbeb95d.i;
|
474
468
|
}
|
475
|
-
var InsertSyntax = /*#__PURE__*/
|
469
|
+
var InsertSyntax = /*#__PURE__*/React.forwardRef(function InsertSyntax(_ref16, ref) {
|
476
470
|
var children = _ref16.children,
|
477
471
|
_ref16$size = _ref16.size,
|
478
472
|
size = _ref16$size === void 0 ? 16 : _ref16$size,
|
479
473
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref16, _excluded16);
|
480
|
-
return /*#__PURE__*/
|
474
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
481
475
|
width: size,
|
482
476
|
height: size,
|
483
477
|
ref: ref,
|
484
478
|
xmlns: "http://www.w3.org/2000/svg",
|
485
479
|
viewBox: "0 0 32 32",
|
486
480
|
fill: "currentColor"
|
487
|
-
}, rest), _path25 || (_path25 = /*#__PURE__*/
|
481
|
+
}, rest), _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
|
488
482
|
d: "M20.17 16L17.59 18.58 19 20 23 16 19 12 17.58 13.41 20.17 16zM11.83 16L14.41 13.42 13 12 9 16 13 20 14.42 18.59 11.83 16z"
|
489
|
-
})), _path26 || (_path26 = /*#__PURE__*/
|
483
|
+
})), _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
|
490
484
|
d: "M27,22.142V9.858A3.9916,3.9916,0,1,0,22.142,5H9.858A3.9916,3.9916,0,1,0,5,9.858V22.142A3.9916,3.9916,0,1,0,9.858,27H22.142A3.9916,3.9916,0,1,0,27,22.142ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm16.142-3H9.858A3.9937,3.9937,0,0,0,7,22.142V9.858A3.9947,3.9947,0,0,0,9.858,7H22.142A3.9937,3.9937,0,0,0,25,9.858V22.142A3.9931,3.9931,0,0,0,22.142,25ZM26,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z"
|
491
485
|
})), children);
|
492
486
|
});
|
493
487
|
if (process.env.NODE_ENV !== "production") {
|
494
488
|
InsertSyntax.propTypes = iconPropTypes4cbeb95d.i;
|
495
489
|
}
|
496
|
-
var Inspection = /*#__PURE__*/
|
490
|
+
var Inspection = /*#__PURE__*/React.forwardRef(function Inspection(_ref17, ref) {
|
497
491
|
var children = _ref17.children,
|
498
492
|
_ref17$size = _ref17.size,
|
499
493
|
size = _ref17$size === void 0 ? 16 : _ref17$size,
|
500
494
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref17, _excluded17);
|
501
|
-
return /*#__PURE__*/
|
495
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
502
496
|
width: size,
|
503
497
|
height: size,
|
504
498
|
ref: ref,
|
505
499
|
xmlns: "http://www.w3.org/2000/svg",
|
506
500
|
viewBox: "0 0 32 32",
|
507
501
|
fill: "currentColor"
|
508
|
-
}, rest), _path27 || (_path27 = /*#__PURE__*/
|
502
|
+
}, rest), _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
|
509
503
|
d: "M15 17.18L12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z"
|
510
|
-
})), _path28 || (_path28 = /*#__PURE__*/
|
504
|
+
})), _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
|
511
505
|
d: "M30,15H27.9492A12.0071,12.0071,0,0,0,17,4.0508V2H15V4.0508A12.0071,12.0071,0,0,0,4.0508,15H2v2H4.0508A12.0071,12.0071,0,0,0,15,27.9492V30h2V27.9492A12.0071,12.0071,0,0,0,27.9492,17H30ZM17,25.9492V23H15v2.9492A10.0166,10.0166,0,0,1,6.0508,17H9V15H6.0508A10.0166,10.0166,0,0,1,15,6.0508V9h2V6.0508A10.0166,10.0166,0,0,1,25.9492,15H23v2h2.949A10.0165,10.0165,0,0,1,17,25.9492Z"
|
512
506
|
})), children);
|
513
507
|
});
|
514
508
|
if (process.env.NODE_ENV !== "production") {
|
515
509
|
Inspection.propTypes = iconPropTypes4cbeb95d.i;
|
516
510
|
}
|
517
|
-
var InstanceBx = /*#__PURE__*/
|
511
|
+
var InstanceBx = /*#__PURE__*/React.forwardRef(function InstanceBx(_ref18, ref) {
|
518
512
|
var children = _ref18.children,
|
519
513
|
_ref18$size = _ref18.size,
|
520
514
|
size = _ref18$size === void 0 ? 16 : _ref18$size,
|
521
515
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref18, _excluded18);
|
522
|
-
return /*#__PURE__*/
|
516
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
523
517
|
width: size,
|
524
518
|
height: size,
|
525
519
|
ref: ref,
|
526
520
|
xmlns: "http://www.w3.org/2000/svg",
|
527
521
|
viewBox: "0 0 32 32",
|
528
522
|
fill: "currentColor"
|
529
|
-
}, rest), _path29 || (_path29 = /*#__PURE__*/
|
523
|
+
}, rest), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
|
530
524
|
d: "M12 5A3.0033 3.0033 0 009 2H4V15H9a3.0033 3.0033 0 003-3V10.5a2.977 2.977 0 00-.78-2 2.9768 2.9768 0 00.78-2zM6 4H9a1.0013 1.0013 0 011 1V6.5513A.9587.9587 0 019 7.5H6zm4 8a1.0009 1.0009 0 01-1 1H6V9.5H9a1.0009 1.0009 0 011 1zM22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5z"
|
531
|
-
})), _circle || (_circle = /*#__PURE__*/
|
525
|
+
})), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
|
532
526
|
cx: "9",
|
533
527
|
cy: "27",
|
534
528
|
r: "1"
|
535
|
-
})), _path30 || (_path30 = /*#__PURE__*/
|
529
|
+
})), _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
|
536
530
|
d: "M2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
|
537
531
|
})), children);
|
538
532
|
});
|
539
533
|
if (process.env.NODE_ENV !== "production") {
|
540
534
|
InstanceBx.propTypes = iconPropTypes4cbeb95d.i;
|
541
535
|
}
|
542
|
-
var InstanceClassic = /*#__PURE__*/
|
536
|
+
var InstanceClassic = /*#__PURE__*/React.forwardRef(function InstanceClassic(_ref19, ref) {
|
543
537
|
var children = _ref19.children,
|
544
538
|
_ref19$size = _ref19.size,
|
545
539
|
size = _ref19$size === void 0 ? 16 : _ref19$size,
|
546
540
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref19, _excluded19);
|
547
|
-
return /*#__PURE__*/
|
541
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
548
542
|
width: size,
|
549
543
|
height: size,
|
550
544
|
ref: ref,
|
551
545
|
xmlns: "http://www.w3.org/2000/svg",
|
552
546
|
viewBox: "0 0 32 32",
|
553
547
|
fill: "currentColor"
|
554
|
-
}, rest), _path31 || (_path31 = /*#__PURE__*/
|
548
|
+
}, rest), _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
|
555
549
|
d: "M23.5,21H23V19h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,19H9v2H8.5A6.4973,6.4973,0,0,1,7.2,8.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,21Z"
|
556
|
-
})), _circle2 || (_circle2 = /*#__PURE__*/
|
550
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
|
557
551
|
cx: "9",
|
558
552
|
cy: "27",
|
559
553
|
r: "1"
|
560
|
-
})), _path32 || (_path32 = /*#__PURE__*/
|
554
|
+
})), _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
|
561
555
|
d: "M26,23H17V15.83l2.59,2.58L21,17l-5-5-5,5,1.41,1.41L15,15.83V23H6a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V25A2.0023,2.0023,0,0,0,26,23Zm0,6H6V25H26Z"
|
562
556
|
})), children);
|
563
557
|
});
|
564
558
|
if (process.env.NODE_ENV !== "production") {
|
565
559
|
InstanceClassic.propTypes = iconPropTypes4cbeb95d.i;
|
566
560
|
}
|
567
|
-
var InstanceCx = /*#__PURE__*/
|
561
|
+
var InstanceCx = /*#__PURE__*/React.forwardRef(function InstanceCx(_ref20, ref) {
|
568
562
|
var children = _ref20.children,
|
569
563
|
_ref20$size = _ref20.size,
|
570
564
|
size = _ref20$size === void 0 ? 16 : _ref20$size,
|
571
565
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref20, _excluded20);
|
572
|
-
return /*#__PURE__*/
|
566
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
573
567
|
width: size,
|
574
568
|
height: size,
|
575
569
|
ref: ref,
|
576
570
|
xmlns: "http://www.w3.org/2000/svg",
|
577
571
|
viewBox: "0 0 32 32",
|
578
572
|
fill: "currentColor"
|
579
|
-
}, rest), _circle3 || (_circle3 = /*#__PURE__*/
|
573
|
+
}, rest), _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
|
580
574
|
cx: "9",
|
581
575
|
cy: "27",
|
582
576
|
r: "1"
|
583
|
-
})), _path33 || (_path33 = /*#__PURE__*/
|
577
|
+
})), _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
|
584
578
|
d: "M22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5zM12 15H6a2.0023 2.0023 0 01-2-2V4A2.002 2.002 0 016 2h6V4H6v9h6zM2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
|
585
579
|
})), children);
|
586
580
|
});
|
587
581
|
if (process.env.NODE_ENV !== "production") {
|
588
582
|
InstanceCx.propTypes = iconPropTypes4cbeb95d.i;
|
589
583
|
}
|
590
|
-
var InstanceMx = /*#__PURE__*/
|
584
|
+
var InstanceMx = /*#__PURE__*/React.forwardRef(function InstanceMx(_ref21, ref) {
|
591
585
|
var children = _ref21.children,
|
592
586
|
_ref21$size = _ref21.size,
|
593
587
|
size = _ref21$size === void 0 ? 16 : _ref21$size,
|
594
588
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref21, _excluded21);
|
595
|
-
return /*#__PURE__*/
|
589
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
596
590
|
width: size,
|
597
591
|
height: size,
|
598
592
|
ref: ref,
|
599
593
|
xmlns: "http://www.w3.org/2000/svg",
|
600
594
|
viewBox: "0 0 32 32",
|
601
595
|
fill: "currentColor"
|
602
|
-
}, rest), _path34 || (_path34 = /*#__PURE__*/
|
596
|
+
}, rest), _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
|
603
597
|
d: "M22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5zM10 2L8.485 6.374 8 8 7.535 6.374 6 2 4 2 4 15 6 15 6 7.374 5.841 5.378 6.421 7.374 8 12 9.579 7.374 10.159 5.374 10 7.374 10 15 12 15 12 2 10 2z"
|
604
|
-
})), _circle4 || (_circle4 = /*#__PURE__*/
|
598
|
+
})), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
|
605
599
|
cx: "9",
|
606
600
|
cy: "27",
|
607
601
|
r: "1"
|
608
|
-
})), _path35 || (_path35 = /*#__PURE__*/
|
602
|
+
})), _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
|
609
603
|
d: "M2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
|
610
604
|
})), children);
|
611
605
|
});
|
612
606
|
if (process.env.NODE_ENV !== "production") {
|
613
607
|
InstanceMx.propTypes = iconPropTypes4cbeb95d.i;
|
614
608
|
}
|
615
|
-
var InstanceVirtual = /*#__PURE__*/
|
609
|
+
var InstanceVirtual = /*#__PURE__*/React.forwardRef(function InstanceVirtual(_ref22, ref) {
|
616
610
|
var children = _ref22.children,
|
617
611
|
_ref22$size = _ref22.size,
|
618
612
|
size = _ref22$size === void 0 ? 16 : _ref22$size,
|
619
613
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref22, _excluded22);
|
620
|
-
return /*#__PURE__*/
|
614
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
621
615
|
width: size,
|
622
616
|
height: size,
|
623
617
|
ref: ref,
|
624
618
|
xmlns: "http://www.w3.org/2000/svg",
|
625
619
|
viewBox: "0 0 32 32",
|
626
620
|
fill: "currentColor"
|
627
|
-
}, rest), _circle5 || (_circle5 = /*#__PURE__*/
|
621
|
+
}, rest), _circle5 || (_circle5 = /*#__PURE__*/React.createElement("circle", {
|
628
622
|
cx: "7",
|
629
623
|
cy: "23",
|
630
624
|
r: "1"
|
631
|
-
})), _path36 || (_path36 = /*#__PURE__*/
|
625
|
+
})), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
|
632
626
|
d: "M2 6H6V8H2zM8 6H12V8H8zM14 6H18V8H14zM20 6H24V8H20zM26 6H30V8H26zM28 28H4a2.0021 2.0021 0 01-2-2V20a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 28zM4 20v6H28V20zM2 12H30V14H2z"
|
633
627
|
})), children);
|
634
628
|
});
|
635
629
|
if (process.env.NODE_ENV !== "production") {
|
636
630
|
InstanceVirtual.propTypes = iconPropTypes4cbeb95d.i;
|
637
631
|
}
|
638
|
-
var Integration = /*#__PURE__*/
|
632
|
+
var Integration = /*#__PURE__*/React.forwardRef(function Integration(_ref23, ref) {
|
639
633
|
var children = _ref23.children,
|
640
634
|
_ref23$size = _ref23.size,
|
641
635
|
size = _ref23$size === void 0 ? 16 : _ref23$size,
|
642
636
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref23, _excluded23);
|
643
|
-
return /*#__PURE__*/
|
637
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
644
638
|
width: size,
|
645
639
|
height: size,
|
646
640
|
ref: ref,
|
647
641
|
xmlns: "http://www.w3.org/2000/svg",
|
648
642
|
viewBox: "0 0 32 32",
|
649
643
|
fill: "currentColor"
|
650
|
-
}, rest), _path37 || (_path37 = /*#__PURE__*/
|
644
|
+
}, rest), _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
|
651
645
|
d: "M29.88,15.52l-6-11A1,1,0,0,0,23,4H9a1,1,0,0,0-.88.52l-6,11a1,1,0,0,0,0,1l6,11A1,1,0,0,0,9,28H23a1,1,0,0,0,.88-.52l6-11A1,1,0,0,0,29.88,15.52ZM22.93,7l4.39,8h-9.5ZM16,14.14,10.82,6H21.18ZM9.07,7l5.11,8H4.68ZM4.68,17h9.5L9.07,25ZM16,17.86,21.18,26H10.82ZM22.93,25l-5.11-8h9.5Z"
|
652
646
|
})), children);
|
653
647
|
});
|
654
648
|
if (process.env.NODE_ENV !== "production") {
|
655
649
|
Integration.propTypes = iconPropTypes4cbeb95d.i;
|
656
650
|
}
|
657
|
-
var IntentRequestActive = /*#__PURE__*/
|
651
|
+
var IntentRequestActive = /*#__PURE__*/React.forwardRef(function IntentRequestActive(_ref24, ref) {
|
658
652
|
var children = _ref24.children,
|
659
653
|
_ref24$size = _ref24.size,
|
660
654
|
size = _ref24$size === void 0 ? 16 : _ref24$size,
|
661
655
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref24, _excluded24);
|
662
|
-
return /*#__PURE__*/
|
656
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
663
657
|
width: size,
|
664
658
|
height: size,
|
665
659
|
ref: ref,
|
666
660
|
xmlns: "http://www.w3.org/2000/svg",
|
667
661
|
viewBox: "0 0 32 32",
|
668
662
|
fill: "currentColor"
|
669
|
-
}, rest), _path38 || (_path38 = /*#__PURE__*/
|
663
|
+
}, rest), _path38 || (_path38 = /*#__PURE__*/React.createElement("path", {
|
670
664
|
d: "M23 27.2L20.4 24.6 19 26 23 30 31 22 29.6 20.6z"
|
671
|
-
})), _path39 || (_path39 = /*#__PURE__*/
|
665
|
+
})), _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
|
672
666
|
d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
|
673
667
|
})), children);
|
674
668
|
});
|
675
669
|
if (process.env.NODE_ENV !== "production") {
|
676
670
|
IntentRequestActive.propTypes = iconPropTypes4cbeb95d.i;
|
677
671
|
}
|
678
|
-
var IntentRequestCreate = /*#__PURE__*/
|
672
|
+
var IntentRequestCreate = /*#__PURE__*/React.forwardRef(function IntentRequestCreate(_ref25, ref) {
|
679
673
|
var children = _ref25.children,
|
680
674
|
_ref25$size = _ref25.size,
|
681
675
|
size = _ref25$size === void 0 ? 16 : _ref25$size,
|
682
676
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref25, _excluded25);
|
683
|
-
return /*#__PURE__*/
|
677
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
684
678
|
width: size,
|
685
679
|
height: size,
|
686
680
|
ref: ref,
|
687
681
|
xmlns: "http://www.w3.org/2000/svg",
|
688
682
|
viewBox: "0 0 32 32",
|
689
683
|
fill: "currentColor"
|
690
|
-
}, rest), _path40 || (_path40 = /*#__PURE__*/
|
684
|
+
}, rest), _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
|
691
685
|
d: "M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z"
|
692
|
-
})), _path41 || (_path41 = /*#__PURE__*/
|
686
|
+
})), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
|
693
687
|
d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
|
694
688
|
})), children);
|
695
689
|
});
|
696
690
|
if (process.env.NODE_ENV !== "production") {
|
697
691
|
IntentRequestCreate.propTypes = iconPropTypes4cbeb95d.i;
|
698
692
|
}
|
699
|
-
var IntentRequestHeal = /*#__PURE__*/
|
693
|
+
var IntentRequestHeal = /*#__PURE__*/React.forwardRef(function IntentRequestHeal(_ref26, ref) {
|
700
694
|
var children = _ref26.children,
|
701
695
|
_ref26$size = _ref26.size,
|
702
696
|
size = _ref26$size === void 0 ? 16 : _ref26$size,
|
703
697
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref26, _excluded26);
|
704
|
-
return /*#__PURE__*/
|
698
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
705
699
|
width: size,
|
706
700
|
height: size,
|
707
701
|
ref: ref,
|
708
702
|
xmlns: "http://www.w3.org/2000/svg",
|
709
703
|
viewBox: "0 0 32 32",
|
710
704
|
fill: "currentColor"
|
711
|
-
}, rest), _path42 || (_path42 = /*#__PURE__*/
|
705
|
+
}, rest), _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
|
712
706
|
d: "M27,20c-0.8,0-1.5,0.3-2.1,0.9l-0.4,0.5l-0.4-0.5C23.5,20.3,22.7,20,22,20s-1.5,0.3-2.1,0.9c-1.2,1.2-1.2,3.1,0,4.3l4.6,4.8 l4.6-4.8c1.2-1.2,1.2-3.1,0-4.3C28.6,20.3,27.8,20,27,20L27,20z"
|
713
|
-
})), _path43 || (_path43 = /*#__PURE__*/
|
707
|
+
})), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
|
714
708
|
d: "M16.6,28.6L4,16L16,4l12.6,12.6l1.4-1.4L17.5,2.6c-0.8-0.8-2.1-0.8-2.9,0L2.6,14.5c-0.8,0.8-0.8,2.1,0,2.9L15.1,30 L16.6,28.6z"
|
715
709
|
})), children);
|
716
710
|
});
|
717
711
|
if (process.env.NODE_ENV !== "production") {
|
718
712
|
IntentRequestHeal.propTypes = iconPropTypes4cbeb95d.i;
|
719
713
|
}
|
720
|
-
var IntentRequestInactive = /*#__PURE__*/
|
714
|
+
var IntentRequestInactive = /*#__PURE__*/React.forwardRef(function IntentRequestInactive(_ref27, ref) {
|
721
715
|
var children = _ref27.children,
|
722
716
|
_ref27$size = _ref27.size,
|
723
717
|
size = _ref27$size === void 0 ? 16 : _ref27$size,
|
724
718
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref27, _excluded27);
|
725
|
-
return /*#__PURE__*/
|
719
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
726
720
|
width: size,
|
727
721
|
height: size,
|
728
722
|
ref: ref,
|
729
723
|
xmlns: "http://www.w3.org/2000/svg",
|
730
724
|
viewBox: "0 0 32 32",
|
731
725
|
fill: "currentColor"
|
732
|
-
}, rest), _circle6 || (_circle6 = /*#__PURE__*/
|
726
|
+
}, rest), _circle6 || (_circle6 = /*#__PURE__*/React.createElement("circle", {
|
733
727
|
cx: "18.5",
|
734
728
|
cy: "22.5",
|
735
729
|
r: "1.5"
|
736
|
-
})), _circle7 || (_circle7 = /*#__PURE__*/
|
730
|
+
})), _circle7 || (_circle7 = /*#__PURE__*/React.createElement("circle", {
|
737
731
|
cx: "23.5",
|
738
732
|
cy: "22.5",
|
739
733
|
r: "1.5"
|
740
|
-
})), _circle8 || (_circle8 = /*#__PURE__*/
|
734
|
+
})), _circle8 || (_circle8 = /*#__PURE__*/React.createElement("circle", {
|
741
735
|
cx: "28.5",
|
742
736
|
cy: "22.5",
|
743
737
|
r: "1.5"
|
744
|
-
})), _path44 || (_path44 = /*#__PURE__*/
|
738
|
+
})), _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
|
745
739
|
d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
|
746
740
|
})), children);
|
747
741
|
});
|
748
742
|
if (process.env.NODE_ENV !== "production") {
|
749
743
|
IntentRequestInactive.propTypes = iconPropTypes4cbeb95d.i;
|
750
744
|
}
|
751
|
-
var IntentRequestScaleIn = /*#__PURE__*/
|
745
|
+
var IntentRequestScaleIn = /*#__PURE__*/React.forwardRef(function IntentRequestScaleIn(_ref28, ref) {
|
752
746
|
var children = _ref28.children,
|
753
747
|
_ref28$size = _ref28.size,
|
754
748
|
size = _ref28$size === void 0 ? 16 : _ref28$size,
|
755
749
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref28, _excluded28);
|
756
|
-
return /*#__PURE__*/
|
750
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
757
751
|
width: size,
|
758
752
|
height: size,
|
759
753
|
ref: ref,
|
760
754
|
xmlns: "http://www.w3.org/2000/svg",
|
761
755
|
viewBox: "0 0 32 32",
|
762
756
|
fill: "currentColor"
|
763
|
-
}, rest), _path45 || (_path45 = /*#__PURE__*/
|
757
|
+
}, rest), _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
|
764
758
|
d: "M28.6 30L30 28.6 22.4 21 29 21 29 19 19 19 19 29 21 29 21 22.4zM2 28.6L3.4 30 11 22.4 11 29 13 29 13 19 3 19 3 21 9.6 21zM17 2L15 2 15 12.2 10.4 7.6 9 9 16 16 23 9 21.6 7.6 17 12.2z"
|
765
759
|
})), children);
|
766
760
|
});
|
767
761
|
if (process.env.NODE_ENV !== "production") {
|
768
762
|
IntentRequestScaleIn.propTypes = iconPropTypes4cbeb95d.i;
|
769
763
|
}
|
770
|
-
var IntentRequestScaleOut = /*#__PURE__*/
|
764
|
+
var IntentRequestScaleOut = /*#__PURE__*/React.forwardRef(function IntentRequestScaleOut(_ref29, ref) {
|
771
765
|
var children = _ref29.children,
|
772
766
|
_ref29$size = _ref29.size,
|
773
767
|
size = _ref29$size === void 0 ? 16 : _ref29$size,
|
774
768
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref29, _excluded29);
|
775
|
-
return /*#__PURE__*/
|
769
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
776
770
|
width: size,
|
777
771
|
height: size,
|
778
772
|
ref: ref,
|
779
773
|
xmlns: "http://www.w3.org/2000/svg",
|
780
774
|
viewBox: "0 0 32 32",
|
781
775
|
fill: "currentColor"
|
782
|
-
}, rest), _path46 || (_path46 = /*#__PURE__*/
|
776
|
+
}, rest), _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
|
783
777
|
d: "M19 20.4L20.4 19 28 26.6 28 20 30 20 30 30 20 30 20 28 26.6 28zM13 20.4L11.6 19 4 26.6 4 20 2 20 2 30 12 30 12 28 5.4 28zM17 16L15 16 15 5.8 10.4 10.4 9 9 16 2 23 9 21.6 10.4 17 5.8z"
|
784
778
|
})), children);
|
785
779
|
});
|
786
780
|
if (process.env.NODE_ENV !== "production") {
|
787
781
|
IntentRequestScaleOut.propTypes = iconPropTypes4cbeb95d.i;
|
788
782
|
}
|
789
|
-
var IntentRequestUninstall = /*#__PURE__*/
|
783
|
+
var IntentRequestUninstall = /*#__PURE__*/React.forwardRef(function IntentRequestUninstall(_ref30, ref) {
|
790
784
|
var children = _ref30.children,
|
791
785
|
_ref30$size = _ref30.size,
|
792
786
|
size = _ref30$size === void 0 ? 16 : _ref30$size,
|
793
787
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref30, _excluded30);
|
794
|
-
return /*#__PURE__*/
|
788
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
795
789
|
width: size,
|
796
790
|
height: size,
|
797
791
|
ref: ref,
|
798
792
|
xmlns: "http://www.w3.org/2000/svg",
|
799
793
|
viewBox: "0 0 32 32",
|
800
794
|
fill: "currentColor"
|
801
|
-
}, rest), _path47 || (_path47 = /*#__PURE__*/
|
795
|
+
}, rest), _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
|
802
796
|
d: "M30 21.4L28.6 20 25 23.6 21.4 20 20 21.4 23.6 25 20 28.6 21.4 30 25 26.4 28.6 30 30 28.6 26.4 25z"
|
803
|
-
})), _path48 || (_path48 = /*#__PURE__*/
|
797
|
+
})), _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
|
804
798
|
d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
|
805
799
|
})), children);
|
806
800
|
});
|
807
801
|
if (process.env.NODE_ENV !== "production") {
|
808
802
|
IntentRequestUninstall.propTypes = iconPropTypes4cbeb95d.i;
|
809
803
|
}
|
810
|
-
var IntentRequestUpgrade = /*#__PURE__*/
|
804
|
+
var IntentRequestUpgrade = /*#__PURE__*/React.forwardRef(function IntentRequestUpgrade(_ref31, ref) {
|
811
805
|
var children = _ref31.children,
|
812
806
|
_ref31$size = _ref31.size,
|
813
807
|
size = _ref31$size === void 0 ? 16 : _ref31$size,
|
814
808
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref31, _excluded31);
|
815
|
-
return /*#__PURE__*/
|
809
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
816
810
|
width: size,
|
817
811
|
height: size,
|
818
812
|
ref: ref,
|
819
813
|
xmlns: "http://www.w3.org/2000/svg",
|
820
814
|
viewBox: "0 0 32 32",
|
821
815
|
fill: "currentColor"
|
822
|
-
}, rest), _path49 || (_path49 = /*#__PURE__*/
|
816
|
+
}, rest), _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
|
823
817
|
d: "M28 23L26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z"
|
824
|
-
})), _path50 || (_path50 = /*#__PURE__*/
|
818
|
+
})), _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
|
825
819
|
d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
|
826
820
|
})), children);
|
827
821
|
});
|
828
822
|
if (process.env.NODE_ENV !== "production") {
|
829
823
|
IntentRequestUpgrade.propTypes = iconPropTypes4cbeb95d.i;
|
830
824
|
}
|
831
|
-
var Interactions = /*#__PURE__*/
|
825
|
+
var Interactions = /*#__PURE__*/React.forwardRef(function Interactions(_ref32, ref) {
|
832
826
|
var children = _ref32.children,
|
833
827
|
_ref32$size = _ref32.size,
|
834
828
|
size = _ref32$size === void 0 ? 16 : _ref32$size,
|
835
829
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref32, _excluded32);
|
836
830
|
if (size === 16 || size === "16" || size === "16px") {
|
837
|
-
return /*#__PURE__*/
|
831
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
838
832
|
width: size,
|
839
833
|
height: size,
|
840
834
|
ref: ref,
|
841
835
|
xmlns: "http://www.w3.org/2000/svg",
|
842
836
|
viewBox: "0 0 16 16",
|
843
837
|
fill: "currentColor"
|
844
|
-
}, rest), _path51 || (_path51 = /*#__PURE__*/
|
838
|
+
}, rest), _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
|
845
839
|
fillRule: "evenodd",
|
846
840
|
d: "M11,7 L11,9 L13,9 C13.5522847,9 14,9.44771525 14,10 L14,10 L14,13 C14,13.5522847 13.5522847,14 13,14 L13,14 L10,14 L10,7 L11,7 Z M5,9 C5.55228475,9 6,9.44771525 6,10 L6,10 L6,14 L3,14 C2.44771525,14 2,13.5522847 2,13 L2,13 L2,12 C2,11.4477153 2.44771525,11 3,11 L3,11 L5,11 L5,10 L2.5,10 L2.5,9 Z M13,10 L11,10 L11,13 L13,13 L13,10 Z M5,12 L3,12 L3,13 L5,13 L5,12 Z M7.912,2 L7.834,3.911 L9.628,3.248 L9.914,4.119 L8.068,4.626 L9.251,6.134 L8.523,6.667 L7.457,5.068 L6.391,6.667 L5.663,6.134 L6.846,4.626 L5,4.119 L5.286,3.248 L7.08,3.911 L7.002,2 L7.912,2 Z"
|
847
841
|
})), children);
|
848
842
|
}
|
849
|
-
return /*#__PURE__*/
|
843
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
850
844
|
width: size,
|
851
845
|
height: size,
|
852
846
|
ref: ref,
|
853
847
|
xmlns: "http://www.w3.org/2000/svg",
|
854
848
|
viewBox: "0 0 32 32",
|
855
849
|
fill: "currentColor"
|
856
|
-
}, rest), _path52 || (_path52 = /*#__PURE__*/
|
850
|
+
}, rest), _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
|
857
851
|
d: "M26 18H22V14H20V28h6a2.0027 2.0027 0 002-2V20A2.0023 2.0023 0 0026 18zm-4 8V20h4v6zM20 6.076L19.256 4.219 16 5.522 16 2 14 2 14 5.523 10.744 4.22 10 6.077 13.417 7.444 10.9 10.8 12.5 12 15 8.667 17.5 12 19.1 10.8 16.583 7.443 20 6.076zM10 18H5v2h5v2H6a2 2 0 00-2 2v2a2 2 0 002 2h6V20A2.0023 2.0023 0 0010 18zm0 8H6V24h4z"
|
858
852
|
})), children);
|
859
853
|
});
|
860
854
|
if (process.env.NODE_ENV !== "production") {
|
861
855
|
Interactions.propTypes = iconPropTypes4cbeb95d.i;
|
862
856
|
}
|
863
|
-
var WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/
|
857
|
+
var WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/React.forwardRef(function WatsonHealthInteractiveSegmentationCursor(_ref33, ref) {
|
864
858
|
var children = _ref33.children,
|
865
859
|
_ref33$size = _ref33.size,
|
866
860
|
size = _ref33$size === void 0 ? 16 : _ref33$size,
|
867
861
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref33, _excluded33);
|
868
|
-
return /*#__PURE__*/
|
862
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
869
863
|
width: size,
|
870
864
|
height: size,
|
871
865
|
ref: ref,
|
872
866
|
xmlns: "http://www.w3.org/2000/svg",
|
873
867
|
viewBox: "0 0 32 32",
|
874
868
|
fill: "currentColor"
|
875
|
-
}, rest), _path53 || (_path53 = /*#__PURE__*/
|
869
|
+
}, rest), _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
|
876
870
|
d: "M29.4139,24,15.9989,10.5663a2.0473,2.0473,0,0,0-2.8281,0l-2.586,2.586a2.0023,2.0023,0,0,0,0,2.8283L23.9989,29.4145a2.0021,2.0021,0,0,0,2.8281,0l2.5869-2.5865a1.9993,1.9993,0,0,0,0-2.8283Zm-17.415-9.4335,2.5859-2.5859,3.5,3.5L15.498,18.0676l-3.5-3.5ZM25.413,28l-8.5009-8.5188,2.5867-2.587L28,25.4143Z"
|
877
|
-
})), _path54 || (_path54 = /*#__PURE__*/
|
871
|
+
})), _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
|
878
872
|
d: "M7.586 18.586H10.414V21.413999999999998H7.586z",
|
879
873
|
transform: "rotate(-45 9 20)"
|
880
|
-
})), _path55 || (_path55 = /*#__PURE__*/
|
874
|
+
})), _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
|
881
875
|
d: "M18.586 7.586H21.413999999999998V10.414H18.586z",
|
882
876
|
transform: "rotate(-45 20 9)"
|
883
|
-
})), _path56 || (_path56 = /*#__PURE__*/
|
877
|
+
})), _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
|
884
878
|
d: "M7.586 7.586H10.414V10.414H7.586z",
|
885
879
|
transform: "rotate(-45 9 9)"
|
886
|
-
})), _path57 || (_path57 = /*#__PURE__*/
|
880
|
+
})), _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
|
887
881
|
d: "M11 2L2 2 2 11 4 11 4 4 11 4 11 2z"
|
888
882
|
})), children);
|
889
883
|
});
|
890
884
|
if (process.env.NODE_ENV !== "production") {
|
891
885
|
WatsonHealthInteractiveSegmentationCursor.propTypes = iconPropTypes4cbeb95d.i;
|
892
886
|
}
|
893
|
-
var InterfaceUsage = /*#__PURE__*/
|
887
|
+
var InterfaceUsage = /*#__PURE__*/React.forwardRef(function InterfaceUsage(_ref34, ref) {
|
894
888
|
var children = _ref34.children,
|
895
889
|
_ref34$size = _ref34.size,
|
896
890
|
size = _ref34$size === void 0 ? 16 : _ref34$size,
|
897
891
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref34, _excluded34);
|
898
|
-
return /*#__PURE__*/
|
892
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
899
893
|
width: size,
|
900
894
|
height: size,
|
901
895
|
ref: ref,
|
902
896
|
xmlns: "http://www.w3.org/2000/svg",
|
903
897
|
viewBox: "0 0 32 32",
|
904
898
|
fill: "currentColor"
|
905
|
-
}, rest), _path58 || (_path58 = /*#__PURE__*/
|
899
|
+
}, rest), _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
|
906
900
|
strokeWidth: "0",
|
907
901
|
d: "M18.3242 11.7334v1.29h-1.3242v1.7368h1.3242v7.2397h2.2012v-7.2397h1.8398v-1.7368h-1.8398v-1.9951h1.8398v-1.7539h-1.5649c-1.6167 0-2.4761.877-2.4761 2.459zM10 11.8193L11.582 11.8193 11.582 20.1772 10 20.1772 10 22 15.4516 22 15.4516 20.1772 13.8525 20.1772 13.8525 11.8193 15.4516 11.8193 15.4516 9.9966 10 9.9966 10 11.8193z"
|
908
|
-
})), _path59 || (_path59 = /*#__PURE__*/
|
902
|
+
})), _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
|
909
903
|
strokeWidth: "0",
|
910
904
|
d: "m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"
|
911
905
|
})), children);
|
@@ -913,130 +907,130 @@ var InterfaceUsage = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
913
907
|
if (process.env.NODE_ENV !== "production") {
|
914
908
|
InterfaceUsage.propTypes = iconPropTypes4cbeb95d.i;
|
915
909
|
}
|
916
|
-
var Intersect = /*#__PURE__*/
|
910
|
+
var Intersect = /*#__PURE__*/React.forwardRef(function Intersect(_ref35, ref) {
|
917
911
|
var children = _ref35.children,
|
918
912
|
_ref35$size = _ref35.size,
|
919
913
|
size = _ref35$size === void 0 ? 16 : _ref35$size,
|
920
914
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref35, _excluded35);
|
921
|
-
return /*#__PURE__*/
|
915
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
922
916
|
width: size,
|
923
917
|
height: size,
|
924
918
|
ref: ref,
|
925
919
|
xmlns: "http://www.w3.org/2000/svg",
|
926
920
|
viewBox: "0 0 32 32",
|
927
921
|
fill: "currentColor"
|
928
|
-
}, rest), _path60 || (_path60 = /*#__PURE__*/
|
922
|
+
}, rest), _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
|
929
923
|
d: "M22 24H18V22h4V18h2v4A2.0021 2.0021 0 0122 24zM10 14H8V10a2.0022 2.0022 0 012-2h4v2H10z"
|
930
|
-
})), _path61 || (_path61 = /*#__PURE__*/
|
924
|
+
})), _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
|
931
925
|
d: "M28,8H24V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V22a2.0023,2.0023,0,0,0,2,2H8v4a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V10A2.0023,2.0023,0,0,0,28,8Zm0,20H10V24h4V22H10V18H8v4H4V4H22V8H18v2h4v4h2V10h4Z"
|
932
926
|
})), children);
|
933
927
|
});
|
934
928
|
if (process.env.NODE_ENV !== "production") {
|
935
929
|
Intersect.propTypes = iconPropTypes4cbeb95d.i;
|
936
930
|
}
|
937
|
-
var IntrusionPrevention = /*#__PURE__*/
|
931
|
+
var IntrusionPrevention = /*#__PURE__*/React.forwardRef(function IntrusionPrevention(_ref36, ref) {
|
938
932
|
var children = _ref36.children,
|
939
933
|
_ref36$size = _ref36.size,
|
940
934
|
size = _ref36$size === void 0 ? 16 : _ref36$size,
|
941
935
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref36, _excluded36);
|
942
|
-
return /*#__PURE__*/
|
936
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
943
937
|
width: size,
|
944
938
|
height: size,
|
945
939
|
ref: ref,
|
946
940
|
xmlns: "http://www.w3.org/2000/svg",
|
947
941
|
viewBox: "0 0 32 32",
|
948
942
|
fill: "currentColor"
|
949
|
-
}, rest), _circle9 || (_circle9 = /*#__PURE__*/
|
943
|
+
}, rest), _circle9 || (_circle9 = /*#__PURE__*/React.createElement("circle", {
|
950
944
|
cx: "22",
|
951
945
|
cy: "23.887",
|
952
946
|
r: "2"
|
953
|
-
})), _path62 || (_path62 = /*#__PURE__*/
|
947
|
+
})), _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
|
954
948
|
d: "M29.7769 23.4785A8.64 8.64 0 0022 18a8.64 8.64 0 00-7.7769 5.4785L14 24l.2231.5215A8.64 8.64 0 0022 30a8.64 8.64 0 007.7769-5.4785L30 24zM22 28a4 4 0 114-4A4.0045 4.0045 0 0122 28zM25 10H4A2.0021 2.0021 0 012 8V4A2.0021 2.0021 0 014 2H25a2.0021 2.0021 0 012 2V8A2.0021 2.0021 0 0125 10zM4 4V8H25V4zM12 28H4V24h8V22H4a2.0023 2.0023 0 00-2 2v4a2.0023 2.0023 0 002 2h8z"
|
955
|
-
})), _path63 || (_path63 = /*#__PURE__*/
|
949
|
+
})), _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
|
956
950
|
d: "M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h5V18H7V14H28l.0007,2H30V14A2.0023,2.0023,0,0,0,28,12Z"
|
957
951
|
})), children);
|
958
952
|
});
|
959
953
|
if (process.env.NODE_ENV !== "production") {
|
960
954
|
IntrusionPrevention.propTypes = iconPropTypes4cbeb95d.i;
|
961
955
|
}
|
962
|
-
var InventoryManagement = /*#__PURE__*/
|
956
|
+
var InventoryManagement = /*#__PURE__*/React.forwardRef(function InventoryManagement(_ref37, ref) {
|
963
957
|
var children = _ref37.children,
|
964
958
|
_ref37$size = _ref37.size,
|
965
959
|
size = _ref37$size === void 0 ? 16 : _ref37$size,
|
966
960
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref37, _excluded37);
|
967
|
-
return /*#__PURE__*/
|
961
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
968
962
|
width: size,
|
969
963
|
height: size,
|
970
964
|
ref: ref,
|
971
965
|
xmlns: "http://www.w3.org/2000/svg",
|
972
966
|
viewBox: "0 0 32 32",
|
973
967
|
fill: "currentColor"
|
974
|
-
}, rest), _path64 || (_path64 = /*#__PURE__*/
|
968
|
+
}, rest), _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
|
975
969
|
d: "M19 24H23V28H19zM26 24H30V28H26zM19 17H23V21H19zM26 17H30V21H26z"
|
976
|
-
})), _path65 || (_path65 = /*#__PURE__*/
|
970
|
+
})), _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
|
977
971
|
d: "M17,24H4V10H28v5h2V10a2.0023,2.0023,0,0,0-2-2H22V4a2.0023,2.0023,0,0,0-2-2H12a2.002,2.002,0,0,0-2,2V8H4a2.002,2.002,0,0,0-2,2V24a2.0023,2.0023,0,0,0,2,2H17ZM12,4h8V8H12Z"
|
978
972
|
})), children);
|
979
973
|
});
|
980
974
|
if (process.env.NODE_ENV !== "production") {
|
981
975
|
InventoryManagement.propTypes = iconPropTypes4cbeb95d.i;
|
982
976
|
}
|
983
|
-
var IotConnect = /*#__PURE__*/
|
977
|
+
var IotConnect = /*#__PURE__*/React.forwardRef(function IotConnect(_ref38, ref) {
|
984
978
|
var children = _ref38.children,
|
985
979
|
_ref38$size = _ref38.size,
|
986
980
|
size = _ref38$size === void 0 ? 16 : _ref38$size,
|
987
981
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref38, _excluded38);
|
988
|
-
return /*#__PURE__*/
|
982
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
989
983
|
width: size,
|
990
984
|
height: size,
|
991
985
|
ref: ref,
|
992
986
|
xmlns: "http://www.w3.org/2000/svg",
|
993
987
|
viewBox: "0 0 32 32",
|
994
988
|
fill: "currentColor"
|
995
|
-
}, rest), _path66 || (_path66 = /*#__PURE__*/
|
989
|
+
}, rest), _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
|
996
990
|
d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z"
|
997
|
-
})), _path67 || (_path67 = /*#__PURE__*/
|
991
|
+
})), _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
|
998
992
|
d: "M26,2a4.0042,4.0042,0,0,0-4,4,3.9556,3.9556,0,0,0,.5668,2.0192L19.5859,11H11V21H21V12.4141l2.9808-2.9808A3.9553,3.9553,0,0,0,26,10a4,4,0,0,0,0-8ZM19,19H13V13h6ZM26,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,8Z"
|
999
993
|
})), children);
|
1000
994
|
});
|
1001
995
|
if (process.env.NODE_ENV !== "production") {
|
1002
996
|
IotConnect.propTypes = iconPropTypes4cbeb95d.i;
|
1003
997
|
}
|
1004
|
-
var IotPlatform = /*#__PURE__*/
|
998
|
+
var IotPlatform = /*#__PURE__*/React.forwardRef(function IotPlatform(_ref39, ref) {
|
1005
999
|
var children = _ref39.children,
|
1006
1000
|
_ref39$size = _ref39.size,
|
1007
1001
|
size = _ref39$size === void 0 ? 16 : _ref39$size,
|
1008
1002
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref39, _excluded39);
|
1009
|
-
return /*#__PURE__*/
|
1003
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1010
1004
|
width: size,
|
1011
1005
|
height: size,
|
1012
1006
|
ref: ref,
|
1013
1007
|
xmlns: "http://www.w3.org/2000/svg",
|
1014
1008
|
viewBox: "0 0 32 32",
|
1015
1009
|
fill: "currentColor"
|
1016
|
-
}, rest), _path68 || (_path68 = /*#__PURE__*/
|
1010
|
+
}, rest), _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
|
1017
1011
|
d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z"
|
1018
|
-
})), _path69 || (_path69 = /*#__PURE__*/
|
1012
|
+
})), _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
|
1019
1013
|
d: "M21 21H11V11H21zm-8-2h6V13H13zM31 13H29A10.0117 10.0117 0 0019 3V1A12.0131 12.0131 0 0131 13z"
|
1020
|
-
})), _path70 || (_path70 = /*#__PURE__*/
|
1014
|
+
})), _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
|
1021
1015
|
d: "M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z"
|
1022
1016
|
})), children);
|
1023
1017
|
});
|
1024
1018
|
if (process.env.NODE_ENV !== "production") {
|
1025
1019
|
IotPlatform.propTypes = iconPropTypes4cbeb95d.i;
|
1026
1020
|
}
|
1027
|
-
var Ip = /*#__PURE__*/
|
1021
|
+
var Ip = /*#__PURE__*/React.forwardRef(function Ip(_ref40, ref) {
|
1028
1022
|
var children = _ref40.children,
|
1029
1023
|
_ref40$size = _ref40.size,
|
1030
1024
|
size = _ref40$size === void 0 ? 16 : _ref40$size,
|
1031
1025
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref40, _excluded40);
|
1032
|
-
return /*#__PURE__*/
|
1026
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1033
1027
|
width: size,
|
1034
1028
|
height: size,
|
1035
1029
|
ref: ref,
|
1036
1030
|
xmlns: "http://www.w3.org/2000/svg",
|
1037
1031
|
viewBox: "0 0 32 32",
|
1038
1032
|
fill: "currentColor"
|
1039
|
-
}, rest), _path71 || (_path71 = /*#__PURE__*/
|
1033
|
+
}, rest), _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
|
1040
1034
|
strokeWidth: "0",
|
1041
1035
|
d: "M19 23h-2v-14h6c1.103 0 2 .897 2 2v5c0 1.103-.897 2-2 2h-4v5zm0-7h4v-5.0015h-4v5.0015zM7 11L10 11 10 21 7 21 7 23 15 23 15 21 12 21 12 11 15 11 15 9 7 9 7 11z"
|
1042
1036
|
})), children);
|
@@ -1044,199 +1038,199 @@ var Ip = /*#__PURE__*/React__default["default"].forwardRef(function Ip(_ref40, r
|
|
1044
1038
|
if (process.env.NODE_ENV !== "production") {
|
1045
1039
|
Ip.propTypes = iconPropTypes4cbeb95d.i;
|
1046
1040
|
}
|
1047
|
-
var Iso = /*#__PURE__*/
|
1041
|
+
var Iso = /*#__PURE__*/React.forwardRef(function Iso(_ref41, ref) {
|
1048
1042
|
var children = _ref41.children,
|
1049
1043
|
_ref41$size = _ref41.size,
|
1050
1044
|
size = _ref41$size === void 0 ? 16 : _ref41$size,
|
1051
1045
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref41, _excluded41);
|
1052
|
-
return /*#__PURE__*/
|
1046
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1053
1047
|
width: size,
|
1054
1048
|
height: size,
|
1055
1049
|
ref: ref,
|
1056
1050
|
xmlns: "http://www.w3.org/2000/svg",
|
1057
1051
|
viewBox: "0 0 32 32",
|
1058
1052
|
fill: "currentColor"
|
1059
|
-
}, rest), _path72 || (_path72 = /*#__PURE__*/
|
1053
|
+
}, rest), _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
|
1060
1054
|
d: "M28 23H24a2 2 0 01-2-2V11a2 2 0 012-2h4a2 2 0 012 2V21A2 2 0 0128 23zM24 11V21h4V11zM18 23H12V21h6V17H14a2 2 0 01-2-2V11a2 2 0 012-2h6v2H14v4h4a2 2 0 012 2v4A2 2 0 0118 23zM2 11L5 11 5 21 2 21 2 23 10 23 10 21 7 21 7 11 10 11 10 9 2 9 2 11z"
|
1061
1055
|
})), children);
|
1062
1056
|
});
|
1063
1057
|
if (process.env.NODE_ENV !== "production") {
|
1064
1058
|
Iso.propTypes = iconPropTypes4cbeb95d.i;
|
1065
1059
|
}
|
1066
|
-
var IsoFilled = /*#__PURE__*/
|
1060
|
+
var IsoFilled = /*#__PURE__*/React.forwardRef(function IsoFilled(_ref42, ref) {
|
1067
1061
|
var children = _ref42.children,
|
1068
1062
|
_ref42$size = _ref42.size,
|
1069
1063
|
size = _ref42$size === void 0 ? 16 : _ref42$size,
|
1070
1064
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref42, _excluded42);
|
1071
|
-
return /*#__PURE__*/
|
1065
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1072
1066
|
width: size,
|
1073
1067
|
height: size,
|
1074
1068
|
ref: ref,
|
1075
1069
|
xmlns: "http://www.w3.org/2000/svg",
|
1076
1070
|
viewBox: "0 0 32 32",
|
1077
1071
|
fill: "currentColor"
|
1078
|
-
}, rest), _path73 || (_path73 = /*#__PURE__*/
|
1072
|
+
}, rest), _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
|
1079
1073
|
d: "M21 13H24V19H21z"
|
1080
|
-
})), _path74 || (_path74 = /*#__PURE__*/
|
1074
|
+
})), _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
|
1081
1075
|
d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM8,21H6V11H8Zm9-8H12v2h3a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H10V19h5V17H12a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm9,6a2,2,0,0,1-2,2H21a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2Z"
|
1082
1076
|
})), children);
|
1083
1077
|
});
|
1084
1078
|
if (process.env.NODE_ENV !== "production") {
|
1085
1079
|
IsoFilled.propTypes = iconPropTypes4cbeb95d.i;
|
1086
1080
|
}
|
1087
|
-
var IsoOutline = /*#__PURE__*/
|
1081
|
+
var IsoOutline = /*#__PURE__*/React.forwardRef(function IsoOutline(_ref43, ref) {
|
1088
1082
|
var children = _ref43.children,
|
1089
1083
|
_ref43$size = _ref43.size,
|
1090
1084
|
size = _ref43$size === void 0 ? 16 : _ref43$size,
|
1091
1085
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref43, _excluded43);
|
1092
|
-
return /*#__PURE__*/
|
1086
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1093
1087
|
width: size,
|
1094
1088
|
height: size,
|
1095
1089
|
ref: ref,
|
1096
1090
|
xmlns: "http://www.w3.org/2000/svg",
|
1097
1091
|
viewBox: "0 0 32 32",
|
1098
1092
|
fill: "currentColor"
|
1099
|
-
}, rest), _path75 || (_path75 = /*#__PURE__*/
|
1093
|
+
}, rest), _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
|
1100
1094
|
d: "M24 21H21a2 2 0 01-2-2V13a2 2 0 012-2h3a2 2 0 012 2v6A2 2 0 0124 21zm-3-8v6h3V13zM15 21H10V19h5V17H12a2 2 0 01-2-2V13a2 2 0 012-2h5v2H12v2h3a2 2 0 012 2v2A2 2 0 0115 21zM6 11H8V21H6z"
|
1101
|
-
})), _path76 || (_path76 = /*#__PURE__*/
|
1095
|
+
})), _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
|
1102
1096
|
d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,24V8H28V24Z"
|
1103
1097
|
})), children);
|
1104
1098
|
});
|
1105
1099
|
if (process.env.NODE_ENV !== "production") {
|
1106
1100
|
IsoOutline.propTypes = iconPropTypes4cbeb95d.i;
|
1107
1101
|
}
|
1108
|
-
var JoinFull = /*#__PURE__*/
|
1102
|
+
var JoinFull = /*#__PURE__*/React.forwardRef(function JoinFull(_ref44, ref) {
|
1109
1103
|
var children = _ref44.children,
|
1110
1104
|
_ref44$size = _ref44.size,
|
1111
1105
|
size = _ref44$size === void 0 ? 16 : _ref44$size,
|
1112
1106
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref44, _excluded44);
|
1113
|
-
return /*#__PURE__*/
|
1107
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1114
1108
|
width: size,
|
1115
1109
|
height: size,
|
1116
1110
|
ref: ref,
|
1117
1111
|
xmlns: "http://www.w3.org/2000/svg",
|
1118
1112
|
viewBox: "0 0 32 32",
|
1119
1113
|
fill: "currentColor"
|
1120
|
-
}, rest), _path77 || (_path77 = /*#__PURE__*/
|
1114
|
+
}, rest), _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
|
1121
1115
|
fill: "none",
|
1122
1116
|
d: "M16,9.0752a7.9941,7.9941,0,0,1,0,13.85,7.9941,7.9941,0,0,1,0-13.85m0-2.2373a9.9953,9.9953,0,0,0,0,18.3242A9.9953,9.9953,0,0,0,16,6.8379Z",
|
1123
1117
|
"data-icon-path": "inner-path"
|
1124
|
-
})), _path78 || (_path78 = /*#__PURE__*/
|
1118
|
+
})), _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
|
1125
1119
|
d: "M10,16a9.9976,9.9976,0,0,1,6-9.1621,10,10,0,1,0,0,18.3242A9.9976,9.9976,0,0,1,10,16Z"
|
1126
|
-
})), _path79 || (_path79 = /*#__PURE__*/
|
1120
|
+
})), _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
|
1127
1121
|
d: "M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z"
|
1128
|
-
})), _path80 || (_path80 = /*#__PURE__*/
|
1122
|
+
})), _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
|
1129
1123
|
d: "M20,6a9.9539,9.9539,0,0,0-4,.8379,9.9953,9.9953,0,0,1,0,18.3242A9.9988,9.9988,0,1,0,20,6Z"
|
1130
1124
|
})), children);
|
1131
1125
|
});
|
1132
1126
|
if (process.env.NODE_ENV !== "production") {
|
1133
1127
|
JoinFull.propTypes = iconPropTypes4cbeb95d.i;
|
1134
1128
|
}
|
1135
|
-
var JoinInner = /*#__PURE__*/
|
1129
|
+
var JoinInner = /*#__PURE__*/React.forwardRef(function JoinInner(_ref45, ref) {
|
1136
1130
|
var children = _ref45.children,
|
1137
1131
|
_ref45$size = _ref45.size,
|
1138
1132
|
size = _ref45$size === void 0 ? 16 : _ref45$size,
|
1139
1133
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref45, _excluded45);
|
1140
|
-
return /*#__PURE__*/
|
1134
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1141
1135
|
width: size,
|
1142
1136
|
height: size,
|
1143
1137
|
ref: ref,
|
1144
1138
|
xmlns: "http://www.w3.org/2000/svg",
|
1145
1139
|
viewBox: "0 0 32 32",
|
1146
1140
|
fill: "currentColor"
|
1147
|
-
}, rest), _path81 || (_path81 = /*#__PURE__*/
|
1141
|
+
}, rest), _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
|
1148
1142
|
d: "M20,6a9.9355,9.9355,0,0,0-4,.8418A9.999,9.999,0,1,0,16,25.16,9.998,9.998,0,1,0,20,6ZM12,24A8,8,0,1,1,13.7573,8.2017a9.9734,9.9734,0,0,0,0,15.5986A7.9919,7.9919,0,0,1,12,24Zm8,0a7.9919,7.9919,0,0,1-1.7573-.2,9.9734,9.9734,0,0,0,0-15.5986A7.9972,7.9972,0,1,1,20,24Z"
|
1149
1143
|
})), children);
|
1150
1144
|
});
|
1151
1145
|
if (process.env.NODE_ENV !== "production") {
|
1152
1146
|
JoinInner.propTypes = iconPropTypes4cbeb95d.i;
|
1153
1147
|
}
|
1154
|
-
var JoinLeft = /*#__PURE__*/
|
1148
|
+
var JoinLeft = /*#__PURE__*/React.forwardRef(function JoinLeft(_ref46, ref) {
|
1155
1149
|
var children = _ref46.children,
|
1156
1150
|
_ref46$size = _ref46.size,
|
1157
1151
|
size = _ref46$size === void 0 ? 16 : _ref46$size,
|
1158
1152
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref46, _excluded46);
|
1159
|
-
return /*#__PURE__*/
|
1153
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1160
1154
|
width: size,
|
1161
1155
|
height: size,
|
1162
1156
|
ref: ref,
|
1163
1157
|
xmlns: "http://www.w3.org/2000/svg",
|
1164
1158
|
viewBox: "0 0 32 32",
|
1165
1159
|
fill: "currentColor"
|
1166
|
-
}, rest), _path82 || (_path82 = /*#__PURE__*/
|
1160
|
+
}, rest), _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
|
1167
1161
|
d: "M20,6a9.9272,9.9272,0,0,0-3.9968.8394,9.9758,9.9758,0,0,1,2.2451,1.36,8,8,0,1,1,0,15.6016,9.9758,9.9758,0,0,1-2.2451,1.36A9.9976,9.9976,0,1,0,20,6Z"
|
1168
|
-
})), _path83 || (_path83 = /*#__PURE__*/
|
1162
|
+
})), _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
|
1169
1163
|
d: "M12,16a8.01,8.01,0,0,0,6.2483,7.8008,9.9858,9.9858,0,0,0,0-15.6016A8.01,8.01,0,0,0,12,16Z"
|
1170
|
-
})), _path84 || (_path84 = /*#__PURE__*/
|
1164
|
+
})), _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
|
1171
1165
|
fill: "none",
|
1172
1166
|
d: "M12,16a8.01,8.01,0,0,1,6.2483-7.8008,9.9758,9.9758,0,0,0-2.2451-1.36,9.9909,9.9909,0,0,0,0,18.3212,9.9758,9.9758,0,0,0,2.2451-1.36A8.01,8.01,0,0,1,12,16Z",
|
1173
1167
|
"data-icon-path": "inner-path"
|
1174
|
-
})), _path85 || (_path85 = /*#__PURE__*/
|
1168
|
+
})), _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
|
1175
1169
|
d: "M10,16a10.0105,10.0105,0,0,1,6.0032-9.1606,10,10,0,1,0,0,18.3212A10.0105,10.0105,0,0,1,10,16Z"
|
1176
1170
|
})), children);
|
1177
1171
|
});
|
1178
1172
|
if (process.env.NODE_ENV !== "production") {
|
1179
1173
|
JoinLeft.propTypes = iconPropTypes4cbeb95d.i;
|
1180
1174
|
}
|
1181
|
-
var JoinOuter = /*#__PURE__*/
|
1175
|
+
var JoinOuter = /*#__PURE__*/React.forwardRef(function JoinOuter(_ref47, ref) {
|
1182
1176
|
var children = _ref47.children,
|
1183
1177
|
_ref47$size = _ref47.size,
|
1184
1178
|
size = _ref47$size === void 0 ? 16 : _ref47$size,
|
1185
1179
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref47, _excluded47);
|
1186
|
-
return /*#__PURE__*/
|
1180
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1187
1181
|
width: size,
|
1188
1182
|
height: size,
|
1189
1183
|
ref: ref,
|
1190
1184
|
xmlns: "http://www.w3.org/2000/svg",
|
1191
1185
|
viewBox: "0 0 32 32",
|
1192
1186
|
fill: "currentColor"
|
1193
|
-
}, rest), _path86 || (_path86 = /*#__PURE__*/
|
1187
|
+
}, rest), _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
|
1194
1188
|
d: "M20 6a9.9539 9.9539 0 00-4 .8379 9.9953 9.9953 0 010 18.3242A9.9988 9.9988 0 1020 6zM10 16a9.9976 9.9976 0 016-9.1621 10 10 0 100 18.3242A9.9976 9.9976 0 0110 16z"
|
1195
1189
|
})), children);
|
1196
1190
|
});
|
1197
1191
|
if (process.env.NODE_ENV !== "production") {
|
1198
1192
|
JoinOuter.propTypes = iconPropTypes4cbeb95d.i;
|
1199
1193
|
}
|
1200
|
-
var JoinRight = /*#__PURE__*/
|
1194
|
+
var JoinRight = /*#__PURE__*/React.forwardRef(function JoinRight(_ref48, ref) {
|
1201
1195
|
var children = _ref48.children,
|
1202
1196
|
_ref48$size = _ref48.size,
|
1203
1197
|
size = _ref48$size === void 0 ? 16 : _ref48$size,
|
1204
1198
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref48, _excluded48);
|
1205
|
-
return /*#__PURE__*/
|
1199
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1206
1200
|
width: size,
|
1207
1201
|
height: size,
|
1208
1202
|
ref: ref,
|
1209
1203
|
xmlns: "http://www.w3.org/2000/svg",
|
1210
1204
|
viewBox: "0 0 32 32",
|
1211
1205
|
fill: "currentColor"
|
1212
|
-
}, rest), _path87 || (_path87 = /*#__PURE__*/
|
1206
|
+
}, rest), _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
|
1213
1207
|
d: "M20,6a9.95,9.95,0,0,0-4.0032.8394,9.9909,9.9909,0,0,1,0,18.3212A9.9988,9.9988,0,1,0,20,6Z"
|
1214
|
-
})), _path88 || (_path88 = /*#__PURE__*/
|
1208
|
+
})), _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
|
1215
1209
|
fill: "none",
|
1216
1210
|
d: "M20,16a8.01,8.01,0,0,0-6.2483-7.8008,9.9758,9.9758,0,0,1,2.2451-1.36,9.9909,9.9909,0,0,1,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A8.01,8.01,0,0,0,20,16Z",
|
1217
1211
|
"data-icon-path": "inner-path"
|
1218
|
-
})), _path89 || (_path89 = /*#__PURE__*/
|
1212
|
+
})), _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
|
1219
1213
|
d: "M10,16a9.9759,9.9759,0,0,0,3.7517,7.8008,7.9937,7.9937,0,0,0,0-15.6016A9.9759,9.9759,0,0,0,10,16Z"
|
1220
|
-
})), _path90 || (_path90 = /*#__PURE__*/
|
1214
|
+
})), _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
|
1221
1215
|
d: "M12,24A8,8,0,1,1,13.7517,8.1992a9.9758,9.9758,0,0,1,2.2451-1.36,10,10,0,1,0,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A7.9727,7.9727,0,0,1,12,24Z"
|
1222
1216
|
})), children);
|
1223
1217
|
});
|
1224
1218
|
if (process.env.NODE_ENV !== "production") {
|
1225
1219
|
JoinRight.propTypes = iconPropTypes4cbeb95d.i;
|
1226
1220
|
}
|
1227
|
-
var JoinNode = /*#__PURE__*/
|
1221
|
+
var JoinNode = /*#__PURE__*/React.forwardRef(function JoinNode(_ref49, ref) {
|
1228
1222
|
var children = _ref49.children,
|
1229
1223
|
_ref49$size = _ref49.size,
|
1230
1224
|
size = _ref49$size === void 0 ? 16 : _ref49$size,
|
1231
1225
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref49, _excluded49);
|
1232
|
-
return /*#__PURE__*/
|
1226
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1233
1227
|
width: size,
|
1234
1228
|
height: size,
|
1235
1229
|
ref: ref,
|
1236
1230
|
xmlns: "http://www.w3.org/2000/svg",
|
1237
1231
|
viewBox: "0 0 32 32",
|
1238
1232
|
fill: "currentColor"
|
1239
|
-
}, rest), _path91 || (_path91 = /*#__PURE__*/
|
1233
|
+
}, rest), _path91 || (_path91 = /*#__PURE__*/React.createElement("path", {
|
1240
1234
|
strokeWidth: "0",
|
1241
1235
|
d: "M2 9H6V11H2zM2 21H6V23H2zM25 11L23.5859 12.4141 26.1719 15 18 15 18 4 12 4 12 9 8 9 8 11 12 11 12 21 8 21 8 23 12 23 12 28 18 28 18 17 26.1719 17 23.5859 19.5859 25 21 30 16 25 11z"
|
1242
1236
|
})), children);
|
@@ -1244,137 +1238,137 @@ var JoinNode = /*#__PURE__*/React__default["default"].forwardRef(function JoinNo
|
|
1244
1238
|
if (process.env.NODE_ENV !== "production") {
|
1245
1239
|
JoinNode.propTypes = iconPropTypes4cbeb95d.i;
|
1246
1240
|
}
|
1247
|
-
var Jpg = /*#__PURE__*/
|
1241
|
+
var Jpg = /*#__PURE__*/React.forwardRef(function Jpg(_ref50, ref) {
|
1248
1242
|
var children = _ref50.children,
|
1249
1243
|
_ref50$size = _ref50.size,
|
1250
1244
|
size = _ref50$size === void 0 ? 16 : _ref50$size,
|
1251
1245
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref50, _excluded50);
|
1252
|
-
return /*#__PURE__*/
|
1246
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1253
1247
|
width: size,
|
1254
1248
|
height: size,
|
1255
1249
|
ref: ref,
|
1256
1250
|
xmlns: "http://www.w3.org/2000/svg",
|
1257
1251
|
viewBox: "0 0 32 32",
|
1258
1252
|
fill: "currentColor"
|
1259
|
-
}, rest), _path92 || (_path92 = /*#__PURE__*/
|
1253
|
+
}, rest), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
|
1260
1254
|
d: "M30 23H24a2 2 0 01-2-2V11a2 2 0 012-2h6v2H24V21h4V17H26V15h4zM14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14zM8 23H4a2 2 0 01-2-2V19H4v2H8V9h2V21A2 2 0 018 23z"
|
1261
1255
|
})), children);
|
1262
1256
|
});
|
1263
1257
|
if (process.env.NODE_ENV !== "production") {
|
1264
1258
|
Jpg.propTypes = iconPropTypes4cbeb95d.i;
|
1265
1259
|
}
|
1266
|
-
var JsError = /*#__PURE__*/
|
1260
|
+
var JsError = /*#__PURE__*/React.forwardRef(function JsError(_ref51, ref) {
|
1267
1261
|
var children = _ref51.children,
|
1268
1262
|
_ref51$size = _ref51.size,
|
1269
1263
|
size = _ref51$size === void 0 ? 16 : _ref51$size,
|
1270
1264
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref51, _excluded51);
|
1271
|
-
return /*#__PURE__*/
|
1265
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1272
1266
|
width: size,
|
1273
1267
|
height: size,
|
1274
1268
|
ref: ref,
|
1275
1269
|
xmlns: "http://www.w3.org/2000/svg",
|
1276
1270
|
viewBox: "0 0 32 32",
|
1277
1271
|
fill: "currentColor"
|
1278
|
-
}, rest), _path93 || (_path93 = /*#__PURE__*/
|
1272
|
+
}, rest), _path93 || (_path93 = /*#__PURE__*/React.createElement("path", {
|
1279
1273
|
d: "M20.3335 30h-2.667c-.9189 0-1.6665-.7476-1.6665-1.6665v-2.3335h2v2h2v-8h2v8.3335c0 .9189-.7476 1.6665-1.6665 1.6665zM28.3335 30h-4.3335v-2h4v-2h-2c-1.103 0-2-.897-2-2v-2.3335c0-.9189.7476-1.6665 1.6665-1.6665h4.3335v2h-4v2h2c1.103 0 2 .897 2 2v2.3335c0 .9189-.7476 1.6665-1.6665 1.6665zM16 18c-.8284 0-1.5.6716-1.5 1.5s.6716 1.5 1.5 1.5 1.5-.6716 1.5-1.5-.6716-1.5-1.5-1.5h0zM15 7H17V16H15z"
|
1280
|
-
})), _path94 || (_path94 = /*#__PURE__*/
|
1274
|
+
})), _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
|
1281
1275
|
d: "m14,26h-4.5c-.3538,0-.6809-.1868-.8608-.4912L2.1392,14.5088c-.0928-.1569-.1392-.3329-.1392-.5088s.0464-.3519.1392-.5088L8.6392,2.4912c.1799-.3044.5071-.4912.8608-.4912h13c.3538,0,.6809.1868.8608.4912l6.5,11c.0928.1569.1392.3328.1392.5088s-.0464.3519-.1392.5088l-2,3.3845-1.7217-1.0173,1.6992-2.876-5.9089-10h-11.8589l-5.9089,10,5.9089,10h3.9294v2Z"
|
1282
1276
|
})), children);
|
1283
1277
|
});
|
1284
1278
|
if (process.env.NODE_ENV !== "production") {
|
1285
1279
|
JsError.propTypes = iconPropTypes4cbeb95d.i;
|
1286
1280
|
}
|
1287
|
-
var Json = /*#__PURE__*/
|
1281
|
+
var Json = /*#__PURE__*/React.forwardRef(function Json(_ref52, ref) {
|
1288
1282
|
var children = _ref52.children,
|
1289
1283
|
_ref52$size = _ref52.size,
|
1290
1284
|
size = _ref52$size === void 0 ? 16 : _ref52$size,
|
1291
1285
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref52, _excluded52);
|
1292
|
-
return /*#__PURE__*/
|
1286
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1293
1287
|
width: size,
|
1294
1288
|
height: size,
|
1295
1289
|
ref: ref,
|
1296
1290
|
xmlns: "http://www.w3.org/2000/svg",
|
1297
1291
|
viewBox: "0 0 32 32",
|
1298
1292
|
fill: "currentColor"
|
1299
|
-
}, rest), _path95 || (_path95 = /*#__PURE__*/
|
1293
|
+
}, rest), _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
|
1300
1294
|
d: "M31 11L31 21 29 21 27 15 27 21 25 21 25 11 27 11 29 17 29 11 31 11zM21.3335 21h-2.667A1.6684 1.6684 0 0117 19.3335v-6.667A1.6684 1.6684 0 0118.6665 11h2.667A1.6684 1.6684 0 0123 12.6665v6.667A1.6684 1.6684 0 0121.3335 21zM19 19h2V13H19zM13.3335 21H9V19h4V17H11a2.002 2.002 0 01-2-2V12.6665A1.6684 1.6684 0 0110.6665 11H15v2H11v2h2a2.002 2.002 0 012 2v2.3335A1.6684 1.6684 0 0113.3335 21zM5.3335 21H2.6665A1.6684 1.6684 0 011 19.3335V17H3v2H5V11H7v8.3335A1.6684 1.6684 0 015.3335 21z"
|
1301
1295
|
})), children);
|
1302
1296
|
});
|
1303
1297
|
if (process.env.NODE_ENV !== "production") {
|
1304
1298
|
Json.propTypes = iconPropTypes4cbeb95d.i;
|
1305
1299
|
}
|
1306
|
-
var JsonReference = /*#__PURE__*/
|
1300
|
+
var JsonReference = /*#__PURE__*/React.forwardRef(function JsonReference(_ref53, ref) {
|
1307
1301
|
var children = _ref53.children,
|
1308
1302
|
_ref53$size = _ref53.size,
|
1309
1303
|
size = _ref53$size === void 0 ? 16 : _ref53$size,
|
1310
1304
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref53, _excluded53);
|
1311
|
-
return /*#__PURE__*/
|
1305
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1312
1306
|
width: size,
|
1313
1307
|
height: size,
|
1314
1308
|
ref: ref,
|
1315
1309
|
xmlns: "http://www.w3.org/2000/svg",
|
1316
1310
|
viewBox: "0 0 32 32",
|
1317
1311
|
fill: "currentColor"
|
1318
|
-
}, rest), _path96 || (_path96 = /*#__PURE__*/
|
1312
|
+
}, rest), _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
|
1319
1313
|
d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM29 12L27 6 25 6 25 16 27 16 27 10 29 16 31 16 31 6 29 6 29 12zM21.3335 6h-2.667A1.6683 1.6683 0 0017 7.6665v6.667A1.6684 1.6684 0 0018.6665 16h2.667A1.6683 1.6683 0 0023 14.3335V7.6665A1.6683 1.6683 0 0021.3335 6zM21 14H19V8h2zM9 7.6665V10a2.002 2.002 0 002 2h2v2H9v2h4.3335A1.6683 1.6683 0 0015 14.3335V12a2.002 2.002 0 00-2-2H11V8h4V6H10.6665A1.6683 1.6683 0 009 7.6665zM5 14H3V12H1v2.3335A1.6684 1.6684 0 002.6665 16h2.667A1.6683 1.6683 0 007 14.3335V6H5z"
|
1320
1314
|
})), children);
|
1321
1315
|
});
|
1322
1316
|
if (process.env.NODE_ENV !== "production") {
|
1323
1317
|
JsonReference.propTypes = iconPropTypes4cbeb95d.i;
|
1324
1318
|
}
|
1325
|
-
var JumpLink = /*#__PURE__*/
|
1319
|
+
var JumpLink = /*#__PURE__*/React.forwardRef(function JumpLink(_ref54, ref) {
|
1326
1320
|
var children = _ref54.children,
|
1327
1321
|
_ref54$size = _ref54.size,
|
1328
1322
|
size = _ref54$size === void 0 ? 16 : _ref54$size,
|
1329
1323
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref54, _excluded54);
|
1330
|
-
return /*#__PURE__*/
|
1324
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1331
1325
|
width: size,
|
1332
1326
|
height: size,
|
1333
1327
|
ref: ref,
|
1334
1328
|
xmlns: "http://www.w3.org/2000/svg",
|
1335
1329
|
viewBox: "0 0 32 32",
|
1336
1330
|
fill: "currentColor"
|
1337
|
-
}, rest), _path97 || (_path97 = /*#__PURE__*/
|
1331
|
+
}, rest), _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
|
1338
1332
|
d: "M13.4141,17.5859,18,22.1719V8H8V6H18a2.0024,2.0024,0,0,1,2,2V22.1719l4.5859-4.586L26,19l-7,7-7-7Z"
|
1339
1333
|
})), children);
|
1340
1334
|
});
|
1341
1335
|
if (process.env.NODE_ENV !== "production") {
|
1342
1336
|
JumpLink.propTypes = iconPropTypes4cbeb95d.i;
|
1343
1337
|
}
|
1344
|
-
var KeepDry = /*#__PURE__*/
|
1338
|
+
var KeepDry = /*#__PURE__*/React.forwardRef(function KeepDry(_ref55, ref) {
|
1345
1339
|
var children = _ref55.children,
|
1346
1340
|
_ref55$size = _ref55.size,
|
1347
1341
|
size = _ref55$size === void 0 ? 16 : _ref55$size,
|
1348
1342
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref55, _excluded55);
|
1349
|
-
return /*#__PURE__*/
|
1343
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1350
1344
|
width: size,
|
1351
1345
|
height: size,
|
1352
1346
|
ref: ref,
|
1353
1347
|
xmlns: "http://www.w3.org/2000/svg",
|
1354
1348
|
viewBox: "0 0 32 32",
|
1355
1349
|
fill: "currentColor"
|
1356
|
-
}, rest), _path98 || (_path98 = /*#__PURE__*/
|
1350
|
+
}, rest), _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
|
1357
1351
|
d: "M25,10a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L24.17.4141a1.0381,1.0381,0,0,1,1.6592,0L28.3154,4.11A3.9693,3.9693,0,0,1,29,6.223,3.8978,3.8978,0,0,1,25,10Zm0-7.2368L23.3438,5.2257A1.89,1.89,0,0,0,23,6.223a2.014,2.014,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z"
|
1358
|
-
})), _path99 || (_path99 = /*#__PURE__*/
|
1352
|
+
})), _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
|
1359
1353
|
d: "M29.9854,15.83a13.9726,13.9726,0,0,0-1.8147-4.8323L26.4329,12.001a12.092,12.092,0,0,1,1.07,2.2124A5.4079,5.4079,0,0,0,26,14a6.5439,6.5439,0,0,0-3.939,1.333,14.5177,14.5177,0,0,0-3.0456-8.9341A13.8858,13.8858,0,0,0,17,4.4014V2H15V4.0464A14.3808,14.3808,0,0,0,2.0146,15.83,1,1,0,0,0,3.51,16.86,4.8551,4.8551,0,0,1,6,16a4.8653,4.8653,0,0,1,4.1406,2.5107,1.0393,1.0393,0,0,0,1.7188,0A5.02,5.02,0,0,1,15,16.1255V25.5a2.5,2.5,0,0,1-5,0V25H8v.5a4.5,4.5,0,0,0,9,0V16.1255a5.02,5.02,0,0,1,3.1406,2.3852.9994.9994,0,0,0,1.7188,0A4.8653,4.8653,0,0,1,26,16a4.8551,4.8551,0,0,1,2.49.86,1,1,0,0,0,1.4957-1.03ZM9.939,15.333A6.5439,6.5439,0,0,0,6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4413,12.4413,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333ZM16,14a6.5526,6.5526,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0564-9.1763,3.4307,2.6768,4.009,6.9487,4.0522,9.1728A6.552,6.552,0,0,0,16,14Z"
|
1360
1354
|
})), children);
|
1361
1355
|
});
|
1362
1356
|
if (process.env.NODE_ENV !== "production") {
|
1363
1357
|
KeepDry.propTypes = iconPropTypes4cbeb95d.i;
|
1364
1358
|
}
|
1365
|
-
var Key = /*#__PURE__*/
|
1359
|
+
var Key = /*#__PURE__*/React.forwardRef(function Key(_ref56, ref) {
|
1366
1360
|
var children = _ref56.children,
|
1367
1361
|
_ref56$size = _ref56.size,
|
1368
1362
|
size = _ref56$size === void 0 ? 16 : _ref56$size,
|
1369
1363
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref56, _excluded56);
|
1370
|
-
return /*#__PURE__*/
|
1364
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1371
1365
|
width: size,
|
1372
1366
|
height: size,
|
1373
1367
|
ref: ref,
|
1374
1368
|
xmlns: "http://www.w3.org/2000/svg",
|
1375
1369
|
viewBox: "0 0 32 32",
|
1376
1370
|
fill: "currentColor"
|
1377
|
-
}, rest), _path100 || (_path100 = /*#__PURE__*/
|
1371
|
+
}, rest), _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
|
1378
1372
|
strokeWidth: "0",
|
1379
1373
|
d: "M30 9L28.0001 9 26 16 24.0001 9 22 9 25 17.9996 25 23 27 23 27 18 27.0001 18 30 9zM21 11L21 9 13 9 13 23 21 23 21 21 15 21 15 17 20 17 20 15 15 15 15 11 21 11zM11 9L8.8941 9 5 15.5527 5 9 3 9 3 23 5 23 5 18.7062 5.9277 17.2208 8.8941 23 11 23 7.1093 15.4308 11 9z"
|
1380
1374
|
})), children);
|
@@ -1382,64 +1376,64 @@ var Key = /*#__PURE__*/React__default["default"].forwardRef(function Key(_ref56,
|
|
1382
1376
|
if (process.env.NODE_ENV !== "production") {
|
1383
1377
|
Key.propTypes = iconPropTypes4cbeb95d.i;
|
1384
1378
|
}
|
1385
|
-
var Keyboard = /*#__PURE__*/
|
1379
|
+
var Keyboard = /*#__PURE__*/React.forwardRef(function Keyboard(_ref57, ref) {
|
1386
1380
|
var children = _ref57.children,
|
1387
1381
|
_ref57$size = _ref57.size,
|
1388
1382
|
size = _ref57$size === void 0 ? 16 : _ref57$size,
|
1389
1383
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref57, _excluded57);
|
1390
|
-
return /*#__PURE__*/
|
1384
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1391
1385
|
width: size,
|
1392
1386
|
height: size,
|
1393
1387
|
ref: ref,
|
1394
1388
|
xmlns: "http://www.w3.org/2000/svg",
|
1395
1389
|
viewBox: "0 0 32 32",
|
1396
1390
|
fill: "currentColor"
|
1397
|
-
}, rest), _path101 || (_path101 = /*#__PURE__*/
|
1391
|
+
}, rest), _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
|
1398
1392
|
d: "M28,26H4a2,2,0,0,1-2-2V10A2,2,0,0,1,4,8H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,10V24H28V10Z"
|
1399
|
-
})), _path102 || (_path102 = /*#__PURE__*/
|
1393
|
+
})), _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
|
1400
1394
|
d: "M10 20H21V22H10zM6 12H8V14H6zM10 12H12V14H10zM14 12H16V14H14zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM14 16H16V18H14zM22 12H26V14H22zM22 16H26V18H22zM18 16H20V18H18zM23 20H26V22H23z"
|
1401
1395
|
})), children);
|
1402
1396
|
});
|
1403
1397
|
if (process.env.NODE_ENV !== "production") {
|
1404
1398
|
Keyboard.propTypes = iconPropTypes4cbeb95d.i;
|
1405
1399
|
}
|
1406
|
-
var KeyboardOff = /*#__PURE__*/
|
1400
|
+
var KeyboardOff = /*#__PURE__*/React.forwardRef(function KeyboardOff(_ref58, ref) {
|
1407
1401
|
var children = _ref58.children,
|
1408
1402
|
_ref58$size = _ref58.size,
|
1409
1403
|
size = _ref58$size === void 0 ? 16 : _ref58$size,
|
1410
1404
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref58, _excluded58);
|
1411
|
-
return /*#__PURE__*/
|
1405
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1412
1406
|
width: size,
|
1413
1407
|
height: size,
|
1414
1408
|
ref: ref,
|
1415
1409
|
xmlns: "http://www.w3.org/2000/svg",
|
1416
1410
|
viewBox: "0 0 32 32",
|
1417
1411
|
fill: "currentColor"
|
1418
|
-
}, rest), _path103 || (_path103 = /*#__PURE__*/
|
1412
|
+
}, rest), _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
|
1419
1413
|
d: "M6 12H8V14H6zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM22 12H26V14H22zM22 16H26V18H22z"
|
1420
|
-
})), _path104 || (_path104 = /*#__PURE__*/
|
1414
|
+
})), _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
|
1421
1415
|
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"
|
1422
1416
|
})), children);
|
1423
1417
|
});
|
1424
1418
|
if (process.env.NODE_ENV !== "production") {
|
1425
1419
|
KeyboardOff.propTypes = iconPropTypes4cbeb95d.i;
|
1426
1420
|
}
|
1427
|
-
var Kubelet = /*#__PURE__*/
|
1421
|
+
var Kubelet = /*#__PURE__*/React.forwardRef(function Kubelet(_ref59, ref) {
|
1428
1422
|
var children = _ref59.children,
|
1429
1423
|
_ref59$size = _ref59.size,
|
1430
1424
|
size = _ref59$size === void 0 ? 16 : _ref59$size,
|
1431
1425
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref59, _excluded59);
|
1432
|
-
return /*#__PURE__*/
|
1426
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1433
1427
|
width: size,
|
1434
1428
|
height: size,
|
1435
1429
|
ref: ref,
|
1436
1430
|
xmlns: "http://www.w3.org/2000/svg",
|
1437
1431
|
viewBox: "0 0 32 32",
|
1438
1432
|
fill: "currentColor"
|
1439
|
-
}, rest), _path105 || (_path105 = /*#__PURE__*/
|
1433
|
+
}, rest), _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
|
1440
1434
|
strokeWidth: "0",
|
1441
1435
|
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"
|
1442
|
-
})), _path106 || (_path106 = /*#__PURE__*/
|
1436
|
+
})), _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
|
1443
1437
|
strokeWidth: "0",
|
1444
1438
|
d: "m16,28H6c-1.1028,0-2-.8972-2-2V6c0-1.1028.8972-2,2-2h20c1.1028,0,2,.8972,2,2v9h-2V6H6v20h10v2Z"
|
1445
1439
|
})), children);
|
@@ -1447,7 +1441,7 @@ var Kubelet = /*#__PURE__*/React__default["default"].forwardRef(function Kubelet
|
|
1447
1441
|
if (process.env.NODE_ENV !== "production") {
|
1448
1442
|
Kubelet.propTypes = iconPropTypes4cbeb95d.i;
|
1449
1443
|
}
|
1450
|
-
var Kubernetes = /*#__PURE__*/
|
1444
|
+
var Kubernetes = /*#__PURE__*/React.forwardRef(function Kubernetes(_ref60, ref) {
|
1451
1445
|
var children = _ref60.children,
|
1452
1446
|
_ref60$size = _ref60.size,
|
1453
1447
|
size = _ref60$size === void 0 ? 16 : _ref60$size,
|
@@ -1458,37 +1452,37 @@ var Kubernetes = /*#__PURE__*/React__default["default"].forwardRef(function Kube
|
|
1458
1452
|
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.");
|
1459
1453
|
}
|
1460
1454
|
}
|
1461
|
-
return /*#__PURE__*/
|
1455
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1462
1456
|
width: size,
|
1463
1457
|
height: size,
|
1464
1458
|
ref: ref,
|
1465
1459
|
xmlns: "http://www.w3.org/2000/svg",
|
1466
1460
|
viewBox: "0 0 32 32",
|
1467
1461
|
fill: "currentColor"
|
1468
|
-
}, rest), _path107 || (_path107 = /*#__PURE__*/
|
1462
|
+
}, rest), _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
|
1469
1463
|
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"
|
1470
1464
|
})), children);
|
1471
1465
|
});
|
1472
1466
|
if (process.env.NODE_ENV !== "production") {
|
1473
1467
|
Kubernetes.propTypes = iconPropTypes4cbeb95d.i;
|
1474
1468
|
}
|
1475
|
-
var KubernetesControlPlaneNode = /*#__PURE__*/
|
1469
|
+
var KubernetesControlPlaneNode = /*#__PURE__*/React.forwardRef(function KubernetesControlPlaneNode(_ref61, ref) {
|
1476
1470
|
var children = _ref61.children,
|
1477
1471
|
_ref61$size = _ref61.size,
|
1478
1472
|
size = _ref61$size === void 0 ? 16 : _ref61$size,
|
1479
1473
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref61, _excluded61);
|
1480
|
-
return /*#__PURE__*/
|
1474
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1481
1475
|
width: size,
|
1482
1476
|
height: size,
|
1483
1477
|
ref: ref,
|
1484
1478
|
xmlns: "http://www.w3.org/2000/svg",
|
1485
1479
|
viewBox: "0 0 32 32",
|
1486
1480
|
fill: "currentColor"
|
1487
|
-
}, rest), _path108 || (_path108 = /*#__PURE__*/
|
1481
|
+
}, rest), _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
|
1488
1482
|
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"
|
1489
|
-
})), _path109 || (_path109 = /*#__PURE__*/
|
1483
|
+
})), _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
|
1490
1484
|
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"
|
1491
|
-
})), _path110 || (_path110 = /*#__PURE__*/
|
1485
|
+
})), _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
|
1492
1486
|
fill: "none",
|
1493
1487
|
d: "M0 0h32v32H0z"
|
1494
1488
|
})), children);
|
@@ -1496,49 +1490,49 @@ var KubernetesControlPlaneNode = /*#__PURE__*/React__default["default"].forwardR
|
|
1496
1490
|
if (process.env.NODE_ENV !== "production") {
|
1497
1491
|
KubernetesControlPlaneNode.propTypes = iconPropTypes4cbeb95d.i;
|
1498
1492
|
}
|
1499
|
-
var KubernetesIpAddress = /*#__PURE__*/
|
1493
|
+
var KubernetesIpAddress = /*#__PURE__*/React.forwardRef(function KubernetesIpAddress(_ref62, ref) {
|
1500
1494
|
var children = _ref62.children,
|
1501
1495
|
_ref62$size = _ref62.size,
|
1502
1496
|
size = _ref62$size === void 0 ? 16 : _ref62$size,
|
1503
1497
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref62, _excluded62);
|
1504
|
-
return /*#__PURE__*/
|
1498
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1505
1499
|
width: size,
|
1506
1500
|
height: size,
|
1507
1501
|
ref: ref,
|
1508
1502
|
xmlns: "http://www.w3.org/2000/svg",
|
1509
1503
|
viewBox: "0 0 32 32",
|
1510
1504
|
fill: "currentColor"
|
1511
|
-
}, rest), _circle10 || (_circle10 = /*#__PURE__*/
|
1505
|
+
}, rest), _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
|
1512
1506
|
cx: "16",
|
1513
1507
|
cy: "9",
|
1514
1508
|
r: "2"
|
1515
|
-
})), _circle11 || (_circle11 = /*#__PURE__*/
|
1509
|
+
})), _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
|
1516
1510
|
cx: "16",
|
1517
1511
|
cy: "16",
|
1518
1512
|
r: "2"
|
1519
|
-
})), _path111 || (_path111 = /*#__PURE__*/
|
1513
|
+
})), _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
|
1520
1514
|
d: "m18.8157,26c-.302-.8472-.9685-1.5137-1.8157-1.8159v-2.1841h3c.2969,0,.5781-.1318.7683-.3599l5-6c.1982-.2378.2751-.5547.2078-.8569l-2-9c-.0696-.3145-.2864-.5757-.5823-.7021l-7-3c-.1257-.0542-.2598-.0811-.3938-.0811s-.2681.0269-.3938.0811l-7.0015,3c-.2959.1265-.5127.3877-.5825.7021l-1.9985,9c-.0671.3027.0098.6191.208.8569l5,6c.1902.228.4714.3599.7683.3599h3v2.1846c-.8472.3018-1.5137.9683-1.8157,1.8154H4v2h9.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h9.1843v-2h-9.1843Zm-10.7329-11.2627l1.7808-8.02,6.1365-2.6294,6.135,2.6294,1.7822,8.02-4.3855,5.2627h-7.0635l-4.3855-5.2627Zm7.9172,13.2627c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
|
1521
1515
|
})), children);
|
1522
1516
|
});
|
1523
1517
|
if (process.env.NODE_ENV !== "production") {
|
1524
1518
|
KubernetesIpAddress.propTypes = iconPropTypes4cbeb95d.i;
|
1525
1519
|
}
|
1526
|
-
var KubernetesOperator = /*#__PURE__*/
|
1520
|
+
var KubernetesOperator = /*#__PURE__*/React.forwardRef(function KubernetesOperator(_ref63, ref) {
|
1527
1521
|
var children = _ref63.children,
|
1528
1522
|
_ref63$size = _ref63.size,
|
1529
1523
|
size = _ref63$size === void 0 ? 16 : _ref63$size,
|
1530
1524
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref63, _excluded63);
|
1531
|
-
return /*#__PURE__*/
|
1525
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1532
1526
|
width: size,
|
1533
1527
|
height: size,
|
1534
1528
|
ref: ref,
|
1535
1529
|
xmlns: "http://www.w3.org/2000/svg",
|
1536
1530
|
viewBox: "0 0 32 32",
|
1537
1531
|
fill: "currentColor"
|
1538
|
-
}, rest), _path112 || (_path112 = /*#__PURE__*/
|
1532
|
+
}, rest), _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
|
1539
1533
|
strokeWidth: "0",
|
1540
1534
|
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"
|
1541
|
-
})), _path113 || (_path113 = /*#__PURE__*/
|
1535
|
+
})), _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
|
1542
1536
|
strokeWidth: "0",
|
1543
1537
|
d: "m30,16c0-7.7197-6.2803-14-14-14S2,8.2803,2,16s6.2803,14,14,14c2.7773,0,5.417-.7959,7.7012-2.3081.3948.1914.8315.3081,1.2988.3081,1.6543,0,3-1.3457,3-3,0-.4673-.1167-.9043-.3079-1.2988,1.5122-2.2842,2.3079-4.9238,2.3079-7.7012Zm-26,0c0-6.6167,5.3833-12,12-12s12,5.3833,12,12c0,2.248-.6152,4.3877-1.7744,6.2681-.375-.1689-.7881-.2681-1.2256-.2681-1.6543,0-3,1.3457-3,3,0,.4375.0991.8506.2681,1.2256-1.8801,1.1592-4.0198,1.7744-6.2681,1.7744-6.6167,0-12-5.3833-12-12Zm21,10c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
|
1544
1538
|
})), children);
|
@@ -1546,44 +1540,44 @@ var KubernetesOperator = /*#__PURE__*/React__default["default"].forwardRef(funct
|
|
1546
1540
|
if (process.env.NODE_ENV !== "production") {
|
1547
1541
|
KubernetesOperator.propTypes = iconPropTypes4cbeb95d.i;
|
1548
1542
|
}
|
1549
|
-
var KubernetesPod = /*#__PURE__*/
|
1543
|
+
var KubernetesPod = /*#__PURE__*/React.forwardRef(function KubernetesPod(_ref64, ref) {
|
1550
1544
|
var children = _ref64.children,
|
1551
1545
|
_ref64$size = _ref64.size,
|
1552
1546
|
size = _ref64$size === void 0 ? 16 : _ref64$size,
|
1553
1547
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref64, _excluded64);
|
1554
|
-
return /*#__PURE__*/
|
1548
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1555
1549
|
width: size,
|
1556
1550
|
height: size,
|
1557
1551
|
ref: ref,
|
1558
1552
|
xmlns: "http://www.w3.org/2000/svg",
|
1559
1553
|
viewBox: "0 0 32 32",
|
1560
1554
|
fill: "currentColor"
|
1561
|
-
}, rest), _path114 || (_path114 = /*#__PURE__*/
|
1555
|
+
}, rest), _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
|
1562
1556
|
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"
|
1563
|
-
})), _path115 || (_path115 = /*#__PURE__*/
|
1557
|
+
})), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
|
1564
1558
|
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"
|
1565
1559
|
})), children);
|
1566
1560
|
});
|
1567
1561
|
if (process.env.NODE_ENV !== "production") {
|
1568
1562
|
KubernetesPod.propTypes = iconPropTypes4cbeb95d.i;
|
1569
1563
|
}
|
1570
|
-
var KubernetesWorkerNode = /*#__PURE__*/
|
1564
|
+
var KubernetesWorkerNode = /*#__PURE__*/React.forwardRef(function KubernetesWorkerNode(_ref65, ref) {
|
1571
1565
|
var children = _ref65.children,
|
1572
1566
|
_ref65$size = _ref65.size,
|
1573
1567
|
size = _ref65$size === void 0 ? 16 : _ref65$size,
|
1574
1568
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref65, _excluded65);
|
1575
|
-
return /*#__PURE__*/
|
1569
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1576
1570
|
width: size,
|
1577
1571
|
height: size,
|
1578
1572
|
ref: ref,
|
1579
1573
|
xmlns: "http://www.w3.org/2000/svg",
|
1580
1574
|
viewBox: "0 0 32 32",
|
1581
1575
|
fill: "currentColor"
|
1582
|
-
}, rest), _path116 || (_path116 = /*#__PURE__*/
|
1576
|
+
}, rest), _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
|
1583
1577
|
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"
|
1584
|
-
})), _path117 || (_path117 = /*#__PURE__*/
|
1578
|
+
})), _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
|
1585
1579
|
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"
|
1586
|
-
})), _path118 || (_path118 = /*#__PURE__*/
|
1580
|
+
})), _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
|
1587
1581
|
fill: "none",
|
1588
1582
|
d: "M0 0h32v32H0z"
|
1589
1583
|
})), children);
|
@@ -1591,253 +1585,253 @@ var KubernetesWorkerNode = /*#__PURE__*/React__default["default"].forwardRef(fun
|
|
1591
1585
|
if (process.env.NODE_ENV !== "production") {
|
1592
1586
|
KubernetesWorkerNode.propTypes = iconPropTypes4cbeb95d.i;
|
1593
1587
|
}
|
1594
|
-
var Label = /*#__PURE__*/
|
1588
|
+
var Label = /*#__PURE__*/React.forwardRef(function Label(_ref66, ref) {
|
1595
1589
|
var children = _ref66.children,
|
1596
1590
|
_ref66$size = _ref66.size,
|
1597
1591
|
size = _ref66$size === void 0 ? 16 : _ref66$size,
|
1598
1592
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref66, _excluded66);
|
1599
|
-
return /*#__PURE__*/
|
1593
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1600
1594
|
width: size,
|
1601
1595
|
height: size,
|
1602
1596
|
ref: ref,
|
1603
1597
|
xmlns: "http://www.w3.org/2000/svg",
|
1604
1598
|
viewBox: "0 0 32 32",
|
1605
1599
|
fill: "currentColor"
|
1606
|
-
}, rest), _path119 || (_path119 = /*#__PURE__*/
|
1600
|
+
}, rest), _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
|
1607
1601
|
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"
|
1608
|
-
})), _path120 || (_path120 = /*#__PURE__*/
|
1602
|
+
})), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
|
1609
1603
|
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"
|
1610
1604
|
})), children);
|
1611
1605
|
});
|
1612
1606
|
if (process.env.NODE_ENV !== "production") {
|
1613
1607
|
Label.propTypes = iconPropTypes4cbeb95d.i;
|
1614
1608
|
}
|
1615
|
-
var Language = /*#__PURE__*/
|
1609
|
+
var Language = /*#__PURE__*/React.forwardRef(function Language(_ref67, ref) {
|
1616
1610
|
var children = _ref67.children,
|
1617
1611
|
_ref67$size = _ref67.size,
|
1618
1612
|
size = _ref67$size === void 0 ? 16 : _ref67$size,
|
1619
1613
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref67, _excluded67);
|
1620
|
-
return /*#__PURE__*/
|
1614
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1621
1615
|
width: size,
|
1622
1616
|
height: size,
|
1623
1617
|
ref: ref,
|
1624
1618
|
xmlns: "http://www.w3.org/2000/svg",
|
1625
1619
|
viewBox: "0 0 32 32",
|
1626
1620
|
fill: "currentColor"
|
1627
|
-
}, rest), _path121 || (_path121 = /*#__PURE__*/
|
1621
|
+
}, rest), _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
|
1628
1622
|
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"
|
1629
1623
|
})), children);
|
1630
1624
|
});
|
1631
1625
|
if (process.env.NODE_ENV !== "production") {
|
1632
1626
|
Language.propTypes = iconPropTypes4cbeb95d.i;
|
1633
1627
|
}
|
1634
|
-
var Laptop = /*#__PURE__*/
|
1628
|
+
var Laptop = /*#__PURE__*/React.forwardRef(function Laptop(_ref68, ref) {
|
1635
1629
|
var children = _ref68.children,
|
1636
1630
|
_ref68$size = _ref68.size,
|
1637
1631
|
size = _ref68$size === void 0 ? 16 : _ref68$size,
|
1638
1632
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref68, _excluded68);
|
1639
|
-
return /*#__PURE__*/
|
1633
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1640
1634
|
width: size,
|
1641
1635
|
height: size,
|
1642
1636
|
ref: ref,
|
1643
1637
|
xmlns: "http://www.w3.org/2000/svg",
|
1644
1638
|
viewBox: "0 0 32 32",
|
1645
1639
|
fill: "currentColor"
|
1646
|
-
}, rest), _path122 || (_path122 = /*#__PURE__*/
|
1640
|
+
}, rest), _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
|
1647
1641
|
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",
|
1648
1642
|
transform: "translate(0 .005)"
|
1649
|
-
})), _path123 || (_path123 = /*#__PURE__*/
|
1643
|
+
})), _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
|
1650
1644
|
d: "M2 26.005H30V28.005H2z"
|
1651
1645
|
})), children);
|
1652
1646
|
});
|
1653
1647
|
if (process.env.NODE_ENV !== "production") {
|
1654
1648
|
Laptop.propTypes = iconPropTypes4cbeb95d.i;
|
1655
1649
|
}
|
1656
|
-
var Lasso = /*#__PURE__*/
|
1650
|
+
var Lasso = /*#__PURE__*/React.forwardRef(function Lasso(_ref69, ref) {
|
1657
1651
|
var children = _ref69.children,
|
1658
1652
|
_ref69$size = _ref69.size,
|
1659
1653
|
size = _ref69$size === void 0 ? 16 : _ref69$size,
|
1660
1654
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref69, _excluded69);
|
1661
|
-
return /*#__PURE__*/
|
1655
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1662
1656
|
width: size,
|
1663
1657
|
height: size,
|
1664
1658
|
ref: ref,
|
1665
1659
|
xmlns: "http://www.w3.org/2000/svg",
|
1666
1660
|
viewBox: "0 0 32 32",
|
1667
1661
|
fill: "currentColor"
|
1668
|
-
}, rest), _path124 || (_path124 = /*#__PURE__*/
|
1662
|
+
}, rest), _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
|
1669
1663
|
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"
|
1670
1664
|
})), children);
|
1671
1665
|
});
|
1672
1666
|
if (process.env.NODE_ENV !== "production") {
|
1673
1667
|
Lasso.propTypes = iconPropTypes4cbeb95d.i;
|
1674
1668
|
}
|
1675
|
-
var LassoPolygon = /*#__PURE__*/
|
1669
|
+
var LassoPolygon = /*#__PURE__*/React.forwardRef(function LassoPolygon(_ref70, ref) {
|
1676
1670
|
var children = _ref70.children,
|
1677
1671
|
_ref70$size = _ref70.size,
|
1678
1672
|
size = _ref70$size === void 0 ? 16 : _ref70$size,
|
1679
1673
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref70, _excluded70);
|
1680
|
-
return /*#__PURE__*/
|
1674
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1681
1675
|
width: size,
|
1682
1676
|
height: size,
|
1683
1677
|
ref: ref,
|
1684
1678
|
xmlns: "http://www.w3.org/2000/svg",
|
1685
1679
|
viewBox: "0 0 32 32",
|
1686
1680
|
fill: "currentColor"
|
1687
|
-
}, rest), _path125 || (_path125 = /*#__PURE__*/
|
1681
|
+
}, rest), _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
|
1688
1682
|
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"
|
1689
1683
|
})), children);
|
1690
1684
|
});
|
1691
1685
|
if (process.env.NODE_ENV !== "production") {
|
1692
1686
|
LassoPolygon.propTypes = iconPropTypes4cbeb95d.i;
|
1693
1687
|
}
|
1694
|
-
var Launch = /*#__PURE__*/
|
1688
|
+
var Launch = /*#__PURE__*/React.forwardRef(function Launch(_ref71, ref) {
|
1695
1689
|
var children = _ref71.children,
|
1696
1690
|
_ref71$size = _ref71.size,
|
1697
1691
|
size = _ref71$size === void 0 ? 16 : _ref71$size,
|
1698
1692
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref71, _excluded71);
|
1699
1693
|
if (size === 16 || size === "16" || size === "16px") {
|
1700
|
-
return /*#__PURE__*/
|
1694
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1701
1695
|
width: size,
|
1702
1696
|
height: size,
|
1703
1697
|
ref: ref,
|
1704
1698
|
xmlns: "http://www.w3.org/2000/svg",
|
1705
1699
|
viewBox: "0 0 16 16",
|
1706
1700
|
fill: "currentColor"
|
1707
|
-
}, rest), _path126 || (_path126 = /*#__PURE__*/
|
1701
|
+
}, rest), _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
|
1708
1702
|
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"
|
1709
|
-
})), _path127 || (_path127 = /*#__PURE__*/
|
1703
|
+
})), _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
|
1710
1704
|
d: "M10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"
|
1711
1705
|
})), children);
|
1712
1706
|
}
|
1713
|
-
return /*#__PURE__*/
|
1707
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1714
1708
|
width: size,
|
1715
1709
|
height: size,
|
1716
1710
|
ref: ref,
|
1717
1711
|
xmlns: "http://www.w3.org/2000/svg",
|
1718
1712
|
viewBox: "0 0 32 32",
|
1719
1713
|
fill: "currentColor"
|
1720
|
-
}, rest), _path128 || (_path128 = /*#__PURE__*/
|
1714
|
+
}, rest), _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
|
1721
1715
|
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"
|
1722
|
-
})), _path129 || (_path129 = /*#__PURE__*/
|
1716
|
+
})), _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
|
1723
1717
|
d: "M20 2L20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"
|
1724
1718
|
})), children);
|
1725
1719
|
});
|
1726
1720
|
if (process.env.NODE_ENV !== "production") {
|
1727
1721
|
Launch.propTypes = iconPropTypes4cbeb95d.i;
|
1728
1722
|
}
|
1729
|
-
var WatsonHealthLaunchStudy_1 = /*#__PURE__*/
|
1723
|
+
var WatsonHealthLaunchStudy_1 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_1(_ref72, ref) {
|
1730
1724
|
var children = _ref72.children,
|
1731
1725
|
_ref72$size = _ref72.size,
|
1732
1726
|
size = _ref72$size === void 0 ? 16 : _ref72$size,
|
1733
1727
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref72, _excluded72);
|
1734
|
-
return /*#__PURE__*/
|
1728
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1735
1729
|
width: size,
|
1736
1730
|
height: size,
|
1737
1731
|
ref: ref,
|
1738
1732
|
xmlns: "http://www.w3.org/2000/svg",
|
1739
1733
|
viewBox: "0 0 32 32",
|
1740
1734
|
fill: "currentColor"
|
1741
|
-
}, rest), _circle12 || (_circle12 = /*#__PURE__*/
|
1735
|
+
}, rest), _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
|
1742
1736
|
cx: "23",
|
1743
1737
|
cy: "25",
|
1744
1738
|
r: "1"
|
1745
|
-
})), _path130 || (_path130 = /*#__PURE__*/
|
1739
|
+
})), _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
|
1746
1740
|
d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 10.59L17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"
|
1747
|
-
})), _path131 || (_path131 = /*#__PURE__*/
|
1741
|
+
})), _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
|
1748
1742
|
d: "M8 24H20V26H8z"
|
1749
1743
|
})), children);
|
1750
1744
|
});
|
1751
1745
|
if (process.env.NODE_ENV !== "production") {
|
1752
1746
|
WatsonHealthLaunchStudy_1.propTypes = iconPropTypes4cbeb95d.i;
|
1753
1747
|
}
|
1754
|
-
var WatsonHealthLaunchStudy_2 = /*#__PURE__*/
|
1748
|
+
var WatsonHealthLaunchStudy_2 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_2(_ref73, ref) {
|
1755
1749
|
var children = _ref73.children,
|
1756
1750
|
_ref73$size = _ref73.size,
|
1757
1751
|
size = _ref73$size === void 0 ? 16 : _ref73$size,
|
1758
1752
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref73, _excluded73);
|
1759
|
-
return /*#__PURE__*/
|
1753
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1760
1754
|
width: size,
|
1761
1755
|
height: size,
|
1762
1756
|
ref: ref,
|
1763
1757
|
xmlns: "http://www.w3.org/2000/svg",
|
1764
1758
|
viewBox: "0 0 32 32",
|
1765
1759
|
fill: "currentColor"
|
1766
|
-
}, rest), _circle13 || (_circle13 = /*#__PURE__*/
|
1760
|
+
}, rest), _circle13 || (_circle13 = /*#__PURE__*/React.createElement("circle", {
|
1767
1761
|
cx: "23",
|
1768
1762
|
cy: "7",
|
1769
1763
|
r: "1"
|
1770
|
-
})), _path132 || (_path132 = /*#__PURE__*/
|
1764
|
+
})), _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
|
1771
1765
|
d: "M26 4v6H6V4H26m0-2H6A2 2 0 004 4v6a2 2 0 002 2H26a2 2 0 002-2V4a2 2 0 00-2-2zM20.59 21.41L17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z"
|
1772
|
-
})), _path133 || (_path133 = /*#__PURE__*/
|
1766
|
+
})), _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
|
1773
1767
|
d: "M8 6H20V8H8z"
|
1774
1768
|
})), children);
|
1775
1769
|
});
|
1776
1770
|
if (process.env.NODE_ENV !== "production") {
|
1777
1771
|
WatsonHealthLaunchStudy_2.propTypes = iconPropTypes4cbeb95d.i;
|
1778
1772
|
}
|
1779
|
-
var WatsonHealthLaunchStudy_3 = /*#__PURE__*/
|
1773
|
+
var WatsonHealthLaunchStudy_3 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_3(_ref74, ref) {
|
1780
1774
|
var children = _ref74.children,
|
1781
1775
|
_ref74$size = _ref74.size,
|
1782
1776
|
size = _ref74$size === void 0 ? 16 : _ref74$size,
|
1783
1777
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref74, _excluded74);
|
1784
|
-
return /*#__PURE__*/
|
1778
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1785
1779
|
width: size,
|
1786
1780
|
height: size,
|
1787
1781
|
ref: ref,
|
1788
1782
|
xmlns: "http://www.w3.org/2000/svg",
|
1789
1783
|
viewBox: "0 0 32 32",
|
1790
1784
|
fill: "currentColor"
|
1791
|
-
}, rest), _circle14 || (_circle14 = /*#__PURE__*/
|
1785
|
+
}, rest), _circle14 || (_circle14 = /*#__PURE__*/React.createElement("circle", {
|
1792
1786
|
cx: "23",
|
1793
1787
|
cy: "25",
|
1794
1788
|
r: "1"
|
1795
|
-
})), _path134 || (_path134 = /*#__PURE__*/
|
1789
|
+
})), _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
|
1796
1790
|
d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 4.59L17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z"
|
1797
|
-
})), _path135 || (_path135 = /*#__PURE__*/
|
1791
|
+
})), _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
|
1798
1792
|
d: "M20.59 10.59L16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59zM8 24H20V26H8z"
|
1799
1793
|
})), children);
|
1800
1794
|
});
|
1801
1795
|
if (process.env.NODE_ENV !== "production") {
|
1802
1796
|
WatsonHealthLaunchStudy_3.propTypes = iconPropTypes4cbeb95d.i;
|
1803
1797
|
}
|
1804
|
-
var Layers = /*#__PURE__*/
|
1798
|
+
var Layers = /*#__PURE__*/React.forwardRef(function Layers(_ref75, ref) {
|
1805
1799
|
var children = _ref75.children,
|
1806
1800
|
_ref75$size = _ref75.size,
|
1807
1801
|
size = _ref75$size === void 0 ? 16 : _ref75$size,
|
1808
1802
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref75, _excluded75);
|
1809
|
-
return /*#__PURE__*/
|
1803
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1810
1804
|
width: size,
|
1811
1805
|
height: size,
|
1812
1806
|
ref: ref,
|
1813
1807
|
xmlns: "http://www.w3.org/2000/svg",
|
1814
1808
|
viewBox: "0 0 32 32",
|
1815
1809
|
fill: "currentColor"
|
1816
|
-
}, rest), _path136 || (_path136 = /*#__PURE__*/
|
1810
|
+
}, rest), _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
|
1817
1811
|
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"
|
1818
|
-
})), _path137 || (_path137 = /*#__PURE__*/
|
1812
|
+
})), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
|
1819
1813
|
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"
|
1820
1814
|
})), children);
|
1821
1815
|
});
|
1822
1816
|
if (process.env.NODE_ENV !== "production") {
|
1823
1817
|
Layers.propTypes = iconPropTypes4cbeb95d.i;
|
1824
1818
|
}
|
1825
|
-
var LayersExternal = /*#__PURE__*/
|
1819
|
+
var LayersExternal = /*#__PURE__*/React.forwardRef(function LayersExternal(_ref76, ref) {
|
1826
1820
|
var children = _ref76.children,
|
1827
1821
|
_ref76$size = _ref76.size,
|
1828
1822
|
size = _ref76$size === void 0 ? 16 : _ref76$size,
|
1829
1823
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref76, _excluded76);
|
1830
|
-
return /*#__PURE__*/
|
1824
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1831
1825
|
width: size,
|
1832
1826
|
height: size,
|
1833
1827
|
ref: ref,
|
1834
1828
|
xmlns: "http://www.w3.org/2000/svg",
|
1835
1829
|
viewBox: "0 0 32 32",
|
1836
1830
|
fill: "currentColor"
|
1837
|
-
}, rest), _path138 || (_path138 = /*#__PURE__*/
|
1831
|
+
}, rest), _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
|
1838
1832
|
strokeWidth: "0",
|
1839
1833
|
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"
|
1840
|
-
})), _path139 || (_path139 = /*#__PURE__*/
|
1834
|
+
})), _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
|
1841
1835
|
strokeWidth: "0",
|
1842
1836
|
d: "M16 30c-.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.1196zM29.4741 9.1196L16 1.8643v2.2715l10.8906 5.8643-10.8906 5.8643v2.2715l13.4741-7.2554c.324-.1743.5259-.5122.5259-.8804s-.2019-.7061-.5259-.8804zM4.4141 9.4141l3.5859-3.586v8.1719s2 0 2 0V5.8281s3.5859 3.5859 3.5859 3.5859l1.4141-1.414L9 2 3 8l1.4141 1.4141z"
|
1843
1837
|
})), children);
|
@@ -1845,896 +1839,896 @@ var LayersExternal = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
1845
1839
|
if (process.env.NODE_ENV !== "production") {
|
1846
1840
|
LayersExternal.propTypes = iconPropTypes4cbeb95d.i;
|
1847
1841
|
}
|
1848
|
-
var Legend = /*#__PURE__*/
|
1842
|
+
var Legend = /*#__PURE__*/React.forwardRef(function Legend(_ref77, ref) {
|
1849
1843
|
var children = _ref77.children,
|
1850
1844
|
_ref77$size = _ref77.size,
|
1851
1845
|
size = _ref77$size === void 0 ? 16 : _ref77$size,
|
1852
1846
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref77, _excluded77);
|
1853
|
-
return /*#__PURE__*/
|
1847
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1854
1848
|
width: size,
|
1855
1849
|
height: size,
|
1856
1850
|
ref: ref,
|
1857
1851
|
xmlns: "http://www.w3.org/2000/svg",
|
1858
1852
|
viewBox: "0 0 32 32",
|
1859
1853
|
fill: "currentColor"
|
1860
|
-
}, rest), _path140 || (_path140 = /*#__PURE__*/
|
1854
|
+
}, rest), _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
|
1861
1855
|
d: "M16 22H30V24H16z"
|
1862
|
-
})), _rect || (_rect = /*#__PURE__*/
|
1856
|
+
})), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
|
1863
1857
|
width: "6",
|
1864
1858
|
height: "6",
|
1865
1859
|
x: "4",
|
1866
1860
|
y: "20",
|
1867
1861
|
rx: "1"
|
1868
|
-
})), _path141 || (_path141 = /*#__PURE__*/
|
1862
|
+
})), _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
|
1869
1863
|
d: "M16 8H30V10H16zM9.5 12h-5a.5.5 0 01-.4473-.7236l2.5-5.0224a.5206.5206 0 01.8945 0l2.5 5.0225A.5.5 0 019.5 12z"
|
1870
1864
|
})), children);
|
1871
1865
|
});
|
1872
1866
|
if (process.env.NODE_ENV !== "production") {
|
1873
1867
|
Legend.propTypes = iconPropTypes4cbeb95d.i;
|
1874
1868
|
}
|
1875
|
-
var LetterAa = /*#__PURE__*/
|
1869
|
+
var LetterAa = /*#__PURE__*/React.forwardRef(function LetterAa(_ref78, ref) {
|
1876
1870
|
var children = _ref78.children,
|
1877
1871
|
_ref78$size = _ref78.size,
|
1878
1872
|
size = _ref78$size === void 0 ? 16 : _ref78$size,
|
1879
1873
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref78, _excluded78);
|
1880
|
-
return /*#__PURE__*/
|
1874
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1881
1875
|
width: size,
|
1882
1876
|
height: size,
|
1883
1877
|
ref: ref,
|
1884
1878
|
xmlns: "http://www.w3.org/2000/svg",
|
1885
1879
|
viewBox: "0 0 32 32",
|
1886
1880
|
fill: "currentColor"
|
1887
|
-
}, rest), _path142 || (_path142 = /*#__PURE__*/
|
1881
|
+
}, rest), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
|
1888
1882
|
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"
|
1889
1883
|
})), children);
|
1890
1884
|
});
|
1891
1885
|
if (process.env.NODE_ENV !== "production") {
|
1892
1886
|
LetterAa.propTypes = iconPropTypes4cbeb95d.i;
|
1893
1887
|
}
|
1894
|
-
var LetterBb = /*#__PURE__*/
|
1888
|
+
var LetterBb = /*#__PURE__*/React.forwardRef(function LetterBb(_ref79, ref) {
|
1895
1889
|
var children = _ref79.children,
|
1896
1890
|
_ref79$size = _ref79.size,
|
1897
1891
|
size = _ref79$size === void 0 ? 16 : _ref79$size,
|
1898
1892
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref79, _excluded79);
|
1899
|
-
return /*#__PURE__*/
|
1893
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1900
1894
|
width: size,
|
1901
1895
|
height: size,
|
1902
1896
|
ref: ref,
|
1903
1897
|
xmlns: "http://www.w3.org/2000/svg",
|
1904
1898
|
viewBox: "0 0 32 32",
|
1905
1899
|
fill: "currentColor"
|
1906
|
-
}, rest), _path143 || (_path143 = /*#__PURE__*/
|
1900
|
+
}, rest), _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
|
1907
1901
|
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"
|
1908
1902
|
})), children);
|
1909
1903
|
});
|
1910
1904
|
if (process.env.NODE_ENV !== "production") {
|
1911
1905
|
LetterBb.propTypes = iconPropTypes4cbeb95d.i;
|
1912
1906
|
}
|
1913
|
-
var LetterCc = /*#__PURE__*/
|
1907
|
+
var LetterCc = /*#__PURE__*/React.forwardRef(function LetterCc(_ref80, ref) {
|
1914
1908
|
var children = _ref80.children,
|
1915
1909
|
_ref80$size = _ref80.size,
|
1916
1910
|
size = _ref80$size === void 0 ? 16 : _ref80$size,
|
1917
1911
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref80, _excluded80);
|
1918
|
-
return /*#__PURE__*/
|
1912
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1919
1913
|
width: size,
|
1920
1914
|
height: size,
|
1921
1915
|
ref: ref,
|
1922
1916
|
xmlns: "http://www.w3.org/2000/svg",
|
1923
1917
|
viewBox: "0 0 32 32",
|
1924
1918
|
fill: "currentColor"
|
1925
|
-
}, rest), _path144 || (_path144 = /*#__PURE__*/
|
1919
|
+
}, rest), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
|
1926
1920
|
d: "M24 23H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v6h5zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z"
|
1927
1921
|
})), children);
|
1928
1922
|
});
|
1929
1923
|
if (process.env.NODE_ENV !== "production") {
|
1930
1924
|
LetterCc.propTypes = iconPropTypes4cbeb95d.i;
|
1931
1925
|
}
|
1932
|
-
var LetterDd = /*#__PURE__*/
|
1926
|
+
var LetterDd = /*#__PURE__*/React.forwardRef(function LetterDd(_ref81, ref) {
|
1933
1927
|
var children = _ref81.children,
|
1934
1928
|
_ref81$size = _ref81.size,
|
1935
1929
|
size = _ref81$size === void 0 ? 16 : _ref81$size,
|
1936
1930
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref81, _excluded81);
|
1937
|
-
return /*#__PURE__*/
|
1931
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1938
1932
|
width: size,
|
1939
1933
|
height: size,
|
1940
1934
|
ref: ref,
|
1941
1935
|
xmlns: "http://www.w3.org/2000/svg",
|
1942
1936
|
viewBox: "0 0 32 32",
|
1943
1937
|
fill: "currentColor"
|
1944
|
-
}, rest), _path145 || (_path145 = /*#__PURE__*/
|
1938
|
+
}, rest), _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
|
1945
1939
|
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"
|
1946
1940
|
})), children);
|
1947
1941
|
});
|
1948
1942
|
if (process.env.NODE_ENV !== "production") {
|
1949
1943
|
LetterDd.propTypes = iconPropTypes4cbeb95d.i;
|
1950
1944
|
}
|
1951
|
-
var LetterEe = /*#__PURE__*/
|
1945
|
+
var LetterEe = /*#__PURE__*/React.forwardRef(function LetterEe(_ref82, ref) {
|
1952
1946
|
var children = _ref82.children,
|
1953
1947
|
_ref82$size = _ref82.size,
|
1954
1948
|
size = _ref82$size === void 0 ? 16 : _ref82$size,
|
1955
1949
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref82, _excluded82);
|
1956
|
-
return /*#__PURE__*/
|
1950
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1957
1951
|
width: size,
|
1958
1952
|
height: size,
|
1959
1953
|
ref: ref,
|
1960
1954
|
xmlns: "http://www.w3.org/2000/svg",
|
1961
1955
|
viewBox: "0 0 32 32",
|
1962
1956
|
fill: "currentColor"
|
1963
|
-
}, rest), _path146 || (_path146 = /*#__PURE__*/
|
1957
|
+
}, rest), _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
|
1964
1958
|
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"
|
1965
1959
|
})), children);
|
1966
1960
|
});
|
1967
1961
|
if (process.env.NODE_ENV !== "production") {
|
1968
1962
|
LetterEe.propTypes = iconPropTypes4cbeb95d.i;
|
1969
1963
|
}
|
1970
|
-
var LetterFf = /*#__PURE__*/
|
1964
|
+
var LetterFf = /*#__PURE__*/React.forwardRef(function LetterFf(_ref83, ref) {
|
1971
1965
|
var children = _ref83.children,
|
1972
1966
|
_ref83$size = _ref83.size,
|
1973
1967
|
size = _ref83$size === void 0 ? 16 : _ref83$size,
|
1974
1968
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref83, _excluded83);
|
1975
|
-
return /*#__PURE__*/
|
1969
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1976
1970
|
width: size,
|
1977
1971
|
height: size,
|
1978
1972
|
ref: ref,
|
1979
1973
|
xmlns: "http://www.w3.org/2000/svg",
|
1980
1974
|
viewBox: "0 0 32 32",
|
1981
1975
|
fill: "currentColor"
|
1982
|
-
}, rest), _path147 || (_path147 = /*#__PURE__*/
|
1976
|
+
}, rest), _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
|
1983
1977
|
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"
|
1984
1978
|
})), children);
|
1985
1979
|
});
|
1986
1980
|
if (process.env.NODE_ENV !== "production") {
|
1987
1981
|
LetterFf.propTypes = iconPropTypes4cbeb95d.i;
|
1988
1982
|
}
|
1989
|
-
var LetterGg = /*#__PURE__*/
|
1983
|
+
var LetterGg = /*#__PURE__*/React.forwardRef(function LetterGg(_ref84, ref) {
|
1990
1984
|
var children = _ref84.children,
|
1991
1985
|
_ref84$size = _ref84.size,
|
1992
1986
|
size = _ref84$size === void 0 ? 16 : _ref84$size,
|
1993
1987
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref84, _excluded84);
|
1994
|
-
return /*#__PURE__*/
|
1988
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1995
1989
|
width: size,
|
1996
1990
|
height: size,
|
1997
1991
|
ref: ref,
|
1998
1992
|
xmlns: "http://www.w3.org/2000/svg",
|
1999
1993
|
viewBox: "0 0 32 32",
|
2000
1994
|
fill: "currentColor"
|
2001
|
-
}, rest), _path148 || (_path148 = /*#__PURE__*/
|
1995
|
+
}, rest), _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
|
2002
1996
|
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"
|
2003
1997
|
})), children);
|
2004
1998
|
});
|
2005
1999
|
if (process.env.NODE_ENV !== "production") {
|
2006
2000
|
LetterGg.propTypes = iconPropTypes4cbeb95d.i;
|
2007
2001
|
}
|
2008
|
-
var LetterHh = /*#__PURE__*/
|
2002
|
+
var LetterHh = /*#__PURE__*/React.forwardRef(function LetterHh(_ref85, ref) {
|
2009
2003
|
var children = _ref85.children,
|
2010
2004
|
_ref85$size = _ref85.size,
|
2011
2005
|
size = _ref85$size === void 0 ? 16 : _ref85$size,
|
2012
2006
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref85, _excluded85);
|
2013
|
-
return /*#__PURE__*/
|
2007
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2014
2008
|
width: size,
|
2015
2009
|
height: size,
|
2016
2010
|
ref: ref,
|
2017
2011
|
xmlns: "http://www.w3.org/2000/svg",
|
2018
2012
|
viewBox: "0 0 32 32",
|
2019
2013
|
fill: "currentColor"
|
2020
|
-
}, rest), _path149 || (_path149 = /*#__PURE__*/
|
2014
|
+
}, rest), _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
|
2021
2015
|
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"
|
2022
2016
|
})), children);
|
2023
2017
|
});
|
2024
2018
|
if (process.env.NODE_ENV !== "production") {
|
2025
2019
|
LetterHh.propTypes = iconPropTypes4cbeb95d.i;
|
2026
2020
|
}
|
2027
|
-
var LetterIi = /*#__PURE__*/
|
2021
|
+
var LetterIi = /*#__PURE__*/React.forwardRef(function LetterIi(_ref86, ref) {
|
2028
2022
|
var children = _ref86.children,
|
2029
2023
|
_ref86$size = _ref86.size,
|
2030
2024
|
size = _ref86$size === void 0 ? 16 : _ref86$size,
|
2031
2025
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref86, _excluded86);
|
2032
|
-
return /*#__PURE__*/
|
2026
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2033
2027
|
width: size,
|
2034
2028
|
height: size,
|
2035
2029
|
ref: ref,
|
2036
2030
|
xmlns: "http://www.w3.org/2000/svg",
|
2037
2031
|
viewBox: "0 0 32 32",
|
2038
2032
|
fill: "currentColor"
|
2039
|
-
}, rest), _path150 || (_path150 = /*#__PURE__*/
|
2033
|
+
}, rest), _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
|
2040
2034
|
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"
|
2041
2035
|
})), children);
|
2042
2036
|
});
|
2043
2037
|
if (process.env.NODE_ENV !== "production") {
|
2044
2038
|
LetterIi.propTypes = iconPropTypes4cbeb95d.i;
|
2045
2039
|
}
|
2046
|
-
var LetterJj = /*#__PURE__*/
|
2040
|
+
var LetterJj = /*#__PURE__*/React.forwardRef(function LetterJj(_ref87, ref) {
|
2047
2041
|
var children = _ref87.children,
|
2048
2042
|
_ref87$size = _ref87.size,
|
2049
2043
|
size = _ref87$size === void 0 ? 16 : _ref87$size,
|
2050
2044
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref87, _excluded87);
|
2051
|
-
return /*#__PURE__*/
|
2045
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2052
2046
|
width: size,
|
2053
2047
|
height: size,
|
2054
2048
|
ref: ref,
|
2055
2049
|
xmlns: "http://www.w3.org/2000/svg",
|
2056
2050
|
viewBox: "0 0 32 32",
|
2057
2051
|
fill: "currentColor"
|
2058
|
-
}, rest), _path151 || (_path151 = /*#__PURE__*/
|
2052
|
+
}, rest), _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
|
2059
2053
|
d: "M20 9H22V11H20zM20 25H17v2h3a2 2 0 002-2V13H20zM14 23H10a2 2 0 01-2-2V19h2v2h4V9h2V21A2 2 0 0114 23z"
|
2060
2054
|
})), children);
|
2061
2055
|
});
|
2062
2056
|
if (process.env.NODE_ENV !== "production") {
|
2063
2057
|
LetterJj.propTypes = iconPropTypes4cbeb95d.i;
|
2064
2058
|
}
|
2065
|
-
var LetterKk = /*#__PURE__*/
|
2059
|
+
var LetterKk = /*#__PURE__*/React.forwardRef(function LetterKk(_ref88, ref) {
|
2066
2060
|
var children = _ref88.children,
|
2067
2061
|
_ref88$size = _ref88.size,
|
2068
2062
|
size = _ref88$size === void 0 ? 16 : _ref88$size,
|
2069
2063
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref88, _excluded88);
|
2070
|
-
return /*#__PURE__*/
|
2064
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2071
2065
|
width: size,
|
2072
2066
|
height: size,
|
2073
2067
|
ref: ref,
|
2074
2068
|
xmlns: "http://www.w3.org/2000/svg",
|
2075
2069
|
viewBox: "0 0 32 32",
|
2076
2070
|
fill: "currentColor"
|
2077
|
-
}, rest), _path152 || (_path152 = /*#__PURE__*/
|
2071
|
+
}, rest), _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
|
2078
2072
|
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"
|
2079
2073
|
})), children);
|
2080
2074
|
});
|
2081
2075
|
if (process.env.NODE_ENV !== "production") {
|
2082
2076
|
LetterKk.propTypes = iconPropTypes4cbeb95d.i;
|
2083
2077
|
}
|
2084
|
-
var LetterLl = /*#__PURE__*/
|
2078
|
+
var LetterLl = /*#__PURE__*/React.forwardRef(function LetterLl(_ref89, ref) {
|
2085
2079
|
var children = _ref89.children,
|
2086
2080
|
_ref89$size = _ref89.size,
|
2087
2081
|
size = _ref89$size === void 0 ? 16 : _ref89$size,
|
2088
2082
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref89, _excluded89);
|
2089
|
-
return /*#__PURE__*/
|
2083
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2090
2084
|
width: size,
|
2091
2085
|
height: size,
|
2092
2086
|
ref: ref,
|
2093
2087
|
xmlns: "http://www.w3.org/2000/svg",
|
2094
2088
|
viewBox: "0 0 32 32",
|
2095
2089
|
fill: "currentColor"
|
2096
|
-
}, rest), _path153 || (_path153 = /*#__PURE__*/
|
2090
|
+
}, rest), _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
|
2097
2091
|
d: "M11 21L11 9 9 9 9 23 17 23 17 21 11 21zM23 23H21a2 2 0 01-2-2V9h2V21h2z"
|
2098
2092
|
})), children);
|
2099
2093
|
});
|
2100
2094
|
if (process.env.NODE_ENV !== "production") {
|
2101
2095
|
LetterLl.propTypes = iconPropTypes4cbeb95d.i;
|
2102
2096
|
}
|
2103
|
-
var LetterMm = /*#__PURE__*/
|
2097
|
+
var LetterMm = /*#__PURE__*/React.forwardRef(function LetterMm(_ref90, ref) {
|
2104
2098
|
var children = _ref90.children,
|
2105
2099
|
_ref90$size = _ref90.size,
|
2106
2100
|
size = _ref90$size === void 0 ? 16 : _ref90$size,
|
2107
2101
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref90, _excluded90);
|
2108
|
-
return /*#__PURE__*/
|
2102
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2109
2103
|
width: size,
|
2110
2104
|
height: size,
|
2111
2105
|
ref: ref,
|
2112
2106
|
xmlns: "http://www.w3.org/2000/svg",
|
2113
2107
|
viewBox: "0 0 32 32",
|
2114
2108
|
fill: "currentColor"
|
2115
|
-
}, rest), _path154 || (_path154 = /*#__PURE__*/
|
2109
|
+
}, rest), _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
|
2116
2110
|
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"
|
2117
2111
|
})), children);
|
2118
2112
|
});
|
2119
2113
|
if (process.env.NODE_ENV !== "production") {
|
2120
2114
|
LetterMm.propTypes = iconPropTypes4cbeb95d.i;
|
2121
2115
|
}
|
2122
|
-
var LetterNn = /*#__PURE__*/
|
2116
|
+
var LetterNn = /*#__PURE__*/React.forwardRef(function LetterNn(_ref91, ref) {
|
2123
2117
|
var children = _ref91.children,
|
2124
2118
|
_ref91$size = _ref91.size,
|
2125
2119
|
size = _ref91$size === void 0 ? 16 : _ref91$size,
|
2126
2120
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref91, _excluded91);
|
2127
|
-
return /*#__PURE__*/
|
2121
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2128
2122
|
width: size,
|
2129
2123
|
height: size,
|
2130
2124
|
ref: ref,
|
2131
2125
|
xmlns: "http://www.w3.org/2000/svg",
|
2132
2126
|
viewBox: "0 0 32 32",
|
2133
2127
|
fill: "currentColor"
|
2134
|
-
}, rest), _path155 || (_path155 = /*#__PURE__*/
|
2128
|
+
}, rest), _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
|
2135
2129
|
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"
|
2136
2130
|
})), children);
|
2137
2131
|
});
|
2138
2132
|
if (process.env.NODE_ENV !== "production") {
|
2139
2133
|
LetterNn.propTypes = iconPropTypes4cbeb95d.i;
|
2140
2134
|
}
|
2141
|
-
var LetterOo = /*#__PURE__*/
|
2135
|
+
var LetterOo = /*#__PURE__*/React.forwardRef(function LetterOo(_ref92, ref) {
|
2142
2136
|
var children = _ref92.children,
|
2143
2137
|
_ref92$size = _ref92.size,
|
2144
2138
|
size = _ref92$size === void 0 ? 16 : _ref92$size,
|
2145
2139
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref92, _excluded92);
|
2146
|
-
return /*#__PURE__*/
|
2140
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2147
2141
|
width: size,
|
2148
2142
|
height: size,
|
2149
2143
|
ref: ref,
|
2150
2144
|
xmlns: "http://www.w3.org/2000/svg",
|
2151
2145
|
viewBox: "0 0 32 32",
|
2152
2146
|
fill: "currentColor"
|
2153
|
-
}, rest), _path156 || (_path156 = /*#__PURE__*/
|
2147
|
+
}, rest), _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
|
2154
2148
|
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"
|
2155
2149
|
})), children);
|
2156
2150
|
});
|
2157
2151
|
if (process.env.NODE_ENV !== "production") {
|
2158
2152
|
LetterOo.propTypes = iconPropTypes4cbeb95d.i;
|
2159
2153
|
}
|
2160
|
-
var LetterPp = /*#__PURE__*/
|
2154
|
+
var LetterPp = /*#__PURE__*/React.forwardRef(function LetterPp(_ref93, ref) {
|
2161
2155
|
var children = _ref93.children,
|
2162
2156
|
_ref93$size = _ref93.size,
|
2163
2157
|
size = _ref93$size === void 0 ? 16 : _ref93$size,
|
2164
2158
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref93, _excluded93);
|
2165
|
-
return /*#__PURE__*/
|
2159
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2166
2160
|
width: size,
|
2167
2161
|
height: size,
|
2168
2162
|
ref: ref,
|
2169
2163
|
xmlns: "http://www.w3.org/2000/svg",
|
2170
2164
|
viewBox: "0 0 32 32",
|
2171
2165
|
fill: "currentColor"
|
2172
|
-
}, rest), _path157 || (_path157 = /*#__PURE__*/
|
2166
|
+
}, rest), _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
|
2173
2167
|
d: "M23 13H17V27h2V23h4a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM9 23H7V9h6a2 2 0 012 2v5a2 2 0 01-2 2H9zm0-7h4V11H9z"
|
2174
2168
|
})), children);
|
2175
2169
|
});
|
2176
2170
|
if (process.env.NODE_ENV !== "production") {
|
2177
2171
|
LetterPp.propTypes = iconPropTypes4cbeb95d.i;
|
2178
2172
|
}
|
2179
|
-
var LetterQq = /*#__PURE__*/
|
2173
|
+
var LetterQq = /*#__PURE__*/React.forwardRef(function LetterQq(_ref94, ref) {
|
2180
2174
|
var children = _ref94.children,
|
2181
2175
|
_ref94$size = _ref94.size,
|
2182
2176
|
size = _ref94$size === void 0 ? 16 : _ref94$size,
|
2183
2177
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref94, _excluded94);
|
2184
|
-
return /*#__PURE__*/
|
2178
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2185
2179
|
width: size,
|
2186
2180
|
height: size,
|
2187
2181
|
ref: ref,
|
2188
2182
|
xmlns: "http://www.w3.org/2000/svg",
|
2189
2183
|
viewBox: "0 0 32 32",
|
2190
2184
|
fill: "currentColor"
|
2191
|
-
}, rest), _path158 || (_path158 = /*#__PURE__*/
|
2185
|
+
}, rest), _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
|
2192
2186
|
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"
|
2193
2187
|
})), children);
|
2194
2188
|
});
|
2195
2189
|
if (process.env.NODE_ENV !== "production") {
|
2196
2190
|
LetterQq.propTypes = iconPropTypes4cbeb95d.i;
|
2197
2191
|
}
|
2198
|
-
var LetterRr = /*#__PURE__*/
|
2192
|
+
var LetterRr = /*#__PURE__*/React.forwardRef(function LetterRr(_ref95, ref) {
|
2199
2193
|
var children = _ref95.children,
|
2200
2194
|
_ref95$size = _ref95.size,
|
2201
2195
|
size = _ref95$size === void 0 ? 16 : _ref95$size,
|
2202
2196
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref95, _excluded95);
|
2203
|
-
return /*#__PURE__*/
|
2197
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2204
2198
|
width: size,
|
2205
2199
|
height: size,
|
2206
2200
|
ref: ref,
|
2207
2201
|
xmlns: "http://www.w3.org/2000/svg",
|
2208
2202
|
viewBox: "0 0 32 32",
|
2209
2203
|
fill: "currentColor"
|
2210
|
-
}, rest), _path159 || (_path159 = /*#__PURE__*/
|
2204
|
+
}, rest), _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
|
2211
2205
|
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"
|
2212
2206
|
})), children);
|
2213
2207
|
});
|
2214
2208
|
if (process.env.NODE_ENV !== "production") {
|
2215
2209
|
LetterRr.propTypes = iconPropTypes4cbeb95d.i;
|
2216
2210
|
}
|
2217
|
-
var LetterSs = /*#__PURE__*/
|
2211
|
+
var LetterSs = /*#__PURE__*/React.forwardRef(function LetterSs(_ref96, ref) {
|
2218
2212
|
var children = _ref96.children,
|
2219
2213
|
_ref96$size = _ref96.size,
|
2220
2214
|
size = _ref96$size === void 0 ? 16 : _ref96$size,
|
2221
2215
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref96, _excluded96);
|
2222
|
-
return /*#__PURE__*/
|
2216
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2223
2217
|
width: size,
|
2224
2218
|
height: size,
|
2225
2219
|
ref: ref,
|
2226
2220
|
xmlns: "http://www.w3.org/2000/svg",
|
2227
2221
|
viewBox: "0 0 32 32",
|
2228
2222
|
fill: "currentColor"
|
2229
|
-
}, rest), _path160 || (_path160 = /*#__PURE__*/
|
2223
|
+
}, rest), _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
|
2230
2224
|
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"
|
2231
2225
|
})), children);
|
2232
2226
|
});
|
2233
2227
|
if (process.env.NODE_ENV !== "production") {
|
2234
2228
|
LetterSs.propTypes = iconPropTypes4cbeb95d.i;
|
2235
2229
|
}
|
2236
|
-
var LetterTt = /*#__PURE__*/
|
2230
|
+
var LetterTt = /*#__PURE__*/React.forwardRef(function LetterTt(_ref97, ref) {
|
2237
2231
|
var children = _ref97.children,
|
2238
2232
|
_ref97$size = _ref97.size,
|
2239
2233
|
size = _ref97$size === void 0 ? 16 : _ref97$size,
|
2240
2234
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref97, _excluded97);
|
2241
|
-
return /*#__PURE__*/
|
2235
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2242
2236
|
width: size,
|
2243
2237
|
height: size,
|
2244
2238
|
ref: ref,
|
2245
2239
|
xmlns: "http://www.w3.org/2000/svg",
|
2246
2240
|
viewBox: "0 0 32 32",
|
2247
2241
|
fill: "currentColor"
|
2248
|
-
}, rest), _path161 || (_path161 = /*#__PURE__*/
|
2242
|
+
}, rest), _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
|
2249
2243
|
d: "M8 11L11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11zM23 15V13H20V11H18v2H16v2h2v6a2 2 0 002 2h3V21H20V15z"
|
2250
2244
|
})), children);
|
2251
2245
|
});
|
2252
2246
|
if (process.env.NODE_ENV !== "production") {
|
2253
2247
|
LetterTt.propTypes = iconPropTypes4cbeb95d.i;
|
2254
2248
|
}
|
2255
|
-
var LetterUu = /*#__PURE__*/
|
2249
|
+
var LetterUu = /*#__PURE__*/React.forwardRef(function LetterUu(_ref98, ref) {
|
2256
2250
|
var children = _ref98.children,
|
2257
2251
|
_ref98$size = _ref98.size,
|
2258
2252
|
size = _ref98$size === void 0 ? 16 : _ref98$size,
|
2259
2253
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref98, _excluded98);
|
2260
|
-
return /*#__PURE__*/
|
2254
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2261
2255
|
width: size,
|
2262
2256
|
height: size,
|
2263
2257
|
ref: ref,
|
2264
2258
|
xmlns: "http://www.w3.org/2000/svg",
|
2265
2259
|
viewBox: "0 0 32 32",
|
2266
2260
|
fill: "currentColor"
|
2267
|
-
}, rest), _path162 || (_path162 = /*#__PURE__*/
|
2261
|
+
}, rest), _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
|
2268
2262
|
d: "M23 23H19a2 2 0 01-2-2V13h2v8h4V13h2v8A2 2 0 0123 23zM13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23z"
|
2269
2263
|
})), children);
|
2270
2264
|
});
|
2271
2265
|
if (process.env.NODE_ENV !== "production") {
|
2272
2266
|
LetterUu.propTypes = iconPropTypes4cbeb95d.i;
|
2273
2267
|
}
|
2274
|
-
var LetterVv = /*#__PURE__*/
|
2268
|
+
var LetterVv = /*#__PURE__*/React.forwardRef(function LetterVv(_ref99, ref) {
|
2275
2269
|
var children = _ref99.children,
|
2276
2270
|
_ref99$size = _ref99.size,
|
2277
2271
|
size = _ref99$size === void 0 ? 16 : _ref99$size,
|
2278
2272
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref99, _excluded99);
|
2279
|
-
return /*#__PURE__*/
|
2273
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2280
2274
|
width: size,
|
2281
2275
|
height: size,
|
2282
2276
|
ref: ref,
|
2283
2277
|
xmlns: "http://www.w3.org/2000/svg",
|
2284
2278
|
viewBox: "0 0 32 32",
|
2285
2279
|
fill: "currentColor"
|
2286
|
-
}, rest), _path163 || (_path163 = /*#__PURE__*/
|
2280
|
+
}, rest), _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
|
2287
2281
|
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"
|
2288
2282
|
})), children);
|
2289
2283
|
});
|
2290
2284
|
if (process.env.NODE_ENV !== "production") {
|
2291
2285
|
LetterVv.propTypes = iconPropTypes4cbeb95d.i;
|
2292
2286
|
}
|
2293
|
-
var LetterWw = /*#__PURE__*/
|
2287
|
+
var LetterWw = /*#__PURE__*/React.forwardRef(function LetterWw(_ref100, ref) {
|
2294
2288
|
var children = _ref100.children,
|
2295
2289
|
_ref100$size = _ref100.size,
|
2296
2290
|
size = _ref100$size === void 0 ? 16 : _ref100$size,
|
2297
2291
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref100, _excluded100);
|
2298
|
-
return /*#__PURE__*/
|
2292
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2299
2293
|
width: size,
|
2300
2294
|
height: size,
|
2301
2295
|
ref: ref,
|
2302
2296
|
xmlns: "http://www.w3.org/2000/svg",
|
2303
2297
|
viewBox: "0 0 32 32",
|
2304
2298
|
fill: "currentColor"
|
2305
|
-
}, rest), _path164 || (_path164 = /*#__PURE__*/
|
2299
|
+
}, rest), _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
|
2306
2300
|
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"
|
2307
2301
|
})), children);
|
2308
2302
|
});
|
2309
2303
|
if (process.env.NODE_ENV !== "production") {
|
2310
2304
|
LetterWw.propTypes = iconPropTypes4cbeb95d.i;
|
2311
2305
|
}
|
2312
|
-
var LetterXx = /*#__PURE__*/
|
2306
|
+
var LetterXx = /*#__PURE__*/React.forwardRef(function LetterXx(_ref101, ref) {
|
2313
2307
|
var children = _ref101.children,
|
2314
2308
|
_ref101$size = _ref101.size,
|
2315
2309
|
size = _ref101$size === void 0 ? 16 : _ref101$size,
|
2316
2310
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref101, _excluded101);
|
2317
|
-
return /*#__PURE__*/
|
2311
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2318
2312
|
width: size,
|
2319
2313
|
height: size,
|
2320
2314
|
ref: ref,
|
2321
2315
|
xmlns: "http://www.w3.org/2000/svg",
|
2322
2316
|
viewBox: "0 0 32 32",
|
2323
2317
|
fill: "currentColor"
|
2324
|
-
}, rest), _path165 || (_path165 = /*#__PURE__*/
|
2318
|
+
}, rest), _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
|
2325
2319
|
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"
|
2326
2320
|
})), children);
|
2327
2321
|
});
|
2328
2322
|
if (process.env.NODE_ENV !== "production") {
|
2329
2323
|
LetterXx.propTypes = iconPropTypes4cbeb95d.i;
|
2330
2324
|
}
|
2331
|
-
var LetterYy = /*#__PURE__*/
|
2325
|
+
var LetterYy = /*#__PURE__*/React.forwardRef(function LetterYy(_ref102, ref) {
|
2332
2326
|
var children = _ref102.children,
|
2333
2327
|
_ref102$size = _ref102.size,
|
2334
2328
|
size = _ref102$size === void 0 ? 16 : _ref102$size,
|
2335
2329
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref102, _excluded102);
|
2336
|
-
return /*#__PURE__*/
|
2330
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2337
2331
|
width: size,
|
2338
2332
|
height: size,
|
2339
2333
|
ref: ref,
|
2340
2334
|
xmlns: "http://www.w3.org/2000/svg",
|
2341
2335
|
viewBox: "0 0 32 32",
|
2342
2336
|
fill: "currentColor"
|
2343
|
-
}, rest), _path166 || (_path166 = /*#__PURE__*/
|
2337
|
+
}, rest), _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
|
2344
2338
|
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"
|
2345
2339
|
})), children);
|
2346
2340
|
});
|
2347
2341
|
if (process.env.NODE_ENV !== "production") {
|
2348
2342
|
LetterYy.propTypes = iconPropTypes4cbeb95d.i;
|
2349
2343
|
}
|
2350
|
-
var LetterZz = /*#__PURE__*/
|
2344
|
+
var LetterZz = /*#__PURE__*/React.forwardRef(function LetterZz(_ref103, ref) {
|
2351
2345
|
var children = _ref103.children,
|
2352
2346
|
_ref103$size = _ref103.size,
|
2353
2347
|
size = _ref103$size === void 0 ? 16 : _ref103$size,
|
2354
2348
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref103, _excluded103);
|
2355
|
-
return /*#__PURE__*/
|
2349
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2356
2350
|
width: size,
|
2357
2351
|
height: size,
|
2358
2352
|
ref: ref,
|
2359
2353
|
xmlns: "http://www.w3.org/2000/svg",
|
2360
2354
|
viewBox: "0 0 32 32",
|
2361
2355
|
fill: "currentColor"
|
2362
|
-
}, rest), _path167 || (_path167 = /*#__PURE__*/
|
2356
|
+
}, rest), _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
|
2363
2357
|
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"
|
2364
2358
|
})), children);
|
2365
2359
|
});
|
2366
2360
|
if (process.env.NODE_ENV !== "production") {
|
2367
2361
|
LetterZz.propTypes = iconPropTypes4cbeb95d.i;
|
2368
2362
|
}
|
2369
|
-
var License = /*#__PURE__*/
|
2363
|
+
var License = /*#__PURE__*/React.forwardRef(function License(_ref104, ref) {
|
2370
2364
|
var children = _ref104.children,
|
2371
2365
|
_ref104$size = _ref104.size,
|
2372
2366
|
size = _ref104$size === void 0 ? 16 : _ref104$size,
|
2373
2367
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref104, _excluded104);
|
2374
|
-
return /*#__PURE__*/
|
2368
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2375
2369
|
width: size,
|
2376
2370
|
height: size,
|
2377
2371
|
ref: ref,
|
2378
2372
|
xmlns: "http://www.w3.org/2000/svg",
|
2379
2373
|
viewBox: "0 0 32 32",
|
2380
2374
|
fill: "currentColor"
|
2381
|
-
}, rest), _path168 || (_path168 = /*#__PURE__*/
|
2375
|
+
}, rest), _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
|
2382
2376
|
d: "M10 6H22V8H10zM10 10H22V12H10zM10 24H16V26H10zM10 14H16V16H10z"
|
2383
|
-
})), _path169 || (_path169 = /*#__PURE__*/
|
2377
|
+
})), _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
|
2384
2378
|
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"
|
2385
2379
|
})), children);
|
2386
2380
|
});
|
2387
2381
|
if (process.env.NODE_ENV !== "production") {
|
2388
2382
|
License.propTypes = iconPropTypes4cbeb95d.i;
|
2389
2383
|
}
|
2390
|
-
var LicenseDraft = /*#__PURE__*/
|
2384
|
+
var LicenseDraft = /*#__PURE__*/React.forwardRef(function LicenseDraft(_ref105, ref) {
|
2391
2385
|
var children = _ref105.children,
|
2392
2386
|
_ref105$size = _ref105.size,
|
2393
2387
|
size = _ref105$size === void 0 ? 16 : _ref105$size,
|
2394
2388
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref105, _excluded105);
|
2395
|
-
return /*#__PURE__*/
|
2389
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2396
2390
|
width: size,
|
2397
2391
|
height: size,
|
2398
2392
|
ref: ref,
|
2399
2393
|
xmlns: "http://www.w3.org/2000/svg",
|
2400
2394
|
viewBox: "0 0 32 32",
|
2401
2395
|
fill: "currentColor"
|
2402
|
-
}, rest), _path170 || (_path170 = /*#__PURE__*/
|
2396
|
+
}, rest), _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
|
2403
2397
|
d: "M8 6H20V8H8zM8 10H20V12H8zM8 14H14V16H8zM8 24H12V26H8z"
|
2404
|
-
})), _path171 || (_path171 = /*#__PURE__*/
|
2398
|
+
})), _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
|
2405
2399
|
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"
|
2406
2400
|
})), children);
|
2407
2401
|
});
|
2408
2402
|
if (process.env.NODE_ENV !== "production") {
|
2409
2403
|
LicenseDraft.propTypes = iconPropTypes4cbeb95d.i;
|
2410
2404
|
}
|
2411
|
-
var LicenseGlobal = /*#__PURE__*/
|
2405
|
+
var LicenseGlobal = /*#__PURE__*/React.forwardRef(function LicenseGlobal(_ref106, ref) {
|
2412
2406
|
var children = _ref106.children,
|
2413
2407
|
_ref106$size = _ref106.size,
|
2414
2408
|
size = _ref106$size === void 0 ? 16 : _ref106$size,
|
2415
2409
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref106, _excluded106);
|
2416
|
-
return /*#__PURE__*/
|
2410
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2417
2411
|
width: size,
|
2418
2412
|
height: size,
|
2419
2413
|
ref: ref,
|
2420
2414
|
xmlns: "http://www.w3.org/2000/svg",
|
2421
2415
|
viewBox: "0 0 32 32",
|
2422
2416
|
fill: "currentColor"
|
2423
|
-
}, rest), _path172 || (_path172 = /*#__PURE__*/
|
2417
|
+
}, rest), _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
|
2424
2418
|
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"
|
2425
|
-
})), _path173 || (_path173 = /*#__PURE__*/
|
2419
|
+
})), _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
|
2426
2420
|
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"
|
2427
2421
|
})), children);
|
2428
2422
|
});
|
2429
2423
|
if (process.env.NODE_ENV !== "production") {
|
2430
2424
|
LicenseGlobal.propTypes = iconPropTypes4cbeb95d.i;
|
2431
2425
|
}
|
2432
|
-
var LicenseMaintenance = /*#__PURE__*/
|
2426
|
+
var LicenseMaintenance = /*#__PURE__*/React.forwardRef(function LicenseMaintenance(_ref107, ref) {
|
2433
2427
|
var children = _ref107.children,
|
2434
2428
|
_ref107$size = _ref107.size,
|
2435
2429
|
size = _ref107$size === void 0 ? 16 : _ref107$size,
|
2436
2430
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref107, _excluded107);
|
2437
|
-
return /*#__PURE__*/
|
2431
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2438
2432
|
width: size,
|
2439
2433
|
height: size,
|
2440
2434
|
ref: ref,
|
2441
2435
|
xmlns: "http://www.w3.org/2000/svg",
|
2442
2436
|
viewBox: "0 0 32 32",
|
2443
2437
|
fill: "currentColor"
|
2444
|
-
}, rest), _path174 || (_path174 = /*#__PURE__*/
|
2438
|
+
}, rest), _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
|
2445
2439
|
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"
|
2446
|
-
})), _path175 || (_path175 = /*#__PURE__*/
|
2440
|
+
})), _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
|
2447
2441
|
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"
|
2448
2442
|
})), children);
|
2449
2443
|
});
|
2450
2444
|
if (process.env.NODE_ENV !== "production") {
|
2451
2445
|
LicenseMaintenance.propTypes = iconPropTypes4cbeb95d.i;
|
2452
2446
|
}
|
2453
|
-
var LicenseMaintenanceDraft = /*#__PURE__*/
|
2447
|
+
var LicenseMaintenanceDraft = /*#__PURE__*/React.forwardRef(function LicenseMaintenanceDraft(_ref108, ref) {
|
2454
2448
|
var children = _ref108.children,
|
2455
2449
|
_ref108$size = _ref108.size,
|
2456
2450
|
size = _ref108$size === void 0 ? 16 : _ref108$size,
|
2457
2451
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref108, _excluded108);
|
2458
|
-
return /*#__PURE__*/
|
2452
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2459
2453
|
width: size,
|
2460
2454
|
height: size,
|
2461
2455
|
ref: ref,
|
2462
2456
|
xmlns: "http://www.w3.org/2000/svg",
|
2463
2457
|
viewBox: "0 0 32 32",
|
2464
2458
|
fill: "currentColor"
|
2465
|
-
}, rest), _path176 || (_path176 = /*#__PURE__*/
|
2459
|
+
}, rest), _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
|
2466
2460
|
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"
|
2467
|
-
})), _path177 || (_path177 = /*#__PURE__*/
|
2461
|
+
})), _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
|
2468
2462
|
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"
|
2469
2463
|
})), children);
|
2470
2464
|
});
|
2471
2465
|
if (process.env.NODE_ENV !== "production") {
|
2472
2466
|
LicenseMaintenanceDraft.propTypes = iconPropTypes4cbeb95d.i;
|
2473
2467
|
}
|
2474
|
-
var LicenseThirdParty = /*#__PURE__*/
|
2468
|
+
var LicenseThirdParty = /*#__PURE__*/React.forwardRef(function LicenseThirdParty(_ref109, ref) {
|
2475
2469
|
var children = _ref109.children,
|
2476
2470
|
_ref109$size = _ref109.size,
|
2477
2471
|
size = _ref109$size === void 0 ? 16 : _ref109$size,
|
2478
2472
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref109, _excluded109);
|
2479
|
-
return /*#__PURE__*/
|
2473
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2480
2474
|
width: size,
|
2481
2475
|
height: size,
|
2482
2476
|
ref: ref,
|
2483
2477
|
xmlns: "http://www.w3.org/2000/svg",
|
2484
2478
|
viewBox: "0 0 32 32",
|
2485
2479
|
fill: "currentColor"
|
2486
|
-
}, rest), _path178 || (_path178 = /*#__PURE__*/
|
2480
|
+
}, rest), _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
|
2487
2481
|
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"
|
2488
|
-
})), _path179 || (_path179 = /*#__PURE__*/
|
2482
|
+
})), _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
|
2489
2483
|
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"
|
2490
2484
|
})), children);
|
2491
2485
|
});
|
2492
2486
|
if (process.env.NODE_ENV !== "production") {
|
2493
2487
|
LicenseThirdParty.propTypes = iconPropTypes4cbeb95d.i;
|
2494
2488
|
}
|
2495
|
-
var LicenseThirdPartyDraft = /*#__PURE__*/
|
2489
|
+
var LicenseThirdPartyDraft = /*#__PURE__*/React.forwardRef(function LicenseThirdPartyDraft(_ref110, ref) {
|
2496
2490
|
var children = _ref110.children,
|
2497
2491
|
_ref110$size = _ref110.size,
|
2498
2492
|
size = _ref110$size === void 0 ? 16 : _ref110$size,
|
2499
2493
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref110, _excluded110);
|
2500
|
-
return /*#__PURE__*/
|
2494
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2501
2495
|
width: size,
|
2502
2496
|
height: size,
|
2503
2497
|
ref: ref,
|
2504
2498
|
xmlns: "http://www.w3.org/2000/svg",
|
2505
2499
|
viewBox: "0 0 32 32",
|
2506
2500
|
fill: "currentColor"
|
2507
|
-
}, rest), _path180 || (_path180 = /*#__PURE__*/
|
2501
|
+
}, rest), _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
|
2508
2502
|
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"
|
2509
|
-
})), _path181 || (_path181 = /*#__PURE__*/
|
2503
|
+
})), _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
|
2510
2504
|
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"
|
2511
2505
|
})), children);
|
2512
2506
|
});
|
2513
2507
|
if (process.env.NODE_ENV !== "production") {
|
2514
2508
|
LicenseThirdPartyDraft.propTypes = iconPropTypes4cbeb95d.i;
|
2515
2509
|
}
|
2516
|
-
var Lifesaver = /*#__PURE__*/
|
2510
|
+
var Lifesaver = /*#__PURE__*/React.forwardRef(function Lifesaver(_ref111, ref) {
|
2517
2511
|
var children = _ref111.children,
|
2518
2512
|
_ref111$size = _ref111.size,
|
2519
2513
|
size = _ref111$size === void 0 ? 16 : _ref111$size,
|
2520
2514
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref111, _excluded111);
|
2521
|
-
return /*#__PURE__*/
|
2515
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2522
2516
|
width: size,
|
2523
2517
|
height: size,
|
2524
2518
|
ref: ref,
|
2525
2519
|
xmlns: "http://www.w3.org/2000/svg",
|
2526
2520
|
viewBox: "0 0 32 32",
|
2527
2521
|
fill: "currentColor"
|
2528
|
-
}, rest), _path182 || (_path182 = /*#__PURE__*/
|
2522
|
+
}, rest), _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
|
2529
2523
|
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"
|
2530
2524
|
})), children);
|
2531
2525
|
});
|
2532
2526
|
if (process.env.NODE_ENV !== "production") {
|
2533
2527
|
Lifesaver.propTypes = iconPropTypes4cbeb95d.i;
|
2534
2528
|
}
|
2535
|
-
var Light = /*#__PURE__*/
|
2529
|
+
var Light = /*#__PURE__*/React.forwardRef(function Light(_ref112, ref) {
|
2536
2530
|
var children = _ref112.children,
|
2537
2531
|
_ref112$size = _ref112.size,
|
2538
2532
|
size = _ref112$size === void 0 ? 16 : _ref112$size,
|
2539
2533
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref112, _excluded112);
|
2540
2534
|
if (size === 16 || size === "16" || size === "16px") {
|
2541
|
-
return /*#__PURE__*/
|
2535
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2542
2536
|
width: size,
|
2543
2537
|
height: size,
|
2544
2538
|
ref: ref,
|
2545
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
2546
2540
|
viewBox: "0 0 16 16",
|
2547
2541
|
fill: "currentColor"
|
2548
|
-
}, rest), _path183 || (_path183 = /*#__PURE__*/
|
2542
|
+
}, rest), _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
|
2549
2543
|
d: "M7.5 1H8.5V3.5H7.5z"
|
2550
|
-
})), _path184 || (_path184 = /*#__PURE__*/
|
2544
|
+
})), _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
|
2551
2545
|
d: "M10.8 3.4H13.3V4.4H10.8z",
|
2552
2546
|
transform: "rotate(-45.001 12.041 3.923)"
|
2553
|
-
})), _path185 || (_path185 = /*#__PURE__*/
|
2547
|
+
})), _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
|
2554
2548
|
d: "M12.5 7.5H15V8.5H12.5z"
|
2555
|
-
})), _path186 || (_path186 = /*#__PURE__*/
|
2549
|
+
})), _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
|
2556
2550
|
d: "M11.6 10.8H12.6V13.3H11.6z",
|
2557
2551
|
transform: "rotate(-45.001 12.075 12.041)"
|
2558
|
-
})), _path187 || (_path187 = /*#__PURE__*/
|
2552
|
+
})), _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
|
2559
2553
|
d: "M7.5 12.5H8.5V15H7.5z"
|
2560
|
-
})), _path188 || (_path188 = /*#__PURE__*/
|
2554
|
+
})), _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
|
2561
2555
|
d: "M2.7 11.6H5.2V12.6H2.7z",
|
2562
2556
|
transform: "rotate(-45.001 3.96 12.079)"
|
2563
|
-
})), _path189 || (_path189 = /*#__PURE__*/
|
2557
|
+
})), _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
|
2564
2558
|
d: "M1 7.5H3.5V8.5H1z"
|
2565
|
-
})), _path190 || (_path190 = /*#__PURE__*/
|
2559
|
+
})), _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
|
2566
2560
|
d: "M3.4 2.7H4.4V5.2H3.4z",
|
2567
2561
|
transform: "rotate(-45.001 3.925 3.961)"
|
2568
|
-
})), _path191 || (_path191 = /*#__PURE__*/
|
2562
|
+
})), _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
|
2569
2563
|
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"
|
2570
2564
|
})), children);
|
2571
2565
|
}
|
2572
|
-
return /*#__PURE__*/
|
2566
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2573
2567
|
width: size,
|
2574
2568
|
height: size,
|
2575
2569
|
ref: ref,
|
2576
2570
|
xmlns: "http://www.w3.org/2000/svg",
|
2577
2571
|
viewBox: "0 0 32 32",
|
2578
2572
|
fill: "currentColor"
|
2579
|
-
}, rest), _path192 || (_path192 = /*#__PURE__*/
|
2573
|
+
}, rest), _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
|
2580
2574
|
d: "M15 2H17V7H15z"
|
2581
|
-
})), _path193 || (_path193 = /*#__PURE__*/
|
2575
|
+
})), _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
|
2582
2576
|
d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
|
2583
2577
|
transform: "rotate(-45 24.147 7.853)"
|
2584
|
-
})), _path194 || (_path194 = /*#__PURE__*/
|
2578
|
+
})), _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
|
2585
2579
|
d: "M25 15H30V17H25z"
|
2586
|
-
})), _path195 || (_path195 = /*#__PURE__*/
|
2580
|
+
})), _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
|
2587
2581
|
d: "M23.147 21.668H25.147V26.625999999999998H23.147z",
|
2588
2582
|
transform: "rotate(-45 24.147 24.146)"
|
2589
|
-
})), _path196 || (_path196 = /*#__PURE__*/
|
2583
|
+
})), _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
|
2590
2584
|
d: "M15 25H17V30H15z"
|
2591
|
-
})), _path197 || (_path197 = /*#__PURE__*/
|
2585
|
+
})), _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
|
2592
2586
|
d: "M5.375 23.147H10.333V25.147H5.375z",
|
2593
2587
|
transform: "rotate(-45 7.853 24.146)"
|
2594
|
-
})), _path198 || (_path198 = /*#__PURE__*/
|
2588
|
+
})), _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
|
2595
2589
|
d: "M2 15H7V17H2z"
|
2596
|
-
})), _path199 || (_path199 = /*#__PURE__*/
|
2590
|
+
})), _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
|
2597
2591
|
d: "M6.854 5.375H8.854V10.333H6.854z",
|
2598
2592
|
transform: "rotate(-45 7.854 7.853)"
|
2599
|
-
})), _path200 || (_path200 = /*#__PURE__*/
|
2593
|
+
})), _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
|
2600
2594
|
d: "M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"
|
2601
2595
|
})), children);
|
2602
2596
|
});
|
2603
2597
|
if (process.env.NODE_ENV !== "production") {
|
2604
2598
|
Light.propTypes = iconPropTypes4cbeb95d.i;
|
2605
2599
|
}
|
2606
|
-
var LightFilled = /*#__PURE__*/
|
2600
|
+
var LightFilled = /*#__PURE__*/React.forwardRef(function LightFilled(_ref113, ref) {
|
2607
2601
|
var children = _ref113.children,
|
2608
2602
|
_ref113$size = _ref113.size,
|
2609
2603
|
size = _ref113$size === void 0 ? 16 : _ref113$size,
|
2610
2604
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref113, _excluded113);
|
2611
|
-
return /*#__PURE__*/
|
2605
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2612
2606
|
width: size,
|
2613
2607
|
height: size,
|
2614
2608
|
ref: ref,
|
2615
2609
|
xmlns: "http://www.w3.org/2000/svg",
|
2616
2610
|
viewBox: "0 0 32 32",
|
2617
2611
|
fill: "currentColor"
|
2618
|
-
}, rest), _path201 || (_path201 = /*#__PURE__*/
|
2612
|
+
}, rest), _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
|
2619
2613
|
d: "M15 2H17V7H15z"
|
2620
|
-
})), _path202 || (_path202 = /*#__PURE__*/
|
2614
|
+
})), _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
|
2621
2615
|
d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
|
2622
2616
|
transform: "rotate(-45 24.147 7.853)"
|
2623
|
-
})), _path203 || (_path203 = /*#__PURE__*/
|
2617
|
+
})), _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
|
2624
2618
|
d: "M25 15H30V17H25z"
|
2625
|
-
})), _path204 || (_path204 = /*#__PURE__*/
|
2619
|
+
})), _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
|
2626
2620
|
d: "M23.147 21.668H25.147V26.625999999999998H23.147z",
|
2627
2621
|
transform: "rotate(-45 24.147 24.146)"
|
2628
|
-
})), _path205 || (_path205 = /*#__PURE__*/
|
2622
|
+
})), _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
|
2629
2623
|
d: "M15 25H17V30H15z"
|
2630
|
-
})), _path206 || (_path206 = /*#__PURE__*/
|
2624
|
+
})), _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
|
2631
2625
|
d: "M5.375 23.147H10.333V25.147H5.375z",
|
2632
2626
|
transform: "rotate(-45 7.853 24.146)"
|
2633
|
-
})), _path207 || (_path207 = /*#__PURE__*/
|
2627
|
+
})), _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
|
2634
2628
|
d: "M2 15H7V17H2z"
|
2635
|
-
})), _path208 || (_path208 = /*#__PURE__*/
|
2629
|
+
})), _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
|
2636
2630
|
d: "M6.854 5.375H8.854V10.333H6.854z",
|
2637
2631
|
transform: "rotate(-45 7.854 7.853)"
|
2638
|
-
})), _path209 || (_path209 = /*#__PURE__*/
|
2632
|
+
})), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
|
2639
2633
|
d: "M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"
|
2640
2634
|
})), children);
|
2641
2635
|
});
|
2642
2636
|
if (process.env.NODE_ENV !== "production") {
|
2643
2637
|
LightFilled.propTypes = iconPropTypes4cbeb95d.i;
|
2644
2638
|
}
|
2645
|
-
var Lightning = /*#__PURE__*/
|
2639
|
+
var Lightning = /*#__PURE__*/React.forwardRef(function Lightning(_ref114, ref) {
|
2646
2640
|
var children = _ref114.children,
|
2647
2641
|
_ref114$size = _ref114.size,
|
2648
2642
|
size = _ref114$size === void 0 ? 16 : _ref114$size,
|
2649
2643
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref114, _excluded114);
|
2650
|
-
return /*#__PURE__*/
|
2644
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2651
2645
|
width: size,
|
2652
2646
|
height: size,
|
2653
2647
|
ref: ref,
|
2654
2648
|
xmlns: "http://www.w3.org/2000/svg",
|
2655
2649
|
viewBox: "0 0 32 32",
|
2656
2650
|
fill: "currentColor"
|
2657
|
-
}, rest), _path210 || (_path210 = /*#__PURE__*/
|
2651
|
+
}, rest), _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
|
2658
2652
|
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"
|
2659
2653
|
})), children);
|
2660
2654
|
});
|
2661
2655
|
if (process.env.NODE_ENV !== "production") {
|
2662
2656
|
Lightning.propTypes = iconPropTypes4cbeb95d.i;
|
2663
2657
|
}
|
2664
|
-
var Link = /*#__PURE__*/
|
2658
|
+
var Link = /*#__PURE__*/React.forwardRef(function Link(_ref115, ref) {
|
2665
2659
|
var children = _ref115.children,
|
2666
2660
|
_ref115$size = _ref115.size,
|
2667
2661
|
size = _ref115$size === void 0 ? 16 : _ref115$size,
|
2668
2662
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref115, _excluded115);
|
2669
|
-
return /*#__PURE__*/
|
2663
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2670
2664
|
width: size,
|
2671
2665
|
height: size,
|
2672
2666
|
ref: ref,
|
2673
2667
|
xmlns: "http://www.w3.org/2000/svg",
|
2674
2668
|
viewBox: "0 0 32 32",
|
2675
2669
|
fill: "currentColor"
|
2676
|
-
}, rest), _path211 || (_path211 = /*#__PURE__*/
|
2670
|
+
}, rest), _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
|
2677
2671
|
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"
|
2678
|
-
})), _path212 || (_path212 = /*#__PURE__*/
|
2672
|
+
})), _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
|
2679
2673
|
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"
|
2680
2674
|
})), children);
|
2681
2675
|
});
|
2682
2676
|
if (process.env.NODE_ENV !== "production") {
|
2683
2677
|
Link.propTypes = iconPropTypes4cbeb95d.i;
|
2684
2678
|
}
|
2685
|
-
var Linux = /*#__PURE__*/
|
2679
|
+
var Linux = /*#__PURE__*/React.forwardRef(function Linux(_ref116, ref) {
|
2686
2680
|
var children = _ref116.children,
|
2687
2681
|
_ref116$size = _ref116.size,
|
2688
2682
|
size = _ref116$size === void 0 ? 16 : _ref116$size,
|
2689
2683
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref116, _excluded116);
|
2690
|
-
return /*#__PURE__*/
|
2684
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2691
2685
|
width: size,
|
2692
2686
|
height: size,
|
2693
2687
|
ref: ref,
|
2694
2688
|
xmlns: "http://www.w3.org/2000/svg",
|
2695
2689
|
viewBox: "0 0 32 32",
|
2696
2690
|
fill: "currentColor"
|
2697
|
-
}, rest), _path213 || (_path213 = /*#__PURE__*/
|
2691
|
+
}, rest), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
|
2698
2692
|
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"
|
2699
2693
|
})), children);
|
2700
2694
|
});
|
2701
2695
|
if (process.env.NODE_ENV !== "production") {
|
2702
2696
|
Linux.propTypes = iconPropTypes4cbeb95d.i;
|
2703
2697
|
}
|
2704
|
-
var LinuxAlt = /*#__PURE__*/
|
2698
|
+
var LinuxAlt = /*#__PURE__*/React.forwardRef(function LinuxAlt(_ref117, ref) {
|
2705
2699
|
var children = _ref117.children,
|
2706
2700
|
_ref117$size = _ref117.size,
|
2707
2701
|
size = _ref117$size === void 0 ? 16 : _ref117$size,
|
2708
2702
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref117, _excluded117);
|
2709
|
-
return /*#__PURE__*/
|
2703
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2710
2704
|
width: size,
|
2711
2705
|
height: size,
|
2712
2706
|
ref: ref,
|
2713
2707
|
xmlns: "http://www.w3.org/2000/svg",
|
2714
2708
|
viewBox: "0 0 32 32",
|
2715
2709
|
fill: "currentColor"
|
2716
|
-
}, rest), _path214 || (_path214 = /*#__PURE__*/
|
2710
|
+
}, rest), _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
|
2717
2711
|
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"
|
2718
|
-
})), _path215 || (_path215 = /*#__PURE__*/
|
2712
|
+
})), _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
|
2719
2713
|
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"
|
2720
2714
|
})), children);
|
2721
2715
|
});
|
2722
2716
|
if (process.env.NODE_ENV !== "production") {
|
2723
2717
|
LinuxAlt.propTypes = iconPropTypes4cbeb95d.i;
|
2724
2718
|
}
|
2725
|
-
var LinuxNamespace = /*#__PURE__*/
|
2719
|
+
var LinuxNamespace = /*#__PURE__*/React.forwardRef(function LinuxNamespace(_ref118, ref) {
|
2726
2720
|
var children = _ref118.children,
|
2727
2721
|
_ref118$size = _ref118.size,
|
2728
2722
|
size = _ref118$size === void 0 ? 16 : _ref118$size,
|
2729
2723
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref118, _excluded118);
|
2730
|
-
return /*#__PURE__*/
|
2724
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2731
2725
|
width: size,
|
2732
2726
|
height: size,
|
2733
2727
|
ref: ref,
|
2734
2728
|
xmlns: "http://www.w3.org/2000/svg",
|
2735
2729
|
viewBox: "0 0 32 32",
|
2736
2730
|
fill: "currentColor"
|
2737
|
-
}, rest), _path216 || (_path216 = /*#__PURE__*/
|
2731
|
+
}, rest), _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
|
2738
2732
|
strokeWidth: "0",
|
2739
2733
|
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"
|
2740
2734
|
})), children);
|
@@ -2742,163 +2736,163 @@ var LinuxNamespace = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
2742
2736
|
if (process.env.NODE_ENV !== "production") {
|
2743
2737
|
LinuxNamespace.propTypes = iconPropTypes4cbeb95d.i;
|
2744
2738
|
}
|
2745
|
-
var List = /*#__PURE__*/
|
2739
|
+
var List = /*#__PURE__*/React.forwardRef(function List(_ref119, ref) {
|
2746
2740
|
var children = _ref119.children,
|
2747
2741
|
_ref119$size = _ref119.size,
|
2748
2742
|
size = _ref119$size === void 0 ? 16 : _ref119$size,
|
2749
2743
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref119, _excluded119);
|
2750
|
-
return /*#__PURE__*/
|
2744
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2751
2745
|
width: size,
|
2752
2746
|
height: size,
|
2753
2747
|
ref: ref,
|
2754
2748
|
xmlns: "http://www.w3.org/2000/svg",
|
2755
2749
|
viewBox: "0 0 32 32",
|
2756
2750
|
fill: "currentColor"
|
2757
|
-
}, rest), _path217 || (_path217 = /*#__PURE__*/
|
2751
|
+
}, rest), _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
|
2758
2752
|
d: "M10 6H28V8H10zM10 24H28V26H10zM10 15H28V17H10zM4 15H6V17H4zM4 6H6V8H4zM4 24H6V26H4z"
|
2759
2753
|
})), children);
|
2760
2754
|
});
|
2761
2755
|
if (process.env.NODE_ENV !== "production") {
|
2762
2756
|
List.propTypes = iconPropTypes4cbeb95d.i;
|
2763
2757
|
}
|
2764
|
-
var ListBoxes = /*#__PURE__*/
|
2758
|
+
var ListBoxes = /*#__PURE__*/React.forwardRef(function ListBoxes(_ref120, ref) {
|
2765
2759
|
var children = _ref120.children,
|
2766
2760
|
_ref120$size = _ref120.size,
|
2767
2761
|
size = _ref120$size === void 0 ? 16 : _ref120$size,
|
2768
2762
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref120, _excluded120);
|
2769
|
-
return /*#__PURE__*/
|
2763
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2770
2764
|
width: size,
|
2771
2765
|
height: size,
|
2772
2766
|
ref: ref,
|
2773
2767
|
xmlns: "http://www.w3.org/2000/svg",
|
2774
2768
|
viewBox: "0 0 32 32",
|
2775
2769
|
fill: "currentColor"
|
2776
|
-
}, rest), _path218 || (_path218 = /*#__PURE__*/
|
2770
|
+
}, rest), _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
|
2777
2771
|
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"
|
2778
2772
|
})), children);
|
2779
2773
|
});
|
2780
2774
|
if (process.env.NODE_ENV !== "production") {
|
2781
2775
|
ListBoxes.propTypes = iconPropTypes4cbeb95d.i;
|
2782
2776
|
}
|
2783
|
-
var ListBulleted = /*#__PURE__*/
|
2777
|
+
var ListBulleted = /*#__PURE__*/React.forwardRef(function ListBulleted(_ref121, ref) {
|
2784
2778
|
var children = _ref121.children,
|
2785
2779
|
_ref121$size = _ref121.size,
|
2786
2780
|
size = _ref121$size === void 0 ? 16 : _ref121$size,
|
2787
2781
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref121, _excluded121);
|
2788
2782
|
if (size === 16 || size === "16" || size === "16px") {
|
2789
|
-
return /*#__PURE__*/
|
2783
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2790
2784
|
width: size,
|
2791
2785
|
height: size,
|
2792
2786
|
ref: ref,
|
2793
2787
|
xmlns: "http://www.w3.org/2000/svg",
|
2794
2788
|
viewBox: "0 0 16 16",
|
2795
2789
|
fill: "currentColor"
|
2796
|
-
}, rest), _circle15 || (_circle15 = /*#__PURE__*/
|
2790
|
+
}, rest), _circle15 || (_circle15 = /*#__PURE__*/React.createElement("circle", {
|
2797
2791
|
cx: "3.5",
|
2798
2792
|
cy: "4.5",
|
2799
2793
|
r: "1.5"
|
2800
|
-
})), _circle16 || (_circle16 = /*#__PURE__*/
|
2794
|
+
})), _circle16 || (_circle16 = /*#__PURE__*/React.createElement("circle", {
|
2801
2795
|
cx: "3.5",
|
2802
2796
|
cy: "11.5",
|
2803
2797
|
r: "1.5"
|
2804
|
-
})), _path219 || (_path219 = /*#__PURE__*/
|
2798
|
+
})), _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
|
2805
2799
|
d: "M8 11H15V12H8zM8 4H15V5H8z"
|
2806
2800
|
})), children);
|
2807
2801
|
}
|
2808
|
-
return /*#__PURE__*/
|
2802
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2809
2803
|
width: size,
|
2810
2804
|
height: size,
|
2811
2805
|
ref: ref,
|
2812
2806
|
xmlns: "http://www.w3.org/2000/svg",
|
2813
2807
|
viewBox: "0 0 32 32",
|
2814
2808
|
fill: "currentColor"
|
2815
|
-
}, rest), _circle17 || (_circle17 = /*#__PURE__*/
|
2809
|
+
}, rest), _circle17 || (_circle17 = /*#__PURE__*/React.createElement("circle", {
|
2816
2810
|
cx: "7",
|
2817
2811
|
cy: "9",
|
2818
2812
|
r: "3"
|
2819
|
-
})), _circle18 || (_circle18 = /*#__PURE__*/
|
2813
|
+
})), _circle18 || (_circle18 = /*#__PURE__*/React.createElement("circle", {
|
2820
2814
|
cx: "7",
|
2821
2815
|
cy: "23",
|
2822
2816
|
r: "3"
|
2823
|
-
})), _path220 || (_path220 = /*#__PURE__*/
|
2817
|
+
})), _path220 || (_path220 = /*#__PURE__*/React.createElement("path", {
|
2824
2818
|
d: "M16 22H30V24H16zM16 8H30V10H16z"
|
2825
2819
|
})), children);
|
2826
2820
|
});
|
2827
2821
|
if (process.env.NODE_ENV !== "production") {
|
2828
2822
|
ListBulleted.propTypes = iconPropTypes4cbeb95d.i;
|
2829
2823
|
}
|
2830
|
-
var ListChecked = /*#__PURE__*/
|
2824
|
+
var ListChecked = /*#__PURE__*/React.forwardRef(function ListChecked(_ref122, ref) {
|
2831
2825
|
var children = _ref122.children,
|
2832
2826
|
_ref122$size = _ref122.size,
|
2833
2827
|
size = _ref122$size === void 0 ? 16 : _ref122$size,
|
2834
2828
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref122, _excluded122);
|
2835
|
-
return /*#__PURE__*/
|
2829
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2836
2830
|
width: size,
|
2837
2831
|
height: size,
|
2838
2832
|
ref: ref,
|
2839
2833
|
xmlns: "http://www.w3.org/2000/svg",
|
2840
2834
|
viewBox: "0 0 32 32",
|
2841
2835
|
fill: "currentColor"
|
2842
|
-
}, rest), _path221 || (_path221 = /*#__PURE__*/
|
2836
|
+
}, rest), _path221 || (_path221 = /*#__PURE__*/React.createElement("path", {
|
2843
2837
|
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"
|
2844
2838
|
})), children);
|
2845
2839
|
});
|
2846
2840
|
if (process.env.NODE_ENV !== "production") {
|
2847
2841
|
ListChecked.propTypes = iconPropTypes4cbeb95d.i;
|
2848
2842
|
}
|
2849
|
-
var ListCheckedMirror = /*#__PURE__*/
|
2843
|
+
var ListCheckedMirror = /*#__PURE__*/React.forwardRef(function ListCheckedMirror(_ref123, ref) {
|
2850
2844
|
var children = _ref123.children,
|
2851
2845
|
_ref123$size = _ref123.size,
|
2852
2846
|
size = _ref123$size === void 0 ? 16 : _ref123$size,
|
2853
2847
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref123, _excluded123);
|
2854
|
-
return /*#__PURE__*/
|
2848
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2855
2849
|
width: size,
|
2856
2850
|
height: size,
|
2857
2851
|
ref: ref,
|
2858
2852
|
xmlns: "http://www.w3.org/2000/svg",
|
2859
2853
|
viewBox: "0 0 32 32",
|
2860
2854
|
fill: "currentColor"
|
2861
|
-
}, rest), _path222 || (_path222 = /*#__PURE__*/
|
2855
|
+
}, rest), _path222 || (_path222 = /*#__PURE__*/React.createElement("path", {
|
2862
2856
|
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"
|
2863
2857
|
})), children);
|
2864
2858
|
});
|
2865
2859
|
if (process.env.NODE_ENV !== "production") {
|
2866
2860
|
ListCheckedMirror.propTypes = iconPropTypes4cbeb95d.i;
|
2867
2861
|
}
|
2868
|
-
var ListDropdown = /*#__PURE__*/
|
2862
|
+
var ListDropdown = /*#__PURE__*/React.forwardRef(function ListDropdown(_ref124, ref) {
|
2869
2863
|
var children = _ref124.children,
|
2870
2864
|
_ref124$size = _ref124.size,
|
2871
2865
|
size = _ref124$size === void 0 ? 16 : _ref124$size,
|
2872
2866
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref124, _excluded124);
|
2873
|
-
return /*#__PURE__*/
|
2867
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2874
2868
|
width: size,
|
2875
2869
|
height: size,
|
2876
2870
|
ref: ref,
|
2877
2871
|
xmlns: "http://www.w3.org/2000/svg",
|
2878
2872
|
viewBox: "0 0 32 32",
|
2879
2873
|
fill: "currentColor"
|
2880
|
-
}, rest), _path223 || (_path223 = /*#__PURE__*/
|
2874
|
+
}, rest), _path223 || (_path223 = /*#__PURE__*/React.createElement("path", {
|
2881
2875
|
d: "M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z"
|
2882
|
-
})), _path224 || (_path224 = /*#__PURE__*/
|
2876
|
+
})), _path224 || (_path224 = /*#__PURE__*/React.createElement("path", {
|
2883
2877
|
d: "M15 11H17V13H15zM19 11H26V13H19zM15 17H17V19H15zM19 17H26V19H19zM15 23H17V25H15zM19 23H26V25H19z"
|
2884
2878
|
})), children);
|
2885
2879
|
});
|
2886
2880
|
if (process.env.NODE_ENV !== "production") {
|
2887
2881
|
ListDropdown.propTypes = iconPropTypes4cbeb95d.i;
|
2888
2882
|
}
|
2889
|
-
var ListNumbered = /*#__PURE__*/
|
2883
|
+
var ListNumbered = /*#__PURE__*/React.forwardRef(function ListNumbered(_ref125, ref) {
|
2890
2884
|
var children = _ref125.children,
|
2891
2885
|
_ref125$size = _ref125.size,
|
2892
2886
|
size = _ref125$size === void 0 ? 16 : _ref125$size,
|
2893
2887
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref125, _excluded125);
|
2894
|
-
return /*#__PURE__*/
|
2888
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2895
2889
|
width: size,
|
2896
2890
|
height: size,
|
2897
2891
|
ref: ref,
|
2898
2892
|
xmlns: "http://www.w3.org/2000/svg",
|
2899
2893
|
viewBox: "0 0 32 32",
|
2900
2894
|
fill: "currentColor"
|
2901
|
-
}, rest), _path225 || (_path225 = /*#__PURE__*/
|
2895
|
+
}, rest), _path225 || (_path225 = /*#__PURE__*/React.createElement("path", {
|
2902
2896
|
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"
|
2903
2897
|
})), children);
|
2904
2898
|
});
|