GitHunt

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

๐Ÿ““

License

MIT

zapify-ui/zapify | GitHunt