brandelli
Version:
react components library in typescript
59 lines (40 loc) • 1.52 kB
Markdown
<p align="center">
<img width="200" src="http://images.treccani.it/enc/media/share/images/orig/system/galleries/Iconografico/Esercizio/146160.gif">
</p>
<h1 align="center">Brandelli</h1>
<div align="center">
React componet library for higly customizables projects.
</div>
<br /><br />
**Brandelli** in italian means shreds, like the ones of Arlecchino's costume. (Reference [here](https://en.wikipedia.org/wiki/Harlequin) if you don't know what we are talking about).
We structured and pampered every component following these simple principles:
1. **Zero impact** – try to create as less components as possible
2. **Recycle** – try to code so you will have to write as less as possible in future
3. **Separate** – try to identify and define each component function
Add to your project with
```bash
yarn add brandelli
npm install --save brandelli
```
Styling is powered by styling components allowing you easy customization.
Example:
```javascript
import styled from 'styled-components';
import {Button} from 'brandelli';
const TomatoButton = styled(Button)`
color: tomato;
border-color: tomato;
`;
```
Stuff we have to implent to pimp this butterfly
- [ ] Default theming
- [ ] Theme ovveriding options
- [gestalt](https://github.com/pinterest/gestalt)
- [ant-design](https://github.com/ant-design/ant-design)
- [bulma components](https://github.com/couds/react-bulma-components)