@binder/ui
v1.0.42
Published
[![Storybook](https://cdn.jsdelivr.net/gh/storybookjs/brand@master/badge/badge-storybook.svg)](https://binder-ui.netlify.com/) [![npm version](https://badge.fury.io/js/%40binder%2Fui.svg)](https://www.npmjs.com/package/@binder/ui)
Downloads
137
Maintainers
Readme
binder-ui
📦 Install
npm i @binder/ui
yarn add @binder/ui
🔨 Usage
import {
ThemeProvider,
theme,
Button,
ButtonType,
SearchBar
} from "@binder/ui";
const App = () => (
<ThemeProvider theme={theme}>
<SearchBar />
<Button label="Press me!" buttonType={ButtonType.primary} />
</ThemeProvider>
);
⬆️ Development directions
- Clone this repo:
git clone https://github.com/marcelovicentegc/binder-ui.git
- cd into it:
cd binder-ui
- Install its dependencies (use npm):
npm i
- Run the application:
npm start
🤝 Contributing
- Create your own branch from
develop
- Make the changes you wish
- Write or rewrite the unit tests, if necessary
- Document what has been altered on storybook, if necessary
- Open a pull request pointing to
develop
- That's it! 🤓