leaf-ui

0.56.0 • Public • Published

🍃 Leaf-UI

A react component library for web, native and amp built using styled-components

[WARNING: This is a work in progress, API is subject to change]

Installation

npm install -S leaf-ui

Usage

Wrap your App component with ThemeProvider and pass it the leaf-ui theme (or override it with custom a theme)

// index.js
import React from 'react';
import ReactDOM from 'react-dom';
import { ThemeProvider } from 'styled-components';
import leafUiTheme, { BaseStyles } from 'leaf-ui/theme';
import App from './App';
 
ReactDOM.render(
  <ThemeProvider theme={leafUiTheme}>
    <BaseStyles/>
    <App />
  </ThemeProvider>,
  document.getElementById('root'),
);

Import and use the components in your App.js

// App.js
import React from 'react';
import Button from 'leaf-ui/Button';
 
// for commonjs use,
// import Button from 'leaf-ui/cjs/Button';
 
const App = () => (
  <Button>
    Leaf-UI
  </Button>
);
 
export default App;

Supported Platforms

  • web
  • native
  • amp

Contribute

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to leaf-ui.

Setup

Follow this quick setup guide to get leaf-ui working on your local machine.

Package Sidebar

Install

npm i leaf-ui

Weekly Downloads

20

Version

0.56.0

License

MIT

Unpacked Size

724 kB

Total Files

427

Last publish

Collaborators

  • lakshya.ranganath