@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"],
|
@@ -144,456 +138,456 @@ var _excluded = ["children", "size"],
|
|
144
138
|
_excluded124 = ["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, _path30, _path31, _path32, _circle, _path33, _circle2, _path34, _path35, _circle3, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _path85, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _path93, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _path106, _path107, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _path117, _path118, _path119, _path120, _path121, _path122, _circle4, _circle5, _circle6, _circle7, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _circle8, _circle9, _circle10, _circle11, _circle12, _path137, _path138, _path139, _path140, _path141, _circle13, _circle14, _circle15, _path142, _circle16, _circle17, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _circle18, _circle19, _circle20, _circle21, _circle22, _path154, _path155, _path156, _path157, _circle23, _circle24, _circle25, _circle26, _circle27, _circle28, _circle29, _circle30, _circle31, _circle32, _circle33, _circle34, _circle35, _circle36, _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, _path219, _path220, _path221, _path222;
|
147
|
-
var CaretLeft = /*#__PURE__*/
|
141
|
+
var CaretLeft = /*#__PURE__*/React.forwardRef(function CaretLeft(_ref, ref) {
|
148
142
|
var children = _ref.children,
|
149
143
|
_ref$size = _ref.size,
|
150
144
|
size = _ref$size === void 0 ? 16 : _ref$size,
|
151
145
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
152
146
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
153
|
-
return /*#__PURE__*/
|
147
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
154
148
|
width: size,
|
155
149
|
height: size,
|
156
150
|
ref: ref,
|
157
151
|
xmlns: "http://www.w3.org/2000/svg",
|
158
152
|
viewBox: "0 0 5 8",
|
159
153
|
fill: "currentColor"
|
160
|
-
}, rest), _path || (_path = /*#__PURE__*/
|
154
|
+
}, rest), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
161
155
|
d: "M5 8L0 4 5 0z"
|
162
156
|
})), children);
|
163
157
|
}
|
164
|
-
return /*#__PURE__*/
|
158
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
165
159
|
width: size,
|
166
160
|
height: size,
|
167
161
|
ref: ref,
|
168
162
|
xmlns: "http://www.w3.org/2000/svg",
|
169
163
|
viewBox: "0 0 32 32",
|
170
164
|
fill: "currentColor"
|
171
|
-
}, rest), _path2 || (_path2 = /*#__PURE__*/
|
165
|
+
}, rest), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
172
166
|
d: "M20 24L10 16 20 8z"
|
173
167
|
})), children);
|
174
168
|
});
|
175
169
|
if (process.env.NODE_ENV !== "production") {
|
176
170
|
CaretLeft.propTypes = iconPropTypes4cbeb95d.i;
|
177
171
|
}
|
178
|
-
var CaretRight = /*#__PURE__*/
|
172
|
+
var CaretRight = /*#__PURE__*/React.forwardRef(function CaretRight(_ref2, ref) {
|
179
173
|
var children = _ref2.children,
|
180
174
|
_ref2$size = _ref2.size,
|
181
175
|
size = _ref2$size === void 0 ? 16 : _ref2$size,
|
182
176
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref2, _excluded2);
|
183
177
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
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 5 8",
|
190
184
|
fill: "currentColor"
|
191
|
-
}, rest), _path3 || (_path3 = /*#__PURE__*/
|
185
|
+
}, rest), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
192
186
|
d: "M0 0L5 4 0 8z"
|
193
187
|
})), children);
|
194
188
|
}
|
195
|
-
return /*#__PURE__*/
|
189
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
196
190
|
width: size,
|
197
191
|
height: size,
|
198
192
|
ref: ref,
|
199
193
|
xmlns: "http://www.w3.org/2000/svg",
|
200
194
|
viewBox: "0 0 32 32",
|
201
195
|
fill: "currentColor"
|
202
|
-
}, rest), _path4 || (_path4 = /*#__PURE__*/
|
196
|
+
}, rest), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
|
203
197
|
d: "M12 8L22 16 12 24z"
|
204
198
|
})), children);
|
205
199
|
});
|
206
200
|
if (process.env.NODE_ENV !== "production") {
|
207
201
|
CaretRight.propTypes = iconPropTypes4cbeb95d.i;
|
208
202
|
}
|
209
|
-
var CaretSort = /*#__PURE__*/
|
203
|
+
var CaretSort = /*#__PURE__*/React.forwardRef(function CaretSort(_ref3, ref) {
|
210
204
|
var children = _ref3.children,
|
211
205
|
_ref3$size = _ref3.size,
|
212
206
|
size = _ref3$size === void 0 ? 16 : _ref3$size,
|
213
207
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref3, _excluded3);
|
214
|
-
return /*#__PURE__*/
|
208
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
215
209
|
width: size,
|
216
210
|
height: size,
|
217
211
|
ref: ref,
|
218
212
|
xmlns: "http://www.w3.org/2000/svg",
|
219
213
|
viewBox: "0 0 32 32",
|
220
214
|
fill: "currentColor"
|
221
|
-
}, rest), _path5 || (_path5 = /*#__PURE__*/
|
215
|
+
}, rest), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
|
222
216
|
d: "M24 24L16 32 8 24zM8 8L16 0 24 8z"
|
223
217
|
})), children);
|
224
218
|
});
|
225
219
|
if (process.env.NODE_ENV !== "production") {
|
226
220
|
CaretSort.propTypes = iconPropTypes4cbeb95d.i;
|
227
221
|
}
|
228
|
-
var CaretSortDown = /*#__PURE__*/
|
222
|
+
var CaretSortDown = /*#__PURE__*/React.forwardRef(function CaretSortDown(_ref4, ref) {
|
229
223
|
var children = _ref4.children,
|
230
224
|
_ref4$size = _ref4.size,
|
231
225
|
size = _ref4$size === void 0 ? 16 : _ref4$size,
|
232
226
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref4, _excluded4);
|
233
|
-
return /*#__PURE__*/
|
227
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
234
228
|
width: size,
|
235
229
|
height: size,
|
236
230
|
ref: ref,
|
237
231
|
xmlns: "http://www.w3.org/2000/svg",
|
238
232
|
viewBox: "0 0 32 32",
|
239
233
|
fill: "currentColor"
|
240
|
-
}, rest), _path6 || (_path6 = /*#__PURE__*/
|
234
|
+
}, rest), _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
|
241
235
|
d: "M24 24L16 32 8 24z"
|
242
236
|
})), children);
|
243
237
|
});
|
244
238
|
if (process.env.NODE_ENV !== "production") {
|
245
239
|
CaretSortDown.propTypes = iconPropTypes4cbeb95d.i;
|
246
240
|
}
|
247
|
-
var CaretSortUp = /*#__PURE__*/
|
241
|
+
var CaretSortUp = /*#__PURE__*/React.forwardRef(function CaretSortUp(_ref5, ref) {
|
248
242
|
var children = _ref5.children,
|
249
243
|
_ref5$size = _ref5.size,
|
250
244
|
size = _ref5$size === void 0 ? 16 : _ref5$size,
|
251
245
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref5, _excluded5);
|
252
|
-
return /*#__PURE__*/
|
246
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
253
247
|
width: size,
|
254
248
|
height: size,
|
255
249
|
ref: ref,
|
256
250
|
xmlns: "http://www.w3.org/2000/svg",
|
257
251
|
viewBox: "0 0 32 32",
|
258
252
|
fill: "currentColor"
|
259
|
-
}, rest), _path7 || (_path7 = /*#__PURE__*/
|
253
|
+
}, rest), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
|
260
254
|
d: "M8 8L16 0 24 8z"
|
261
255
|
})), children);
|
262
256
|
});
|
263
257
|
if (process.env.NODE_ENV !== "production") {
|
264
258
|
CaretSortUp.propTypes = iconPropTypes4cbeb95d.i;
|
265
259
|
}
|
266
|
-
var CaretUp = /*#__PURE__*/
|
260
|
+
var CaretUp = /*#__PURE__*/React.forwardRef(function CaretUp(_ref6, ref) {
|
267
261
|
var children = _ref6.children,
|
268
262
|
_ref6$size = _ref6.size,
|
269
263
|
size = _ref6$size === void 0 ? 16 : _ref6$size,
|
270
264
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref6, _excluded6);
|
271
265
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
272
|
-
return /*#__PURE__*/
|
266
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
273
267
|
width: size,
|
274
268
|
height: size,
|
275
269
|
ref: ref,
|
276
270
|
xmlns: "http://www.w3.org/2000/svg",
|
277
271
|
viewBox: "0 0 8 4",
|
278
272
|
fill: "currentColor"
|
279
|
-
}, rest), _path8 || (_path8 = /*#__PURE__*/
|
273
|
+
}, rest), _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
|
280
274
|
d: "M0 4L4 0 8 4z"
|
281
275
|
})), children);
|
282
276
|
}
|
283
|
-
return /*#__PURE__*/
|
277
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
284
278
|
width: size,
|
285
279
|
height: size,
|
286
280
|
ref: ref,
|
287
281
|
xmlns: "http://www.w3.org/2000/svg",
|
288
282
|
viewBox: "0 0 32 32",
|
289
283
|
fill: "currentColor"
|
290
|
-
}, rest), _path9 || (_path9 = /*#__PURE__*/
|
284
|
+
}, rest), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
|
291
285
|
d: "M8 20L16 10 24 20z"
|
292
286
|
})), children);
|
293
287
|
});
|
294
288
|
if (process.env.NODE_ENV !== "production") {
|
295
289
|
CaretUp.propTypes = iconPropTypes4cbeb95d.i;
|
296
290
|
}
|
297
|
-
var CarouselHorizontal = /*#__PURE__*/
|
291
|
+
var CarouselHorizontal = /*#__PURE__*/React.forwardRef(function CarouselHorizontal(_ref7, ref) {
|
298
292
|
var children = _ref7.children,
|
299
293
|
_ref7$size = _ref7.size,
|
300
294
|
size = _ref7$size === void 0 ? 16 : _ref7$size,
|
301
295
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref7, _excluded7);
|
302
|
-
return /*#__PURE__*/
|
296
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
303
297
|
width: size,
|
304
298
|
height: size,
|
305
299
|
ref: ref,
|
306
300
|
xmlns: "http://www.w3.org/2000/svg",
|
307
301
|
viewBox: "0 0 32 32",
|
308
302
|
fill: "currentColor"
|
309
|
-
}, rest), _path10 || (_path10 = /*#__PURE__*/
|
303
|
+
}, rest), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
|
310
304
|
d: "M22 26H10a2 2 0 01-2-2V8a2 2 0 012-2H22a2 2 0 012 2V24A2 2 0 0122 26zM10 8V24H22V8zM4 24H0V22H4V10H0V8H4a2 2 0 012 2V22A2 2 0 014 24zM32 24H28a2 2 0 01-2-2V10a2 2 0 012-2h4v2H28V22h4z"
|
311
305
|
})), children);
|
312
306
|
});
|
313
307
|
if (process.env.NODE_ENV !== "production") {
|
314
308
|
CarouselHorizontal.propTypes = iconPropTypes4cbeb95d.i;
|
315
309
|
}
|
316
|
-
var CarouselVertical = /*#__PURE__*/
|
310
|
+
var CarouselVertical = /*#__PURE__*/React.forwardRef(function CarouselVertical(_ref8, ref) {
|
317
311
|
var children = _ref8.children,
|
318
312
|
_ref8$size = _ref8.size,
|
319
313
|
size = _ref8$size === void 0 ? 16 : _ref8$size,
|
320
314
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref8, _excluded8);
|
321
|
-
return /*#__PURE__*/
|
315
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
322
316
|
width: size,
|
323
317
|
height: size,
|
324
318
|
ref: ref,
|
325
319
|
xmlns: "http://www.w3.org/2000/svg",
|
326
320
|
viewBox: "0 0 32 32",
|
327
321
|
fill: "currentColor"
|
328
|
-
}, rest), _path11 || (_path11 = /*#__PURE__*/
|
322
|
+
}, rest), _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
|
329
323
|
d: "M26 10V22a2 2 0 01-2 2H8a2 2 0 01-2-2V10A2 2 0 018 8H24A2 2 0 0126 10zM8 22H24V10H8zM24 28v4H22V28H10v4H8V28a2 2 0 012-2H22A2 2 0 0124 28zM24 0V4a2 2 0 01-2 2H10A2 2 0 018 4V0h2V4H22V0z"
|
330
324
|
})), children);
|
331
325
|
});
|
332
326
|
if (process.env.NODE_ENV !== "production") {
|
333
327
|
CarouselVertical.propTypes = iconPropTypes4cbeb95d.i;
|
334
328
|
}
|
335
|
-
var Catalog = /*#__PURE__*/
|
329
|
+
var Catalog = /*#__PURE__*/React.forwardRef(function Catalog(_ref9, ref) {
|
336
330
|
var children = _ref9.children,
|
337
331
|
_ref9$size = _ref9.size,
|
338
332
|
size = _ref9$size === void 0 ? 16 : _ref9$size,
|
339
333
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref9, _excluded9);
|
340
|
-
return /*#__PURE__*/
|
334
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
341
335
|
width: size,
|
342
336
|
height: size,
|
343
337
|
ref: ref,
|
344
338
|
xmlns: "http://www.w3.org/2000/svg",
|
345
339
|
viewBox: "0 0 32 32",
|
346
340
|
fill: "currentColor"
|
347
|
-
}, rest), _path12 || (_path12 = /*#__PURE__*/
|
341
|
+
}, rest), _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
|
348
342
|
d: "M26,2H8A2,2,0,0,0,6,4V8H4v2H6v5H4v2H6v5H4v2H6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4A2,2,0,0,0,26,2Zm0,26H8V24h2V22H8V17h2V15H8V10h2V8H8V4H26Z"
|
349
|
-
})), _path13 || (_path13 = /*#__PURE__*/
|
343
|
+
})), _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
|
350
344
|
d: "M14 8H22V10H14zM14 15H22V17H14zM14 22H22V24H14z"
|
351
345
|
})), children);
|
352
346
|
});
|
353
347
|
if (process.env.NODE_ENV !== "production") {
|
354
348
|
Catalog.propTypes = iconPropTypes4cbeb95d.i;
|
355
349
|
}
|
356
|
-
var CatalogPublish = /*#__PURE__*/
|
350
|
+
var CatalogPublish = /*#__PURE__*/React.forwardRef(function CatalogPublish(_ref10, ref) {
|
357
351
|
var children = _ref10.children,
|
358
352
|
_ref10$size = _ref10.size,
|
359
353
|
size = _ref10$size === void 0 ? 16 : _ref10$size,
|
360
354
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref10, _excluded10);
|
361
|
-
return /*#__PURE__*/
|
355
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
362
356
|
width: size,
|
363
357
|
height: size,
|
364
358
|
ref: ref,
|
365
359
|
xmlns: "http://www.w3.org/2000/svg",
|
366
360
|
viewBox: "0 0 32 32",
|
367
361
|
fill: "currentColor"
|
368
|
-
}, rest), _path14 || (_path14 = /*#__PURE__*/
|
362
|
+
}, rest), _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
|
369
363
|
d: "M20 20L21.4 21.4 18.8 24 28 24 28 26 18.8 26 21.4 28.6 20 30 15 25zM14 15H22V17H14zM14 8H22V10H14z"
|
370
|
-
})), _path15 || (_path15 = /*#__PURE__*/
|
364
|
+
})), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
|
371
365
|
d: "M13,28H8v-4h2v-2H8v-5h2v-2H8v-5h2V8H8V4h18v16h2V4c0-1.1-0.9-2-2-2H8C6.9,2,6,2.9,6,4v4H4v2h2v5H4v2h2v5H4v2h2v4 c0,1.1,0.9,2,2,2h5V28z"
|
372
366
|
})), children);
|
373
367
|
});
|
374
368
|
if (process.env.NODE_ENV !== "production") {
|
375
369
|
CatalogPublish.propTypes = iconPropTypes4cbeb95d.i;
|
376
370
|
}
|
377
|
-
var Categories = /*#__PURE__*/
|
371
|
+
var Categories = /*#__PURE__*/React.forwardRef(function Categories(_ref11, ref) {
|
378
372
|
var children = _ref11.children,
|
379
373
|
_ref11$size = _ref11.size,
|
380
374
|
size = _ref11$size === void 0 ? 16 : _ref11$size,
|
381
375
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref11, _excluded11);
|
382
|
-
return /*#__PURE__*/
|
376
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
383
377
|
width: size,
|
384
378
|
height: size,
|
385
379
|
ref: ref,
|
386
380
|
xmlns: "http://www.w3.org/2000/svg",
|
387
381
|
viewBox: "0 0 32 32",
|
388
382
|
fill: "currentColor"
|
389
|
-
}, rest), _path16 || (_path16 = /*#__PURE__*/
|
383
|
+
}, rest), _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
|
390
384
|
d: "M6.76 6l.45.89L7.76 8H12v5H4V6H6.76m.62-2H3A1 1 0 002 5v9a1 1 0 001 1H13a1 1 0 001-1V7a1 1 0 00-1-1H9L8.28 4.55A1 1 0 007.38 4zM22.76 6l.45.89L23.76 8H28v5H20V6h2.76m.62-2H19a1 1 0 00-1 1v9a1 1 0 001 1H29a1 1 0 001-1V7a1 1 0 00-1-1H25l-.72-1.45a1 1 0 00-.9-.55zM6.76 19l.45.89L7.76 21H12v5H4V19H6.76m.62-2H3a1 1 0 00-1 1v9a1 1 0 001 1H13a1 1 0 001-1V20a1 1 0 00-1-1H9l-.72-1.45a1 1 0 00-.9-.55zM22.76 19l.45.89L23.76 21H28v5H20V19h2.76m.62-2H19a1 1 0 00-1 1v9a1 1 0 001 1H29a1 1 0 001-1V20a1 1 0 00-1-1H25l-.72-1.45a1 1 0 00-.9-.55z"
|
391
385
|
})), children);
|
392
386
|
});
|
393
387
|
if (process.env.NODE_ENV !== "production") {
|
394
388
|
Categories.propTypes = iconPropTypes4cbeb95d.i;
|
395
389
|
}
|
396
|
-
var Category = /*#__PURE__*/
|
390
|
+
var Category = /*#__PURE__*/React.forwardRef(function Category(_ref12, ref) {
|
397
391
|
var children = _ref12.children,
|
398
392
|
_ref12$size = _ref12.size,
|
399
393
|
size = _ref12$size === void 0 ? 16 : _ref12$size,
|
400
394
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref12, _excluded12);
|
401
|
-
return /*#__PURE__*/
|
395
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
402
396
|
width: size,
|
403
397
|
height: size,
|
404
398
|
ref: ref,
|
405
399
|
xmlns: "http://www.w3.org/2000/svg",
|
406
400
|
viewBox: "0 0 32 32",
|
407
401
|
fill: "currentColor"
|
408
|
-
}, rest), _path17 || (_path17 = /*#__PURE__*/
|
402
|
+
}, rest), _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
|
409
403
|
d: "M27,22.1414V18a2,2,0,0,0-2-2H17V12h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H13a2.002,2.002,0,0,0-2,2v6a2.002,2.002,0,0,0,2,2h2v4H7a2,2,0,0,0-2,2v4.1421a4,4,0,1,0,2,0V18h8v4.142a4,4,0,1,0,2,0V18h8v4.1414a4,4,0,1,0,2,0ZM13,4h6l.001,6H13ZM8,26a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,26Zm10,0a2,2,0,1,1-2-2A2.0027,2.0027,0,0,1,18,26Zm8,2a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,28Z"
|
410
404
|
})), children);
|
411
405
|
});
|
412
406
|
if (process.env.NODE_ENV !== "production") {
|
413
407
|
Category.propTypes = iconPropTypes4cbeb95d.i;
|
414
408
|
}
|
415
|
-
var CategoryAdd = /*#__PURE__*/
|
409
|
+
var CategoryAdd = /*#__PURE__*/React.forwardRef(function CategoryAdd(_ref13, ref) {
|
416
410
|
var children = _ref13.children,
|
417
411
|
_ref13$size = _ref13.size,
|
418
412
|
size = _ref13$size === void 0 ? 16 : _ref13$size,
|
419
413
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref13, _excluded13);
|
420
|
-
return /*#__PURE__*/
|
414
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
421
415
|
width: size,
|
422
416
|
height: size,
|
423
417
|
ref: ref,
|
424
418
|
xmlns: "http://www.w3.org/2000/svg",
|
425
419
|
viewBox: "0 0 32 32",
|
426
420
|
fill: "currentColor"
|
427
|
-
}, rest), _path18 || (_path18 = /*#__PURE__*/
|
421
|
+
}, rest), _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
|
428
422
|
d: "M15 6L13.59 7.41 17.17 11 13.59 14.59 15 16 20 11 15 6z"
|
429
|
-
})), _path19 || (_path19 = /*#__PURE__*/
|
423
|
+
})), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
|
430
424
|
d: "M28,24H17V20h6a2.0027,2.0027,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H9A2.002,2.002,0,0,0,7,4V18a2.0023,2.0023,0,0,0,2,2h6v4H4a2,2,0,0,0-2,2v4H4V26H15v4h2V26H28v4h2V26A2,2,0,0,0,28,24ZM9,4H23l.002,14H9Z"
|
431
425
|
})), children);
|
432
426
|
});
|
433
427
|
if (process.env.NODE_ENV !== "production") {
|
434
428
|
CategoryAdd.propTypes = iconPropTypes4cbeb95d.i;
|
435
429
|
}
|
436
|
-
var CategoryAnd = /*#__PURE__*/
|
430
|
+
var CategoryAnd = /*#__PURE__*/React.forwardRef(function CategoryAnd(_ref14, ref) {
|
437
431
|
var children = _ref14.children,
|
438
432
|
_ref14$size = _ref14.size,
|
439
433
|
size = _ref14$size === void 0 ? 16 : _ref14$size,
|
440
434
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref14, _excluded14);
|
441
|
-
return /*#__PURE__*/
|
435
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
442
436
|
width: size,
|
443
437
|
height: size,
|
444
438
|
ref: ref,
|
445
439
|
xmlns: "http://www.w3.org/2000/svg",
|
446
440
|
viewBox: "0 0 32 32",
|
447
441
|
fill: "currentColor"
|
448
|
-
}, rest), _path20 || (_path20 = /*#__PURE__*/
|
442
|
+
}, rest), _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
|
449
443
|
d: "M4 30V26H15v4h2V26H28v4h2V26a2 2 0 00-2-2H17V19H15v5H4a2 2 0 00-2 2v4zM20.6953 13.9858A10.08 10.08 0 0021.9463 10H23V8H20V9a9.2634 9.2634 0 01-.6641 3.2705L16.6511 8.8816a5.1261 5.1261 0 002.1436-2.3694A3.2522 3.2522 0 0018.6062 3.81a3.38 3.38 0 00-2.2391-1.7056 3.4688 3.4688 0 00-4.2223 2.1186c-.5044 1.5518.4406 3.1158 1.2612 4.1077A4.7255 4.7255 0 0011.06 13.1587 4.4526 4.4526 0 0015.4268 17h.0058a5.7844 5.7844 0 003.9717-1.4233L20.532 17h2.5519zM14.047 4.8413A1.3224 1.3224 0 0115.4141 4a2.41 2.41 0 01.5214.0581 1.4018 1.4018 0 01.9111.7022 1.2493 1.2493 0 01.0791 1.042A3.6871 3.6871 0 0115.2441 7.395C14.5831 6.6816 13.8087 5.5732 14.047 4.8413zM15.4316 15h-.0039a2.4432 2.4432 0 01-2.3916-2.1509 2.8261 2.8261 0 011.81-3.0249l3.3115 4.1787A3.8853 3.8853 0 0115.4316 15z"
|
450
444
|
})), children);
|
451
445
|
});
|
452
446
|
if (process.env.NODE_ENV !== "production") {
|
453
447
|
CategoryAnd.propTypes = iconPropTypes4cbeb95d.i;
|
454
448
|
}
|
455
|
-
var CategoryNew = /*#__PURE__*/
|
449
|
+
var CategoryNew = /*#__PURE__*/React.forwardRef(function CategoryNew(_ref15, ref) {
|
456
450
|
var children = _ref15.children,
|
457
451
|
_ref15$size = _ref15.size,
|
458
452
|
size = _ref15$size === void 0 ? 16 : _ref15$size,
|
459
453
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref15, _excluded15);
|
460
|
-
return /*#__PURE__*/
|
454
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
461
455
|
width: size,
|
462
456
|
height: size,
|
463
457
|
ref: ref,
|
464
458
|
xmlns: "http://www.w3.org/2000/svg",
|
465
459
|
viewBox: "0 0 32 32",
|
466
460
|
fill: "currentColor"
|
467
|
-
}, rest), _path21 || (_path21 = /*#__PURE__*/
|
461
|
+
}, rest), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
|
468
462
|
d: "M21 10L17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z"
|
469
|
-
})), _path22 || (_path22 = /*#__PURE__*/
|
463
|
+
})), _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
|
470
464
|
d: "M28,24H17V20h6a2.0027,2.0027,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H9A2.002,2.002,0,0,0,7,4V18a2.0023,2.0023,0,0,0,2,2h6v4H4a2,2,0,0,0-2,2v4H4V26H15v4h2V26H28v4h2V26A2,2,0,0,0,28,24ZM9,4H23l.002,14H9Z"
|
471
465
|
})), children);
|
472
466
|
});
|
473
467
|
if (process.env.NODE_ENV !== "production") {
|
474
468
|
CategoryNew.propTypes = iconPropTypes4cbeb95d.i;
|
475
469
|
}
|
476
|
-
var CategoryNewEach = /*#__PURE__*/
|
470
|
+
var CategoryNewEach = /*#__PURE__*/React.forwardRef(function CategoryNewEach(_ref16, ref) {
|
477
471
|
var children = _ref16.children,
|
478
472
|
_ref16$size = _ref16.size,
|
479
473
|
size = _ref16$size === void 0 ? 16 : _ref16$size,
|
480
474
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref16, _excluded16);
|
481
|
-
return /*#__PURE__*/
|
475
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
482
476
|
width: size,
|
483
477
|
height: size,
|
484
478
|
ref: ref,
|
485
479
|
xmlns: "http://www.w3.org/2000/svg",
|
486
480
|
viewBox: "0 0 32 32",
|
487
481
|
fill: "currentColor"
|
488
|
-
}, rest), _path23 || (_path23 = /*#__PURE__*/
|
482
|
+
}, rest), _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
|
489
483
|
d: "M29 10H24v2h5v6H22v2h3v2.142a4 4 0 102 0V20h2a2.0027 2.0027 0 002-2V12A2.0023 2.0023 0 0029 10zM28 26a2 2 0 11-2-2A2.0027 2.0027 0 0128 26zM19 6H14V8h5v6H12v2h3v6.142a4 4 0 102 0V16h2a2.0023 2.0023 0 002-2V8A2.0023 2.0023 0 0019 6zM18 26a2 2 0 11-2-2A2.0027 2.0027 0 0118 26zM9 2H3A2.002 2.002 0 001 4v6a2.002 2.002 0 002 2H5V22.142a4 4 0 102 0V12H9a2.002 2.002 0 002-2V4A2.002 2.002 0 009 2zM8 26a2 2 0 11-2-2A2.0023 2.0023 0 018 26zM3 10V4H9l.0015 6z"
|
490
484
|
})), children);
|
491
485
|
});
|
492
486
|
if (process.env.NODE_ENV !== "production") {
|
493
487
|
CategoryNewEach.propTypes = iconPropTypes4cbeb95d.i;
|
494
488
|
}
|
495
|
-
var Caution = /*#__PURE__*/
|
489
|
+
var Caution = /*#__PURE__*/React.forwardRef(function Caution(_ref17, ref) {
|
496
490
|
var children = _ref17.children,
|
497
491
|
_ref17$size = _ref17.size,
|
498
492
|
size = _ref17$size === void 0 ? 16 : _ref17$size,
|
499
493
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref17, _excluded17);
|
500
494
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
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 16 16",
|
507
501
|
fill: "currentColor"
|
508
|
-
}, rest), _path24 || (_path24 = /*#__PURE__*/
|
502
|
+
}, rest), _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
|
509
503
|
d: "M12.3154,12H3.6846L8,4.0884,12.3154,12M14,13,8,2,2,13Z"
|
510
|
-
})), _path25 || (_path25 = /*#__PURE__*/
|
504
|
+
})), _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
|
511
505
|
d: "M12.315 12L3.685 12 8 4.088 12.315 12z"
|
512
506
|
})), children);
|
513
507
|
}
|
514
|
-
return /*#__PURE__*/
|
508
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
515
509
|
width: size,
|
516
510
|
height: size,
|
517
511
|
ref: ref,
|
518
512
|
xmlns: "http://www.w3.org/2000/svg",
|
519
513
|
viewBox: "0 0 16 16",
|
520
514
|
fill: "currentColor"
|
521
|
-
}, rest), _path26 || (_path26 = /*#__PURE__*/
|
515
|
+
}, rest), _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
|
522
516
|
d: "M12.3154,12H3.6846L8,4.0884,12.3154,12M14,13,8,2,2,13Z"
|
523
|
-
})), _path27 || (_path27 = /*#__PURE__*/
|
517
|
+
})), _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
|
524
518
|
d: "M12.315 12L3.685 12 8 4.088 12.315 12z"
|
525
519
|
})), children);
|
526
520
|
});
|
527
521
|
if (process.env.NODE_ENV !== "production") {
|
528
522
|
Caution.propTypes = iconPropTypes4cbeb95d.i;
|
529
523
|
}
|
530
|
-
var CautionInverted = /*#__PURE__*/
|
524
|
+
var CautionInverted = /*#__PURE__*/React.forwardRef(function CautionInverted(_ref18, ref) {
|
531
525
|
var children = _ref18.children,
|
532
526
|
_ref18$size = _ref18.size,
|
533
527
|
size = _ref18$size === void 0 ? 16 : _ref18$size,
|
534
528
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref18, _excluded18);
|
535
529
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
536
|
-
return /*#__PURE__*/
|
530
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
537
531
|
width: size,
|
538
532
|
height: size,
|
539
533
|
ref: ref,
|
540
534
|
xmlns: "http://www.w3.org/2000/svg",
|
541
535
|
viewBox: "0 0 16 16",
|
542
536
|
fill: "currentColor"
|
543
|
-
}, rest), _path28 || (_path28 = /*#__PURE__*/
|
537
|
+
}, rest), _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
|
544
538
|
d: "M8 14L2 3 14 3 8 14z"
|
545
539
|
})), children);
|
546
540
|
}
|
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 16 16",
|
553
547
|
fill: "currentColor"
|
554
|
-
}, rest), _path29 || (_path29 = /*#__PURE__*/
|
548
|
+
}, rest), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
|
555
549
|
d: "M8 14L2 3 14 3 8 14z"
|
556
550
|
})), children);
|
557
551
|
});
|
558
552
|
if (process.env.NODE_ENV !== "production") {
|
559
553
|
CautionInverted.propTypes = iconPropTypes4cbeb95d.i;
|
560
554
|
}
|
561
|
-
var QCcX = /*#__PURE__*/
|
555
|
+
var QCcX = /*#__PURE__*/React.forwardRef(function QCcX(_ref19, ref) {
|
562
556
|
var children = _ref19.children,
|
563
557
|
_ref19$size = _ref19.size,
|
564
558
|
size = _ref19$size === void 0 ? 16 : _ref19$size,
|
565
559
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref19, _excluded19);
|
566
|
-
return /*#__PURE__*/
|
560
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
567
561
|
width: size,
|
568
562
|
height: size,
|
569
563
|
ref: ref,
|
570
564
|
xmlns: "http://www.w3.org/2000/svg",
|
571
565
|
viewBox: "0 0 32 32",
|
572
566
|
fill: "currentColor"
|
573
|
-
}, rest), _path30 || (_path30 = /*#__PURE__*/
|
567
|
+
}, rest), _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
|
574
568
|
d: "M10 23H5a2 2 0 01-2-2V15a2 2 0 012-2h5v2H5v6h5zM19 23H14a2 2 0 01-2-2V15a2 2 0 012-2h5v2H14v6h5zM29 9L27 9 25 15 23 9 21 9 23.75 16 21 23 23 23 25 17 27 23 29 23 26.25 16 29 9z"
|
575
569
|
})), children);
|
576
570
|
});
|
577
571
|
if (process.env.NODE_ENV !== "production") {
|
578
572
|
QCcX.propTypes = iconPropTypes4cbeb95d.i;
|
579
573
|
}
|
580
|
-
var WatsonHealthCdArchive = /*#__PURE__*/
|
574
|
+
var WatsonHealthCdArchive = /*#__PURE__*/React.forwardRef(function WatsonHealthCdArchive(_ref20, ref) {
|
581
575
|
var children = _ref20.children,
|
582
576
|
_ref20$size = _ref20.size,
|
583
577
|
size = _ref20$size === void 0 ? 16 : _ref20$size,
|
584
578
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref20, _excluded20);
|
585
|
-
return /*#__PURE__*/
|
579
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
586
580
|
width: size,
|
587
581
|
height: size,
|
588
582
|
ref: ref,
|
589
583
|
xmlns: "http://www.w3.org/2000/svg",
|
590
584
|
viewBox: "0 0 32 32",
|
591
585
|
fill: "currentColor"
|
592
|
-
}, rest), _path31 || (_path31 = /*#__PURE__*/
|
586
|
+
}, rest), _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
|
593
587
|
d: "M16,28A12,12,0,1,1,28,16,12,12,0,0,1,16,28ZM16,6A10,10,0,1,0,26,16,10,10,0,0,0,16,6Z"
|
594
|
-
})), _path32 || (_path32 = /*#__PURE__*/
|
588
|
+
})), _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
|
595
589
|
d: "M16,22a6,6,0,1,1,6-6A6,6,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4,4,0,0,0,16,12Z"
|
596
|
-
})), _circle || (_circle = /*#__PURE__*/
|
590
|
+
})), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
|
597
591
|
cx: "16",
|
598
592
|
cy: "16",
|
599
593
|
r: "2"
|
@@ -602,444 +596,444 @@ var WatsonHealthCdArchive = /*#__PURE__*/React__default["default"].forwardRef(fu
|
|
602
596
|
if (process.env.NODE_ENV !== "production") {
|
603
597
|
WatsonHealthCdArchive.propTypes = iconPropTypes4cbeb95d.i;
|
604
598
|
}
|
605
|
-
var WatsonHealthCdCreateArchive = /*#__PURE__*/
|
599
|
+
var WatsonHealthCdCreateArchive = /*#__PURE__*/React.forwardRef(function WatsonHealthCdCreateArchive(_ref21, ref) {
|
606
600
|
var children = _ref21.children,
|
607
601
|
_ref21$size = _ref21.size,
|
608
602
|
size = _ref21$size === void 0 ? 16 : _ref21$size,
|
609
603
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref21, _excluded21);
|
610
|
-
return /*#__PURE__*/
|
604
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
611
605
|
width: size,
|
612
606
|
height: size,
|
613
607
|
ref: ref,
|
614
608
|
xmlns: "http://www.w3.org/2000/svg",
|
615
609
|
viewBox: "0 0 32 32",
|
616
610
|
fill: "currentColor"
|
617
|
-
}, rest), _path33 || (_path33 = /*#__PURE__*/
|
611
|
+
}, rest), _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
|
618
612
|
d: "M14,20a6,6,0,1,1,6-6A6,6,0,0,1,14,20Zm0-10a4,4,0,1,0,4,4A4,4,0,0,0,14,10Z"
|
619
|
-
})), _circle2 || (_circle2 = /*#__PURE__*/
|
613
|
+
})), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
|
620
614
|
cx: "14",
|
621
615
|
cy: "14",
|
622
616
|
r: "2"
|
623
|
-
})), _path34 || (_path34 = /*#__PURE__*/
|
617
|
+
})), _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
|
624
618
|
d: "M17,23.54A10,10,0,1,1,24,14c0,.34,0,.67-.05,1h2c0-.33.05-.66.05-1A12,12,0,1,0,14,26a12.33,12.33,0,0,0,3-.39Z"
|
625
|
-
})), _path35 || (_path35 = /*#__PURE__*/
|
619
|
+
})), _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
|
626
620
|
d: "M25,30l-2.14-1A5,5,0,0,1,20,24.47V18H30v6.47A5,5,0,0,1,27.14,29ZM22,20v4.47a3,3,0,0,0,1.72,2.71l1.28.61,1.28-.61A3,3,0,0,0,28,24.47V20Z"
|
627
621
|
})), children);
|
628
622
|
});
|
629
623
|
if (process.env.NODE_ENV !== "production") {
|
630
624
|
WatsonHealthCdCreateArchive.propTypes = iconPropTypes4cbeb95d.i;
|
631
625
|
}
|
632
|
-
var WatsonHealthCdCreateExchange = /*#__PURE__*/
|
626
|
+
var WatsonHealthCdCreateExchange = /*#__PURE__*/React.forwardRef(function WatsonHealthCdCreateExchange(_ref22, ref) {
|
633
627
|
var children = _ref22.children,
|
634
628
|
_ref22$size = _ref22.size,
|
635
629
|
size = _ref22$size === void 0 ? 16 : _ref22$size,
|
636
630
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref22, _excluded22);
|
637
|
-
return /*#__PURE__*/
|
631
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
638
632
|
width: size,
|
639
633
|
height: size,
|
640
634
|
ref: ref,
|
641
635
|
xmlns: "http://www.w3.org/2000/svg",
|
642
636
|
viewBox: "0 0 32 32",
|
643
637
|
fill: "currentColor"
|
644
|
-
}, rest), _circle3 || (_circle3 = /*#__PURE__*/
|
638
|
+
}, rest), _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
|
645
639
|
cx: "14",
|
646
640
|
cy: "14",
|
647
641
|
r: "2"
|
648
|
-
})), _path36 || (_path36 = /*#__PURE__*/
|
642
|
+
})), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
|
649
643
|
d: "M14,2a12,12,0,0,0,0,24V24A10,10,0,1,1,24,14,8.27,8.27,0,0,1,24,15h2c0-.33.05-.66.05-1A12,12,0,0,0,14,2Z"
|
650
|
-
})), _path37 || (_path37 = /*#__PURE__*/
|
644
|
+
})), _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
|
651
645
|
d: "M17 24L26.17 24 23.58 26.59 25 28 30 23 25 18 23.58 19.42 26.17 22 17 22 17 24zM14 20a6 6 0 116-6A6 6 0 0114 20zm0-10a4 4 0 104 4A4 4 0 0014 10z"
|
652
646
|
})), children);
|
653
647
|
});
|
654
648
|
if (process.env.NODE_ENV !== "production") {
|
655
649
|
WatsonHealthCdCreateExchange.propTypes = iconPropTypes4cbeb95d.i;
|
656
650
|
}
|
657
|
-
var Cda = /*#__PURE__*/
|
651
|
+
var Cda = /*#__PURE__*/React.forwardRef(function Cda(_ref23, ref) {
|
658
652
|
var children = _ref23.children,
|
659
653
|
_ref23$size = _ref23.size,
|
660
654
|
size = _ref23$size === void 0 ? 16 : _ref23$size,
|
661
655
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref23, _excluded23);
|
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: "M28 9H24a2.002 2.002 0 00-2 2V23h2V18h4v5h2V11A2.0023 2.0023 0 0028 9zm-4 7V11h4v5zM16 23H12V9h4a4.0042 4.0042 0 014 4v6A4.0039 4.0039 0 0116 23zm-2-2h2a2.0027 2.0027 0 002-2V13a2.0023 2.0023 0 00-2-2H14zM10 23H4a2.0023 2.0023 0 01-2-2V11A2.002 2.002 0 014 9h6v2H4V21h6z"
|
671
665
|
})), children);
|
672
666
|
});
|
673
667
|
if (process.env.NODE_ENV !== "production") {
|
674
668
|
Cda.propTypes = iconPropTypes4cbeb95d.i;
|
675
669
|
}
|
676
|
-
var CellTower = /*#__PURE__*/
|
670
|
+
var CellTower = /*#__PURE__*/React.forwardRef(function CellTower(_ref24, ref) {
|
677
671
|
var children = _ref24.children,
|
678
672
|
_ref24$size = _ref24.size,
|
679
673
|
size = _ref24$size === void 0 ? 16 : _ref24$size,
|
680
674
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref24, _excluded24);
|
681
|
-
return /*#__PURE__*/
|
675
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
682
676
|
width: size,
|
683
677
|
height: size,
|
684
678
|
ref: ref,
|
685
679
|
xmlns: "http://www.w3.org/2000/svg",
|
686
680
|
viewBox: "0 0 32 32",
|
687
681
|
fill: "currentColor"
|
688
|
-
}, rest), _path39 || (_path39 = /*#__PURE__*/
|
682
|
+
}, rest), _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
|
689
683
|
d: "M25 11L25 16 17 16 17 11 15 11 15 16 7 16 7 11 5 11 5 23 7 23 7 18 10 18 10 30 12 30 12 18 15 18 15 23 17 23 17 18 20 18 20 30 22 30 22 18 25 18 25 23 27 23 27 11zM16 6c-1.7 0-3.2.7-4.2 1.8l1.4 1.4C13.9 8.4 14.9 8 16 8s2.1.4 2.8 1.2l1.4-1.4C19.2 6.7 17.7 6 16 6z"
|
690
|
-
})), _path40 || (_path40 = /*#__PURE__*/
|
684
|
+
})), _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
|
691
685
|
d: "M8.9,4.9l1.4,1.4C11.8,4.9,13.8,4,16,4s4.2,0.9,5.7,2.3l1.4-1.4C21.3,3.1,18.8,2,16,2S10.7,3.1,8.9,4.9z"
|
692
686
|
})), children);
|
693
687
|
});
|
694
688
|
if (process.env.NODE_ENV !== "production") {
|
695
689
|
CellTower.propTypes = iconPropTypes4cbeb95d.i;
|
696
690
|
}
|
697
|
-
var CenterCircle = /*#__PURE__*/
|
691
|
+
var CenterCircle = /*#__PURE__*/React.forwardRef(function CenterCircle(_ref25, ref) {
|
698
692
|
var children = _ref25.children,
|
699
693
|
_ref25$size = _ref25.size,
|
700
694
|
size = _ref25$size === void 0 ? 16 : _ref25$size,
|
701
695
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref25, _excluded25);
|
702
|
-
return /*#__PURE__*/
|
696
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
703
697
|
width: size,
|
704
698
|
height: size,
|
705
699
|
ref: ref,
|
706
700
|
xmlns: "http://www.w3.org/2000/svg",
|
707
701
|
viewBox: "0 0 32 32",
|
708
702
|
fill: "currentColor"
|
709
|
-
}, rest), _path41 || (_path41 = /*#__PURE__*/
|
703
|
+
}, rest), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
|
710
704
|
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.9492V22H15v3.9492A10.0166,10.0166,0,0,1,6.0508,17H10V15H6.0508A10.0166,10.0166,0,0,1,15,6.0508V10h2V6.0508A10.0166,10.0166,0,0,1,25.9492,15H22v2h3.9492A10.0166,10.0166,0,0,1,17,25.9492Z"
|
711
705
|
})), children);
|
712
706
|
});
|
713
707
|
if (process.env.NODE_ENV !== "production") {
|
714
708
|
CenterCircle.propTypes = iconPropTypes4cbeb95d.i;
|
715
709
|
}
|
716
|
-
var CenterSquare = /*#__PURE__*/
|
710
|
+
var CenterSquare = /*#__PURE__*/React.forwardRef(function CenterSquare(_ref26, ref) {
|
717
711
|
var children = _ref26.children,
|
718
712
|
_ref26$size = _ref26.size,
|
719
713
|
size = _ref26$size === void 0 ? 16 : _ref26$size,
|
720
714
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref26, _excluded26);
|
721
|
-
return /*#__PURE__*/
|
715
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
722
716
|
width: size,
|
723
717
|
height: size,
|
724
718
|
ref: ref,
|
725
719
|
xmlns: "http://www.w3.org/2000/svg",
|
726
720
|
viewBox: "0 0 32 32",
|
727
721
|
fill: "currentColor"
|
728
|
-
}, rest), _path42 || (_path42 = /*#__PURE__*/
|
722
|
+
}, rest), _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
|
729
723
|
d: "M6 12L4 12 4 4 12 4 12 6 6 6 6 12zM28 12L26 12 26 6 20 6 20 4 28 4 28 12zM12 28L4 28 4 20 6 20 6 26 12 26 12 28zM28 28L20 28 20 26 26 26 26 20 28 20 28 28zM15 10H17V14H15zM10 15H14V17H10zM18 15H22V17H18zM15 18H17V22H15z"
|
730
724
|
})), children);
|
731
725
|
});
|
732
726
|
if (process.env.NODE_ENV !== "production") {
|
733
727
|
CenterSquare.propTypes = iconPropTypes4cbeb95d.i;
|
734
728
|
}
|
735
|
-
var CenterToFit = /*#__PURE__*/
|
729
|
+
var CenterToFit = /*#__PURE__*/React.forwardRef(function CenterToFit(_ref27, ref) {
|
736
730
|
var children = _ref27.children,
|
737
731
|
_ref27$size = _ref27.size,
|
738
732
|
size = _ref27$size === void 0 ? 16 : _ref27$size,
|
739
733
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref27, _excluded27);
|
740
|
-
return /*#__PURE__*/
|
734
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
741
735
|
width: size,
|
742
736
|
height: size,
|
743
737
|
ref: ref,
|
744
738
|
xmlns: "http://www.w3.org/2000/svg",
|
745
739
|
viewBox: "0 0 32 32",
|
746
740
|
fill: "currentColor"
|
747
|
-
}, rest), _path43 || (_path43 = /*#__PURE__*/
|
741
|
+
}, rest), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
|
748
742
|
d: "M8 2L2 2 2 8 4 8 4 4 8 4 8 2zM24 2L30 2 30 8 28 8 28 4 24 4 24 2zM8 30L2 30 2 24 4 24 4 28 8 28 8 30zM24 30L30 30 30 24 28 24 28 28 24 28 24 30zM24 24H8a2.0023 2.0023 0 01-2-2V10A2.0023 2.0023 0 018 8H24a2.0023 2.0023 0 012 2V22A2.0023 2.0023 0 0124 24zM8 10V22H24V10z"
|
749
743
|
})), children);
|
750
744
|
});
|
751
745
|
if (process.env.NODE_ENV !== "production") {
|
752
746
|
CenterToFit.propTypes = iconPropTypes4cbeb95d.i;
|
753
747
|
}
|
754
|
-
var Certificate = /*#__PURE__*/
|
748
|
+
var Certificate = /*#__PURE__*/React.forwardRef(function Certificate(_ref28, ref) {
|
755
749
|
var children = _ref28.children,
|
756
750
|
_ref28$size = _ref28.size,
|
757
751
|
size = _ref28$size === void 0 ? 16 : _ref28$size,
|
758
752
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref28, _excluded28);
|
759
|
-
return /*#__PURE__*/
|
753
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
760
754
|
width: size,
|
761
755
|
height: size,
|
762
756
|
ref: ref,
|
763
757
|
xmlns: "http://www.w3.org/2000/svg",
|
764
758
|
viewBox: "0 0 32 32",
|
765
759
|
fill: "currentColor"
|
766
|
-
}, rest), _path44 || (_path44 = /*#__PURE__*/
|
760
|
+
}, rest), _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
|
767
761
|
d: "M24 17L25.912 20.703 30 21.297 27 24 27.771 28 24 25.75 20.229 28 21 24 18 21.297 22.2 20.703 24 17zM6 16H12V18H6zM6 12H16V14H6zM6 8H16V10H6z"
|
768
|
-
})), _path45 || (_path45 = /*#__PURE__*/
|
762
|
+
})), _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
|
769
763
|
d: "M16,26H4V6H28V16h2V6a2,2,0,0,0-2-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H16Z"
|
770
764
|
})), children);
|
771
765
|
});
|
772
766
|
if (process.env.NODE_ENV !== "production") {
|
773
767
|
Certificate.propTypes = iconPropTypes4cbeb95d.i;
|
774
768
|
}
|
775
|
-
var CertificateCheck = /*#__PURE__*/
|
769
|
+
var CertificateCheck = /*#__PURE__*/React.forwardRef(function CertificateCheck(_ref29, ref) {
|
776
770
|
var children = _ref29.children,
|
777
771
|
_ref29$size = _ref29.size,
|
778
772
|
size = _ref29$size === void 0 ? 16 : _ref29$size,
|
779
773
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref29, _excluded29);
|
780
|
-
return /*#__PURE__*/
|
774
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
781
775
|
width: size,
|
782
776
|
height: size,
|
783
777
|
ref: ref,
|
784
778
|
xmlns: "http://www.w3.org/2000/svg",
|
785
779
|
viewBox: "0 0 32 32",
|
786
780
|
fill: "currentColor"
|
787
|
-
}, rest), _path46 || (_path46 = /*#__PURE__*/
|
781
|
+
}, rest), _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
|
788
782
|
d: "M6 16H12V18H6zM6 12H16V14H6zM6 8H16V10H6z"
|
789
|
-
})), _path47 || (_path47 = /*#__PURE__*/
|
783
|
+
})), _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
|
790
784
|
d: "M14,26H4V6H28V16h2V6a2,2,0,0,0-2-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z"
|
791
|
-
})), _path48 || (_path48 = /*#__PURE__*/
|
785
|
+
})), _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
|
792
786
|
d: "M22 25.59L19.41 23 18 24.41 22 28.41 30 20.41 28.59 19 22 25.59z"
|
793
787
|
})), children);
|
794
788
|
});
|
795
789
|
if (process.env.NODE_ENV !== "production") {
|
796
790
|
CertificateCheck.propTypes = iconPropTypes4cbeb95d.i;
|
797
791
|
}
|
798
|
-
var ChangeCatalog = /*#__PURE__*/
|
792
|
+
var ChangeCatalog = /*#__PURE__*/React.forwardRef(function ChangeCatalog(_ref30, ref) {
|
799
793
|
var children = _ref30.children,
|
800
794
|
_ref30$size = _ref30.size,
|
801
795
|
size = _ref30$size === void 0 ? 16 : _ref30$size,
|
802
796
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref30, _excluded30);
|
803
|
-
return /*#__PURE__*/
|
797
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
804
798
|
width: size,
|
805
799
|
height: size,
|
806
800
|
ref: ref,
|
807
801
|
xmlns: "http://www.w3.org/2000/svg",
|
808
802
|
viewBox: "0 0 32 32",
|
809
803
|
fill: "currentColor"
|
810
|
-
}, rest), _path49 || (_path49 = /*#__PURE__*/
|
804
|
+
}, rest), _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
|
811
805
|
d: "M24 24v2h2.4592A5.94 5.94 0 0122 28a6.0066 6.0066 0 01-6-6H14a7.9841 7.9841 0 0014 5.2651V30h2V24zM22 14a8.04 8.04 0 00-6 2.7349V14H14v6h6V18H17.5408A5.94 5.94 0 0122 16a6.0066 6.0066 0 016 6h2A8.0092 8.0092 0 0022 14z"
|
812
|
-
})), _path50 || (_path50 = /*#__PURE__*/
|
806
|
+
})), _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
|
813
807
|
d: "M12,28H6V24H8V22H6V17H8V15H6V10H8V8H6V4H24v8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8H2v2H4v5H2v2H4v5H2v2H4v4a2,2,0,0,0,2,2h6Z"
|
814
808
|
})), children);
|
815
809
|
});
|
816
810
|
if (process.env.NODE_ENV !== "production") {
|
817
811
|
ChangeCatalog.propTypes = iconPropTypes4cbeb95d.i;
|
818
812
|
}
|
819
|
-
var CharacterDecimal = /*#__PURE__*/
|
813
|
+
var CharacterDecimal = /*#__PURE__*/React.forwardRef(function CharacterDecimal(_ref31, ref) {
|
820
814
|
var children = _ref31.children,
|
821
815
|
_ref31$size = _ref31.size,
|
822
816
|
size = _ref31$size === void 0 ? 16 : _ref31$size,
|
823
817
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref31, _excluded31);
|
824
|
-
return /*#__PURE__*/
|
818
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
825
819
|
width: size,
|
826
820
|
height: size,
|
827
821
|
ref: ref,
|
828
822
|
xmlns: "http://www.w3.org/2000/svg",
|
829
823
|
viewBox: "0 0 32 32",
|
830
824
|
fill: "currentColor"
|
831
|
-
}, rest), _path51 || (_path51 = /*#__PURE__*/
|
825
|
+
}, rest), _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
|
832
826
|
d: "M21 15H23V17H21z"
|
833
|
-
})), _path52 || (_path52 = /*#__PURE__*/
|
827
|
+
})), _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
|
834
828
|
d: "M24 23H20a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h4a2.0023 2.0023 0 012 2V21A2.0027 2.0027 0 0124 23zM20 11h0V21h4V11zM11 15H13V17H11z"
|
835
|
-
})), _path53 || (_path53 = /*#__PURE__*/
|
829
|
+
})), _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
|
836
830
|
d: "M14 23H10a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h4a2.0023 2.0023 0 012 2V21A2.0027 2.0027 0 0114 23zM10 11h0V21h4V11zM4 21H6V23H4z"
|
837
831
|
})), children);
|
838
832
|
});
|
839
833
|
if (process.env.NODE_ENV !== "production") {
|
840
834
|
CharacterDecimal.propTypes = iconPropTypes4cbeb95d.i;
|
841
835
|
}
|
842
|
-
var CharacterFraction = /*#__PURE__*/
|
836
|
+
var CharacterFraction = /*#__PURE__*/React.forwardRef(function CharacterFraction(_ref32, ref) {
|
843
837
|
var children = _ref32.children,
|
844
838
|
_ref32$size = _ref32.size,
|
845
839
|
size = _ref32$size === void 0 ? 16 : _ref32$size,
|
846
840
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref32, _excluded32);
|
847
|
-
return /*#__PURE__*/
|
841
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
848
842
|
width: size,
|
849
843
|
height: size,
|
850
844
|
ref: ref,
|
851
845
|
xmlns: "http://www.w3.org/2000/svg",
|
852
846
|
viewBox: "0 0 32 32",
|
853
847
|
fill: "currentColor"
|
854
|
-
}, rest), _path54 || (_path54 = /*#__PURE__*/
|
848
|
+
}, rest), _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
|
855
849
|
d: "M28,30H20V24a2.002,2.002,0,0,1,2-2h4V18H20V16h6a2.0023,2.0023,0,0,1,2,2v4a2.0023,2.0023,0,0,1-2,2H22v4h6Z"
|
856
|
-
})), _path55 || (_path55 = /*#__PURE__*/
|
850
|
+
})), _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
|
857
851
|
d: "M4.479 15.5H26.521V17.5H4.479z",
|
858
852
|
transform: "rotate(-45 15.5 16.5)"
|
859
|
-
})), _path56 || (_path56 = /*#__PURE__*/
|
853
|
+
})), _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
|
860
854
|
d: "M4.5 15.5L4.5 14.5 7.5 14.5 7.5 3.5 4.5 3.5 4.5 2.5 8.5 2.5 8.5 14.5 11.5 14.5 11.5 15.5 4.5 15.5z"
|
861
|
-
})), _path57 || (_path57 = /*#__PURE__*/
|
855
|
+
})), _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
|
862
856
|
d: "M8,3V15H8V3M9,2H4V4H7V14H4v2h8V14H9V2Z"
|
863
857
|
})), children);
|
864
858
|
});
|
865
859
|
if (process.env.NODE_ENV !== "production") {
|
866
860
|
CharacterFraction.propTypes = iconPropTypes4cbeb95d.i;
|
867
861
|
}
|
868
|
-
var CharacterInteger = /*#__PURE__*/
|
862
|
+
var CharacterInteger = /*#__PURE__*/React.forwardRef(function CharacterInteger(_ref33, ref) {
|
869
863
|
var children = _ref33.children,
|
870
864
|
_ref33$size = _ref33.size,
|
871
865
|
size = _ref33$size === void 0 ? 16 : _ref33$size,
|
872
866
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref33, _excluded33);
|
873
|
-
return /*#__PURE__*/
|
867
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
874
868
|
width: size,
|
875
869
|
height: size,
|
876
870
|
ref: ref,
|
877
871
|
xmlns: "http://www.w3.org/2000/svg",
|
878
872
|
viewBox: "0 0 32 32",
|
879
873
|
fill: "currentColor"
|
880
|
-
}, rest), _path58 || (_path58 = /*#__PURE__*/
|
874
|
+
}, rest), _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
|
881
875
|
d: "M19.5 22.5L19.5 21.5 22.5 21.5 22.5 10.5 19.5 10.5 19.5 9.5 23.5 9.5 23.5 21.5 26.5 21.5 26.5 22.5 19.5 22.5z"
|
882
|
-
})), _path59 || (_path59 = /*#__PURE__*/
|
876
|
+
})), _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
|
883
877
|
d: "M23 10V22h0V10m1-1H19v2h3V21H19v2h8V21H24V9zM5 21H15V23H5zM15 13L11 13 11 9 9 9 9 13 5 13 5 15 9 15 9 19 11 19 11 15 15 15 15 13z"
|
884
878
|
})), children);
|
885
879
|
});
|
886
880
|
if (process.env.NODE_ENV !== "production") {
|
887
881
|
CharacterInteger.propTypes = iconPropTypes4cbeb95d.i;
|
888
882
|
}
|
889
|
-
var CharacterLowerCase = /*#__PURE__*/
|
883
|
+
var CharacterLowerCase = /*#__PURE__*/React.forwardRef(function CharacterLowerCase(_ref34, ref) {
|
890
884
|
var children = _ref34.children,
|
891
885
|
_ref34$size = _ref34.size,
|
892
886
|
size = _ref34$size === void 0 ? 16 : _ref34$size,
|
893
887
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref34, _excluded34);
|
894
|
-
return /*#__PURE__*/
|
888
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
895
889
|
width: size,
|
896
890
|
height: size,
|
897
891
|
ref: ref,
|
898
892
|
xmlns: "http://www.w3.org/2000/svg",
|
899
893
|
viewBox: "0 0 32 32",
|
900
894
|
fill: "currentColor"
|
901
|
-
}, rest), _path60 || (_path60 = /*#__PURE__*/
|
895
|
+
}, rest), _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
|
902
896
|
d: "M29 23H24a2.0027 2.0027 0 01-2-2V15a2.0023 2.0023 0 012-2h5v2H24v6h5zM18 13H14V9H12V23h6a2.0027 2.0027 0 002-2V15A2.0023 2.0023 0 0018 13zm-4 8V15h4v6zM8 13H3v2H8v2H4a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2.0023 2.0023 0 008 13zm0 8H4V19H8z"
|
903
897
|
})), children);
|
904
898
|
});
|
905
899
|
if (process.env.NODE_ENV !== "production") {
|
906
900
|
CharacterLowerCase.propTypes = iconPropTypes4cbeb95d.i;
|
907
901
|
}
|
908
|
-
var CharacterNegativeNumber = /*#__PURE__*/
|
902
|
+
var CharacterNegativeNumber = /*#__PURE__*/React.forwardRef(function CharacterNegativeNumber(_ref35, ref) {
|
909
903
|
var children = _ref35.children,
|
910
904
|
_ref35$size = _ref35.size,
|
911
905
|
size = _ref35$size === void 0 ? 16 : _ref35$size,
|
912
906
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref35, _excluded35);
|
913
|
-
return /*#__PURE__*/
|
907
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
914
908
|
width: size,
|
915
909
|
height: size,
|
916
910
|
ref: ref,
|
917
911
|
xmlns: "http://www.w3.org/2000/svg",
|
918
912
|
viewBox: "0 0 32 32",
|
919
913
|
fill: "currentColor"
|
920
|
-
}, rest), _path61 || (_path61 = /*#__PURE__*/
|
914
|
+
}, rest), _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
|
921
915
|
d: "M19.5 22.5L19.5 21.5 22.5 21.5 22.5 10.5 19.5 10.5 19.5 9.5 23.5 9.5 23.5 21.5 26.5 21.5 26.5 22.5 19.5 22.5z"
|
922
|
-
})), _path62 || (_path62 = /*#__PURE__*/
|
916
|
+
})), _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
|
923
917
|
d: "M23 10V22h0V10m1-1H19v2h3V21H19v2h8V21H24V9zM5 15H15V17H5z"
|
924
918
|
})), children);
|
925
919
|
});
|
926
920
|
if (process.env.NODE_ENV !== "production") {
|
927
921
|
CharacterNegativeNumber.propTypes = iconPropTypes4cbeb95d.i;
|
928
922
|
}
|
929
|
-
var CharacterSentenceCase = /*#__PURE__*/
|
923
|
+
var CharacterSentenceCase = /*#__PURE__*/React.forwardRef(function CharacterSentenceCase(_ref36, ref) {
|
930
924
|
var children = _ref36.children,
|
931
925
|
_ref36$size = _ref36.size,
|
932
926
|
size = _ref36$size === void 0 ? 16 : _ref36$size,
|
933
927
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref36, _excluded36);
|
934
|
-
return /*#__PURE__*/
|
928
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
935
929
|
width: size,
|
936
930
|
height: size,
|
937
931
|
ref: ref,
|
938
932
|
xmlns: "http://www.w3.org/2000/svg",
|
939
933
|
viewBox: "0 0 32 32",
|
940
934
|
fill: "currentColor"
|
941
|
-
}, rest), _path63 || (_path63 = /*#__PURE__*/
|
935
|
+
}, rest), _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
|
942
936
|
d: "M29 23H24a2.0027 2.0027 0 01-2-2V15a2.0023 2.0023 0 012-2h5v2H24v6h5zM18 13H14V9H12V23h6a2.0027 2.0027 0 002-2V15A2.0023 2.0023 0 0018 13zm-4 8V15h4v6zM8 9H4a2.002 2.002 0 00-2 2V23H4V18H8v5h2V11A2.002 2.002 0 008 9zM4 16V11H8v5z"
|
943
937
|
})), children);
|
944
938
|
});
|
945
939
|
if (process.env.NODE_ENV !== "production") {
|
946
940
|
CharacterSentenceCase.propTypes = iconPropTypes4cbeb95d.i;
|
947
941
|
}
|
948
|
-
var CharacterUpperCase = /*#__PURE__*/
|
942
|
+
var CharacterUpperCase = /*#__PURE__*/React.forwardRef(function CharacterUpperCase(_ref37, ref) {
|
949
943
|
var children = _ref37.children,
|
950
944
|
_ref37$size = _ref37.size,
|
951
945
|
size = _ref37$size === void 0 ? 16 : _ref37$size,
|
952
946
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref37, _excluded37);
|
953
|
-
return /*#__PURE__*/
|
947
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
954
948
|
width: size,
|
955
949
|
height: size,
|
956
950
|
ref: ref,
|
957
951
|
xmlns: "http://www.w3.org/2000/svg",
|
958
952
|
viewBox: "0 0 32 32",
|
959
953
|
fill: "currentColor"
|
960
|
-
}, rest), _path64 || (_path64 = /*#__PURE__*/
|
954
|
+
}, rest), _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
|
961
955
|
d: "M30 23H24a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h6v2H24V21h6zM20 12a3.0033 3.0033 0 00-3-3H12V23h5a3.0033 3.0033 0 003-3V18a2.977 2.977 0 00-.78-2A2.9768 2.9768 0 0020 14zm-6-1h3a1.0013 1.0013 0 011 1v2a1.0013 1.0013 0 01-1 1H14zm4 9a1.0009 1.0009 0 01-1 1H14V17h3a1.0009 1.0009 0 011 1zM8 9H4a2.002 2.002 0 00-2 2V23H4V18H8v5h2V11A2.002 2.002 0 008 9zM4 16V11H8v5z"
|
962
956
|
})), children);
|
963
957
|
});
|
964
958
|
if (process.env.NODE_ENV !== "production") {
|
965
959
|
CharacterUpperCase.propTypes = iconPropTypes4cbeb95d.i;
|
966
960
|
}
|
967
|
-
var CharacterWholeNumber = /*#__PURE__*/
|
961
|
+
var CharacterWholeNumber = /*#__PURE__*/React.forwardRef(function CharacterWholeNumber(_ref38, ref) {
|
968
962
|
var children = _ref38.children,
|
969
963
|
_ref38$size = _ref38.size,
|
970
964
|
size = _ref38$size === void 0 ? 16 : _ref38$size,
|
971
965
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref38, _excluded38);
|
972
|
-
return /*#__PURE__*/
|
966
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
973
967
|
width: size,
|
974
968
|
height: size,
|
975
969
|
ref: ref,
|
976
970
|
xmlns: "http://www.w3.org/2000/svg",
|
977
971
|
viewBox: "0 0 32 32",
|
978
972
|
fill: "currentColor"
|
979
|
-
}, rest), _path65 || (_path65 = /*#__PURE__*/
|
973
|
+
}, rest), _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
|
980
974
|
d: "M28 9H22v2h6v4H24v2h4v4H22v2h6a2.0027 2.0027 0 002-2V11A2.0023 2.0023 0 0028 9zM20 23H12V17a2.002 2.002 0 012-2h4V11H12V9h6a2.0023 2.0023 0 012 2v4a2.0023 2.0023 0 01-2 2H14v4h6zM2.5 22.5L2.5 21.5 5.5 21.5 5.5 10.5 2.5 10.5 2.5 9.5 6.5 9.5 6.5 21.5 9.5 21.5 9.5 22.5 2.5 22.5z"
|
981
|
-
})), _path66 || (_path66 = /*#__PURE__*/
|
975
|
+
})), _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
|
982
976
|
d: "M6,10V22H6V10M7,9H2v2H5V21H2v2h8V21H7V9Z"
|
983
977
|
})), children);
|
984
978
|
});
|
985
979
|
if (process.env.NODE_ENV !== "production") {
|
986
980
|
CharacterWholeNumber.propTypes = iconPropTypes4cbeb95d.i;
|
987
981
|
}
|
988
|
-
var CharacterPatterns = /*#__PURE__*/
|
982
|
+
var CharacterPatterns = /*#__PURE__*/React.forwardRef(function CharacterPatterns(_ref39, ref) {
|
989
983
|
var children = _ref39.children,
|
990
984
|
_ref39$size = _ref39.size,
|
991
985
|
size = _ref39$size === void 0 ? 16 : _ref39$size,
|
992
986
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref39, _excluded39);
|
993
|
-
return /*#__PURE__*/
|
987
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
994
988
|
width: size,
|
995
989
|
height: size,
|
996
990
|
ref: ref,
|
997
991
|
xmlns: "http://www.w3.org/2000/svg",
|
998
992
|
viewBox: "0 0 32 32",
|
999
993
|
fill: "currentColor"
|
1000
|
-
}, rest), _path67 || (_path67 = /*#__PURE__*/
|
994
|
+
}, rest), _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
|
1001
995
|
d: "M6 26V17.8281l-3.5859 3.586L1 20l6-6 6 6-1.4141 1.4141L8 17.8281V26H18v2H8A2.0024 2.0024 0 016 26zM30 22L30 20 22 20 22 22 27.5 22 22 28 22 30 30 30 30 28 24.507 28 30 22zM26 6v8.1719l3.5859-3.586L31 12l-6 6-6-6 1.4141-1.4141L24 14.1719V6H14V4H24A2.0024 2.0024 0 0126 6zM8 2H3V4H8V6H4A2 2 0 002 8v2a2 2 0 002 2h6V4A2.0023 2.0023 0 008 2zm0 8H4V8H8z"
|
1002
996
|
})), children);
|
1003
997
|
});
|
1004
998
|
if (process.env.NODE_ENV !== "production") {
|
1005
999
|
CharacterPatterns.propTypes = iconPropTypes4cbeb95d.i;
|
1006
1000
|
}
|
1007
|
-
var ChargingStation = /*#__PURE__*/
|
1001
|
+
var ChargingStation = /*#__PURE__*/React.forwardRef(function ChargingStation(_ref40, ref) {
|
1008
1002
|
var children = _ref40.children,
|
1009
1003
|
_ref40$size = _ref40.size,
|
1010
1004
|
size = _ref40$size === void 0 ? 16 : _ref40$size,
|
1011
1005
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref40, _excluded40);
|
1012
|
-
return /*#__PURE__*/
|
1006
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1013
1007
|
width: size,
|
1014
1008
|
height: size,
|
1015
1009
|
ref: ref,
|
1016
1010
|
xmlns: "http://www.w3.org/2000/svg",
|
1017
1011
|
viewBox: "0 0 32 32",
|
1018
1012
|
fill: "currentColor"
|
1019
|
-
}, rest), _path68 || (_path68 = /*#__PURE__*/
|
1013
|
+
}, rest), _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
|
1020
1014
|
d: "M11.857 21.514L10.143 20.486 12.234 17 7.234 17 11.143 10.486 12.857 11.514 10.766 15 15.766 15 11.857 21.514z"
|
1021
|
-
})), _path69 || (_path69 = /*#__PURE__*/
|
1015
|
+
})), _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
|
1022
1016
|
d: "M30,7H29V4H27V7H26v6h1V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.5a3.5,3.5,0,0,0,7,0V13h1ZM17,26H6V6H17Z"
|
1023
1017
|
})), children);
|
1024
1018
|
});
|
1025
1019
|
if (process.env.NODE_ENV !== "production") {
|
1026
1020
|
ChargingStation.propTypes = iconPropTypes4cbeb95d.i;
|
1027
1021
|
}
|
1028
|
-
var ChargingStationFilled = /*#__PURE__*/
|
1022
|
+
var ChargingStationFilled = /*#__PURE__*/React.forwardRef(function ChargingStationFilled(_ref41, ref) {
|
1029
1023
|
var children = _ref41.children,
|
1030
1024
|
_ref41$size = _ref41.size,
|
1031
1025
|
size = _ref41$size === void 0 ? 16 : _ref41$size,
|
1032
1026
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref41, _excluded41);
|
1033
|
-
return /*#__PURE__*/
|
1027
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1034
1028
|
width: size,
|
1035
1029
|
height: size,
|
1036
1030
|
ref: ref,
|
1037
1031
|
xmlns: "http://www.w3.org/2000/svg",
|
1038
1032
|
viewBox: "0 0 32 32",
|
1039
1033
|
fill: "currentColor"
|
1040
|
-
}, rest), _path70 || (_path70 = /*#__PURE__*/
|
1034
|
+
}, rest), _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
|
1041
1035
|
d: "M29,7V4H27V7H26v6h1V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.5a3.5,3.5,0,0,0,7,0V13h1V7ZM11.8574,21.5146l-1.7148-1.0292L12.2339,17h-5l3.9087-6.5146,1.7148,1.0292L10.7661,15h5Z"
|
1042
|
-
})), _path71 || (_path71 = /*#__PURE__*/
|
1036
|
+
})), _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
|
1043
1037
|
fill: "none",
|
1044
1038
|
d: "M11.857 21.514L10.143 20.486 12.234 17 7.234 17 11.143 10.486 12.857 11.514 10.766 15 15.766 15 11.857 21.514z",
|
1045
1039
|
"data-icon-path": "inner-path"
|
@@ -1048,304 +1042,304 @@ var ChargingStationFilled = /*#__PURE__*/React__default["default"].forwardRef(fu
|
|
1048
1042
|
if (process.env.NODE_ENV !== "production") {
|
1049
1043
|
ChargingStationFilled.propTypes = iconPropTypes4cbeb95d.i;
|
1050
1044
|
}
|
1051
|
-
var Chart_3D = /*#__PURE__*/
|
1045
|
+
var Chart_3D = /*#__PURE__*/React.forwardRef(function Chart_3D(_ref42, ref) {
|
1052
1046
|
var children = _ref42.children,
|
1053
1047
|
_ref42$size = _ref42.size,
|
1054
1048
|
size = _ref42$size === void 0 ? 16 : _ref42$size,
|
1055
1049
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref42, _excluded42);
|
1056
|
-
return /*#__PURE__*/
|
1050
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1057
1051
|
width: size,
|
1058
1052
|
height: size,
|
1059
1053
|
ref: ref,
|
1060
1054
|
xmlns: "http://www.w3.org/2000/svg",
|
1061
1055
|
viewBox: "0 0 32 32",
|
1062
1056
|
fill: "currentColor"
|
1063
|
-
}, rest), _path72 || (_path72 = /*#__PURE__*/
|
1057
|
+
}, rest), _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
|
1064
1058
|
d: "M28,23v3.5859l-5-5V15a1,1,0,0,0-.5527-.8945L17,11.3818V5.8281l2.5859,2.586L21,7,16,2,11,7l1.4141,1.4141L15,5.8281v5.5537L9.5527,14.1055A1,1,0,0,0,9,15v6.5859l-5,5V23H2v7H9V28H5.4141l4.7832-4.7832,5.3554,2.6777a1.001,1.001,0,0,0,.8946,0l5.3554-2.6777L26.5859,28H23v2h7V23Zm-13,.3818-4-2V16.6182l4,2Zm1-6.5L12.2363,15,16,13.1182,19.7637,15Zm5,4.5-4,2V18.6182l4-2Z"
|
1065
1059
|
})), children);
|
1066
1060
|
});
|
1067
1061
|
if (process.env.NODE_ENV !== "production") {
|
1068
1062
|
Chart_3D.propTypes = iconPropTypes4cbeb95d.i;
|
1069
1063
|
}
|
1070
|
-
var ChartArea = /*#__PURE__*/
|
1064
|
+
var ChartArea = /*#__PURE__*/React.forwardRef(function ChartArea(_ref43, ref) {
|
1071
1065
|
var children = _ref43.children,
|
1072
1066
|
_ref43$size = _ref43.size,
|
1073
1067
|
size = _ref43$size === void 0 ? 16 : _ref43$size,
|
1074
1068
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref43, _excluded43);
|
1075
|
-
return /*#__PURE__*/
|
1069
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1076
1070
|
width: size,
|
1077
1071
|
height: size,
|
1078
1072
|
ref: ref,
|
1079
1073
|
xmlns: "http://www.w3.org/2000/svg",
|
1080
1074
|
viewBox: "0 0 32 32",
|
1081
1075
|
fill: "currentColor"
|
1082
|
-
}, rest), _path73 || (_path73 = /*#__PURE__*/
|
1076
|
+
}, rest), _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
|
1083
1077
|
d: "M20.4761,8.0151,13.4473,4.2109a2.0076,2.0076,0,0,0-2.1158.2051L4,10.001V2H2V28a2,2,0,0,0,2,2H30V5.7354ZM28,20.209l-7.62,1.8022-7.0288-2.8838a1.99,1.99,0,0,0-2.022.37L4,25.8359v-4.455l8.375-9.4,7.0186,5.62a2.0155,2.0155,0,0,0,2.0459.2119L28,14.6025ZM12.5239,5.9849l7.03,3.8042a2.012,2.012,0,0,0,1.3408.16L28,8.2646v4.1138L20.6187,16.02,13.6,10.4a1.99,1.99,0,0,0-2.6885.2642L4,18.3838v-5.87ZM4.5513,28,12.62,20.9888l7.0288,2.8838a1.9977,1.9977,0,0,0,1.147.0771L28,22.2612V28Z"
|
1084
1078
|
})), children);
|
1085
1079
|
});
|
1086
1080
|
if (process.env.NODE_ENV !== "production") {
|
1087
1081
|
ChartArea.propTypes = iconPropTypes4cbeb95d.i;
|
1088
1082
|
}
|
1089
|
-
var ChartAreaSmooth = /*#__PURE__*/
|
1083
|
+
var ChartAreaSmooth = /*#__PURE__*/React.forwardRef(function ChartAreaSmooth(_ref44, ref) {
|
1090
1084
|
var children = _ref44.children,
|
1091
1085
|
_ref44$size = _ref44.size,
|
1092
1086
|
size = _ref44$size === void 0 ? 16 : _ref44$size,
|
1093
1087
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref44, _excluded44);
|
1094
|
-
return /*#__PURE__*/
|
1088
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1095
1089
|
width: size,
|
1096
1090
|
height: size,
|
1097
1091
|
ref: ref,
|
1098
1092
|
xmlns: "http://www.w3.org/2000/svg",
|
1099
1093
|
viewBox: "0 0 32 32",
|
1100
1094
|
fill: "currentColor"
|
1101
|
-
}, rest), _path74 || (_path74 = /*#__PURE__*/
|
1095
|
+
}, rest), _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
|
1102
1096
|
d: "M30,6.6143l-1.3152.4365A20.9218,20.9218,0,0,1,23,8c-1.7344,0-3.3225-.9072-5.0039-1.8682C16.1621,5.084,14.2656,4,12,4,9.123,4,5.9146,6.2061,4,7.772V2H2V28a2.0025,2.0025,0,0,0,2,2H30ZM4,20.2944C5.874,17.3765,9.56,13,12,13c1.6379,0,2.96,1.1016,4.36,2.2686C17.8965,16.5488,19.6379,18,22,18a9.4686,9.4686,0,0,0,6-2.5288v4.9556A13.0026,13.0026,0,0,1,22,22a13.8619,13.8619,0,0,1-4.6838-.9487A15.682,15.682,0,0,0,12,20c-2.927,0-6.0676,2.959-8,5.1577ZM12,6c1.7344,0,3.3225.9072,5.0039,1.8682C18.8379,8.916,20.7344,10,23,10a21.432,21.432,0,0,0,5-.6782v3.3213C27.3167,13.4463,24.9155,16,22,16c-1.6379,0-2.96-1.1016-4.36-2.2686C16.1035,12.4512,14.3621,11,12,11c-2.9358,0-6.0632,3.3394-8,5.8447V10.4238C5.5461,8.9658,9.2588,6,12,6ZM4.249,28C5.8623,25.9087,9.41,22,12,22a13.8619,13.8619,0,0,1,4.6838.9487A15.682,15.682,0,0,0,22,24a14.7362,14.7362,0,0,0,6-1.34V28Z"
|
1103
1097
|
})), children);
|
1104
1098
|
});
|
1105
1099
|
if (process.env.NODE_ENV !== "production") {
|
1106
1100
|
ChartAreaSmooth.propTypes = iconPropTypes4cbeb95d.i;
|
1107
1101
|
}
|
1108
|
-
var ChartAreaStepper = /*#__PURE__*/
|
1102
|
+
var ChartAreaStepper = /*#__PURE__*/React.forwardRef(function ChartAreaStepper(_ref45, ref) {
|
1109
1103
|
var children = _ref45.children,
|
1110
1104
|
_ref45$size = _ref45.size,
|
1111
1105
|
size = _ref45$size === void 0 ? 16 : _ref45$size,
|
1112
1106
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref45, _excluded45);
|
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), _path75 || (_path75 = /*#__PURE__*/
|
1114
|
+
}, rest), _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
|
1121
1115
|
d: "M22,10V6H10v6H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V10ZM12,14V8h8v4h8V22H22V16H12v6H4V14ZM4,28V24H14V18h6v6h8v4Z"
|
1122
1116
|
})), children);
|
1123
1117
|
});
|
1124
1118
|
if (process.env.NODE_ENV !== "production") {
|
1125
1119
|
ChartAreaStepper.propTypes = iconPropTypes4cbeb95d.i;
|
1126
1120
|
}
|
1127
|
-
var ChartAverage = /*#__PURE__*/
|
1121
|
+
var ChartAverage = /*#__PURE__*/React.forwardRef(function ChartAverage(_ref46, ref) {
|
1128
1122
|
var children = _ref46.children,
|
1129
1123
|
_ref46$size = _ref46.size,
|
1130
1124
|
size = _ref46$size === void 0 ? 16 : _ref46$size,
|
1131
1125
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref46, _excluded46);
|
1132
|
-
return /*#__PURE__*/
|
1126
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1133
1127
|
width: size,
|
1134
1128
|
height: size,
|
1135
1129
|
ref: ref,
|
1136
1130
|
xmlns: "http://www.w3.org/2000/svg",
|
1137
1131
|
viewBox: "0 0 32 32",
|
1138
1132
|
fill: "currentColor"
|
1139
|
-
}, rest), _path76 || (_path76 = /*#__PURE__*/
|
1133
|
+
}, rest), _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
|
1140
1134
|
d: "M23,24c-3.5991,0-5.0293-4.1758-6.4126-8.2139C15.2764,11.9583,13.92,8,11,8a3.44,3.44,0,0,0-3.0532,2.3215L6.0513,9.6838C6.1016,9.5334,7.3218,6,11,6c4.3491,0,6.0122,4.8547,7.48,9.1379C19.6885,18.6667,20.83,22,23,22a3.44,3.44,0,0,0,3.0532-2.3215l1.8955.6377C27.8984,20.4666,26.6782,24,23,24Z"
|
1141
|
-
})), _path77 || (_path77 = /*#__PURE__*/
|
1135
|
+
})), _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
|
1142
1136
|
d: "M4,28V17H6V15H4V2H2V28a2,2,0,0,0,2,2H30V28Z"
|
1143
|
-
})), _path78 || (_path78 = /*#__PURE__*/
|
1137
|
+
})), _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
|
1144
1138
|
d: "M8 15H10V17H8zM12 15H14V17H12zM20 15H22V17H20zM24 15H26V17H24zM28 15H30V17H28z"
|
1145
1139
|
})), children);
|
1146
1140
|
});
|
1147
1141
|
if (process.env.NODE_ENV !== "production") {
|
1148
1142
|
ChartAverage.propTypes = iconPropTypes4cbeb95d.i;
|
1149
1143
|
}
|
1150
|
-
var ChartBar = /*#__PURE__*/
|
1144
|
+
var ChartBar = /*#__PURE__*/React.forwardRef(function ChartBar(_ref47, ref) {
|
1151
1145
|
var children = _ref47.children,
|
1152
1146
|
_ref47$size = _ref47.size,
|
1153
1147
|
size = _ref47$size === void 0 ? 16 : _ref47$size,
|
1154
1148
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref47, _excluded47);
|
1155
|
-
return /*#__PURE__*/
|
1149
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1156
1150
|
width: size,
|
1157
1151
|
height: size,
|
1158
1152
|
ref: ref,
|
1159
1153
|
xmlns: "http://www.w3.org/2000/svg",
|
1160
1154
|
viewBox: "0 0 32 32",
|
1161
1155
|
fill: "currentColor"
|
1162
|
-
}, rest), _path79 || (_path79 = /*#__PURE__*/
|
1156
|
+
}, rest), _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
|
1163
1157
|
d: "M4,2H2V28a2,2,0,0,0,2,2H30V28H4V25H26V17H4V13H18V5H4ZM24,19v4H4V19ZM16,7v4H4V7Z"
|
1164
1158
|
})), children);
|
1165
1159
|
});
|
1166
1160
|
if (process.env.NODE_ENV !== "production") {
|
1167
1161
|
ChartBar.propTypes = iconPropTypes4cbeb95d.i;
|
1168
1162
|
}
|
1169
|
-
var ChartBarFloating = /*#__PURE__*/
|
1163
|
+
var ChartBarFloating = /*#__PURE__*/React.forwardRef(function ChartBarFloating(_ref48, ref) {
|
1170
1164
|
var children = _ref48.children,
|
1171
1165
|
_ref48$size = _ref48.size,
|
1172
1166
|
size = _ref48$size === void 0 ? 16 : _ref48$size,
|
1173
1167
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref48, _excluded48);
|
1174
|
-
return /*#__PURE__*/
|
1168
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1175
1169
|
width: size,
|
1176
1170
|
height: size,
|
1177
1171
|
ref: ref,
|
1178
1172
|
xmlns: "http://www.w3.org/2000/svg",
|
1179
1173
|
viewBox: "0 0 32 32",
|
1180
1174
|
fill: "currentColor"
|
1181
|
-
}, rest), _path80 || (_path80 = /*#__PURE__*/
|
1175
|
+
}, rest), _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
|
1182
1176
|
d: "M28 24H14V16H28zM16 22H26V18H16zM26 12H8V4H26zM10 10H24V6H10z"
|
1183
|
-
})), _path81 || (_path81 = /*#__PURE__*/
|
1177
|
+
})), _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
|
1184
1178
|
d: "M30,30H4a2.0023,2.0023,0,0,1-2-2V2H4V28H30Z"
|
1185
1179
|
})), children);
|
1186
1180
|
});
|
1187
1181
|
if (process.env.NODE_ENV !== "production") {
|
1188
1182
|
ChartBarFloating.propTypes = iconPropTypes4cbeb95d.i;
|
1189
1183
|
}
|
1190
|
-
var ChartBarOverlay = /*#__PURE__*/
|
1184
|
+
var ChartBarOverlay = /*#__PURE__*/React.forwardRef(function ChartBarOverlay(_ref49, ref) {
|
1191
1185
|
var children = _ref49.children,
|
1192
1186
|
_ref49$size = _ref49.size,
|
1193
1187
|
size = _ref49$size === void 0 ? 16 : _ref49$size,
|
1194
1188
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref49, _excluded49);
|
1195
|
-
return /*#__PURE__*/
|
1189
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1196
1190
|
width: size,
|
1197
1191
|
height: size,
|
1198
1192
|
ref: ref,
|
1199
1193
|
xmlns: "http://www.w3.org/2000/svg",
|
1200
1194
|
viewBox: "0 0 32 32",
|
1201
1195
|
fill: "currentColor"
|
1202
|
-
}, rest), _path82 || (_path82 = /*#__PURE__*/
|
1196
|
+
}, rest), _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
|
1203
1197
|
d: "M4,28V26H26V16H4V14H18V4H4V2H2V28a2,2,0,0,0,2,2H30V28ZM24,18v6H4V22H20V20H4V18ZM16,6v6H4V10h8V8H4V6Z"
|
1204
1198
|
})), children);
|
1205
1199
|
});
|
1206
1200
|
if (process.env.NODE_ENV !== "production") {
|
1207
1201
|
ChartBarOverlay.propTypes = iconPropTypes4cbeb95d.i;
|
1208
1202
|
}
|
1209
|
-
var ChartBarStacked = /*#__PURE__*/
|
1203
|
+
var ChartBarStacked = /*#__PURE__*/React.forwardRef(function ChartBarStacked(_ref50, ref) {
|
1210
1204
|
var children = _ref50.children,
|
1211
1205
|
_ref50$size = _ref50.size,
|
1212
1206
|
size = _ref50$size === void 0 ? 16 : _ref50$size,
|
1213
1207
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref50, _excluded50);
|
1214
|
-
return /*#__PURE__*/
|
1208
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1215
1209
|
width: size,
|
1216
1210
|
height: size,
|
1217
1211
|
ref: ref,
|
1218
1212
|
xmlns: "http://www.w3.org/2000/svg",
|
1219
1213
|
viewBox: "0 0 32 32",
|
1220
1214
|
fill: "currentColor"
|
1221
|
-
}, rest), _path83 || (_path83 = /*#__PURE__*/
|
1215
|
+
}, rest), _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
|
1222
1216
|
d: "M4,28V25H26V17H4V13H18V5H4V2H2V28a2,2,0,0,0,2,2H30V28Zm20-5H14V19H24ZM16,11H10V7h6Z"
|
1223
1217
|
})), children);
|
1224
1218
|
});
|
1225
1219
|
if (process.env.NODE_ENV !== "production") {
|
1226
1220
|
ChartBarStacked.propTypes = iconPropTypes4cbeb95d.i;
|
1227
1221
|
}
|
1228
|
-
var ChartBarTarget = /*#__PURE__*/
|
1222
|
+
var ChartBarTarget = /*#__PURE__*/React.forwardRef(function ChartBarTarget(_ref51, ref) {
|
1229
1223
|
var children = _ref51.children,
|
1230
1224
|
_ref51$size = _ref51.size,
|
1231
1225
|
size = _ref51$size === void 0 ? 16 : _ref51$size,
|
1232
1226
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref51, _excluded51);
|
1233
|
-
return /*#__PURE__*/
|
1227
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1234
1228
|
width: size,
|
1235
1229
|
height: size,
|
1236
1230
|
ref: ref,
|
1237
1231
|
xmlns: "http://www.w3.org/2000/svg",
|
1238
1232
|
viewBox: "0 0 32 32",
|
1239
1233
|
fill: "currentColor"
|
1240
|
-
}, rest), _path84 || (_path84 = /*#__PURE__*/
|
1234
|
+
}, rest), _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
|
1241
1235
|
d: "M28 17H30V25H28zM20 5H22V13H20z"
|
1242
|
-
})), _path85 || (_path85 = /*#__PURE__*/
|
1236
|
+
})), _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
|
1243
1237
|
d: "M4,2H2V28a2,2,0,0,0,2,2H30V28H4V25H26V17H4V13H18V5H4ZM24,19v4H4V19ZM16,7v4H4V7Z"
|
1244
1238
|
})), children);
|
1245
1239
|
});
|
1246
1240
|
if (process.env.NODE_ENV !== "production") {
|
1247
1241
|
ChartBarTarget.propTypes = iconPropTypes4cbeb95d.i;
|
1248
1242
|
}
|
1249
|
-
var ChartBubble = /*#__PURE__*/
|
1243
|
+
var ChartBubble = /*#__PURE__*/React.forwardRef(function ChartBubble(_ref52, ref) {
|
1250
1244
|
var children = _ref52.children,
|
1251
1245
|
_ref52$size = _ref52.size,
|
1252
1246
|
size = _ref52$size === void 0 ? 16 : _ref52$size,
|
1253
1247
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref52, _excluded52);
|
1254
|
-
return /*#__PURE__*/
|
1248
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1255
1249
|
width: size,
|
1256
1250
|
height: size,
|
1257
1251
|
ref: ref,
|
1258
1252
|
xmlns: "http://www.w3.org/2000/svg",
|
1259
1253
|
viewBox: "0 0 32 32",
|
1260
1254
|
fill: "currentColor"
|
1261
|
-
}, rest), _path86 || (_path86 = /*#__PURE__*/
|
1255
|
+
}, rest), _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
|
1262
1256
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
1263
|
-
})), _path87 || (_path87 = /*#__PURE__*/
|
1257
|
+
})), _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
|
1264
1258
|
d: "M10 16a2 2 0 11-2 2 2 2 0 012-2m0-2a4 4 0 104 4 4 4 0 00-4-4zM21 6a4 4 0 11-4 4 4 4 0 014-4m0-2a6 6 0 106 6 6 6 0 00-6-6zM24.5 21A1.5 1.5 0 1123 22.5 1.5 1.5 0 0124.5 21m0-2A3.5 3.5 0 1028 22.5 3.5 3.5 0 0024.5 19z"
|
1265
1259
|
})), children);
|
1266
1260
|
});
|
1267
1261
|
if (process.env.NODE_ENV !== "production") {
|
1268
1262
|
ChartBubble.propTypes = iconPropTypes4cbeb95d.i;
|
1269
1263
|
}
|
1270
|
-
var ChartBubblePacked = /*#__PURE__*/
|
1264
|
+
var ChartBubblePacked = /*#__PURE__*/React.forwardRef(function ChartBubblePacked(_ref53, ref) {
|
1271
1265
|
var children = _ref53.children,
|
1272
1266
|
_ref53$size = _ref53.size,
|
1273
1267
|
size = _ref53$size === void 0 ? 16 : _ref53$size,
|
1274
1268
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref53, _excluded53);
|
1275
|
-
return /*#__PURE__*/
|
1269
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1276
1270
|
width: size,
|
1277
1271
|
height: size,
|
1278
1272
|
ref: ref,
|
1279
1273
|
xmlns: "http://www.w3.org/2000/svg",
|
1280
1274
|
viewBox: "0 0 32 32",
|
1281
1275
|
fill: "currentColor"
|
1282
|
-
}, rest), _path88 || (_path88 = /*#__PURE__*/
|
1276
|
+
}, rest), _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
|
1283
1277
|
d: "M27.5322,17.1724A8.99,8.99,0,1,0,13.6074,5.88,5.9969,5.9969,0,1,0,5.051,13.2217a6.9967,6.9967,0,1,0,7.9942,11.4844A5.9981,5.9981,0,0,0,25,24c0-.1216-.011-.24-.0181-.3594a3.4873,3.4873,0,1,0,2.55-6.4682ZM21,4a7,7,0,1,1-7,7A7.0078,7.0078,0,0,1,21,4ZM8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4ZM19,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,19,28Z"
|
1284
1278
|
})), children);
|
1285
1279
|
});
|
1286
1280
|
if (process.env.NODE_ENV !== "production") {
|
1287
1281
|
ChartBubblePacked.propTypes = iconPropTypes4cbeb95d.i;
|
1288
1282
|
}
|
1289
|
-
var ChartBullet = /*#__PURE__*/
|
1283
|
+
var ChartBullet = /*#__PURE__*/React.forwardRef(function ChartBullet(_ref54, ref) {
|
1290
1284
|
var children = _ref54.children,
|
1291
1285
|
_ref54$size = _ref54.size,
|
1292
1286
|
size = _ref54$size === void 0 ? 16 : _ref54$size,
|
1293
1287
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref54, _excluded54);
|
1294
|
-
return /*#__PURE__*/
|
1288
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1295
1289
|
width: size,
|
1296
1290
|
height: size,
|
1297
1291
|
ref: ref,
|
1298
1292
|
xmlns: "http://www.w3.org/2000/svg",
|
1299
1293
|
viewBox: "0 0 32 32",
|
1300
1294
|
fill: "currentColor"
|
1301
|
-
}, rest), _path89 || (_path89 = /*#__PURE__*/
|
1295
|
+
}, rest), _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
|
1302
1296
|
d: "M30 22H16V21H14v1H2v6H14v1h2V28H30zM4 26V24H14v2zm24 0H16V24H28zM30 13H24V12H22v1H2v6H22v1h2V19h6zM4 17V15H22v2zm24 0H24V15h4zM30 4H10V3H8V4H2v6H8v1h2V10H30zM4 8V6H8V8zM28 8H10V6H28z"
|
1303
1297
|
})), children);
|
1304
1298
|
});
|
1305
1299
|
if (process.env.NODE_ENV !== "production") {
|
1306
1300
|
ChartBullet.propTypes = iconPropTypes4cbeb95d.i;
|
1307
1301
|
}
|
1308
|
-
var ChartCandlestick = /*#__PURE__*/
|
1302
|
+
var ChartCandlestick = /*#__PURE__*/React.forwardRef(function ChartCandlestick(_ref55, ref) {
|
1309
1303
|
var children = _ref55.children,
|
1310
1304
|
_ref55$size = _ref55.size,
|
1311
1305
|
size = _ref55$size === void 0 ? 16 : _ref55$size,
|
1312
1306
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref55, _excluded55);
|
1313
|
-
return /*#__PURE__*/
|
1307
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1314
1308
|
width: size,
|
1315
1309
|
height: size,
|
1316
1310
|
ref: ref,
|
1317
1311
|
xmlns: "http://www.w3.org/2000/svg",
|
1318
1312
|
viewBox: "0 0 32 32",
|
1319
1313
|
fill: "currentColor"
|
1320
|
-
}, rest), _path90 || (_path90 = /*#__PURE__*/
|
1314
|
+
}, rest), _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
|
1321
1315
|
d: "M26 10H24V6H22v4H20V22h2v4h2V22h2zM24 20H22V12h2zM14 8H12V4H10V8H8V18h2v4h2V18h2zm-2 8H10V10h2z"
|
1322
|
-
})), _path91 || (_path91 = /*#__PURE__*/
|
1316
|
+
})), _path91 || (_path91 = /*#__PURE__*/React.createElement("path", {
|
1323
1317
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
1324
1318
|
})), children);
|
1325
1319
|
});
|
1326
1320
|
if (process.env.NODE_ENV !== "production") {
|
1327
1321
|
ChartCandlestick.propTypes = iconPropTypes4cbeb95d.i;
|
1328
1322
|
}
|
1329
|
-
var ChartClusterBar = /*#__PURE__*/
|
1323
|
+
var ChartClusterBar = /*#__PURE__*/React.forwardRef(function ChartClusterBar(_ref56, ref) {
|
1330
1324
|
var children = _ref56.children,
|
1331
1325
|
_ref56$size = _ref56.size,
|
1332
1326
|
size = _ref56$size === void 0 ? 16 : _ref56$size,
|
1333
1327
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref56, _excluded56);
|
1334
|
-
return /*#__PURE__*/
|
1328
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1335
1329
|
width: size,
|
1336
1330
|
height: size,
|
1337
1331
|
ref: ref,
|
1338
1332
|
xmlns: "http://www.w3.org/2000/svg",
|
1339
1333
|
viewBox: "0 0 32 32",
|
1340
1334
|
fill: "currentColor"
|
1341
|
-
}, rest), _path92 || (_path92 = /*#__PURE__*/
|
1335
|
+
}, rest), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
|
1342
1336
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
1343
|
-
})), _path93 || (_path93 = /*#__PURE__*/
|
1337
|
+
})), _path93 || (_path93 = /*#__PURE__*/React.createElement("path", {
|
1344
1338
|
d: "M10 16H12V26H10zM7 22H9V26H7zM26 8H28V26H26zM23 14H25V26H23z"
|
1345
|
-
})), _path94 || (_path94 = /*#__PURE__*/
|
1339
|
+
})), _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
|
1346
1340
|
d: "M15 12H17V26H15z",
|
1347
1341
|
transform: "rotate(-180 16 19)"
|
1348
|
-
})), _path95 || (_path95 = /*#__PURE__*/
|
1342
|
+
})), _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
|
1349
1343
|
d: "M18 18H20V26H18z",
|
1350
1344
|
transform: "rotate(-180 19 22)"
|
1351
1345
|
})), children);
|
@@ -1353,417 +1347,417 @@ var ChartClusterBar = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
1353
1347
|
if (process.env.NODE_ENV !== "production") {
|
1354
1348
|
ChartClusterBar.propTypes = iconPropTypes4cbeb95d.i;
|
1355
1349
|
}
|
1356
|
-
var ChartColumn = /*#__PURE__*/
|
1350
|
+
var ChartColumn = /*#__PURE__*/React.forwardRef(function ChartColumn(_ref57, ref) {
|
1357
1351
|
var children = _ref57.children,
|
1358
1352
|
_ref57$size = _ref57.size,
|
1359
1353
|
size = _ref57$size === void 0 ? 16 : _ref57$size,
|
1360
1354
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref57, _excluded57);
|
1361
|
-
return /*#__PURE__*/
|
1355
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1362
1356
|
width: size,
|
1363
1357
|
height: size,
|
1364
1358
|
ref: ref,
|
1365
1359
|
xmlns: "http://www.w3.org/2000/svg",
|
1366
1360
|
viewBox: "0 0 32 32",
|
1367
1361
|
fill: "currentColor"
|
1368
|
-
}, rest), _path96 || (_path96 = /*#__PURE__*/
|
1362
|
+
}, rest), _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
|
1369
1363
|
d: "M27,28V6H19V28H15V14H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V16h4Zm12,0H21V8h4Z"
|
1370
1364
|
})), children);
|
1371
1365
|
});
|
1372
1366
|
if (process.env.NODE_ENV !== "production") {
|
1373
1367
|
ChartColumn.propTypes = iconPropTypes4cbeb95d.i;
|
1374
1368
|
}
|
1375
|
-
var ChartColumnFloating = /*#__PURE__*/
|
1369
|
+
var ChartColumnFloating = /*#__PURE__*/React.forwardRef(function ChartColumnFloating(_ref58, ref) {
|
1376
1370
|
var children = _ref58.children,
|
1377
1371
|
_ref58$size = _ref58.size,
|
1378
1372
|
size = _ref58$size === void 0 ? 16 : _ref58$size,
|
1379
1373
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref58, _excluded58);
|
1380
|
-
return /*#__PURE__*/
|
1374
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1381
1375
|
width: size,
|
1382
1376
|
height: size,
|
1383
1377
|
ref: ref,
|
1384
1378
|
xmlns: "http://www.w3.org/2000/svg",
|
1385
1379
|
viewBox: "0 0 32 32",
|
1386
1380
|
fill: "currentColor"
|
1387
|
-
}, rest), _path97 || (_path97 = /*#__PURE__*/
|
1381
|
+
}, rest), _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
|
1388
1382
|
d: "M28 22H20V4h8zm-6-2h4V6H22zM16 24H8V10h8zm-6-2h4V12H10z"
|
1389
|
-
})), _path98 || (_path98 = /*#__PURE__*/
|
1383
|
+
})), _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
|
1390
1384
|
d: "M30,30H4a2.0021,2.0021,0,0,1-2-2V2H4V28H30Z"
|
1391
1385
|
})), children);
|
1392
1386
|
});
|
1393
1387
|
if (process.env.NODE_ENV !== "production") {
|
1394
1388
|
ChartColumnFloating.propTypes = iconPropTypes4cbeb95d.i;
|
1395
1389
|
}
|
1396
|
-
var ChartColumnTarget = /*#__PURE__*/
|
1390
|
+
var ChartColumnTarget = /*#__PURE__*/React.forwardRef(function ChartColumnTarget(_ref59, ref) {
|
1397
1391
|
var children = _ref59.children,
|
1398
1392
|
_ref59$size = _ref59.size,
|
1399
1393
|
size = _ref59$size === void 0 ? 16 : _ref59$size,
|
1400
1394
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref59, _excluded59);
|
1401
|
-
return /*#__PURE__*/
|
1395
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1402
1396
|
width: size,
|
1403
1397
|
height: size,
|
1404
1398
|
ref: ref,
|
1405
1399
|
xmlns: "http://www.w3.org/2000/svg",
|
1406
1400
|
viewBox: "0 0 32 32",
|
1407
1401
|
fill: "currentColor"
|
1408
|
-
}, rest), _path99 || (_path99 = /*#__PURE__*/
|
1402
|
+
}, rest), _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
|
1409
1403
|
d: "M27 28V6H19V28H15V14H7V28H4V2H2V28a2 2 0 002 2H30V28zM13 28H9V16h4zm12 0H21V8h4zM19 2H27V4H19z"
|
1410
|
-
})), _path100 || (_path100 = /*#__PURE__*/
|
1404
|
+
})), _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
|
1411
1405
|
d: "M7 10H15V12H7z"
|
1412
1406
|
})), children);
|
1413
1407
|
});
|
1414
1408
|
if (process.env.NODE_ENV !== "production") {
|
1415
1409
|
ChartColumnTarget.propTypes = iconPropTypes4cbeb95d.i;
|
1416
1410
|
}
|
1417
|
-
var ChartCombo = /*#__PURE__*/
|
1411
|
+
var ChartCombo = /*#__PURE__*/React.forwardRef(function ChartCombo(_ref60, ref) {
|
1418
1412
|
var children = _ref60.children,
|
1419
1413
|
_ref60$size = _ref60.size,
|
1420
1414
|
size = _ref60$size === void 0 ? 16 : _ref60$size,
|
1421
1415
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref60, _excluded60);
|
1422
|
-
return /*#__PURE__*/
|
1416
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1423
1417
|
width: size,
|
1424
1418
|
height: size,
|
1425
1419
|
ref: ref,
|
1426
1420
|
xmlns: "http://www.w3.org/2000/svg",
|
1427
1421
|
viewBox: "0 0 32 32",
|
1428
1422
|
fill: "currentColor"
|
1429
|
-
}, rest), _path101 || (_path101 = /*#__PURE__*/
|
1423
|
+
}, rest), _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
|
1430
1424
|
d: "M27,28V16H19V28H15V12H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V14h4Zm12,0H21V18h4Z"
|
1431
|
-
})), _path102 || (_path102 = /*#__PURE__*/
|
1425
|
+
})), _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
|
1432
1426
|
d: "M22.7856,14a1.9877,1.9877,0,0,1-1.1787-.3865L11.2041,5.987,8.2419,10,6.6374,8.8065l2.9812-4a1.9978,1.9978,0,0,1,2.749-.446l10.4214,7.64,3.6045-4.8613L28,8.3306l-3.6045,4.8611A2.0014,2.0014,0,0,1,22.7856,14Z"
|
1433
1427
|
})), children);
|
1434
1428
|
});
|
1435
1429
|
if (process.env.NODE_ENV !== "production") {
|
1436
1430
|
ChartCombo.propTypes = iconPropTypes4cbeb95d.i;
|
1437
1431
|
}
|
1438
|
-
var ChartComboStacked = /*#__PURE__*/
|
1432
|
+
var ChartComboStacked = /*#__PURE__*/React.forwardRef(function ChartComboStacked(_ref61, ref) {
|
1439
1433
|
var children = _ref61.children,
|
1440
1434
|
_ref61$size = _ref61.size,
|
1441
1435
|
size = _ref61$size === void 0 ? 16 : _ref61$size,
|
1442
1436
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref61, _excluded61);
|
1443
|
-
return /*#__PURE__*/
|
1437
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1444
1438
|
width: size,
|
1445
1439
|
height: size,
|
1446
1440
|
ref: ref,
|
1447
1441
|
xmlns: "http://www.w3.org/2000/svg",
|
1448
1442
|
viewBox: "0 0 32 32",
|
1449
1443
|
fill: "currentColor"
|
1450
|
-
}, rest), _path103 || (_path103 = /*#__PURE__*/
|
1444
|
+
}, rest), _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
|
1451
1445
|
d: "M27,28V16H19V28H15V12H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,14v6H9V14Zm12,4v6H21V18Z"
|
1452
|
-
})), _path104 || (_path104 = /*#__PURE__*/
|
1446
|
+
})), _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
|
1453
1447
|
d: "M22.7856,14a1.9877,1.9877,0,0,1-1.1787-.3865L11.2041,5.987,8.2419,10,6.6374,8.8065l2.9812-4a1.9978,1.9978,0,0,1,2.749-.446l10.4214,7.64,3.6045-4.8613L28,8.3306l-3.6045,4.8611A2.0014,2.0014,0,0,1,22.7856,14Z"
|
1454
1448
|
})), children);
|
1455
1449
|
});
|
1456
1450
|
if (process.env.NODE_ENV !== "production") {
|
1457
1451
|
ChartComboStacked.propTypes = iconPropTypes4cbeb95d.i;
|
1458
1452
|
}
|
1459
|
-
var ChartCustom = /*#__PURE__*/
|
1453
|
+
var ChartCustom = /*#__PURE__*/React.forwardRef(function ChartCustom(_ref62, ref) {
|
1460
1454
|
var children = _ref62.children,
|
1461
1455
|
_ref62$size = _ref62.size,
|
1462
1456
|
size = _ref62$size === void 0 ? 16 : _ref62$size,
|
1463
1457
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref62, _excluded62);
|
1464
|
-
return /*#__PURE__*/
|
1458
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1465
1459
|
width: size,
|
1466
1460
|
height: size,
|
1467
1461
|
ref: ref,
|
1468
1462
|
xmlns: "http://www.w3.org/2000/svg",
|
1469
1463
|
viewBox: "0 0 32 32",
|
1470
1464
|
fill: "currentColor"
|
1471
|
-
}, rest), _path105 || (_path105 = /*#__PURE__*/
|
1465
|
+
}, rest), _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
|
1472
1466
|
d: "M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"
|
1473
|
-
})), _path106 || (_path106 = /*#__PURE__*/
|
1467
|
+
})), _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
|
1474
1468
|
d: "M17 15H21V17H17z",
|
1475
1469
|
transform: "rotate(-90 19 16)"
|
1476
|
-
})), _path107 || (_path107 = /*#__PURE__*/
|
1470
|
+
})), _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
|
1477
1471
|
d: "M12 14H18V16H12z",
|
1478
1472
|
transform: "rotate(-90 15 15)"
|
1479
|
-
})), _path108 || (_path108 = /*#__PURE__*/
|
1473
|
+
})), _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
|
1480
1474
|
d: "M6 12H16V14H6z",
|
1481
1475
|
transform: "rotate(-90 11 13)"
|
1482
|
-
})), _path109 || (_path109 = /*#__PURE__*/
|
1476
|
+
})), _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
|
1483
1477
|
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"
|
1484
1478
|
})), children);
|
1485
1479
|
});
|
1486
1480
|
if (process.env.NODE_ENV !== "production") {
|
1487
1481
|
ChartCustom.propTypes = iconPropTypes4cbeb95d.i;
|
1488
1482
|
}
|
1489
|
-
var ChartDualYAxis = /*#__PURE__*/
|
1483
|
+
var ChartDualYAxis = /*#__PURE__*/React.forwardRef(function ChartDualYAxis(_ref63, ref) {
|
1490
1484
|
var children = _ref63.children,
|
1491
1485
|
_ref63$size = _ref63.size,
|
1492
1486
|
size = _ref63$size === void 0 ? 16 : _ref63$size,
|
1493
1487
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref63, _excluded63);
|
1494
|
-
return /*#__PURE__*/
|
1488
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1495
1489
|
width: size,
|
1496
1490
|
height: size,
|
1497
1491
|
ref: ref,
|
1498
1492
|
xmlns: "http://www.w3.org/2000/svg",
|
1499
1493
|
viewBox: "0 0 32 32",
|
1500
1494
|
fill: "currentColor"
|
1501
|
-
}, rest), _path110 || (_path110 = /*#__PURE__*/
|
1495
|
+
}, rest), _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
|
1502
1496
|
d: "m28,2v5.7222l-7.5317,6.9521L12.3818,6.5879c-.3918-.3911-.9111-.5918-1.4302-.5879-.4644.0034-.9285.1714-1.301.4976l-5.6506,4.9443V2h-2v26c0,1.1025.8972,2,2,2h24c1.1028,0,2-.8975,2-2V2h-2Zm0,8.4438v11.7622l-6.1165-6.1162,6.1165-5.646Zm-17.0322-2.4414l8.0298,8.0298-3.2141,2.9668-3.4148-3.415c-.3711-.3706-.8564-.5674-1.3479-.584s-.9885.1475-1.3833.4932l-5.6375,4.9326v-6.3262l6.9678-6.0972Zm-6.9678,19.9976v-4.9165l6.9546-6.085,3.4146,3.4146c.3809.3809.8755.5771,1.374.5869s1.0007-.166,1.3967-.5312l3.2729-3.0215,7.5872,7.5869v2.9658H4Z"
|
1503
1497
|
})), children);
|
1504
1498
|
});
|
1505
1499
|
if (process.env.NODE_ENV !== "production") {
|
1506
1500
|
ChartDualYAxis.propTypes = iconPropTypes4cbeb95d.i;
|
1507
1501
|
}
|
1508
|
-
var ChartErrorBar = /*#__PURE__*/
|
1502
|
+
var ChartErrorBar = /*#__PURE__*/React.forwardRef(function ChartErrorBar(_ref64, ref) {
|
1509
1503
|
var children = _ref64.children,
|
1510
1504
|
_ref64$size = _ref64.size,
|
1511
1505
|
size = _ref64$size === void 0 ? 16 : _ref64$size,
|
1512
1506
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref64, _excluded64);
|
1513
|
-
return /*#__PURE__*/
|
1507
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1514
1508
|
width: size,
|
1515
1509
|
height: size,
|
1516
1510
|
ref: ref,
|
1517
1511
|
xmlns: "http://www.w3.org/2000/svg",
|
1518
1512
|
viewBox: "0 0 32 32",
|
1519
1513
|
fill: "currentColor"
|
1520
|
-
}, rest), _path111 || (_path111 = /*#__PURE__*/
|
1514
|
+
}, rest), _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
|
1521
1515
|
d: "M22,28V12H18V8h2V6H14V8h2v4H12V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM14,14h2v4H14Zm6,14H14V20h6Zm0-10H18V14h2Z"
|
1522
1516
|
})), children);
|
1523
1517
|
});
|
1524
1518
|
if (process.env.NODE_ENV !== "production") {
|
1525
1519
|
ChartErrorBar.propTypes = iconPropTypes4cbeb95d.i;
|
1526
1520
|
}
|
1527
|
-
var ChartErrorBarAlt = /*#__PURE__*/
|
1521
|
+
var ChartErrorBarAlt = /*#__PURE__*/React.forwardRef(function ChartErrorBarAlt(_ref65, ref) {
|
1528
1522
|
var children = _ref65.children,
|
1529
1523
|
_ref65$size = _ref65.size,
|
1530
1524
|
size = _ref65$size === void 0 ? 16 : _ref65$size,
|
1531
1525
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref65, _excluded65);
|
1532
|
-
return /*#__PURE__*/
|
1526
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1533
1527
|
width: size,
|
1534
1528
|
height: size,
|
1535
1529
|
ref: ref,
|
1536
1530
|
xmlns: "http://www.w3.org/2000/svg",
|
1537
1531
|
viewBox: "0 0 32 32",
|
1538
1532
|
fill: "currentColor"
|
1539
|
-
}, rest), _path112 || (_path112 = /*#__PURE__*/
|
1533
|
+
}, rest), _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
|
1540
1534
|
d: "M14 10V8H8v2h2v4.1836a2.983 2.983 0 000 5.6328V24H8v2h6V24H12V19.8164a2.983 2.983 0 000-5.6328V10zM26 6V4H20V6h2V8.1836a2.983 2.983 0 000 5.6328V18H20v2h6V18H24V13.8164a2.983 2.983 0 000-5.6328V6z"
|
1541
|
-
})), _path113 || (_path113 = /*#__PURE__*/
|
1535
|
+
})), _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
|
1542
1536
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
1543
1537
|
})), children);
|
1544
1538
|
});
|
1545
1539
|
if (process.env.NODE_ENV !== "production") {
|
1546
1540
|
ChartErrorBarAlt.propTypes = iconPropTypes4cbeb95d.i;
|
1547
1541
|
}
|
1548
|
-
var ChartEvaluation = /*#__PURE__*/
|
1542
|
+
var ChartEvaluation = /*#__PURE__*/React.forwardRef(function ChartEvaluation(_ref66, ref) {
|
1549
1543
|
var children = _ref66.children,
|
1550
1544
|
_ref66$size = _ref66.size,
|
1551
1545
|
size = _ref66$size === void 0 ? 16 : _ref66$size,
|
1552
1546
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref66, _excluded66);
|
1553
|
-
return /*#__PURE__*/
|
1547
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1554
1548
|
width: size,
|
1555
1549
|
height: size,
|
1556
1550
|
ref: ref,
|
1557
1551
|
xmlns: "http://www.w3.org/2000/svg",
|
1558
1552
|
viewBox: "0 0 32 32",
|
1559
1553
|
fill: "currentColor"
|
1560
|
-
}, rest), _path114 || (_path114 = /*#__PURE__*/
|
1554
|
+
}, rest), _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
|
1561
1555
|
d: "M25.672 6.207H29.915V8.206H25.672z",
|
1562
1556
|
transform: "rotate(-45.02 27.793 7.207)"
|
1563
|
-
})), _path115 || (_path115 = /*#__PURE__*/
|
1557
|
+
})), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
|
1564
1558
|
d: "M16 20.5L11 15.539 12.59 13.969 16 17.349 23.41 10 25 11.579 16 20.5z"
|
1565
|
-
})), _path116 || (_path116 = /*#__PURE__*/
|
1559
|
+
})), _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
|
1566
1560
|
d: "M4,28V25.4131L10.4141,19,9,17.585l-5,5V2H2V28a2,2,0,0,0,2,2H30V28Z"
|
1567
1561
|
})), children);
|
1568
1562
|
});
|
1569
1563
|
if (process.env.NODE_ENV !== "production") {
|
1570
1564
|
ChartEvaluation.propTypes = iconPropTypes4cbeb95d.i;
|
1571
1565
|
}
|
1572
|
-
var ChartHighLow = /*#__PURE__*/
|
1566
|
+
var ChartHighLow = /*#__PURE__*/React.forwardRef(function ChartHighLow(_ref67, ref) {
|
1573
1567
|
var children = _ref67.children,
|
1574
1568
|
_ref67$size = _ref67.size,
|
1575
1569
|
size = _ref67$size === void 0 ? 16 : _ref67$size,
|
1576
1570
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref67, _excluded67);
|
1577
|
-
return /*#__PURE__*/
|
1571
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1578
1572
|
width: size,
|
1579
1573
|
height: size,
|
1580
1574
|
ref: ref,
|
1581
1575
|
xmlns: "http://www.w3.org/2000/svg",
|
1582
1576
|
viewBox: "0 0 32 32",
|
1583
1577
|
fill: "currentColor"
|
1584
|
-
}, rest), _path117 || (_path117 = /*#__PURE__*/
|
1578
|
+
}, rest), _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
|
1585
1579
|
d: "M15 8L12 8 12 6 10 6 10 20 7 20 7 22 10 22 10 24 12 24 12 10 15 10 15 8zM27 10L24 10 24 6 22 6 22 18 19 18 19 20 22 20 22 24 24 24 24 12 27 12 27 10z"
|
1586
|
-
})), _path118 || (_path118 = /*#__PURE__*/
|
1580
|
+
})), _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
|
1587
1581
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
1588
1582
|
})), children);
|
1589
1583
|
});
|
1590
1584
|
if (process.env.NODE_ENV !== "production") {
|
1591
1585
|
ChartHighLow.propTypes = iconPropTypes4cbeb95d.i;
|
1592
1586
|
}
|
1593
|
-
var ChartHistogram = /*#__PURE__*/
|
1587
|
+
var ChartHistogram = /*#__PURE__*/React.forwardRef(function ChartHistogram(_ref68, ref) {
|
1594
1588
|
var children = _ref68.children,
|
1595
1589
|
_ref68$size = _ref68.size,
|
1596
1590
|
size = _ref68$size === void 0 ? 16 : _ref68$size,
|
1597
1591
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref68, _excluded68);
|
1598
|
-
return /*#__PURE__*/
|
1592
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1599
1593
|
width: size,
|
1600
1594
|
height: size,
|
1601
1595
|
ref: ref,
|
1602
1596
|
xmlns: "http://www.w3.org/2000/svg",
|
1603
1597
|
viewBox: "0 0 32 32",
|
1604
1598
|
fill: "currentColor"
|
1605
|
-
}, rest), _path119 || (_path119 = /*#__PURE__*/
|
1599
|
+
}, rest), _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
|
1606
1600
|
d: "M6,16c2.9727,0,4.2324-2.251,5.3447-4.2373C12.4741,9.7441,13.45,8,16,8s3.5259,1.7441,4.6553,3.7627C21.7676,13.749,23.0273,16,26,16h4V14H26c-1.7129,0-2.4834-1.2207-3.5991-3.2144C21.2075,8.6543,19.7231,6,16,6s-5.2075,2.6543-6.4009,4.7856C8.4834,12.7793,7.7129,14,6,14H4V2H2V28a2,2,0,0,0,2,2H30V28H28V22H26v6H21.9992L22,20H20v8H16V16H14V28H9.9992L10,20H8v8H4V16Z"
|
1607
1601
|
})), children);
|
1608
1602
|
});
|
1609
1603
|
if (process.env.NODE_ENV !== "production") {
|
1610
1604
|
ChartHistogram.propTypes = iconPropTypes4cbeb95d.i;
|
1611
1605
|
}
|
1612
|
-
var ChartLine = /*#__PURE__*/
|
1606
|
+
var ChartLine = /*#__PURE__*/React.forwardRef(function ChartLine(_ref69, ref) {
|
1613
1607
|
var children = _ref69.children,
|
1614
1608
|
_ref69$size = _ref69.size,
|
1615
1609
|
size = _ref69$size === void 0 ? 16 : _ref69$size,
|
1616
1610
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref69, _excluded69);
|
1617
|
-
return /*#__PURE__*/
|
1611
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1618
1612
|
width: size,
|
1619
1613
|
height: size,
|
1620
1614
|
ref: ref,
|
1621
1615
|
xmlns: "http://www.w3.org/2000/svg",
|
1622
1616
|
viewBox: "0 0 32 32",
|
1623
1617
|
fill: "currentColor"
|
1624
|
-
}, rest), _path120 || (_path120 = /*#__PURE__*/
|
1618
|
+
}, rest), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
|
1625
1619
|
d: "M4.67,28l6.39-12,7.3,6.49a2,2,0,0,0,1.7.47,2,2,0,0,0,1.42-1.07L27,10.9,25.18,10,19.69,21l-7.3-6.49A2,2,0,0,0,10.71,14a2,2,0,0,0-1.42,1L4,25V2H2V28a2,2,0,0,0,2,2H30V28Z"
|
1626
1620
|
})), children);
|
1627
1621
|
});
|
1628
1622
|
if (process.env.NODE_ENV !== "production") {
|
1629
1623
|
ChartLine.propTypes = iconPropTypes4cbeb95d.i;
|
1630
1624
|
}
|
1631
|
-
var ChartLineData = /*#__PURE__*/
|
1625
|
+
var ChartLineData = /*#__PURE__*/React.forwardRef(function ChartLineData(_ref70, ref) {
|
1632
1626
|
var children = _ref70.children,
|
1633
1627
|
_ref70$size = _ref70.size,
|
1634
1628
|
size = _ref70$size === void 0 ? 16 : _ref70$size,
|
1635
1629
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref70, _excluded70);
|
1636
|
-
return /*#__PURE__*/
|
1630
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1637
1631
|
width: size,
|
1638
1632
|
height: size,
|
1639
1633
|
ref: ref,
|
1640
1634
|
xmlns: "http://www.w3.org/2000/svg",
|
1641
1635
|
viewBox: "0 0 32 32",
|
1642
1636
|
fill: "currentColor"
|
1643
|
-
}, rest), _path121 || (_path121 = /*#__PURE__*/
|
1637
|
+
}, rest), _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
|
1644
1638
|
d: "M10.06,17.88A4.25,4.25,0,0,0,11,18a4,4,0,0,0,2.23-.68l3.22,2.87a3.88,3.88,0,0,0-.2,3.17A4,4,0,1,0,22.62,19l2.54-5.09a3.78,3.78,0,0,0,2.91-.53A4,4,0,1,0,23.38,13l-2.54,5.09A3.86,3.86,0,0,0,20,18a4,4,0,0,0-2.23.68l-3.22-2.87a3.88,3.88,0,0,0,.2-3.17A4,4,0,1,0,8.3,16.93L4,25V2H2V28a2,2,0,0,0,2,2H30V28H4.67ZM26,8a2,2,0,1,1-2,2A2,2,0,0,1,26,8ZM22,22a2,2,0,1,1-2-2A2,2,0,0,1,22,22ZM11,12a2,2,0,1,1-2,2A2,2,0,0,1,11,12Z"
|
1645
1639
|
})), children);
|
1646
1640
|
});
|
1647
1641
|
if (process.env.NODE_ENV !== "production") {
|
1648
1642
|
ChartLineData.propTypes = iconPropTypes4cbeb95d.i;
|
1649
1643
|
}
|
1650
|
-
var ChartLineSmooth = /*#__PURE__*/
|
1644
|
+
var ChartLineSmooth = /*#__PURE__*/React.forwardRef(function ChartLineSmooth(_ref71, ref) {
|
1651
1645
|
var children = _ref71.children,
|
1652
1646
|
_ref71$size = _ref71.size,
|
1653
1647
|
size = _ref71$size === void 0 ? 16 : _ref71$size,
|
1654
1648
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref71, _excluded71);
|
1655
|
-
return /*#__PURE__*/
|
1649
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1656
1650
|
width: size,
|
1657
1651
|
height: size,
|
1658
1652
|
ref: ref,
|
1659
1653
|
xmlns: "http://www.w3.org/2000/svg",
|
1660
1654
|
viewBox: "0 0 32 32",
|
1661
1655
|
fill: "currentColor"
|
1662
|
-
}, rest), _path122 || (_path122 = /*#__PURE__*/
|
1656
|
+
}, rest), _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
|
1663
1657
|
d: "M13,15c1.4854,0,2.5544,1.4966,3.6863,3.0811C17.9983,19.918,19.4854,22,22,22c5.6709,0,7.78-10.79,8-12l-1.9678-.3584C27.55,12.2827,25.3938,20,22,20c-1.4854,0-2.5544-1.4966-3.6863-3.0811C17.0017,15.082,15.5146,13,13,13c-4.186,0-7.4448,7.4043-9,11.7617V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H5.0439C6.5544,22.8574,9.9634,15,13,15Z"
|
1664
1658
|
})), children);
|
1665
1659
|
});
|
1666
1660
|
if (process.env.NODE_ENV !== "production") {
|
1667
1661
|
ChartLineSmooth.propTypes = iconPropTypes4cbeb95d.i;
|
1668
1662
|
}
|
1669
|
-
var ChartLogisticRegression = /*#__PURE__*/
|
1663
|
+
var ChartLogisticRegression = /*#__PURE__*/React.forwardRef(function ChartLogisticRegression(_ref72, ref) {
|
1670
1664
|
var children = _ref72.children,
|
1671
1665
|
_ref72$size = _ref72.size,
|
1672
1666
|
size = _ref72$size === void 0 ? 16 : _ref72$size,
|
1673
1667
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref72, _excluded72);
|
1674
|
-
return /*#__PURE__*/
|
1668
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1675
1669
|
width: size,
|
1676
1670
|
height: size,
|
1677
1671
|
ref: ref,
|
1678
1672
|
xmlns: "http://www.w3.org/2000/svg",
|
1679
1673
|
viewBox: "0 0 32 32",
|
1680
1674
|
fill: "currentColor"
|
1681
|
-
}, rest), _circle4 || (_circle4 = /*#__PURE__*/
|
1675
|
+
}, rest), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
|
1682
1676
|
cx: "26",
|
1683
1677
|
cy: "22",
|
1684
1678
|
r: "2"
|
1685
|
-
})), _circle5 || (_circle5 = /*#__PURE__*/
|
1679
|
+
})), _circle5 || (_circle5 = /*#__PURE__*/React.createElement("circle", {
|
1686
1680
|
cx: "20",
|
1687
1681
|
cy: "22",
|
1688
1682
|
r: "2"
|
1689
|
-
})), _circle6 || (_circle6 = /*#__PURE__*/
|
1683
|
+
})), _circle6 || (_circle6 = /*#__PURE__*/React.createElement("circle", {
|
1690
1684
|
cx: "14",
|
1691
1685
|
cy: "6",
|
1692
1686
|
r: "2"
|
1693
|
-
})), _circle7 || (_circle7 = /*#__PURE__*/
|
1687
|
+
})), _circle7 || (_circle7 = /*#__PURE__*/React.createElement("circle", {
|
1694
1688
|
cx: "8",
|
1695
1689
|
cy: "6",
|
1696
1690
|
r: "2"
|
1697
|
-
})), _path123 || (_path123 = /*#__PURE__*/
|
1691
|
+
})), _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
|
1698
1692
|
d: "m8.2339,24c3.8799,0,7.311-2.4731,8.5383-6.1543l2.353-7.0591c.9543-2.8628,3.6233-4.7866,6.6409-4.7866h4.2339v-2h-4.2339c-3.8799,0-7.311,2.4731-8.5383,6.1543l-2.353,7.0591c-.9543,2.8628-3.6233,4.7866-6.6409,4.7866h-4.2339V2h-2v26c0,1.1025.897,2,2,2h26v-2H4v-4h4.2339Z"
|
1699
1693
|
})), children);
|
1700
1694
|
});
|
1701
1695
|
if (process.env.NODE_ENV !== "production") {
|
1702
1696
|
ChartLogisticRegression.propTypes = iconPropTypes4cbeb95d.i;
|
1703
1697
|
}
|
1704
|
-
var ChartMarimekko = /*#__PURE__*/
|
1698
|
+
var ChartMarimekko = /*#__PURE__*/React.forwardRef(function ChartMarimekko(_ref73, ref) {
|
1705
1699
|
var children = _ref73.children,
|
1706
1700
|
_ref73$size = _ref73.size,
|
1707
1701
|
size = _ref73$size === void 0 ? 16 : _ref73$size,
|
1708
1702
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref73, _excluded73);
|
1709
|
-
return /*#__PURE__*/
|
1703
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1710
1704
|
width: size,
|
1711
1705
|
height: size,
|
1712
1706
|
ref: ref,
|
1713
1707
|
xmlns: "http://www.w3.org/2000/svg",
|
1714
1708
|
viewBox: "0 0 32 32",
|
1715
1709
|
fill: "currentColor"
|
1716
|
-
}, rest), _path124 || (_path124 = /*#__PURE__*/
|
1710
|
+
}, rest), _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
|
1717
1711
|
d: "M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,7H21V5h6ZM19,8H13V5h6Zm0,2v8H13V10ZM11,22H5V12h6Zm2-2h6v7H13Zm8-8h6v4H21ZM11,5v5H5V5ZM5,24h6v3H5Zm16,3V18h6v9Z"
|
1718
1712
|
})), children);
|
1719
1713
|
});
|
1720
1714
|
if (process.env.NODE_ENV !== "production") {
|
1721
1715
|
ChartMarimekko.propTypes = iconPropTypes4cbeb95d.i;
|
1722
1716
|
}
|
1723
|
-
var ChartMaximum = /*#__PURE__*/
|
1717
|
+
var ChartMaximum = /*#__PURE__*/React.forwardRef(function ChartMaximum(_ref74, ref) {
|
1724
1718
|
var children = _ref74.children,
|
1725
1719
|
_ref74$size = _ref74.size,
|
1726
1720
|
size = _ref74$size === void 0 ? 16 : _ref74$size,
|
1727
1721
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref74, _excluded74);
|
1728
|
-
return /*#__PURE__*/
|
1722
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1729
1723
|
width: size,
|
1730
1724
|
height: size,
|
1731
1725
|
ref: ref,
|
1732
1726
|
xmlns: "http://www.w3.org/2000/svg",
|
1733
1727
|
viewBox: "0 0 32 32",
|
1734
1728
|
fill: "currentColor"
|
1735
|
-
}, rest), _path125 || (_path125 = /*#__PURE__*/
|
1729
|
+
}, rest), _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
|
1736
1730
|
d: "M8 6H10V8H8zM12 6H14V8H12zM20 6H22V8H20zM24 6H26V8H24zM28 6H30V8H28z"
|
1737
|
-
})), _path126 || (_path126 = /*#__PURE__*/
|
1731
|
+
})), _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
|
1738
1732
|
d: "M27.989,28l-.0271-.1631C26.5105,19.0742,24.0662,9.0894,18,8.0889V6H16V8.085c-6.084.978-8.533,10.9775-9.9863,19.7519L5.9866,28H4V8H6V6H4V2H2V28a2,2,0,0,0,2,2H30V28ZM8.0151,28c2.024-12.1084,4.959-18,8.9727-18s6.9487,5.8916,8.9726,18Z"
|
1739
1733
|
})), children);
|
1740
1734
|
});
|
1741
1735
|
if (process.env.NODE_ENV !== "production") {
|
1742
1736
|
ChartMaximum.propTypes = iconPropTypes4cbeb95d.i;
|
1743
1737
|
}
|
1744
|
-
var ChartMedian = /*#__PURE__*/
|
1738
|
+
var ChartMedian = /*#__PURE__*/React.forwardRef(function ChartMedian(_ref75, ref) {
|
1745
1739
|
var children = _ref75.children,
|
1746
1740
|
_ref75$size = _ref75.size,
|
1747
1741
|
size = _ref75$size === void 0 ? 16 : _ref75$size,
|
1748
1742
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref75, _excluded75);
|
1749
|
-
return /*#__PURE__*/
|
1743
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1750
1744
|
width: size,
|
1751
1745
|
height: size,
|
1752
1746
|
ref: ref,
|
1753
1747
|
xmlns: "http://www.w3.org/2000/svg",
|
1754
1748
|
viewBox: "0 0 32 32",
|
1755
1749
|
fill: "currentColor"
|
1756
|
-
}, rest), _path127 || (_path127 = /*#__PURE__*/
|
1750
|
+
}, rest), _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
|
1757
1751
|
d: "M16 22H18V24H16z",
|
1758
1752
|
transform: "rotate(-90 17 23)"
|
1759
|
-
})), _path128 || (_path128 = /*#__PURE__*/
|
1753
|
+
})), _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
|
1760
1754
|
d: "M18,28V26H16v2H4V2H2V28a2,2,0,0,0,2,2H30V28Z"
|
1761
|
-
})), _path129 || (_path129 = /*#__PURE__*/
|
1755
|
+
})), _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
|
1762
1756
|
d: "M26.0532,19.6787A3.44,3.44,0,0,1,23,22c-2.17,0-3.3115-3.333-4.52-6.8623-.3557-1.0386-.7239-2.1094-1.1382-3.1377H18V10H16.4221C15.2124,7.7148,13.5811,6,11,6,7.3218,6,6.1016,9.5332,6.0513,9.6836l1.8955.6377A3.44,3.44,0,0,1,11,8c2.92,0,4.2764,3.958,5.5874,7.7861.2544.7422.5105,1.4893.7813,2.2139H16v2h2.2019c1.0828,2.2886,2.4959,4,4.7981,4,3.6782,0,4.8984-3.5332,4.9487-3.6836Z"
|
1763
|
-
})), _path130 || (_path130 = /*#__PURE__*/
|
1757
|
+
})), _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
|
1764
1758
|
d: "M16 6H18V8H16z",
|
1765
1759
|
transform: "rotate(-90 17 7)"
|
1766
|
-
})), _path131 || (_path131 = /*#__PURE__*/
|
1760
|
+
})), _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
|
1767
1761
|
d: "M16 2H18V4H16z",
|
1768
1762
|
transform: "rotate(-90 17 3)"
|
1769
1763
|
})), children);
|
@@ -1771,79 +1765,79 @@ var ChartMedian = /*#__PURE__*/React__default["default"].forwardRef(function Cha
|
|
1771
1765
|
if (process.env.NODE_ENV !== "production") {
|
1772
1766
|
ChartMedian.propTypes = iconPropTypes4cbeb95d.i;
|
1773
1767
|
}
|
1774
|
-
var ChartMinimum = /*#__PURE__*/
|
1768
|
+
var ChartMinimum = /*#__PURE__*/React.forwardRef(function ChartMinimum(_ref76, ref) {
|
1775
1769
|
var children = _ref76.children,
|
1776
1770
|
_ref76$size = _ref76.size,
|
1777
1771
|
size = _ref76$size === void 0 ? 16 : _ref76$size,
|
1778
1772
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref76, _excluded76);
|
1779
|
-
return /*#__PURE__*/
|
1773
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1780
1774
|
width: size,
|
1781
1775
|
height: size,
|
1782
1776
|
ref: ref,
|
1783
1777
|
xmlns: "http://www.w3.org/2000/svg",
|
1784
1778
|
viewBox: "0 0 32 32",
|
1785
1779
|
fill: "currentColor"
|
1786
|
-
}, rest), _path132 || (_path132 = /*#__PURE__*/
|
1780
|
+
}, rest), _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
|
1787
1781
|
d: "M4,28V26H6V24H4V2H2V28a2,2,0,0,0,2,2H30V28Z"
|
1788
|
-
})), _path133 || (_path133 = /*#__PURE__*/
|
1782
|
+
})), _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
|
1789
1783
|
d: "M8 24H10V26H8zM12 24H14V26H12zM20 24H22V26H20zM24 24H26V26H24zM28 24H30V26H28z"
|
1790
|
-
})), _path134 || (_path134 = /*#__PURE__*/
|
1784
|
+
})), _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
|
1791
1785
|
d: "M27.9463,4.3281,25.9727,4C23.9487,16.1084,21.0137,22,17,22S10.0513,16.1084,8.0271,4l-1.9734.3281C7.51,13.0566,9.9631,22.93,16,23.9131V26h2V23.9131C24.0371,22.93,26.4907,13.0566,27.9463,4.3281Z"
|
1792
1786
|
})), children);
|
1793
1787
|
});
|
1794
1788
|
if (process.env.NODE_ENV !== "production") {
|
1795
1789
|
ChartMinimum.propTypes = iconPropTypes4cbeb95d.i;
|
1796
1790
|
}
|
1797
|
-
var ChartMultiLine = /*#__PURE__*/
|
1791
|
+
var ChartMultiLine = /*#__PURE__*/React.forwardRef(function ChartMultiLine(_ref77, ref) {
|
1798
1792
|
var children = _ref77.children,
|
1799
1793
|
_ref77$size = _ref77.size,
|
1800
1794
|
size = _ref77$size === void 0 ? 16 : _ref77$size,
|
1801
1795
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref77, _excluded77);
|
1802
|
-
return /*#__PURE__*/
|
1796
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1803
1797
|
width: size,
|
1804
1798
|
height: size,
|
1805
1799
|
ref: ref,
|
1806
1800
|
xmlns: "http://www.w3.org/2000/svg",
|
1807
1801
|
viewBox: "0 0 32 32",
|
1808
1802
|
fill: "currentColor"
|
1809
|
-
}, rest), _path135 || (_path135 = /*#__PURE__*/
|
1803
|
+
}, rest), _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
|
1810
1804
|
d: "M4.5859,28l7.1783-5.998L19.7578,23.94a2.021,2.021,0,0,0,1.314-.1206L28,20.5811l-.8479-1.8121-6.9163,3.229L12.2422,20.06a2.0033,2.0033,0,0,0-1.74.3838L4,25.8818V20.49l7.7642-6.4877L19.7578,15.94a2.021,2.021,0,0,0,1.314-.1206l6.9287-3.2383-.8467-1.812-6.918,3.2285L12.2422,12.06a2.0049,2.0049,0,0,0-1.74.3838L4,17.8818V12.49L11.7642,6.002,19.7578,7.94a2.021,2.021,0,0,0,1.314-.1206L28,4.5859l-.8457-1.8115L20.2358,5.998,12.2422,4.06a2.0033,2.0033,0,0,0-1.74.3838L4,9.8818V2H2V28a2,2,0,0,0,2,2H30V28Z"
|
1811
1805
|
})), children);
|
1812
1806
|
});
|
1813
1807
|
if (process.env.NODE_ENV !== "production") {
|
1814
1808
|
ChartMultiLine.propTypes = iconPropTypes4cbeb95d.i;
|
1815
1809
|
}
|
1816
|
-
var ChartMultitype = /*#__PURE__*/
|
1810
|
+
var ChartMultitype = /*#__PURE__*/React.forwardRef(function ChartMultitype(_ref78, ref) {
|
1817
1811
|
var children = _ref78.children,
|
1818
1812
|
_ref78$size = _ref78.size,
|
1819
1813
|
size = _ref78$size === void 0 ? 16 : _ref78$size,
|
1820
1814
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref78, _excluded78);
|
1821
|
-
return /*#__PURE__*/
|
1815
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1822
1816
|
width: size,
|
1823
1817
|
height: size,
|
1824
1818
|
ref: ref,
|
1825
1819
|
xmlns: "http://www.w3.org/2000/svg",
|
1826
1820
|
viewBox: "0 0 32 32",
|
1827
1821
|
fill: "currentColor"
|
1828
|
-
}, rest), _path136 || (_path136 = /*#__PURE__*/
|
1822
|
+
}, rest), _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
|
1829
1823
|
d: "M28 22H30V30H28zM24 18H26V30H24zM20 26H22V30H20zM9 16a7 7 0 107 7A7.0078 7.0078 0 009 16zm4.8989 6H10V18.1011A5.0145 5.0145 0 0113.8989 22zM9 28a5 5 0 01-1-9.8989V22a2 2 0 002 2h3.8989A5.0081 5.0081 0 019 28zM22.5352 12l4-6H30V4H25.4648l-4 6H18V2H16V14a2 2 0 002 2H30V14H18V12z"
|
1830
|
-
})), _circle8 || (_circle8 = /*#__PURE__*/
|
1824
|
+
})), _circle8 || (_circle8 = /*#__PURE__*/React.createElement("circle", {
|
1831
1825
|
cx: "11",
|
1832
1826
|
cy: "7",
|
1833
1827
|
r: "1"
|
1834
|
-
})), _circle9 || (_circle9 = /*#__PURE__*/
|
1828
|
+
})), _circle9 || (_circle9 = /*#__PURE__*/React.createElement("circle", {
|
1835
1829
|
cx: "9",
|
1836
1830
|
cy: "11",
|
1837
1831
|
r: "1"
|
1838
|
-
})), _circle10 || (_circle10 = /*#__PURE__*/
|
1832
|
+
})), _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
|
1839
1833
|
cx: "7",
|
1840
1834
|
cy: "5",
|
1841
1835
|
r: "1"
|
1842
|
-
})), _circle11 || (_circle11 = /*#__PURE__*/
|
1836
|
+
})), _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
|
1843
1837
|
cx: "5",
|
1844
1838
|
cy: "9",
|
1845
1839
|
r: "1"
|
1846
|
-
})), _circle12 || (_circle12 = /*#__PURE__*/
|
1840
|
+
})), _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
|
1847
1841
|
cx: "3",
|
1848
1842
|
cy: "13",
|
1849
1843
|
r: "1"
|
@@ -1852,293 +1846,293 @@ var ChartMultitype = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
1852
1846
|
if (process.env.NODE_ENV !== "production") {
|
1853
1847
|
ChartMultitype.propTypes = iconPropTypes4cbeb95d.i;
|
1854
1848
|
}
|
1855
|
-
var ChartNetwork = /*#__PURE__*/
|
1849
|
+
var ChartNetwork = /*#__PURE__*/React.forwardRef(function ChartNetwork(_ref79, ref) {
|
1856
1850
|
var children = _ref79.children,
|
1857
1851
|
_ref79$size = _ref79.size,
|
1858
1852
|
size = _ref79$size === void 0 ? 16 : _ref79$size,
|
1859
1853
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref79, _excluded79);
|
1860
|
-
return /*#__PURE__*/
|
1854
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1861
1855
|
width: size,
|
1862
1856
|
height: size,
|
1863
1857
|
ref: ref,
|
1864
1858
|
xmlns: "http://www.w3.org/2000/svg",
|
1865
1859
|
viewBox: "0 0 32 32",
|
1866
1860
|
fill: "currentColor"
|
1867
|
-
}, rest), _path137 || (_path137 = /*#__PURE__*/
|
1861
|
+
}, rest), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
|
1868
1862
|
d: "M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h2v4.1A5,5,0,0,0,18.1,22H14V20a2,2,0,0,0-2-2H10V13.9a5,5,0,1,0-2,0V18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V24h4.1A5,5,0,1,0,24,18.1V14ZM6,9a3,3,0,1,1,3,3A3,3,0,0,1,6,9Zm6,17H6V20h6Zm14-3a3,3,0,1,1-3-3A3,3,0,0,1,26,23ZM20,6h6v6H20Z"
|
1869
1863
|
})), children);
|
1870
1864
|
});
|
1871
1865
|
if (process.env.NODE_ENV !== "production") {
|
1872
1866
|
ChartNetwork.propTypes = iconPropTypes4cbeb95d.i;
|
1873
1867
|
}
|
1874
|
-
var ChartParallel = /*#__PURE__*/
|
1868
|
+
var ChartParallel = /*#__PURE__*/React.forwardRef(function ChartParallel(_ref80, ref) {
|
1875
1869
|
var children = _ref80.children,
|
1876
1870
|
_ref80$size = _ref80.size,
|
1877
1871
|
size = _ref80$size === void 0 ? 16 : _ref80$size,
|
1878
1872
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref80, _excluded80);
|
1879
|
-
return /*#__PURE__*/
|
1873
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1880
1874
|
width: size,
|
1881
1875
|
height: size,
|
1882
1876
|
ref: ref,
|
1883
1877
|
xmlns: "http://www.w3.org/2000/svg",
|
1884
1878
|
viewBox: "0 0 32 32",
|
1885
1879
|
fill: "currentColor"
|
1886
|
-
}, rest), _path138 || (_path138 = /*#__PURE__*/
|
1880
|
+
}, rest), _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
|
1887
1881
|
d: "M28,2V5.3071l-6,2.25V2H20V7.5229l-8-3.2V2H10V4.4458l-6,3.75V2H2V30H4V27.6182l6-3V30h2V24.3442l8,2.4V30h2V26.5542l6-3.75V30h2V2Zm0,5.4429V12.5L22,17V9.6929ZM20,9.6768v7.5571l-8-4.8V6.4771ZM10,6.8042v5.7417l-6,5.25V10.5542ZM4,25.3818V20.4541l6-5.25v7.1777Zm8-3.1259v-7.49l8,4.8v5.0894Zm10,1.94V19.5L28,15v5.4458Z"
|
1888
1882
|
})), children);
|
1889
1883
|
});
|
1890
1884
|
if (process.env.NODE_ENV !== "production") {
|
1891
1885
|
ChartParallel.propTypes = iconPropTypes4cbeb95d.i;
|
1892
1886
|
}
|
1893
|
-
var ChartPie = /*#__PURE__*/
|
1887
|
+
var ChartPie = /*#__PURE__*/React.forwardRef(function ChartPie(_ref81, ref) {
|
1894
1888
|
var children = _ref81.children,
|
1895
1889
|
_ref81$size = _ref81.size,
|
1896
1890
|
size = _ref81$size === void 0 ? 16 : _ref81$size,
|
1897
1891
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref81, _excluded81);
|
1898
|
-
return /*#__PURE__*/
|
1892
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1899
1893
|
width: size,
|
1900
1894
|
height: size,
|
1901
1895
|
ref: ref,
|
1902
1896
|
xmlns: "http://www.w3.org/2000/svg",
|
1903
1897
|
viewBox: "0 0 32 32",
|
1904
1898
|
fill: "currentColor"
|
1905
|
-
}, rest), _path139 || (_path139 = /*#__PURE__*/
|
1899
|
+
}, rest), _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
|
1906
1900
|
d: "M16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4ZM26,15H17V6.05A10,10,0,0,1,26,15ZM15.42,26A10,10,0,0,1,15,6.05v9a2,2,0,0,0,2,2h9A10,10,0,0,1,15.42,26Z"
|
1907
1901
|
})), children);
|
1908
1902
|
});
|
1909
1903
|
if (process.env.NODE_ENV !== "production") {
|
1910
1904
|
ChartPie.propTypes = iconPropTypes4cbeb95d.i;
|
1911
1905
|
}
|
1912
|
-
var ChartPlanningWaterfall = /*#__PURE__*/
|
1906
|
+
var ChartPlanningWaterfall = /*#__PURE__*/React.forwardRef(function ChartPlanningWaterfall(_ref82, ref) {
|
1913
1907
|
var children = _ref82.children,
|
1914
1908
|
_ref82$size = _ref82.size,
|
1915
1909
|
size = _ref82$size === void 0 ? 16 : _ref82$size,
|
1916
1910
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref82, _excluded82);
|
1917
|
-
return /*#__PURE__*/
|
1911
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1918
1912
|
width: size,
|
1919
1913
|
height: size,
|
1920
1914
|
ref: ref,
|
1921
1915
|
xmlns: "http://www.w3.org/2000/svg",
|
1922
1916
|
viewBox: "0 0 32 32",
|
1923
1917
|
fill: "currentColor"
|
1924
|
-
}, rest), _path140 || (_path140 = /*#__PURE__*/
|
1918
|
+
}, rest), _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
|
1925
1919
|
d: "m29,8c0-.5522-.4478-1-1-1h-4c-.5522,0-1,.4478-1,1v7h-2V3c0-.5522-.4478-1-1-1h-4c-.5522,0-1,.4478-1,1v12h-2V5c0-.5522-.4478-1-1-1h-4c-.5522,0-1,.4478-1,1v10H3v12c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-10h2v5c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-5h2v12c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-12h4v-9ZM7,26h-2v-9h2v9Zm8-5h-2v-4h2v4Zm2-6V4h2v11h-2Zm10,0h-2v-6h2v6Z"
|
1926
1920
|
})), children);
|
1927
1921
|
});
|
1928
1922
|
if (process.env.NODE_ENV !== "production") {
|
1929
1923
|
ChartPlanningWaterfall.propTypes = iconPropTypes4cbeb95d.i;
|
1930
1924
|
}
|
1931
|
-
var ChartPoint = /*#__PURE__*/
|
1925
|
+
var ChartPoint = /*#__PURE__*/React.forwardRef(function ChartPoint(_ref83, ref) {
|
1932
1926
|
var children = _ref83.children,
|
1933
1927
|
_ref83$size = _ref83.size,
|
1934
1928
|
size = _ref83$size === void 0 ? 16 : _ref83$size,
|
1935
1929
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref83, _excluded83);
|
1936
|
-
return /*#__PURE__*/
|
1930
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1937
1931
|
width: size,
|
1938
1932
|
height: size,
|
1939
1933
|
ref: ref,
|
1940
1934
|
xmlns: "http://www.w3.org/2000/svg",
|
1941
1935
|
viewBox: "0 0 32 32",
|
1942
1936
|
fill: "currentColor"
|
1943
|
-
}, rest), _path141 || (_path141 = /*#__PURE__*/
|
1937
|
+
}, rest), _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
|
1944
1938
|
d: "M30,30H4a2.0023,2.0023,0,0,1-2-2V2H4V28H30Z"
|
1945
|
-
})), _circle13 || (_circle13 = /*#__PURE__*/
|
1939
|
+
})), _circle13 || (_circle13 = /*#__PURE__*/React.createElement("circle", {
|
1946
1940
|
cx: "9",
|
1947
1941
|
cy: "6",
|
1948
1942
|
r: "3"
|
1949
|
-
})), _circle14 || (_circle14 = /*#__PURE__*/
|
1943
|
+
})), _circle14 || (_circle14 = /*#__PURE__*/React.createElement("circle", {
|
1950
1944
|
cx: "9",
|
1951
1945
|
cy: "22",
|
1952
1946
|
r: "3"
|
1953
|
-
})), _circle15 || (_circle15 = /*#__PURE__*/
|
1947
|
+
})), _circle15 || (_circle15 = /*#__PURE__*/React.createElement("circle", {
|
1954
1948
|
cx: "18",
|
1955
1949
|
cy: "14",
|
1956
1950
|
r: "3"
|
1957
|
-
})), _path142 || (_path142 = /*#__PURE__*/
|
1951
|
+
})), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
|
1958
1952
|
d: "M9,17a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,9,17Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,9,13Z"
|
1959
|
-
})), _circle16 || (_circle16 = /*#__PURE__*/
|
1953
|
+
})), _circle16 || (_circle16 = /*#__PURE__*/React.createElement("circle", {
|
1960
1954
|
cx: "27",
|
1961
1955
|
cy: "6",
|
1962
1956
|
r: "3"
|
1963
|
-
})), _circle17 || (_circle17 = /*#__PURE__*/
|
1957
|
+
})), _circle17 || (_circle17 = /*#__PURE__*/React.createElement("circle", {
|
1964
1958
|
cx: "27",
|
1965
1959
|
cy: "22",
|
1966
1960
|
r: "3"
|
1967
|
-
})), _path143 || (_path143 = /*#__PURE__*/
|
1961
|
+
})), _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
|
1968
1962
|
d: "M27 17a3 3 0 113-3A3.0033 3.0033 0 0127 17zm0-4a1 1 0 101 1A1.001 1.001 0 0027 13zM18 26a3 3 0 113-3A3.0033 3.0033 0 0118 26zm0-4a1 1 0 101 1A1.001 1.001 0 0018 22zM18 8a3 3 0 113-3A3.0033 3.0033 0 0118 8zm0-4a1 1 0 101 1A1.001 1.001 0 0018 4z"
|
1969
1963
|
})), children);
|
1970
1964
|
});
|
1971
1965
|
if (process.env.NODE_ENV !== "production") {
|
1972
1966
|
ChartPoint.propTypes = iconPropTypes4cbeb95d.i;
|
1973
1967
|
}
|
1974
|
-
var ChartPopulation = /*#__PURE__*/
|
1968
|
+
var ChartPopulation = /*#__PURE__*/React.forwardRef(function ChartPopulation(_ref84, ref) {
|
1975
1969
|
var children = _ref84.children,
|
1976
1970
|
_ref84$size = _ref84.size,
|
1977
1971
|
size = _ref84$size === void 0 ? 16 : _ref84$size,
|
1978
1972
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref84, _excluded84);
|
1979
|
-
return /*#__PURE__*/
|
1973
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1980
1974
|
width: size,
|
1981
1975
|
height: size,
|
1982
1976
|
ref: ref,
|
1983
1977
|
xmlns: "http://www.w3.org/2000/svg",
|
1984
1978
|
viewBox: "0 0 32 32",
|
1985
1979
|
fill: "currentColor"
|
1986
|
-
}, rest), _path144 || (_path144 = /*#__PURE__*/
|
1980
|
+
}, rest), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
|
1987
1981
|
d: "M30,22H17V20h9V14H17V12h5V6H17V2H15V6H10v6h5v2H6v6h9v2H2v6H15v2h2V28H30ZM20,8v2H17V8Zm-8,2V8h3v2Zm12,6v2H17V16ZM8,18V16h7v2ZM4,26V24H15v2Zm24,0H17V24H28Z"
|
1988
1982
|
})), children);
|
1989
1983
|
});
|
1990
1984
|
if (process.env.NODE_ENV !== "production") {
|
1991
1985
|
ChartPopulation.propTypes = iconPropTypes4cbeb95d.i;
|
1992
1986
|
}
|
1993
|
-
var ChartRadar = /*#__PURE__*/
|
1987
|
+
var ChartRadar = /*#__PURE__*/React.forwardRef(function ChartRadar(_ref85, ref) {
|
1994
1988
|
var children = _ref85.children,
|
1995
1989
|
_ref85$size = _ref85.size,
|
1996
1990
|
size = _ref85$size === void 0 ? 16 : _ref85$size,
|
1997
1991
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref85, _excluded85);
|
1998
|
-
return /*#__PURE__*/
|
1992
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
1999
1993
|
width: size,
|
2000
1994
|
height: size,
|
2001
1995
|
ref: ref,
|
2002
1996
|
xmlns: "http://www.w3.org/2000/svg",
|
2003
1997
|
viewBox: "0 0 32 32",
|
2004
1998
|
fill: "currentColor"
|
2005
|
-
}, rest), _path145 || (_path145 = /*#__PURE__*/
|
1999
|
+
}, rest), _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
|
2006
2000
|
d: "M16,2,2,13,8,30H24l6-17Zm2.5818,19.2651-5.9861,1.3306-1.4226-7.8252,4.91-4.209,5.4416,4.0816Zm.1977,2.0054L21.3264,28H10.6736l1.7912-3.3267ZM9.59,13.4937,5.74,12.605,15,5.3291V8.8569ZM17,8.75V5.3291l9.26,7.2759-3.15.727ZM4.6143,14.3979l4.6535,1.0738,1.4844,8.164-1.738,3.2281ZM22.9858,26.8638l-2.5766-4.7852,3.0063-6.7646,3.97-.9161Z"
|
2007
2001
|
})), children);
|
2008
2002
|
});
|
2009
2003
|
if (process.env.NODE_ENV !== "production") {
|
2010
2004
|
ChartRadar.propTypes = iconPropTypes4cbeb95d.i;
|
2011
2005
|
}
|
2012
|
-
var ChartRadial = /*#__PURE__*/
|
2006
|
+
var ChartRadial = /*#__PURE__*/React.forwardRef(function ChartRadial(_ref86, ref) {
|
2013
2007
|
var children = _ref86.children,
|
2014
2008
|
_ref86$size = _ref86.size,
|
2015
2009
|
size = _ref86$size === void 0 ? 16 : _ref86$size,
|
2016
2010
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref86, _excluded86);
|
2017
|
-
return /*#__PURE__*/
|
2011
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2018
2012
|
width: size,
|
2019
2013
|
height: size,
|
2020
2014
|
ref: ref,
|
2021
2015
|
xmlns: "http://www.w3.org/2000/svg",
|
2022
2016
|
viewBox: "0 0 32 32",
|
2023
2017
|
fill: "currentColor"
|
2024
|
-
}, rest), _path146 || (_path146 = /*#__PURE__*/
|
2018
|
+
}, rest), _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
|
2025
2019
|
d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12,12,0,1,0,16,4V2a14,14,0,0,1,0,28Z"
|
2026
|
-
})), _path147 || (_path147 = /*#__PURE__*/
|
2020
|
+
})), _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
|
2027
2021
|
d: "M16,26A10.0115,10.0115,0,0,1,6,16H8a8,8,0,1,0,8-8V6a10,10,0,0,1,0,20Z"
|
2028
|
-
})), _path148 || (_path148 = /*#__PURE__*/
|
2022
|
+
})), _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
|
2029
2023
|
d: "M16,22a6.0069,6.0069,0,0,1-6-6h2a4,4,0,1,0,4-4V10a6,6,0,0,1,0,12Z"
|
2030
2024
|
})), children);
|
2031
2025
|
});
|
2032
2026
|
if (process.env.NODE_ENV !== "production") {
|
2033
2027
|
ChartRadial.propTypes = iconPropTypes4cbeb95d.i;
|
2034
2028
|
}
|
2035
|
-
var ChartRelationship = /*#__PURE__*/
|
2029
|
+
var ChartRelationship = /*#__PURE__*/React.forwardRef(function ChartRelationship(_ref87, ref) {
|
2036
2030
|
var children = _ref87.children,
|
2037
2031
|
_ref87$size = _ref87.size,
|
2038
2032
|
size = _ref87$size === void 0 ? 16 : _ref87$size,
|
2039
2033
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref87, _excluded87);
|
2040
|
-
return /*#__PURE__*/
|
2034
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2041
2035
|
width: size,
|
2042
2036
|
height: size,
|
2043
2037
|
ref: ref,
|
2044
2038
|
xmlns: "http://www.w3.org/2000/svg",
|
2045
2039
|
viewBox: "0 0 32 32",
|
2046
2040
|
fill: "currentColor"
|
2047
|
-
}, rest), _path149 || (_path149 = /*#__PURE__*/
|
2041
|
+
}, rest), _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
|
2048
2042
|
d: "M26,6a3.9963,3.9963,0,0,0-3.8579,3H17.9305A7.9964,7.9964,0,1,0,9,17.9307v4.2114a4,4,0,1,0,2,0V17.9307a7.951,7.951,0,0,0,3.8976-1.6192l3.6693,3.67A3.9529,3.9529,0,0,0,18,22a4,4,0,1,0,4-4,3.9521,3.9521,0,0,0-2.019.5669l-3.6694-3.6694A7.9493,7.9493,0,0,0,17.9305,11h4.2116A3.9934,3.9934,0,1,0,26,6ZM12,26a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,12,26ZM10,16a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,10,16Zm14,6a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,24,22Zm2-10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,12Z"
|
2049
2043
|
})), children);
|
2050
2044
|
});
|
2051
2045
|
if (process.env.NODE_ENV !== "production") {
|
2052
2046
|
ChartRelationship.propTypes = iconPropTypes4cbeb95d.i;
|
2053
2047
|
}
|
2054
|
-
var ChartRing = /*#__PURE__*/
|
2048
|
+
var ChartRing = /*#__PURE__*/React.forwardRef(function ChartRing(_ref88, ref) {
|
2055
2049
|
var children = _ref88.children,
|
2056
2050
|
_ref88$size = _ref88.size,
|
2057
2051
|
size = _ref88$size === void 0 ? 16 : _ref88$size,
|
2058
2052
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref88, _excluded88);
|
2059
|
-
return /*#__PURE__*/
|
2053
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2060
2054
|
width: size,
|
2061
2055
|
height: size,
|
2062
2056
|
ref: ref,
|
2063
2057
|
xmlns: "http://www.w3.org/2000/svg",
|
2064
2058
|
viewBox: "0 0 32 32",
|
2065
2059
|
fill: "currentColor"
|
2066
|
-
}, rest), _path150 || (_path150 = /*#__PURE__*/
|
2060
|
+
}, rest), _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
|
2067
2061
|
d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM27.9493,15.001H21.91a5.9825,5.9825,0,0,0-9.3806-3.8853l-4.27-4.27a11.9783,11.9783,0,0,1,19.69,8.1548ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20ZM4,16A11.937,11.937,0,0,1,6.8455,8.26l4.27,4.2695A5.9836,5.9836,0,0,0,15,21.9106v6.04A12.0105,12.0105,0,0,1,4,16ZM17,27.95v-6.04A6.0069,6.0069,0,0,0,21.91,17h6.04A12.0082,12.0082,0,0,1,17,27.95Z"
|
2068
2062
|
})), children);
|
2069
2063
|
});
|
2070
2064
|
if (process.env.NODE_ENV !== "production") {
|
2071
2065
|
ChartRing.propTypes = iconPropTypes4cbeb95d.i;
|
2072
2066
|
}
|
2073
|
-
var ChartRiver = /*#__PURE__*/
|
2067
|
+
var ChartRiver = /*#__PURE__*/React.forwardRef(function ChartRiver(_ref89, ref) {
|
2074
2068
|
var children = _ref89.children,
|
2075
2069
|
_ref89$size = _ref89.size,
|
2076
2070
|
size = _ref89$size === void 0 ? 16 : _ref89$size,
|
2077
2071
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref89, _excluded89);
|
2078
|
-
return /*#__PURE__*/
|
2072
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2079
2073
|
width: size,
|
2080
2074
|
height: size,
|
2081
2075
|
ref: ref,
|
2082
2076
|
xmlns: "http://www.w3.org/2000/svg",
|
2083
2077
|
viewBox: "0 0 32 32",
|
2084
2078
|
fill: "currentColor"
|
2085
|
-
}, rest), _path151 || (_path151 = /*#__PURE__*/
|
2079
|
+
}, rest), _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
|
2086
2080
|
d: "M12.4326,20.0171l8.0376,4.68a1.958,1.958,0,0,0,1.0508.3012,2.2412,2.2412,0,0,0,.4888-.0556l7.2532-1.9769A1,1,0,0,0,30,22.0007V7.996A1,1,0,0,0,28.74,7.0305L21.5034,8.9829l-8.0371-4.68a1.9917,1.9917,0,0,0-1.8652-.1352L4,7.4727V2H2V28a2,2,0,0,0,2,2H30V28H4V23.6577ZM28,21.2344l-6.4966,1.75-8.0371-4.68a1.9931,1.9931,0,0,0-1.8652-.1353L4,21.4746V16.6572l8.4326-3.6416L20.47,17.6968a1.962,1.962,0,0,0,1.0508.3008,2.2112,2.2112,0,0,0,.4888-.0557L28,16.31ZM12.4326,6.0156l8.0376,4.68a2.0091,2.0091,0,0,0,1.54.2451L28,9.3081v4.9258l-6.4966,1.7505-8.0371-4.6812a1.9917,1.9917,0,0,0-1.8652-.1352L4,14.4736V9.6562Z"
|
2087
2081
|
})), children);
|
2088
2082
|
});
|
2089
2083
|
if (process.env.NODE_ENV !== "production") {
|
2090
2084
|
ChartRiver.propTypes = iconPropTypes4cbeb95d.i;
|
2091
2085
|
}
|
2092
|
-
var ChartRose = /*#__PURE__*/
|
2086
|
+
var ChartRose = /*#__PURE__*/React.forwardRef(function ChartRose(_ref90, ref) {
|
2093
2087
|
var children = _ref90.children,
|
2094
2088
|
_ref90$size = _ref90.size,
|
2095
2089
|
size = _ref90$size === void 0 ? 16 : _ref90$size,
|
2096
2090
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref90, _excluded90);
|
2097
|
-
return /*#__PURE__*/
|
2091
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2098
2092
|
width: size,
|
2099
2093
|
height: size,
|
2100
2094
|
ref: ref,
|
2101
2095
|
xmlns: "http://www.w3.org/2000/svg",
|
2102
2096
|
viewBox: "0 0 32 32",
|
2103
2097
|
fill: "currentColor"
|
2104
|
-
}, rest), _path152 || (_path152 = /*#__PURE__*/
|
2098
|
+
}, rest), _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
|
2105
2099
|
d: "M30,17A15.017,15.017,0,0,0,15,2H14V8.0591A9.0122,9.0122,0,0,0,6.0591,16H4v1A11.0109,11.0109,0,0,0,14,27.9492V30h1A13.0084,13.0084,0,0,0,27.9492,18H30ZM16,4.0381A13.0217,13.0217,0,0,1,27.9619,16H16ZM14,10.08V16H8.08A7.0037,7.0037,0,0,1,14,10.08ZM6.0552,18H14v7.939A9.0134,9.0134,0,0,1,6.0552,18ZM16,27.9551V18h9.9551A11.0191,11.0191,0,0,1,16,27.9551Z"
|
2106
2100
|
})), children);
|
2107
2101
|
});
|
2108
2102
|
if (process.env.NODE_ENV !== "production") {
|
2109
2103
|
ChartRose.propTypes = iconPropTypes4cbeb95d.i;
|
2110
2104
|
}
|
2111
|
-
var ChartScatter = /*#__PURE__*/
|
2105
|
+
var ChartScatter = /*#__PURE__*/React.forwardRef(function ChartScatter(_ref91, ref) {
|
2112
2106
|
var children = _ref91.children,
|
2113
2107
|
_ref91$size = _ref91.size,
|
2114
2108
|
size = _ref91$size === void 0 ? 16 : _ref91$size,
|
2115
2109
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref91, _excluded91);
|
2116
|
-
return /*#__PURE__*/
|
2110
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2117
2111
|
width: size,
|
2118
2112
|
height: size,
|
2119
2113
|
ref: ref,
|
2120
2114
|
xmlns: "http://www.w3.org/2000/svg",
|
2121
2115
|
viewBox: "0 0 32 32",
|
2122
2116
|
fill: "currentColor"
|
2123
|
-
}, rest), _path153 || (_path153 = /*#__PURE__*/
|
2117
|
+
}, rest), _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
|
2124
2118
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
2125
|
-
})), _circle18 || (_circle18 = /*#__PURE__*/
|
2119
|
+
})), _circle18 || (_circle18 = /*#__PURE__*/React.createElement("circle", {
|
2126
2120
|
cx: "10",
|
2127
2121
|
cy: "22",
|
2128
2122
|
r: "2"
|
2129
|
-
})), _circle19 || (_circle19 = /*#__PURE__*/
|
2123
|
+
})), _circle19 || (_circle19 = /*#__PURE__*/React.createElement("circle", {
|
2130
2124
|
cx: "14",
|
2131
2125
|
cy: "15",
|
2132
2126
|
r: "2"
|
2133
|
-
})), _circle20 || (_circle20 = /*#__PURE__*/
|
2127
|
+
})), _circle20 || (_circle20 = /*#__PURE__*/React.createElement("circle", {
|
2134
2128
|
cx: "22",
|
2135
2129
|
cy: "15",
|
2136
2130
|
r: "2"
|
2137
|
-
})), _circle21 || (_circle21 = /*#__PURE__*/
|
2131
|
+
})), _circle21 || (_circle21 = /*#__PURE__*/React.createElement("circle", {
|
2138
2132
|
cx: "26",
|
2139
2133
|
cy: "6",
|
2140
2134
|
r: "2"
|
2141
|
-
})), _circle22 || (_circle22 = /*#__PURE__*/
|
2135
|
+
})), _circle22 || (_circle22 = /*#__PURE__*/React.createElement("circle", {
|
2142
2136
|
cx: "14",
|
2143
2137
|
cy: "8",
|
2144
2138
|
r: "2"
|
@@ -2147,147 +2141,147 @@ var ChartScatter = /*#__PURE__*/React__default["default"].forwardRef(function Ch
|
|
2147
2141
|
if (process.env.NODE_ENV !== "production") {
|
2148
2142
|
ChartScatter.propTypes = iconPropTypes4cbeb95d.i;
|
2149
2143
|
}
|
2150
|
-
var ChartSpiral = /*#__PURE__*/
|
2144
|
+
var ChartSpiral = /*#__PURE__*/React.forwardRef(function ChartSpiral(_ref92, ref) {
|
2151
2145
|
var children = _ref92.children,
|
2152
2146
|
_ref92$size = _ref92.size,
|
2153
2147
|
size = _ref92$size === void 0 ? 16 : _ref92$size,
|
2154
2148
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref92, _excluded92);
|
2155
|
-
return /*#__PURE__*/
|
2149
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2156
2150
|
width: size,
|
2157
2151
|
height: size,
|
2158
2152
|
ref: ref,
|
2159
2153
|
xmlns: "http://www.w3.org/2000/svg",
|
2160
2154
|
viewBox: "0 0 32 32",
|
2161
2155
|
fill: "currentColor"
|
2162
|
-
}, rest), _path154 || (_path154 = /*#__PURE__*/
|
2156
|
+
}, rest), _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
|
2163
2157
|
d: "M16,2A13.919,13.919,0,0,0,7.3245,5.0327,1.9728,1.9728,0,0,0,7,5,2,2,0,0,0,5,7a1.9752,1.9752,0,0,0,.0327.3247A13.986,13.986,0,1,0,16,2Zm0,26A11.977,11.977,0,0,1,6.3589,8.8857a1.8311,1.8311,0,0,0,1.1528.04l1.4634,1.4634a8.9862,8.9862,0,0,0,11.8311,13.207,1.9916,1.9916,0,0,0,2.79-2.79,8.9294,8.9294,0,0,0,0-9.6124,1.9916,1.9916,0,0,0-2.79-2.79,8.9445,8.9445,0,0,0-10.417.5713L8.9258,7.5117a1.8294,1.8294,0,0,0-.04-1.1528A11.9925,11.9925,0,1,1,16,28Zm0-14a2,2,0,1,1-2,2A2.0025,2.0025,0,0,1,16,14Zm3.4331-.019,2.0552-2.0552a2.0443,2.0443,0,0,0,.2265.0454,6.9573,6.9573,0,0,1,0,8.0576,2.0443,2.0443,0,0,0-.2265.0454L19.4331,18.019a3.8788,3.8788,0,0,0,0-4.038Zm.5957-3.6958a1.9993,1.9993,0,0,0,.0454.2265L18.019,12.5669a3.8788,3.8788,0,0,0-4.038,0l-2.1653-2.1655a6.9522,6.9522,0,0,1,8.2131-.1162ZM12.5669,13.981A3.951,3.951,0,0,0,12,16a4.0045,4.0045,0,0,0,4,4,3.9521,3.9521,0,0,0,2.019-.5669l2.0552,2.0552a1.9993,1.9993,0,0,0-.0454.2265,6.988,6.988,0,0,1-9.6272-9.8994Z"
|
2164
2158
|
})), children);
|
2165
2159
|
});
|
2166
2160
|
if (process.env.NODE_ENV !== "production") {
|
2167
2161
|
ChartSpiral.propTypes = iconPropTypes4cbeb95d.i;
|
2168
2162
|
}
|
2169
|
-
var ChartStacked = /*#__PURE__*/
|
2163
|
+
var ChartStacked = /*#__PURE__*/React.forwardRef(function ChartStacked(_ref93, ref) {
|
2170
2164
|
var children = _ref93.children,
|
2171
2165
|
_ref93$size = _ref93.size,
|
2172
2166
|
size = _ref93$size === void 0 ? 16 : _ref93$size,
|
2173
2167
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref93, _excluded93);
|
2174
|
-
return /*#__PURE__*/
|
2168
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2175
2169
|
width: size,
|
2176
2170
|
height: size,
|
2177
2171
|
ref: ref,
|
2178
2172
|
xmlns: "http://www.w3.org/2000/svg",
|
2179
2173
|
viewBox: "0 0 32 32",
|
2180
2174
|
fill: "currentColor"
|
2181
|
-
}, rest), _path155 || (_path155 = /*#__PURE__*/
|
2175
|
+
}, rest), _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
|
2182
2176
|
d: "M28,28V6H20V28H16V14H8V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM22,8h4V18H22ZM10,16h4v6H10Z"
|
2183
2177
|
})), children);
|
2184
2178
|
});
|
2185
2179
|
if (process.env.NODE_ENV !== "production") {
|
2186
2180
|
ChartStacked.propTypes = iconPropTypes4cbeb95d.i;
|
2187
2181
|
}
|
2188
|
-
var ChartStepper = /*#__PURE__*/
|
2182
|
+
var ChartStepper = /*#__PURE__*/React.forwardRef(function ChartStepper(_ref94, ref) {
|
2189
2183
|
var children = _ref94.children,
|
2190
2184
|
_ref94$size = _ref94.size,
|
2191
2185
|
size = _ref94$size === void 0 ? 16 : _ref94$size,
|
2192
2186
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref94, _excluded94);
|
2193
|
-
return /*#__PURE__*/
|
2187
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2194
2188
|
width: size,
|
2195
2189
|
height: size,
|
2196
2190
|
ref: ref,
|
2197
2191
|
xmlns: "http://www.w3.org/2000/svg",
|
2198
2192
|
viewBox: "0 0 32 32",
|
2199
2193
|
fill: "currentColor"
|
2200
|
-
}, rest), _path156 || (_path156 = /*#__PURE__*/
|
2194
|
+
}, rest), _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
|
2201
2195
|
d: "M14,22V14h8V6h8V4H20v8H12v8H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V22Z"
|
2202
2196
|
})), children);
|
2203
2197
|
});
|
2204
2198
|
if (process.env.NODE_ENV !== "production") {
|
2205
2199
|
ChartStepper.propTypes = iconPropTypes4cbeb95d.i;
|
2206
2200
|
}
|
2207
|
-
var ChartSunburst = /*#__PURE__*/
|
2201
|
+
var ChartSunburst = /*#__PURE__*/React.forwardRef(function ChartSunburst(_ref95, ref) {
|
2208
2202
|
var children = _ref95.children,
|
2209
2203
|
_ref95$size = _ref95.size,
|
2210
2204
|
size = _ref95$size === void 0 ? 16 : _ref95$size,
|
2211
2205
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref95, _excluded95);
|
2212
|
-
return /*#__PURE__*/
|
2206
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2213
2207
|
width: size,
|
2214
2208
|
height: size,
|
2215
2209
|
ref: ref,
|
2216
2210
|
xmlns: "http://www.w3.org/2000/svg",
|
2217
2211
|
viewBox: "0 0 32 32",
|
2218
2212
|
fill: "currentColor"
|
2219
|
-
}, rest), _path157 || (_path157 = /*#__PURE__*/
|
2213
|
+
}, rest), _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
|
2220
2214
|
d: "M16,2a1,1,0,0,0-1,1v7.09a5.9618,5.9618,0,0,0-2.46,1.043L7.8384,6.4311a1.4554,1.4554,0,0,0-2.087.0244A14.05,14.05,0,0,0,9.8047,28.5972a10.8482,10.8482,0,0,0,1.8989.7676,14.0982,14.0982,0,0,0,13.8443-3.1319,1.4336,1.4336,0,0,0,.0278-2.0639L20.877,19.47A5.963,5.963,0,0,0,21.91,17H29a1,1,0,0,0,1-1A14.0158,14.0158,0,0,0,16,2Zm0,10a4,4,0,1,1-4,4A4.0045,4.0045,0,0,1,16,12ZM6.83,8.251l4.2959,4.2959a5.91,5.91,0,0,0-.0113,6.9243L6.8381,23.7481A12.0168,12.0168,0,0,1,6.83,8.251Zm1.4228,16.91,4.2759-4.2759A5.9589,5.9589,0,0,0,15,21.91v6.042A11.8783,11.8783,0,0,1,8.2529,25.1612ZM17,27.9561V21.9092a5.9631,5.9631,0,0,0,2.4609-1.0273l4.2818,4.2817A11.8905,11.8905,0,0,1,17,27.9561ZM21.91,15A6.0063,6.0063,0,0,0,17,10.09V4.041A12.0208,12.0208,0,0,1,27.9585,15Z"
|
2221
2215
|
})), children);
|
2222
2216
|
});
|
2223
2217
|
if (process.env.NODE_ENV !== "production") {
|
2224
2218
|
ChartSunburst.propTypes = iconPropTypes4cbeb95d.i;
|
2225
2219
|
}
|
2226
|
-
var ChartTSne = /*#__PURE__*/
|
2220
|
+
var ChartTSne = /*#__PURE__*/React.forwardRef(function ChartTSne(_ref96, ref) {
|
2227
2221
|
var children = _ref96.children,
|
2228
2222
|
_ref96$size = _ref96.size,
|
2229
2223
|
size = _ref96$size === void 0 ? 16 : _ref96$size,
|
2230
2224
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref96, _excluded96);
|
2231
|
-
return /*#__PURE__*/
|
2225
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2232
2226
|
width: size,
|
2233
2227
|
height: size,
|
2234
2228
|
ref: ref,
|
2235
2229
|
xmlns: "http://www.w3.org/2000/svg",
|
2236
2230
|
viewBox: "0 0 32 32",
|
2237
2231
|
fill: "currentColor"
|
2238
|
-
}, rest), _circle23 || (_circle23 = /*#__PURE__*/
|
2232
|
+
}, rest), _circle23 || (_circle23 = /*#__PURE__*/React.createElement("circle", {
|
2239
2233
|
cx: "10",
|
2240
2234
|
cy: "20",
|
2241
2235
|
r: "2"
|
2242
|
-
})), _circle24 || (_circle24 = /*#__PURE__*/
|
2236
|
+
})), _circle24 || (_circle24 = /*#__PURE__*/React.createElement("circle", {
|
2243
2237
|
cx: "10",
|
2244
2238
|
cy: "28",
|
2245
2239
|
r: "2"
|
2246
|
-
})), _circle25 || (_circle25 = /*#__PURE__*/
|
2240
|
+
})), _circle25 || (_circle25 = /*#__PURE__*/React.createElement("circle", {
|
2247
2241
|
cx: "10",
|
2248
2242
|
cy: "14",
|
2249
2243
|
r: "2"
|
2250
|
-
})), _circle26 || (_circle26 = /*#__PURE__*/
|
2244
|
+
})), _circle26 || (_circle26 = /*#__PURE__*/React.createElement("circle", {
|
2251
2245
|
cx: "28",
|
2252
2246
|
cy: "4",
|
2253
2247
|
r: "2"
|
2254
|
-
})), _circle27 || (_circle27 = /*#__PURE__*/
|
2248
|
+
})), _circle27 || (_circle27 = /*#__PURE__*/React.createElement("circle", {
|
2255
2249
|
cx: "22",
|
2256
2250
|
cy: "6",
|
2257
2251
|
r: "2"
|
2258
|
-
})), _circle28 || (_circle28 = /*#__PURE__*/
|
2252
|
+
})), _circle28 || (_circle28 = /*#__PURE__*/React.createElement("circle", {
|
2259
2253
|
cx: "28",
|
2260
2254
|
cy: "10",
|
2261
2255
|
r: "2"
|
2262
|
-
})), _circle29 || (_circle29 = /*#__PURE__*/
|
2256
|
+
})), _circle29 || (_circle29 = /*#__PURE__*/React.createElement("circle", {
|
2263
2257
|
cx: "20",
|
2264
2258
|
cy: "12",
|
2265
2259
|
r: "2"
|
2266
|
-
})), _circle30 || (_circle30 = /*#__PURE__*/
|
2260
|
+
})), _circle30 || (_circle30 = /*#__PURE__*/React.createElement("circle", {
|
2267
2261
|
cx: "28",
|
2268
2262
|
cy: "22",
|
2269
2263
|
r: "2"
|
2270
|
-
})), _circle31 || (_circle31 = /*#__PURE__*/
|
2264
|
+
})), _circle31 || (_circle31 = /*#__PURE__*/React.createElement("circle", {
|
2271
2265
|
cx: "26",
|
2272
2266
|
cy: "28",
|
2273
2267
|
r: "2"
|
2274
|
-
})), _circle32 || (_circle32 = /*#__PURE__*/
|
2268
|
+
})), _circle32 || (_circle32 = /*#__PURE__*/React.createElement("circle", {
|
2275
2269
|
cx: "20",
|
2276
2270
|
cy: "26",
|
2277
2271
|
r: "2"
|
2278
|
-
})), _circle33 || (_circle33 = /*#__PURE__*/
|
2272
|
+
})), _circle33 || (_circle33 = /*#__PURE__*/React.createElement("circle", {
|
2279
2273
|
cx: "22",
|
2280
2274
|
cy: "20",
|
2281
2275
|
r: "2"
|
2282
|
-
})), _circle34 || (_circle34 = /*#__PURE__*/
|
2276
|
+
})), _circle34 || (_circle34 = /*#__PURE__*/React.createElement("circle", {
|
2283
2277
|
cx: "16",
|
2284
2278
|
cy: "4",
|
2285
2279
|
r: "2"
|
2286
|
-
})), _circle35 || (_circle35 = /*#__PURE__*/
|
2280
|
+
})), _circle35 || (_circle35 = /*#__PURE__*/React.createElement("circle", {
|
2287
2281
|
cx: "4",
|
2288
2282
|
cy: "24",
|
2289
2283
|
r: "2"
|
2290
|
-
})), _circle36 || (_circle36 = /*#__PURE__*/
|
2284
|
+
})), _circle36 || (_circle36 = /*#__PURE__*/React.createElement("circle", {
|
2291
2285
|
cx: "4",
|
2292
2286
|
cy: "16",
|
2293
2287
|
r: "2"
|
@@ -2296,263 +2290,263 @@ var ChartTSne = /*#__PURE__*/React__default["default"].forwardRef(function Chart
|
|
2296
2290
|
if (process.env.NODE_ENV !== "production") {
|
2297
2291
|
ChartTSne.propTypes = iconPropTypes4cbeb95d.i;
|
2298
2292
|
}
|
2299
|
-
var ChartTreemap = /*#__PURE__*/
|
2293
|
+
var ChartTreemap = /*#__PURE__*/React.forwardRef(function ChartTreemap(_ref97, ref) {
|
2300
2294
|
var children = _ref97.children,
|
2301
2295
|
_ref97$size = _ref97.size,
|
2302
2296
|
size = _ref97$size === void 0 ? 16 : _ref97$size,
|
2303
2297
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref97, _excluded97);
|
2304
|
-
return /*#__PURE__*/
|
2298
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2305
2299
|
width: size,
|
2306
2300
|
height: size,
|
2307
2301
|
ref: ref,
|
2308
2302
|
xmlns: "http://www.w3.org/2000/svg",
|
2309
2303
|
viewBox: "0 0 32 32",
|
2310
2304
|
fill: "currentColor"
|
2311
|
-
}, rest), _path158 || (_path158 = /*#__PURE__*/
|
2305
|
+
}, rest), _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
|
2312
2306
|
d: "M28,2H4A2.0023,2.0023,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,12H23V4h5ZM16,4h5V14H16ZM14,4V20H4V4ZM4,22H14v6H4Zm12,6V16H28V28Z"
|
2313
2307
|
})), children);
|
2314
2308
|
});
|
2315
2309
|
if (process.env.NODE_ENV !== "production") {
|
2316
2310
|
ChartTreemap.propTypes = iconPropTypes4cbeb95d.i;
|
2317
2311
|
}
|
2318
|
-
var ChartVennDiagram = /*#__PURE__*/
|
2312
|
+
var ChartVennDiagram = /*#__PURE__*/React.forwardRef(function ChartVennDiagram(_ref98, ref) {
|
2319
2313
|
var children = _ref98.children,
|
2320
2314
|
_ref98$size = _ref98.size,
|
2321
2315
|
size = _ref98$size === void 0 ? 16 : _ref98$size,
|
2322
2316
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref98, _excluded98);
|
2323
|
-
return /*#__PURE__*/
|
2317
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2324
2318
|
width: size,
|
2325
2319
|
height: size,
|
2326
2320
|
ref: ref,
|
2327
2321
|
xmlns: "http://www.w3.org/2000/svg",
|
2328
2322
|
viewBox: "0 0 32 32",
|
2329
2323
|
fill: "currentColor"
|
2330
|
-
}, rest), _path159 || (_path159 = /*#__PURE__*/
|
2324
|
+
}, rest), _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
|
2331
2325
|
d: "M20,6a9.92,9.92,0,0,0-4,.84A9.92,9.92,0,0,0,12,6a10,10,0,0,0,0,20,9.92,9.92,0,0,0,4-.84A9.92,9.92,0,0,0,20,26,10,10,0,0,0,20,6ZM12,24A8,8,0,0,1,12,8a7.91,7.91,0,0,1,1.76.2,10,10,0,0,0,0,15.6A7.91,7.91,0,0,1,12,24Zm8-8a8,8,0,0,1-4,6.92A8,8,0,0,1,16,9.08,8,8,0,0,1,20,16Zm0,8a7.91,7.91,0,0,1-1.76-.2,10,10,0,0,0,0-15.6A7.91,7.91,0,0,1,20,8a8,8,0,0,1,0,16Z"
|
2332
2326
|
})), children);
|
2333
2327
|
});
|
2334
2328
|
if (process.env.NODE_ENV !== "production") {
|
2335
2329
|
ChartVennDiagram.propTypes = iconPropTypes4cbeb95d.i;
|
2336
2330
|
}
|
2337
|
-
var ChartViolinPlot = /*#__PURE__*/
|
2331
|
+
var ChartViolinPlot = /*#__PURE__*/React.forwardRef(function ChartViolinPlot(_ref99, ref) {
|
2338
2332
|
var children = _ref99.children,
|
2339
2333
|
_ref99$size = _ref99.size,
|
2340
2334
|
size = _ref99$size === void 0 ? 16 : _ref99$size,
|
2341
2335
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref99, _excluded99);
|
2342
|
-
return /*#__PURE__*/
|
2336
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2343
2337
|
width: size,
|
2344
2338
|
height: size,
|
2345
2339
|
ref: ref,
|
2346
2340
|
xmlns: "http://www.w3.org/2000/svg",
|
2347
2341
|
viewBox: "0 0 32 32",
|
2348
2342
|
fill: "currentColor"
|
2349
|
-
}, rest), _path160 || (_path160 = /*#__PURE__*/
|
2343
|
+
}, rest), _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
|
2350
2344
|
d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
|
2351
|
-
})), _path161 || (_path161 = /*#__PURE__*/
|
2345
|
+
})), _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
|
2352
2346
|
d: "M14.86 7.8232L13 4.7231V2H11V4.7231l-1.86 3.1A7.9986 7.9986 0 008 11.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V19.2769l1.86-3.1A7.9986 7.9986 0 0016 12.061v-.122A7.9961 7.9961 0 0014.86 7.8232zM12 6.9434l1.145 1.9087A6.0027 6.0027 0 0113.9185 11h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0110.0815 13h3.837a6.0086 6.0086 0 01-.7735 2.1484zM27.86 11.8232L26 8.7231V2H24V8.7231l-1.86 3.1A7.9986 7.9986 0 0021 15.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V23.2769l1.86-3.1A7.9986 7.9986 0 0029 16.061v-.122A7.9961 7.9961 0 0027.86 11.8232zm-2.86-.88l1.145 1.9087A6.0027 6.0027 0 0126.9185 15h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0123.0815 17h3.837a6.0086 6.0086 0 01-.7735 2.1484z"
|
2353
2347
|
})), children);
|
2354
2348
|
});
|
2355
2349
|
if (process.env.NODE_ENV !== "production") {
|
2356
2350
|
ChartViolinPlot.propTypes = iconPropTypes4cbeb95d.i;
|
2357
2351
|
}
|
2358
|
-
var ChartWaterfall = /*#__PURE__*/
|
2352
|
+
var ChartWaterfall = /*#__PURE__*/React.forwardRef(function ChartWaterfall(_ref100, ref) {
|
2359
2353
|
var children = _ref100.children,
|
2360
2354
|
_ref100$size = _ref100.size,
|
2361
2355
|
size = _ref100$size === void 0 ? 16 : _ref100$size,
|
2362
2356
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref100, _excluded100);
|
2363
|
-
return /*#__PURE__*/
|
2357
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2364
2358
|
width: size,
|
2365
2359
|
height: size,
|
2366
2360
|
ref: ref,
|
2367
2361
|
xmlns: "http://www.w3.org/2000/svg",
|
2368
2362
|
viewBox: "0 0 32 32",
|
2369
2363
|
fill: "currentColor"
|
2370
|
-
}, rest), _path162 || (_path162 = /*#__PURE__*/
|
2364
|
+
}, rest), _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
|
2371
2365
|
d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
|
2372
|
-
})), _path163 || (_path163 = /*#__PURE__*/
|
2366
|
+
})), _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
|
2373
2367
|
d: "M14 4H16V18H14z"
|
2374
2368
|
})), children);
|
2375
2369
|
});
|
2376
2370
|
if (process.env.NODE_ENV !== "production") {
|
2377
2371
|
ChartWaterfall.propTypes = iconPropTypes4cbeb95d.i;
|
2378
2372
|
}
|
2379
|
-
var ChartWinLoss = /*#__PURE__*/
|
2373
|
+
var ChartWinLoss = /*#__PURE__*/React.forwardRef(function ChartWinLoss(_ref101, ref) {
|
2380
2374
|
var children = _ref101.children,
|
2381
2375
|
_ref101$size = _ref101.size,
|
2382
2376
|
size = _ref101$size === void 0 ? 16 : _ref101$size,
|
2383
2377
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref101, _excluded101);
|
2384
|
-
return /*#__PURE__*/
|
2378
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2385
2379
|
width: size,
|
2386
2380
|
height: size,
|
2387
2381
|
ref: ref,
|
2388
2382
|
xmlns: "http://www.w3.org/2000/svg",
|
2389
2383
|
viewBox: "0 0 32 32",
|
2390
2384
|
fill: "currentColor"
|
2391
|
-
}, rest), _path164 || (_path164 = /*#__PURE__*/
|
2385
|
+
}, rest), _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
|
2392
2386
|
d: "M30,15H16V6a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,6v9H2v2H16v9a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V17h2ZM6,6h8v9H6ZM26,26H18V17h8Z"
|
2393
2387
|
})), children);
|
2394
2388
|
});
|
2395
2389
|
if (process.env.NODE_ENV !== "production") {
|
2396
2390
|
ChartWinLoss.propTypes = iconPropTypes4cbeb95d.i;
|
2397
2391
|
}
|
2398
|
-
var Chat = /*#__PURE__*/
|
2392
|
+
var Chat = /*#__PURE__*/React.forwardRef(function Chat(_ref102, ref) {
|
2399
2393
|
var children = _ref102.children,
|
2400
2394
|
_ref102$size = _ref102.size,
|
2401
2395
|
size = _ref102$size === void 0 ? 16 : _ref102$size,
|
2402
2396
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref102, _excluded102);
|
2403
|
-
return /*#__PURE__*/
|
2397
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2404
2398
|
width: size,
|
2405
2399
|
height: size,
|
2406
2400
|
ref: ref,
|
2407
2401
|
xmlns: "http://www.w3.org/2000/svg",
|
2408
2402
|
viewBox: "0 0 32 32",
|
2409
2403
|
fill: "currentColor"
|
2410
|
-
}, rest), _path165 || (_path165 = /*#__PURE__*/
|
2404
|
+
}, rest), _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
|
2411
2405
|
d: "M17.74,30,16,29l4-7h6a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2H6A2,2,0,0,0,4,8V20a2,2,0,0,0,2,2h9v2H6a4,4,0,0,1-4-4V8A4,4,0,0,1,6,4H26a4,4,0,0,1,4,4V20a4,4,0,0,1-4,4H21.16Z"
|
2412
|
-
})), _path166 || (_path166 = /*#__PURE__*/
|
2406
|
+
})), _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
|
2413
2407
|
d: "M8 10H24V12H8zM8 16H18V18H8z"
|
2414
2408
|
})), children);
|
2415
2409
|
});
|
2416
2410
|
if (process.env.NODE_ENV !== "production") {
|
2417
2411
|
Chat.propTypes = iconPropTypes4cbeb95d.i;
|
2418
2412
|
}
|
2419
|
-
var ChatLaunch = /*#__PURE__*/
|
2413
|
+
var ChatLaunch = /*#__PURE__*/React.forwardRef(function ChatLaunch(_ref103, ref) {
|
2420
2414
|
var children = _ref103.children,
|
2421
2415
|
_ref103$size = _ref103.size,
|
2422
2416
|
size = _ref103$size === void 0 ? 16 : _ref103$size,
|
2423
2417
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref103, _excluded103);
|
2424
|
-
return /*#__PURE__*/
|
2418
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2425
2419
|
width: size,
|
2426
2420
|
height: size,
|
2427
2421
|
ref: ref,
|
2428
2422
|
xmlns: "http://www.w3.org/2000/svg",
|
2429
2423
|
viewBox: "0 0 32 32",
|
2430
2424
|
fill: "currentColor"
|
2431
|
-
}, rest), _path167 || (_path167 = /*#__PURE__*/
|
2425
|
+
}, rest), _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
|
2432
2426
|
d: "M22 4L22 6 26.586 6 20 12.586 21.414 14 28 7.414 28 12 30 12 30 4 22 4zM28 16v4a1.9965 1.9965 0 01-2 2H20l-4 7 1.7358 1 3.4288-6H26a3.9992 3.9992 0 004-4V16zM4 20V8A1.9965 1.9965 0 016 6H18V4H6A3.9986 3.9986 0 002 8V20a3.9992 3.9992 0 004 4h9V22H6A1.9965 1.9965 0 014 20z"
|
2433
2427
|
})), children);
|
2434
2428
|
});
|
2435
2429
|
if (process.env.NODE_ENV !== "production") {
|
2436
2430
|
ChatLaunch.propTypes = iconPropTypes4cbeb95d.i;
|
2437
2431
|
}
|
2438
|
-
var ChatOff = /*#__PURE__*/
|
2432
|
+
var ChatOff = /*#__PURE__*/React.forwardRef(function ChatOff(_ref104, ref) {
|
2439
2433
|
var children = _ref104.children,
|
2440
2434
|
_ref104$size = _ref104.size,
|
2441
2435
|
size = _ref104$size === void 0 ? 16 : _ref104$size,
|
2442
2436
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref104, _excluded104);
|
2443
|
-
return /*#__PURE__*/
|
2437
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2444
2438
|
width: size,
|
2445
2439
|
height: size,
|
2446
2440
|
ref: ref,
|
2447
2441
|
xmlns: "http://www.w3.org/2000/svg",
|
2448
2442
|
viewBox: "0 0 32 32",
|
2449
2443
|
fill: "currentColor"
|
2450
|
-
}, rest), _path168 || (_path168 = /*#__PURE__*/
|
2444
|
+
}, rest), _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
|
2451
2445
|
d: "M28 8V21h2V8a3.9986 3.9986 0 00-4-4H8.2429l2 2H26A1.9965 1.9965 0 0128 8zM30 28.5859L3.4141 2 2 3.4141 3.5039 4.918A3.9181 3.9181 0 002 8V20a3.9992 3.9992 0 004 4h6V22H6a1.9965 1.9965 0 01-2-2V8a1.9814 1.9814 0 01.9194-1.6665L20.5859 22H17l-4 7 1.7358 1 3.4288-6h4.4213l6 6z"
|
2452
2446
|
})), children);
|
2453
2447
|
});
|
2454
2448
|
if (process.env.NODE_ENV !== "production") {
|
2455
2449
|
ChatOff.propTypes = iconPropTypes4cbeb95d.i;
|
2456
2450
|
}
|
2457
|
-
var ChatOperational = /*#__PURE__*/
|
2451
|
+
var ChatOperational = /*#__PURE__*/React.forwardRef(function ChatOperational(_ref105, ref) {
|
2458
2452
|
var children = _ref105.children,
|
2459
2453
|
_ref105$size = _ref105.size,
|
2460
2454
|
size = _ref105$size === void 0 ? 16 : _ref105$size,
|
2461
2455
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref105, _excluded105);
|
2462
|
-
return /*#__PURE__*/
|
2456
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2463
2457
|
width: size,
|
2464
2458
|
height: size,
|
2465
2459
|
ref: ref,
|
2466
2460
|
xmlns: "http://www.w3.org/2000/svg",
|
2467
2461
|
viewBox: "0 0 32 32",
|
2468
2462
|
fill: "currentColor"
|
2469
|
-
}, rest), _path169 || (_path169 = /*#__PURE__*/
|
2463
|
+
}, rest), _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
|
2470
2464
|
d: "M15.586 10.414L19.166 14 19.166 14 15.584 17.587 17 19 22 14 17 9 15.586 10.414z"
|
2471
|
-
})), _path170 || (_path170 = /*#__PURE__*/
|
2465
|
+
})), _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
|
2472
2466
|
d: "M20.586 10.414L24.166 14 24.166 14 20.584 17.587 22 19 27 14 22 9 20.586 10.414zM10 9L11.593 12 15 12.414 12.5 14.667 13 18 10 16.125 7 18 7.5 14.667 5 12.414 8.5 12 10 9z"
|
2473
|
-
})), _path171 || (_path171 = /*#__PURE__*/
|
2467
|
+
})), _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
|
2474
2468
|
d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"
|
2475
2469
|
})), children);
|
2476
2470
|
});
|
2477
2471
|
if (process.env.NODE_ENV !== "production") {
|
2478
2472
|
ChatOperational.propTypes = iconPropTypes4cbeb95d.i;
|
2479
2473
|
}
|
2480
|
-
var ChatBot = /*#__PURE__*/
|
2474
|
+
var ChatBot = /*#__PURE__*/React.forwardRef(function ChatBot(_ref106, ref) {
|
2481
2475
|
var children = _ref106.children,
|
2482
2476
|
_ref106$size = _ref106.size,
|
2483
2477
|
size = _ref106$size === void 0 ? 16 : _ref106$size,
|
2484
2478
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref106, _excluded106);
|
2485
|
-
return /*#__PURE__*/
|
2479
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2486
2480
|
width: size,
|
2487
2481
|
height: size,
|
2488
2482
|
ref: ref,
|
2489
2483
|
xmlns: "http://www.w3.org/2000/svg",
|
2490
2484
|
viewBox: "0 0 32 32",
|
2491
2485
|
fill: "currentColor"
|
2492
|
-
}, rest), _path172 || (_path172 = /*#__PURE__*/
|
2486
|
+
}, rest), _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
|
2493
2487
|
d: "M16 19a6.9908 6.9908 0 01-5.833-3.1287l1.666-1.1074a5.0007 5.0007 0 008.334 0l1.666 1.1074A6.9908 6.9908 0 0116 19zM20 8a2 2 0 102 2A1.9806 1.9806 0 0020 8zM12 8a2 2 0 102 2A1.9806 1.9806 0 0012 8z"
|
2494
|
-
})), _path173 || (_path173 = /*#__PURE__*/
|
2488
|
+
})), _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
|
2495
2489
|
d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V6a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,6V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V6A3.9988,3.9988,0,0,1,6,2H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"
|
2496
2490
|
})), children);
|
2497
2491
|
});
|
2498
2492
|
if (process.env.NODE_ENV !== "production") {
|
2499
2493
|
ChatBot.propTypes = iconPropTypes4cbeb95d.i;
|
2500
2494
|
}
|
2501
|
-
var Checkbox = /*#__PURE__*/
|
2495
|
+
var Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref107, ref) {
|
2502
2496
|
var children = _ref107.children,
|
2503
2497
|
_ref107$size = _ref107.size,
|
2504
2498
|
size = _ref107$size === void 0 ? 16 : _ref107$size,
|
2505
2499
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref107, _excluded107);
|
2506
|
-
return /*#__PURE__*/
|
2500
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2507
2501
|
width: size,
|
2508
2502
|
height: size,
|
2509
2503
|
ref: ref,
|
2510
2504
|
xmlns: "http://www.w3.org/2000/svg",
|
2511
2505
|
viewBox: "0 0 32 32",
|
2512
2506
|
fill: "currentColor"
|
2513
|
-
}, rest), _path174 || (_path174 = /*#__PURE__*/
|
2507
|
+
}, rest), _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
|
2514
2508
|
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,4ZM6,26V6H26V26Z"
|
2515
2509
|
})), children);
|
2516
2510
|
});
|
2517
2511
|
if (process.env.NODE_ENV !== "production") {
|
2518
2512
|
Checkbox.propTypes = iconPropTypes4cbeb95d.i;
|
2519
2513
|
}
|
2520
|
-
var CheckboxChecked = /*#__PURE__*/
|
2514
|
+
var CheckboxChecked = /*#__PURE__*/React.forwardRef(function CheckboxChecked(_ref108, ref) {
|
2521
2515
|
var children = _ref108.children,
|
2522
2516
|
_ref108$size = _ref108.size,
|
2523
2517
|
size = _ref108$size === void 0 ? 16 : _ref108$size,
|
2524
2518
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref108, _excluded108);
|
2525
|
-
return /*#__PURE__*/
|
2519
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2526
2520
|
width: size,
|
2527
2521
|
height: size,
|
2528
2522
|
ref: ref,
|
2529
2523
|
xmlns: "http://www.w3.org/2000/svg",
|
2530
2524
|
viewBox: "0 0 32 32",
|
2531
2525
|
fill: "currentColor"
|
2532
|
-
}, rest), _path175 || (_path175 = /*#__PURE__*/
|
2526
|
+
}, rest), _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
|
2533
2527
|
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,4ZM6,26V6H26V26Z"
|
2534
|
-
})), _path176 || (_path176 = /*#__PURE__*/
|
2528
|
+
})), _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
|
2535
2529
|
d: "M14 21.5L9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5z"
|
2536
2530
|
})), children);
|
2537
2531
|
});
|
2538
2532
|
if (process.env.NODE_ENV !== "production") {
|
2539
2533
|
CheckboxChecked.propTypes = iconPropTypes4cbeb95d.i;
|
2540
2534
|
}
|
2541
|
-
var CheckboxCheckedFilled = /*#__PURE__*/
|
2535
|
+
var CheckboxCheckedFilled = /*#__PURE__*/React.forwardRef(function CheckboxCheckedFilled(_ref109, ref) {
|
2542
2536
|
var children = _ref109.children,
|
2543
2537
|
_ref109$size = _ref109.size,
|
2544
2538
|
size = _ref109$size === void 0 ? 16 : _ref109$size,
|
2545
2539
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref109, _excluded109);
|
2546
|
-
return /*#__PURE__*/
|
2540
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2547
2541
|
width: size,
|
2548
2542
|
height: size,
|
2549
2543
|
ref: ref,
|
2550
2544
|
xmlns: "http://www.w3.org/2000/svg",
|
2551
2545
|
viewBox: "0 0 32 32",
|
2552
2546
|
fill: "currentColor"
|
2553
|
-
}, rest), _path177 || (_path177 = /*#__PURE__*/
|
2547
|
+
}, rest), _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
|
2554
2548
|
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,4ZM14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z"
|
2555
|
-
})), _path178 || (_path178 = /*#__PURE__*/
|
2549
|
+
})), _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
|
2556
2550
|
fill: "none",
|
2557
2551
|
d: "M14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z",
|
2558
2552
|
"data-icon-path": "inner-path"
|
@@ -2561,42 +2555,42 @@ var CheckboxCheckedFilled = /*#__PURE__*/React__default["default"].forwardRef(fu
|
|
2561
2555
|
if (process.env.NODE_ENV !== "production") {
|
2562
2556
|
CheckboxCheckedFilled.propTypes = iconPropTypes4cbeb95d.i;
|
2563
2557
|
}
|
2564
|
-
var CheckboxIndeterminate = /*#__PURE__*/
|
2558
|
+
var CheckboxIndeterminate = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminate(_ref110, ref) {
|
2565
2559
|
var children = _ref110.children,
|
2566
2560
|
_ref110$size = _ref110.size,
|
2567
2561
|
size = _ref110$size === void 0 ? 16 : _ref110$size,
|
2568
2562
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref110, _excluded110);
|
2569
|
-
return /*#__PURE__*/
|
2563
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2570
2564
|
width: size,
|
2571
2565
|
height: size,
|
2572
2566
|
ref: ref,
|
2573
2567
|
xmlns: "http://www.w3.org/2000/svg",
|
2574
2568
|
viewBox: "0 0 32 32",
|
2575
2569
|
fill: "currentColor"
|
2576
|
-
}, rest), _path179 || (_path179 = /*#__PURE__*/
|
2570
|
+
}, rest), _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
|
2577
2571
|
d: "M10 14H22V18H10z"
|
2578
|
-
})), _path180 || (_path180 = /*#__PURE__*/
|
2572
|
+
})), _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
|
2579
2573
|
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,4ZM6,26V6H26V26Z"
|
2580
2574
|
})), children);
|
2581
2575
|
});
|
2582
2576
|
if (process.env.NODE_ENV !== "production") {
|
2583
2577
|
CheckboxIndeterminate.propTypes = iconPropTypes4cbeb95d.i;
|
2584
2578
|
}
|
2585
|
-
var CheckboxIndeterminateFilled = /*#__PURE__*/
|
2579
|
+
var CheckboxIndeterminateFilled = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminateFilled(_ref111, ref) {
|
2586
2580
|
var children = _ref111.children,
|
2587
2581
|
_ref111$size = _ref111.size,
|
2588
2582
|
size = _ref111$size === void 0 ? 16 : _ref111$size,
|
2589
2583
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref111, _excluded111);
|
2590
|
-
return /*#__PURE__*/
|
2584
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2591
2585
|
width: size,
|
2592
2586
|
height: size,
|
2593
2587
|
ref: ref,
|
2594
2588
|
xmlns: "http://www.w3.org/2000/svg",
|
2595
2589
|
viewBox: "0 0 32 32",
|
2596
2590
|
fill: "currentColor"
|
2597
|
-
}, rest), _path181 || (_path181 = /*#__PURE__*/
|
2591
|
+
}, rest), _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
|
2598
2592
|
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,4ZM22,18H10V14H22Z"
|
2599
|
-
})), _path182 || (_path182 = /*#__PURE__*/
|
2593
|
+
})), _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
|
2600
2594
|
fill: "none",
|
2601
2595
|
d: "M22,18H10V14H22Z",
|
2602
2596
|
"data-icon-path": "inner-path"
|
@@ -2605,83 +2599,83 @@ var CheckboxIndeterminateFilled = /*#__PURE__*/React__default["default"].forward
|
|
2605
2599
|
if (process.env.NODE_ENV !== "production") {
|
2606
2600
|
CheckboxIndeterminateFilled.propTypes = iconPropTypes4cbeb95d.i;
|
2607
2601
|
}
|
2608
|
-
var Checkmark = /*#__PURE__*/
|
2602
|
+
var Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref112, ref) {
|
2609
2603
|
var children = _ref112.children,
|
2610
2604
|
_ref112$size = _ref112.size,
|
2611
2605
|
size = _ref112$size === void 0 ? 16 : _ref112$size,
|
2612
2606
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref112, _excluded112);
|
2613
2607
|
if (size === 20 || size === "20" || size === "20px") {
|
2614
|
-
return /*#__PURE__*/
|
2608
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2615
2609
|
width: size,
|
2616
2610
|
height: size,
|
2617
2611
|
ref: ref,
|
2618
2612
|
xmlns: "http://www.w3.org/2000/svg",
|
2619
2613
|
viewBox: "0 0 20 20",
|
2620
2614
|
fill: "currentColor"
|
2621
|
-
}, rest), _path183 || (_path183 = /*#__PURE__*/
|
2615
|
+
}, rest), _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
|
2622
2616
|
d: "M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"
|
2623
|
-
})), _path184 || (_path184 = /*#__PURE__*/
|
2617
|
+
})), _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
|
2624
2618
|
d: "M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"
|
2625
2619
|
})), children);
|
2626
2620
|
}
|
2627
2621
|
if (size === 24 || size === "24" || size === "24px") {
|
2628
|
-
return /*#__PURE__*/
|
2622
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2629
2623
|
width: size,
|
2630
2624
|
height: size,
|
2631
2625
|
ref: ref,
|
2632
2626
|
xmlns: "http://www.w3.org/2000/svg",
|
2633
2627
|
viewBox: "0 0 24 24",
|
2634
2628
|
fill: "currentColor"
|
2635
|
-
}, rest), _path185 || (_path185 = /*#__PURE__*/
|
2629
|
+
}, rest), _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
|
2636
2630
|
d: "M10 15.9L4.7 10.6 3.6 11.6 8.9 16.9 10 18 20.6 7.4 19.5 6.3z"
|
2637
2631
|
})), children);
|
2638
2632
|
}
|
2639
|
-
return /*#__PURE__*/
|
2633
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2640
2634
|
width: size,
|
2641
2635
|
height: size,
|
2642
2636
|
ref: ref,
|
2643
2637
|
xmlns: "http://www.w3.org/2000/svg",
|
2644
2638
|
viewBox: "0 0 32 32",
|
2645
2639
|
fill: "currentColor"
|
2646
|
-
}, rest), _path186 || (_path186 = /*#__PURE__*/
|
2640
|
+
}, rest), _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
|
2647
2641
|
d: "M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z"
|
2648
2642
|
})), children);
|
2649
2643
|
});
|
2650
2644
|
if (process.env.NODE_ENV !== "production") {
|
2651
2645
|
Checkmark.propTypes = iconPropTypes4cbeb95d.i;
|
2652
2646
|
}
|
2653
|
-
var CheckmarkFilled = /*#__PURE__*/
|
2647
|
+
var CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_ref113, ref) {
|
2654
2648
|
var children = _ref113.children,
|
2655
2649
|
_ref113$size = _ref113.size,
|
2656
2650
|
size = _ref113$size === void 0 ? 16 : _ref113$size,
|
2657
2651
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref113, _excluded113);
|
2658
2652
|
if (size === 16 || size === "16" || size === "16px") {
|
2659
|
-
return /*#__PURE__*/
|
2653
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2660
2654
|
width: size,
|
2661
2655
|
height: size,
|
2662
2656
|
ref: ref,
|
2663
2657
|
xmlns: "http://www.w3.org/2000/svg",
|
2664
2658
|
viewBox: "0 0 16 16",
|
2665
2659
|
fill: "currentColor"
|
2666
|
-
}, rest), _path187 || (_path187 = /*#__PURE__*/
|
2660
|
+
}, rest), _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
|
2667
2661
|
d: "M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z"
|
2668
|
-
})), _path188 || (_path188 = /*#__PURE__*/
|
2662
|
+
})), _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
|
2669
2663
|
d: "M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z",
|
2670
2664
|
"data-icon-path": "inner-path",
|
2671
2665
|
opacity: "0"
|
2672
2666
|
})), children);
|
2673
2667
|
}
|
2674
2668
|
if (size === 20 || size === "20" || size === "20px") {
|
2675
|
-
return /*#__PURE__*/
|
2669
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2676
2670
|
width: size,
|
2677
2671
|
height: size,
|
2678
2672
|
ref: ref,
|
2679
2673
|
xmlns: "http://www.w3.org/2000/svg",
|
2680
2674
|
viewBox: "0 0 20 20",
|
2681
2675
|
fill: "currentColor"
|
2682
|
-
}, rest), _path189 || (_path189 = /*#__PURE__*/
|
2676
|
+
}, rest), _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
|
2683
2677
|
d: "M10,1c-4.9,0-9,4.1-9,9s4.1,9,9,9s9-4,9-9S15,1,10,1z M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z"
|
2684
|
-
})), _path190 || (_path190 = /*#__PURE__*/
|
2678
|
+
})), _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
|
2685
2679
|
fill: "none",
|
2686
2680
|
d: "M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z",
|
2687
2681
|
"data-icon-path": "inner-path",
|
@@ -2689,32 +2683,32 @@ var CheckmarkFilled = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
2689
2683
|
})), children);
|
2690
2684
|
}
|
2691
2685
|
if (size === 24 || size === "24" || size === "24px") {
|
2692
|
-
return /*#__PURE__*/
|
2686
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2693
2687
|
width: size,
|
2694
2688
|
height: size,
|
2695
2689
|
ref: ref,
|
2696
2690
|
xmlns: "http://www.w3.org/2000/svg",
|
2697
2691
|
viewBox: "0 0 24 24",
|
2698
2692
|
fill: "currentColor"
|
2699
|
-
}, rest), _path191 || (_path191 = /*#__PURE__*/
|
2693
|
+
}, rest), _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
|
2700
2694
|
d: "M12,1C6,1,1,6,1,12s5,11,11,11s11-4.9,11-11S18.1,1,12,1z M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z"
|
2701
|
-
})), _path192 || (_path192 = /*#__PURE__*/
|
2695
|
+
})), _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
|
2702
2696
|
fill: "none",
|
2703
2697
|
d: "M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z",
|
2704
2698
|
"data-icon-path": "inner-path",
|
2705
2699
|
opacity: "0"
|
2706
2700
|
})), children);
|
2707
2701
|
}
|
2708
|
-
return /*#__PURE__*/
|
2702
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2709
2703
|
width: size,
|
2710
2704
|
height: size,
|
2711
2705
|
ref: ref,
|
2712
2706
|
xmlns: "http://www.w3.org/2000/svg",
|
2713
2707
|
viewBox: "0 0 32 32",
|
2714
2708
|
fill: "currentColor"
|
2715
|
-
}, rest), _path193 || (_path193 = /*#__PURE__*/
|
2709
|
+
}, rest), _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
|
2716
2710
|
d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,21.5908l-5-5L10.5906,15,14,18.4092,21.41,11l1.5957,1.5859Z"
|
2717
|
-
})), _path194 || (_path194 = /*#__PURE__*/
|
2711
|
+
})), _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
|
2718
2712
|
fill: "none",
|
2719
2713
|
d: "M14 21.591L9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591z",
|
2720
2714
|
"data-icon-path": "inner-path"
|
@@ -2723,23 +2717,23 @@ var CheckmarkFilled = /*#__PURE__*/React__default["default"].forwardRef(function
|
|
2723
2717
|
if (process.env.NODE_ENV !== "production") {
|
2724
2718
|
CheckmarkFilled.propTypes = iconPropTypes4cbeb95d.i;
|
2725
2719
|
}
|
2726
|
-
var CheckmarkFilledError = /*#__PURE__*/
|
2720
|
+
var CheckmarkFilledError = /*#__PURE__*/React.forwardRef(function CheckmarkFilledError(_ref114, ref) {
|
2727
2721
|
var children = _ref114.children,
|
2728
2722
|
_ref114$size = _ref114.size,
|
2729
2723
|
size = _ref114$size === void 0 ? 16 : _ref114$size,
|
2730
2724
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref114, _excluded114);
|
2731
|
-
return /*#__PURE__*/
|
2725
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2732
2726
|
width: size,
|
2733
2727
|
height: size,
|
2734
2728
|
ref: ref,
|
2735
2729
|
xmlns: "http://www.w3.org/2000/svg",
|
2736
2730
|
viewBox: "0 0 32 32",
|
2737
2731
|
fill: "currentColor"
|
2738
|
-
}, rest), _path195 || (_path195 = /*#__PURE__*/
|
2732
|
+
}, rest), _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
|
2739
2733
|
d: "M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z"
|
2740
|
-
})), _path196 || (_path196 = /*#__PURE__*/
|
2734
|
+
})), _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
|
2741
2735
|
d: "M14,2a12,12,0,1,0,2,23.82V24a8,8,0,0,1,8-8h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z"
|
2742
|
-
})), _path197 || (_path197 = /*#__PURE__*/
|
2736
|
+
})), _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
|
2743
2737
|
fill: "none",
|
2744
2738
|
d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
|
2745
2739
|
"data-icon-path": "inner-path"
|
@@ -2748,23 +2742,23 @@ var CheckmarkFilledError = /*#__PURE__*/React__default["default"].forwardRef(fun
|
|
2748
2742
|
if (process.env.NODE_ENV !== "production") {
|
2749
2743
|
CheckmarkFilledError.propTypes = iconPropTypes4cbeb95d.i;
|
2750
2744
|
}
|
2751
|
-
var CheckmarkFilledWarning = /*#__PURE__*/
|
2745
|
+
var CheckmarkFilledWarning = /*#__PURE__*/React.forwardRef(function CheckmarkFilledWarning(_ref115, ref) {
|
2752
2746
|
var children = _ref115.children,
|
2753
2747
|
_ref115$size = _ref115.size,
|
2754
2748
|
size = _ref115$size === void 0 ? 16 : _ref115$size,
|
2755
2749
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref115, _excluded115);
|
2756
|
-
return /*#__PURE__*/
|
2750
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2757
2751
|
width: size,
|
2758
2752
|
height: size,
|
2759
2753
|
ref: ref,
|
2760
2754
|
xmlns: "http://www.w3.org/2000/svg",
|
2761
2755
|
viewBox: "0 0 32 32",
|
2762
2756
|
fill: "currentColor"
|
2763
|
-
}, rest), _path198 || (_path198 = /*#__PURE__*/
|
2757
|
+
}, rest), _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
|
2764
2758
|
d: "M14,2a12,12,0,1,0,3.3928,23.5059l3.9246-7.8492A2.9846,2.9846,0,0,1,24,16h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z"
|
2765
|
-
})), _path199 || (_path199 = /*#__PURE__*/
|
2759
|
+
})), _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
|
2766
2760
|
d: "M27.38,28H20.6178L24,21.2358ZM24,18a1,1,0,0,0-.8947.5527l-5,10A1.0005,1.0005,0,0,0,19,30H29a1,1,0,0,0,.9214-1.3892L24.8946,18.5527A1,1,0,0,0,24,18Z"
|
2767
|
-
})), _path200 || (_path200 = /*#__PURE__*/
|
2761
|
+
})), _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
|
2768
2762
|
fill: "none",
|
2769
2763
|
d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
|
2770
2764
|
"data-icon-path": "inner-path"
|
@@ -2773,284 +2767,284 @@ var CheckmarkFilledWarning = /*#__PURE__*/React__default["default"].forwardRef(f
|
|
2773
2767
|
if (process.env.NODE_ENV !== "production") {
|
2774
2768
|
CheckmarkFilledWarning.propTypes = iconPropTypes4cbeb95d.i;
|
2775
2769
|
}
|
2776
|
-
var CheckmarkOutline = /*#__PURE__*/
|
2770
|
+
var CheckmarkOutline = /*#__PURE__*/React.forwardRef(function CheckmarkOutline(_ref116, ref) {
|
2777
2771
|
var children = _ref116.children,
|
2778
2772
|
_ref116$size = _ref116.size,
|
2779
2773
|
size = _ref116$size === void 0 ? 16 : _ref116$size,
|
2780
2774
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref116, _excluded116);
|
2781
|
-
return /*#__PURE__*/
|
2775
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2782
2776
|
width: size,
|
2783
2777
|
height: size,
|
2784
2778
|
ref: ref,
|
2785
2779
|
xmlns: "http://www.w3.org/2000/svg",
|
2786
2780
|
viewBox: "0 0 32 32",
|
2787
2781
|
fill: "currentColor"
|
2788
|
-
}, rest), _path201 || (_path201 = /*#__PURE__*/
|
2782
|
+
}, rest), _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
|
2789
2783
|
d: "M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z"
|
2790
|
-
})), _path202 || (_path202 = /*#__PURE__*/
|
2784
|
+
})), _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
|
2791
2785
|
d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"
|
2792
2786
|
})), children);
|
2793
2787
|
});
|
2794
2788
|
if (process.env.NODE_ENV !== "production") {
|
2795
2789
|
CheckmarkOutline.propTypes = iconPropTypes4cbeb95d.i;
|
2796
2790
|
}
|
2797
|
-
var CheckmarkOutlineError = /*#__PURE__*/
|
2791
|
+
var CheckmarkOutlineError = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineError(_ref117, ref) {
|
2798
2792
|
var children = _ref117.children,
|
2799
2793
|
_ref117$size = _ref117.size,
|
2800
2794
|
size = _ref117$size === void 0 ? 16 : _ref117$size,
|
2801
2795
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref117, _excluded117);
|
2802
|
-
return /*#__PURE__*/
|
2796
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2803
2797
|
width: size,
|
2804
2798
|
height: size,
|
2805
2799
|
ref: ref,
|
2806
2800
|
xmlns: "http://www.w3.org/2000/svg",
|
2807
2801
|
viewBox: "0 0 32 32",
|
2808
2802
|
fill: "currentColor"
|
2809
|
-
}, rest), _path203 || (_path203 = /*#__PURE__*/
|
2803
|
+
}, rest), _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
|
2810
2804
|
d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
|
2811
|
-
})), _path204 || (_path204 = /*#__PURE__*/
|
2805
|
+
})), _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
|
2812
2806
|
d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM30 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"
|
2813
2807
|
})), children);
|
2814
2808
|
});
|
2815
2809
|
if (process.env.NODE_ENV !== "production") {
|
2816
2810
|
CheckmarkOutlineError.propTypes = iconPropTypes4cbeb95d.i;
|
2817
2811
|
}
|
2818
|
-
var CheckmarkOutlineWarning = /*#__PURE__*/
|
2812
|
+
var CheckmarkOutlineWarning = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineWarning(_ref118, ref) {
|
2819
2813
|
var children = _ref118.children,
|
2820
2814
|
_ref118$size = _ref118.size,
|
2821
2815
|
size = _ref118$size === void 0 ? 16 : _ref118$size,
|
2822
2816
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref118, _excluded118);
|
2823
|
-
return /*#__PURE__*/
|
2817
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2824
2818
|
width: size,
|
2825
2819
|
height: size,
|
2826
2820
|
ref: ref,
|
2827
2821
|
xmlns: "http://www.w3.org/2000/svg",
|
2828
2822
|
viewBox: "0 0 32 32",
|
2829
2823
|
fill: "currentColor"
|
2830
|
-
}, rest), _path205 || (_path205 = /*#__PURE__*/
|
2824
|
+
}, rest), _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
|
2831
2825
|
d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
|
2832
|
-
})), _path206 || (_path206 = /*#__PURE__*/
|
2826
|
+
})), _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
|
2833
2827
|
d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM27.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"
|
2834
2828
|
})), children);
|
2835
2829
|
});
|
2836
2830
|
if (process.env.NODE_ENV !== "production") {
|
2837
2831
|
CheckmarkOutlineWarning.propTypes = iconPropTypes4cbeb95d.i;
|
2838
2832
|
}
|
2839
|
-
var Chemistry = /*#__PURE__*/
|
2833
|
+
var Chemistry = /*#__PURE__*/React.forwardRef(function Chemistry(_ref119, ref) {
|
2840
2834
|
var children = _ref119.children,
|
2841
2835
|
_ref119$size = _ref119.size,
|
2842
2836
|
size = _ref119$size === void 0 ? 16 : _ref119$size,
|
2843
2837
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref119, _excluded119);
|
2844
|
-
return /*#__PURE__*/
|
2838
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2845
2839
|
width: size,
|
2846
2840
|
height: size,
|
2847
2841
|
ref: ref,
|
2848
2842
|
xmlns: "http://www.w3.org/2000/svg",
|
2849
2843
|
viewBox: "0 0 32 32",
|
2850
2844
|
fill: "currentColor"
|
2851
|
-
}, rest), _path207 || (_path207 = /*#__PURE__*/
|
2845
|
+
}, rest), _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
|
2852
2846
|
d: "M27.2314,23.6182,20,13.6748V4h2V2H10V4h2v9.6748L4.7686,23.6182A4.0183,4.0183,0,0,0,8.0186,30H23.9814a4.0183,4.0183,0,0,0,3.25-6.3818ZM14,14.3252V4h4V14.3252L20.6728,18H11.3272ZM23.9814,28H8.0186a2.0192,2.0192,0,0,1-1.6329-3.2061L9.8726,20H22.1274l3.4869,4.7939A2.0192,2.0192,0,0,1,23.9814,28Z"
|
2853
2847
|
})), children);
|
2854
2848
|
});
|
2855
2849
|
if (process.env.NODE_ENV !== "production") {
|
2856
2850
|
Chemistry.propTypes = iconPropTypes4cbeb95d.i;
|
2857
2851
|
}
|
2858
|
-
var ChemistryReference = /*#__PURE__*/
|
2852
|
+
var ChemistryReference = /*#__PURE__*/React.forwardRef(function ChemistryReference(_ref120, ref) {
|
2859
2853
|
var children = _ref120.children,
|
2860
2854
|
_ref120$size = _ref120.size,
|
2861
2855
|
size = _ref120$size === void 0 ? 16 : _ref120$size,
|
2862
2856
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref120, _excluded120);
|
2863
|
-
return /*#__PURE__*/
|
2857
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2864
2858
|
width: size,
|
2865
2859
|
height: size,
|
2866
2860
|
ref: ref,
|
2867
2861
|
xmlns: "http://www.w3.org/2000/svg",
|
2868
2862
|
viewBox: "0 0 32 32",
|
2869
2863
|
fill: "currentColor"
|
2870
|
-
}, rest), _path208 || (_path208 = /*#__PURE__*/
|
2864
|
+
}, rest), _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
|
2871
2865
|
d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
|
2872
|
-
})), _path209 || (_path209 = /*#__PURE__*/
|
2866
|
+
})), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
|
2873
2867
|
d: "M20,13.67V4h2V2H10V4h2v9.67L9.58,17h2.4767L14,14.33V4h4V14.33l7.61,10.46a2.0133,2.0133,0,0,1-.44,2.82,2.0406,2.0406,0,0,1-1.19.39H15v2h8.98a4.0154,4.0154,0,0,0,3.25-6.38Z"
|
2874
2868
|
})), children);
|
2875
2869
|
});
|
2876
2870
|
if (process.env.NODE_ENV !== "production") {
|
2877
2871
|
ChemistryReference.propTypes = iconPropTypes4cbeb95d.i;
|
2878
2872
|
}
|
2879
|
-
var ChevronDown = /*#__PURE__*/
|
2873
|
+
var ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref121, ref) {
|
2880
2874
|
var children = _ref121.children,
|
2881
2875
|
_ref121$size = _ref121.size,
|
2882
2876
|
size = _ref121$size === void 0 ? 16 : _ref121$size,
|
2883
2877
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref121, _excluded121);
|
2884
2878
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
2885
|
-
return /*#__PURE__*/
|
2879
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2886
2880
|
width: size,
|
2887
2881
|
height: size,
|
2888
2882
|
ref: ref,
|
2889
2883
|
xmlns: "http://www.w3.org/2000/svg",
|
2890
2884
|
viewBox: "0 0 10 6",
|
2891
2885
|
fill: "currentColor"
|
2892
|
-
}, rest), _path210 || (_path210 = /*#__PURE__*/
|
2886
|
+
}, rest), _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
|
2893
2887
|
d: "M5 6L0 1 0.7 0.3 5 4.6 9.3 0.3 10 1z"
|
2894
2888
|
})), children);
|
2895
2889
|
}
|
2896
2890
|
if (size === 16 || size === "16" || size === "16px") {
|
2897
|
-
return /*#__PURE__*/
|
2891
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2898
2892
|
width: size,
|
2899
2893
|
height: size,
|
2900
2894
|
ref: ref,
|
2901
2895
|
xmlns: "http://www.w3.org/2000/svg",
|
2902
2896
|
viewBox: "0 0 16 16",
|
2903
2897
|
fill: "currentColor"
|
2904
|
-
}, rest), _path211 || (_path211 = /*#__PURE__*/
|
2898
|
+
}, rest), _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
|
2905
2899
|
d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"
|
2906
2900
|
})), children);
|
2907
2901
|
}
|
2908
|
-
return /*#__PURE__*/
|
2902
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2909
2903
|
width: size,
|
2910
2904
|
height: size,
|
2911
2905
|
ref: ref,
|
2912
2906
|
xmlns: "http://www.w3.org/2000/svg",
|
2913
2907
|
viewBox: "0 0 32 32",
|
2914
2908
|
fill: "currentColor"
|
2915
|
-
}, rest), _path212 || (_path212 = /*#__PURE__*/
|
2909
|
+
}, rest), _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
|
2916
2910
|
d: "M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z"
|
2917
2911
|
})), children);
|
2918
2912
|
});
|
2919
2913
|
if (process.env.NODE_ENV !== "production") {
|
2920
2914
|
ChevronDown.propTypes = iconPropTypes4cbeb95d.i;
|
2921
2915
|
}
|
2922
|
-
var ChevronDownOutline = /*#__PURE__*/
|
2916
|
+
var ChevronDownOutline = /*#__PURE__*/React.forwardRef(function ChevronDownOutline(_ref122, ref) {
|
2923
2917
|
var children = _ref122.children,
|
2924
2918
|
_ref122$size = _ref122.size,
|
2925
2919
|
size = _ref122$size === void 0 ? 16 : _ref122$size,
|
2926
2920
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref122, _excluded122);
|
2927
|
-
return /*#__PURE__*/
|
2921
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2928
2922
|
width: size,
|
2929
2923
|
height: size,
|
2930
2924
|
ref: ref,
|
2931
2925
|
xmlns: "http://www.w3.org/2000/svg",
|
2932
2926
|
viewBox: "0 0 32 32",
|
2933
2927
|
fill: "currentColor"
|
2934
|
-
}, rest), _path213 || (_path213 = /*#__PURE__*/
|
2928
|
+
}, rest), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
|
2935
2929
|
d: "M9.4142 12.5858L16 19.1714 22.5858 12.5858 24 14 16 22 8 14 9.4142 12.5858z"
|
2936
|
-
})), _path214 || (_path214 = /*#__PURE__*/
|
2930
|
+
})), _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
|
2937
2931
|
d: "m30,16c0,7.7197-6.2803,14-14,14S2,23.7197,2,16,8.2803,2,16,2s14,6.2803,14,14Zm-26,0c0,6.6167,5.3833,12,12,12s12-5.3833,12-12-5.3833-12-12-12S4,9.3833,4,16Z"
|
2938
2932
|
})), children);
|
2939
2933
|
});
|
2940
2934
|
if (process.env.NODE_ENV !== "production") {
|
2941
2935
|
ChevronDownOutline.propTypes = iconPropTypes4cbeb95d.i;
|
2942
2936
|
}
|
2943
|
-
var ChevronLeft = /*#__PURE__*/
|
2937
|
+
var ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref123, ref) {
|
2944
2938
|
var children = _ref123.children,
|
2945
2939
|
_ref123$size = _ref123.size,
|
2946
2940
|
size = _ref123$size === void 0 ? 16 : _ref123$size,
|
2947
2941
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref123, _excluded123);
|
2948
2942
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
2949
|
-
return /*#__PURE__*/
|
2943
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2950
2944
|
width: size,
|
2951
2945
|
height: size,
|
2952
2946
|
ref: ref,
|
2953
2947
|
xmlns: "http://www.w3.org/2000/svg",
|
2954
2948
|
viewBox: "0 0 6 10",
|
2955
2949
|
fill: "currentColor"
|
2956
|
-
}, rest), _path215 || (_path215 = /*#__PURE__*/
|
2950
|
+
}, rest), _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
|
2957
2951
|
d: "M0 5L5 0 5.7 0.7 1.4 5 5.7 9.3 5 10z"
|
2958
2952
|
})), children);
|
2959
2953
|
}
|
2960
2954
|
if (size === 16 || size === "16" || size === "16px") {
|
2961
|
-
return /*#__PURE__*/
|
2955
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2962
2956
|
width: size,
|
2963
2957
|
height: size,
|
2964
2958
|
ref: ref,
|
2965
2959
|
xmlns: "http://www.w3.org/2000/svg",
|
2966
2960
|
viewBox: "0 0 16 16",
|
2967
2961
|
fill: "currentColor"
|
2968
|
-
}, rest), _path216 || (_path216 = /*#__PURE__*/
|
2962
|
+
}, rest), _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
|
2969
2963
|
d: "M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z"
|
2970
2964
|
})), children);
|
2971
2965
|
}
|
2972
|
-
return /*#__PURE__*/
|
2966
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2973
2967
|
width: size,
|
2974
2968
|
height: size,
|
2975
2969
|
ref: ref,
|
2976
2970
|
xmlns: "http://www.w3.org/2000/svg",
|
2977
2971
|
viewBox: "0 0 32 32",
|
2978
2972
|
fill: "currentColor"
|
2979
|
-
}, rest), _path217 || (_path217 = /*#__PURE__*/
|
2973
|
+
}, rest), _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
|
2980
2974
|
d: "M10 16L20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z"
|
2981
2975
|
})), children);
|
2982
2976
|
});
|
2983
2977
|
if (process.env.NODE_ENV !== "production") {
|
2984
2978
|
ChevronLeft.propTypes = iconPropTypes4cbeb95d.i;
|
2985
2979
|
}
|
2986
|
-
var ChevronMini = /*#__PURE__*/
|
2980
|
+
var ChevronMini = /*#__PURE__*/React.forwardRef(function ChevronMini(_ref124, ref) {
|
2987
2981
|
var children = _ref124.children,
|
2988
2982
|
_ref124$size = _ref124.size,
|
2989
2983
|
size = _ref124$size === void 0 ? 16 : _ref124$size,
|
2990
2984
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref124, _excluded124);
|
2991
2985
|
if (size === 16 || size === "16" || size === "16px") {
|
2992
|
-
return /*#__PURE__*/
|
2986
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
2993
2987
|
width: size,
|
2994
2988
|
height: size,
|
2995
2989
|
ref: ref,
|
2996
2990
|
xmlns: "http://www.w3.org/2000/svg",
|
2997
2991
|
viewBox: "0 0 16 16",
|
2998
2992
|
fill: "currentColor"
|
2999
|
-
}, rest), _path218 || (_path218 = /*#__PURE__*/
|
2993
|
+
}, rest), _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
|
3000
2994
|
d: "M15 9L15 15 9 15z"
|
3001
2995
|
})), children);
|
3002
2996
|
}
|
3003
|
-
return /*#__PURE__*/
|
2997
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
3004
2998
|
width: size,
|
3005
2999
|
height: size,
|
3006
3000
|
ref: ref,
|
3007
3001
|
xmlns: "http://www.w3.org/2000/svg",
|
3008
3002
|
viewBox: "0 0 32 32",
|
3009
3003
|
fill: "currentColor"
|
3010
|
-
}, rest), _path219 || (_path219 = /*#__PURE__*/
|
3004
|
+
}, rest), _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
|
3011
3005
|
d: "M31 19L31 31 19 31 31 19z"
|
3012
3006
|
})), children);
|
3013
3007
|
});
|
3014
3008
|
if (process.env.NODE_ENV !== "production") {
|
3015
3009
|
ChevronMini.propTypes = iconPropTypes4cbeb95d.i;
|
3016
3010
|
}
|
3017
|
-
var ChevronRight = /*#__PURE__*/
|
3011
|
+
var ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref125, ref) {
|
3018
3012
|
var children = _ref125.children,
|
3019
3013
|
_ref125$size = _ref125.size,
|
3020
3014
|
size = _ref125$size === void 0 ? 16 : _ref125$size,
|
3021
3015
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref125, _excluded125);
|
3022
3016
|
if (size === "glyph" || size === "glyph" || size === "glyphpx") {
|
3023
|
-
return /*#__PURE__*/
|
3017
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
3024
3018
|
width: size,
|
3025
3019
|
height: size,
|
3026
3020
|
ref: ref,
|
3027
3021
|
xmlns: "http://www.w3.org/2000/svg",
|
3028
3022
|
viewBox: "0 0 6 10",
|
3029
3023
|
fill: "currentColor"
|
3030
|
-
}, rest), _path220 || (_path220 = /*#__PURE__*/
|
3024
|
+
}, rest), _path220 || (_path220 = /*#__PURE__*/React.createElement("path", {
|
3031
3025
|
d: "M6 5L1 10 0.3 9.3 4.6 5 0.3 0.7 1 0z"
|
3032
3026
|
})), children);
|
3033
3027
|
}
|
3034
3028
|
if (size === 16 || size === "16" || size === "16px") {
|
3035
|
-
return /*#__PURE__*/
|
3029
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
3036
3030
|
width: size,
|
3037
3031
|
height: size,
|
3038
3032
|
ref: ref,
|
3039
3033
|
xmlns: "http://www.w3.org/2000/svg",
|
3040
3034
|
viewBox: "0 0 16 16",
|
3041
3035
|
fill: "currentColor"
|
3042
|
-
}, rest), _path221 || (_path221 = /*#__PURE__*/
|
3036
|
+
}, rest), _path221 || (_path221 = /*#__PURE__*/React.createElement("path", {
|
3043
3037
|
d: "M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z"
|
3044
3038
|
})), children);
|
3045
3039
|
}
|
3046
|
-
return /*#__PURE__*/
|
3040
|
+
return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
|
3047
3041
|
width: size,
|
3048
3042
|
height: size,
|
3049
3043
|
ref: ref,
|
3050
3044
|
xmlns: "http://www.w3.org/2000/svg",
|
3051
3045
|
viewBox: "0 0 32 32",
|
3052
3046
|
fill: "currentColor"
|
3053
|
-
}, rest), _path222 || (_path222 = /*#__PURE__*/
|
3047
|
+
}, rest), _path222 || (_path222 = /*#__PURE__*/React.createElement("path", {
|
3054
3048
|
d: "M22 16L12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z"
|
3055
3049
|
})), children);
|
3056
3050
|
});
|