Feature/hamburger menu (#540)

* Setup Mobile Menu Sidebar

* Setup Basic Mobile Menu Items Styling

* Implement full width styling for mobile devices

* Cleanup

Co-authored-by: Nine <at059214@Abdurahmans-MacBook-Pro.local>
This commit is contained in:
Nine
2021-11-25 19:09:21 +01:00
committed by GitHub
parent a01568bc3a
commit 82cb719ad6
10 changed files with 123 additions and 17 deletions

21
components/icons/Menu.tsx Normal file
View File

@@ -0,0 +1,21 @@
const Menu = ({ ...props }) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
{...props}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M4 6h16M4 12h16m-7 6h7"
/>
</svg>
)
}
export default Menu