sm-navbar
v1.0.1
Published
This is the package for navbar.
Downloads
3
Readme
sm-navbar
This package provides a customizable navbar component for React applications, allowing easy integration of navigation bars with various options.
Installation
You can install sm-navbar
via npm or yarn:
npm install sm-navbar
# or
yarn add sm-navbar
Usage
import React from "react";
import Navbar from "sm-navbar";
import jsonData from "./path_to_your_json_data.json";
import logo from "./path_to_your_logo.png";
const MyComponent = () => {
return (
<Navbar jsondata={jsonData} logo={logo} />
);
}
export default MyComponent;
Props
jsondata
: JSON object containing the configuration for the navbar component.logo
: Optional logo image URL to be displayed in the navbar.
Example JSON Data
{
"backgroundColor": "bg-dark",
"colorTheme": "dark",
"navbarName": "MyNavbar",
"navbarHref": "#",
"navbarLinks": [
{
"link": "Link 1",
"linkHref": "#"
},
{
"link": "Link 2",
"linkHref": "#"
},
...
],
"dropdownName": "Dropdown",
"dropdownItems": [
{
"item": "Item 1",
"itemHref": "#"
},
{
"item": "Item 2",
"itemHref": "#"
},
...
],
"searchOption": "true"
}
License
This project is licensed under the ISC License. See the LICENSE file below :
ISC License
Copyright (c) 2024, Shivam Makwana
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.