Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bdbose/responsive-navbar-react

responsive-navbar-react
https://github.com/bdbose/responsive-navbar-react

css javascript react react-library

Last synced: about 1 month ago
JSON representation

responsive-navbar-react

Awesome Lists containing this project

README

        

# responsive-navbar-react

[![NPM](https://img.shields.io/npm/v/responsive-navbar-react.svg)](https://www.npmjs.com/package/responsive-navbar-react) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save responsive-navbar-react
```

## Example

## Usage

```jsx
import React from 'react'

import { Navbar } from 'responsive-navbar-react'
import 'responsive-navbar-react/dist/index.css'

const Home = () => {
const props = {
items: [
{
text: 'Home',
link: '/'
},
{
text: 'Doc',
link: '#docs'
},
{
text: 'Custom',
link: '#custom-bar'
},
{
text: 'Contact',
link: '#contact'
}
],
logo: {
text: 'Responsive Navbar React'
},
style: {
barStyles: {
background: '#444'
},
sidebarStyles: {
background: '#222',
buttonColor: 'white'
}
}
}
return
}
```

More Documentation is at : https://bdbose.github.io/responsive-navbar-react

## License

MIT © [bdbose](https://github.com/bdbose)