0.1.5 • Published 5 months ago

smartnav v0.1.5

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

smartnav

Installation

Install smartnav with npm

  npm i smartnav
import { SmartxNav } from 'smartnav';
import { BrowserRouter } from 'react-router-dom';

const LINKS = [{
        display: "MyDemo",
        url: "/1",
    },
    {
        display: "Products",
        url: "/2",
    },
    {
        display: "Finals",
        url: "/3",
    }]
export const Example = () => 
        <>
            <BrowserRouter>
                <SmartxNav 
                    bg='#0b4a91' 
                    nav = LINKS
                />
            </BrowserRouter>
        </>

Props

PropsTypesDescription
bgStrBackground colour for navbar with '#xxxxx'
fontStrString of React native Fonts
navObject ArrayRequires display and url fields