Portfolio website written with Next.js
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.
 
 
 
wychdev-nextjs/components/burgermenu.tsx

22 lines
352 B

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