1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Introduce reusable horizontal line

Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-10-13 12:07:54 +03:00
parent 145958364a
commit dfaf90a39f
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,5 @@
.horizontalLine {
height: 1px;
border-top: thin solid var(--hrColor);
margin-top: 40px;
}

View File

@ -0,0 +1,9 @@
/**
* 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 = () => <hr className={styles.horizontalLine} />;