zapify-ui
v1.0.4
Published
<p align="center"><img src="https://lh3.googleusercontent.com/jq_CHT41OENz4e7SMdLSdgHavhD5JKpJHYagvJyx4uqMgq24o63Fatt_iJViaBfjHzFTuMtlEq1fD_LMVhVMR9HV1LheXYgqADZMgLVSLybSFjB9q1o2m5Ei6RGFMJLeF5mE9nlrfMA6mXxpn0ExZYF0XeC5EsgVfeNC6QErCWEOFwmGEilfY8QAUR2-eHWgy
Downloads
7
Maintainers
Readme
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):