diff --git a/src/components/inline_edit/inline_edit.styles.ts b/src/components/inline_edit/inline_edit.styles.ts deleted file mode 100644 index 61cc6824225..00000000000 --- a/src/components/inline_edit/inline_edit.styles.ts +++ /dev/null @@ -1,19 +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 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -import { css } from '@emotion/react'; -import { UseEuiTheme } from '../../services'; - -export const euiInlineEditStyles = ({ euiTheme }: UseEuiTheme) => { - return { - euiInlineEdit: css` - // Always start the object with the first key being the name of the component - color: ${euiTheme.colors.primaryText}; - `, - }; -};