<p align="center">
  <a href="https://ui.chicho.com/" rel="noopener" target="_blank"><img width="150" src="https://zltech.io/images/chicho-logo.png" alt="Chicho-UI logo"></a></p>
</p>

<h1 align="center">Chicho-UI</h1>


## Installation

[React](https://reactjs.org/) components that implement [Google's Material Design](https://material.io/design/introduction/).

**[mui@v5](https://mui.com/)**

```sh
// with npm
npm install @chicho-ui/material

// with yarn
yarn add @chicho-ui/material
```

## Usage

Here is a quick example to get you started, **it's all you need**:

```jsx
import ReactDOM from 'react-dom';
import Button from '@chicho-ui/material/Button';

function App() {
  return <Button variant="contained">Hello World</Button>;
}

ReactDOM.render(<App />, document.querySelector('#app'));
```