From ffd4b13dcdf779d511ab81e726b8ba0cc1939532 Mon Sep 17 00:00:00 2001 From: Janne Savolainen Date: Fri, 14 Oct 2022 08:21:52 +0300 Subject: [PATCH] Revert "Introduce reusable horizontal line" This reverts commit 4d8c147fe0f1a14bd884f73cf345e7d3a28b954a. Signed-off-by: Janne Savolainen --- .../horizontal-line/horizontal-line.module.scss | 5 ----- .../+preferences/horizontal-line/horizontal-line.tsx | 9 --------- 2 files changed, 14 deletions(-) delete mode 100644 src/renderer/components/+preferences/horizontal-line/horizontal-line.module.scss delete mode 100644 src/renderer/components/+preferences/horizontal-line/horizontal-line.tsx diff --git a/src/renderer/components/+preferences/horizontal-line/horizontal-line.module.scss b/src/renderer/components/+preferences/horizontal-line/horizontal-line.module.scss deleted file mode 100644 index 58cac6e811..0000000000 --- a/src/renderer/components/+preferences/horizontal-line/horizontal-line.module.scss +++ /dev/null @@ -1,5 +0,0 @@ -.horizontalLine { - height: 1px; - border-top: thin solid var(--hrColor); - margin-top: 40px; -} diff --git a/src/renderer/components/+preferences/horizontal-line/horizontal-line.tsx b/src/renderer/components/+preferences/horizontal-line/horizontal-line.tsx deleted file mode 100644 index baebba59fe..0000000000 --- a/src/renderer/components/+preferences/horizontal-line/horizontal-line.tsx +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Copyright (c) OpenLens Authors. All rights reserved. - * Licensed under MIT License. See LICENSE in root directory for more information. - */ -import React from "react"; - -import styles from "./horizontal-line.module.scss"; - -export const HorizontalLine = () =>
;