Skip to content

Latest commit

 

History

History
78 lines (64 loc) · 4.75 KB

README.md

File metadata and controls

78 lines (64 loc) · 4.75 KB

a

🚀 Blazing fast react Ui library with Hooks 🚀

Status Badges

Build Status GitHub license npm version Netlify Status Dependencies All Contributors GitHub stars GitHub forks Storybook Maintainability

Installation

npm install zapify-ui

Basic Usage

In the following example, you can see how to import ZapBar component

With default Props

import React from 'react';
import ReactDOM from 'react-dom';
import {ZapBar} from 'zapify-ui';

ReactDOM.render(
  <ZapBar />,
  document.getElementById('app')
);

with custom Props

import React from 'react';
import ReactDOM from 'react-dom';
import {ZapBar} from 'zapify-ui';
ReactDOM.render(
    <ZapBar
      color="#f0f0f0"
      linkColor="#692478"
      links={[
        { name: "Link 1", url: "www.piyushmehta.com" },
        { name: "Link 2", url: "www.piyushmehta.com" }
      ]}
      logoColor="#be1e6b"
      title="Brand Name"
    />,
  document.getElementById('app')
);

Contributing

You are more than welcome to make contributions to the project! See the CONTRIBUTING.md.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Piyush Mehta
Piyush Mehta

💻
Tilak
Tilak

💻 🎨
Vinay Biradar
Vinay Biradar

💻
Meer Sawood
Meer Sawood

📓
harshraj24
harshraj24

🎨

License

MIT