parent
c7b0b23eed
commit
e1b19ae1fa
@ -0,0 +1,22 @@ |
|||||||
|
import styled from 'styled-components' |
||||||
|
import Link from "next/link" |
||||||
|
|
||||||
|
const MenuLine = styled.div` |
||||||
|
display: block; |
||||||
|
width: 15rem; |
||||||
|
height: 5px; |
||||||
|
border-radius: 4px; |
||||||
|
background-color: var(--fg); |
||||||
|
` |
||||||
|
|
||||||
|
const Menu = () => { |
||||||
|
return ( |
||||||
|
<div className="burger-container"> |
||||||
|
<MenuLine /> |
||||||
|
<MenuLine /> |
||||||
|
<MenuLine /> |
||||||
|
</div> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default Menu |
Loading…
Reference in new issue