Render a responsive menu
npm install @firstfeb/menubash
$ npm install @firstfeb/menu
`
Example
`js
import Menu from '@firstfeb/menu';
// Set items
let menuItems = [{
title: "Home",
icon: , // Use fill="currentColor" to make the svg blend in better
url: "/"
},{
title: "Help",
pushDown: true, // Pushes this item down using margin-top: auto
icon: ,
url: "/help"
},{
title: "Logout",
icon: ,
url: "/logout"
}];
// Render
``