-
- In full screen mode, press ESC to exit.
-
-
-
-`;
diff --git a/src/plugins/kibana_react/public/exit_full_screen_button/_exit_full_screen_button.scss b/src/plugins/kibana_react/public/exit_full_screen_button/_exit_full_screen_button.scss
deleted file mode 100644
index 7548bd0c0db5f..0000000000000
--- a/src/plugins/kibana_react/public/exit_full_screen_button/_exit_full_screen_button.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
- * 1. override the z-index: 1 applied to all non-eui elements that are in :focus via kui
- * - see packages/kbn-ui-framework/src/global_styling/reset/_reset.scss
- */
-
-.dshExitFullScreenButton {
- @include euiBottomShadow;
-
- left: $euiSizeS;
- bottom: $euiSizeS;
- position: fixed;
- display: block;
- padding: $euiSizeXS $euiSizeS;
- border: none;
- background: none;
- z-index: 5;
- background: $euiColorFullShade;
- border-radius: $euiBorderRadius;
- text-align: left;
-
- &:hover {
- background: $euiColorFullShade;
-
- .dshExitFullScreenButton__icon {
- color: $euiColorEmptyShade;
- }
- }
-}
-
-.dshExitFullScreenButton__text {
- line-height: 1.2;
- color: makeHighContrastColor($euiColorMediumShade, $euiColorFullShade);
-}
-
-.dshExitFullScreenButton__icon {
- color: makeHighContrastColor($euiColorMediumShade, $euiColorFullShade);
-}
diff --git a/src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.test.tsx b/src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.test.tsx
deleted file mode 100644
index 8201133b0d2d6..0000000000000
--- a/src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.test.tsx
+++ /dev/null
@@ -1,76 +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 React from 'react';
-import { mount, ReactWrapper } from 'enzyme';
-import { ExitFullScreenButton } from './exit_full_screen_button';
-import { keys } from '@elastic/eui';
-import type { ChromeStart } from '@kbn/core/public';
-
-const MockChrome = {
- setIsVisible: jest.fn(),
-} as unknown as ChromeStart;
-
-describe('