diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/product_selector/ingestion_selector.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/product_selector/ingestion_selector.tsx index 070d28ecd9877..feed2d6b20a6f 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/product_selector/ingestion_selector.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/product_selector/ingestion_selector.tsx @@ -32,8 +32,6 @@ import languageClientsLogo from '../../../../assets/images/search_language_clien import { IngestionCard } from '../../../enterprise_search_content/components/shared/ingestion_card/ingestion_card'; import { NEW_INDEX_SELECT_CONNECTOR_PATH } from '../../../enterprise_search_content/routes'; -import { ConnectorIcon } from '../../../shared/icons/connector'; - import { GithubIcon } from '../../../shared/icons/github_icon'; import { KibanaLogic } from '../../../shared/kibana'; @@ -111,7 +109,7 @@ export const IngestionSelector: React.FC = () => { defaultMessage: 'Create a connector', } )} - buttonIcon={ConnectorIcon} + buttonIcon="plugs" description={i18n.translate( 'xpack.enterpriseSearch.ingestSelector.method.connectors.description', { diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/icons/connector.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/icons/connector.tsx deleted file mode 100644 index 612a759b46c17..0000000000000 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/icons/connector.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; - -export const ConnectorIcon = () => { - return ( - - - - - - - - - - - - ); -};