react-responsive-animate-navbar

1.1.8 • Public • Published

react-responsive-animate-navbar (Example)

just a simple, flexible & completely customisable responsive navigation bar component.

NPM JavaScript Style Guide

Desktop Demo:

Demo

Responsive Demo:

Demo

Install

npm install --save react-responsive-animate-navbar

Usage

import React from "react";
import ReactNavbar from "react-responsive-animate-navbar";
 
class Example extends Component {
  render() {
    return (
      <ReactNavbar
        color="rgb(25, 25, 25)"
        logo="https://svgshare.com/i/KHh.svg"
        menu={[
          { name: "HOME", to: "/" },
          { name: "ARTICLES", to: "/articles" },
          { name: "ABOUT ME", to: "/about" },
          { name: "CONTACT", to: "/contact" },
        ]}
        social={[
          {
            name: "Linkedin",
            url: "https://www.linkedin.com/in/nazeh-taha/",
            icon: ["fab", "linkedin-in"],
          },
          {
            name: "Facebook",
            url: "https://www.facebook.com/nazeh200/",
            icon: ["fab", "facebook-f"],
          },
          {
            name: "Instagram",
            url: "https://www.instagram.com/nazeh_taha/",
            icon: ["fab", "instagram"],
          },
          {
            name: "Twitter",
            url: "http://nazehtaha.herokuapp.com/",
            icon: ["fab", "twitter"],
          },
        ]}
      />
    );
  }
}

Props

Property Type Default Description
color string "rgb(25, 25, 25)" The Background of the navbar
logo string "https://svgshare.com/i/KHh.svg" the SVG logo url.
menu array like the example the route url.
social array like the example the icons for social links.

License

MIT © Nazeh-Taha

Package Sidebar

Install

npm i react-responsive-animate-navbar

Weekly Downloads

16

Version

1.1.8

License

MIT

Unpacked Size

2.74 MB

Total Files

4

Last publish

Collaborators

  • nazeh-taha