1.0.5 • Published 5 years ago

react-pop-ui v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

pop-ui

Instalation

$ npm install react-pop-ui

Components

Navbar

Import

import Navbar from "react-pop-ui";

Usage

{
  /* Pass colors as Navbar attributes */
}
<Navbar bg="black" fg="white" hover="red">
  {/* A child with a 'brand=true' attribute will place 
    the element in the brand position on the navbar */}
  <a href="#home" brand="true">
    Website Brand
  </a>
  {/* All other children are treated as navbar links. 
    These links can be <a> tags or any variation of 
    the sort (i.e. <Link> tags from react-router) */}
  <a href="#home">Home</a>
  <a href="#projects">Projects</a>
  <a href="#blog">Blog</a>
  <a href="#about">About</a>
  <a href="#contact">Contact</a>
</Navbar>;
1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago