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:
parent
145958364a
commit
dfaf90a39f
@ -0,0 +1,5 @@
|
||||
.horizontalLine {
|
||||
height: 1px;
|
||||
border-top: thin solid var(--hrColor);
|
||||
margin-top: 40px;
|
||||
}
|
||||
@ -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} />;
|
||||
Loading…
Reference in New Issue
Block a user