Skip to content

Commit

Permalink
[#4] feat: Divider component added
Browse files Browse the repository at this point in the history
  • Loading branch information
Damla Koksal committed Nov 23, 2020
1 parent de53808 commit 45cde80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/divider/divider.component.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import "./divider.styles.scss";

export default function Divider() {
return <div className="divider-container"></div>;
}
5 changes: 5 additions & 0 deletions components/divider/divider.styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.divider-container {
width: 100%;
height: 150px;
background-color: red;
}

0 comments on commit 45cde80

Please sign in to comment.