Create a separater component to separate components
This commit is contained in:
parent
e46def6967
commit
a87e591c50
2 changed files with 26 additions and 0 deletions
13
src/components/separater/Separater.jsx
Normal file
13
src/components/separater/Separater.jsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import React from "react";
|
||||
|
||||
import styles from "./Separater.module.css";
|
||||
|
||||
function Separator({ width = "50%", thickness = "2px" }) {
|
||||
return (
|
||||
<div className={styles.separatorContainer}>
|
||||
<div className={styles.separator} style={{ width, height: thickness }}></div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Separator;
|
||||
Loading…
Add table
Add a link
Reference in a new issue