# Beincom ui

Visit [https://beincom-web-ui.vercel.app/](https://beincom-web-ui.vercel.app/).

---

## Documentation

All ui are available as individual React components.

Install Beincom UI from npm:

```bash
npm install @beincom/web-ui
```

In order for the styles to be applied correctly to the components, you will also need to ensure that @beincom/web-ui is included in the content field of your tailwind.config.js file:

```js
module.exports = {
    content: [
        // ...
        './node_modules/@beincom/web-ui/dist/**/*.{js,jsx,ts,tsx}',
    ],
    // ...
}
```

global.css

```js
import '@beincom/web-ui/styles.css'
```
