@binder/ui
v1.0.42
Published
[](https://binder-ui.netlify.com/) [](https://www.npmjs.com/package/@binder/ui)
Downloads
138
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! 🤓
