You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
385 B
25 lines
385 B
import styled from 'styled-components'
|
|
import Link from "next/link"
|
|
|
|
const MenuLine = styled.div`
|
|
width: 2rem;
|
|
height: 2px;
|
|
border-radius: 2px;
|
|
background-color: var(--fg);
|
|
&:not(:last-child) {
|
|
margin-bottom: .4rem;
|
|
}
|
|
}
|
|
`
|
|
|
|
const Menu = () => {
|
|
return (
|
|
<div className="burger-container">
|
|
<MenuLine />
|
|
<MenuLine />
|
|
<MenuLine />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Menu
|
|
|