1.0.4 • Published 4 years ago

react-styled-navbar v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

react-styled-navbar

A simple, responsive, customizable navbar made with react and styled-components.

NPM JavaScript Style Guide

Install

npm install --save react-styled-navbar

Usage

import React from 'react'

import { Navbar, List, ListMenu } from 'react-styled-navbar'

const App = () => {
    return (
      <Navbar backgroundColor='#f1f1f1'>
        <List>
          <ListMenu fontSize='22px' hover='pink'>
            <a href='/' target='_blank'>item 1</a>
          </ListMenu>
          <ListMenu color='RoyalBlue'>
            <a href='/'>item 2</a>
          </ListMenu>
          <ListMenu color='RoyalBlue'>
            <a href='/'>item 3</a>
          </ListMenu>
          <ListMenu color='RoyalBlue'>
            <a href='/'>item 4</a>
          </ListMenu>
        </List>
      </Navbar>
  )
}

Props coming soon ...

License

MIT © bobbyhalljr

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago