# @halcyonapps/davai-react

> React with Davai. Davai is a fully typed style system and accessible component library built on top of TailwindCSS.

Latest version **0.0.11** (published 2023-01-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install @halcyonapps/davai-react
pnpm add @halcyonapps/davai-react
yarn add @halcyonapps/davai-react
bun add @halcyonapps/davai-react
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.11 |
| Published | 2023-01-10 |
| First published | 2023-01-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | durkdotdev |
| Maintainers | halcyonapps |

## Links

- npm: https://www.npmjs.com/package/@halcyonapps/davai-react
- Repository: https://github.com/halcyonapps/davai
- Homepage: https://github.com/halcyonapps/davai#readme
- Issues: https://github.com/halcyonapps/davai/issues
- npm.io page: https://npm.io/package/@halcyonapps/davai-react

## Recent versions

- 0.0.11 (latest) — 2023-01-10
- 0.0.10 — 2023-01-10
- 0.0.9 — 2023-01-10
- 0.0.8 — 2023-01-09
- 0.0.7 — 2023-01-09
- 0.0.6 — 2023-01-08
- 0.0.5 — 2023-01-08
- 0.0.4 — 2023-01-08
- 0.0.3 — 2023-01-05
- 0.0.2 — 2023-01-05
- 0.0.1 — 2023-01-05

## README

# @halcyonapps/davai-react

Davai is a fully typed style system and accessible component library for React built on top of TailwindCSS.

## Documentation

[https://davai.style](https://davai.style)

## Install

Davai consists of multiple packages which can be imported individually. To install the full React suite, simply install the `@halcyonapps/davai-react` package:

```bash
npm install @halcyonapps/davai-react
# or
yarn add @halcyonapps/davai-react
```

## Getting Started

To use Davai, please do the following steps:

1. Add Davai's `node_modules` files and TailwindCSS present to your `tailwind.config.js`:

```js
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    // ...
    "../path/to/node_modules/@halcyonapps/**/*.js"
  ]
  // ...
  presets: [require("@halcyonapps/davai/tailwind.config")]
};
```

2. Now you may start using Davai's components:

```tsx
import { Box } from "@halcyonapps/davai-react";

const App = () => {
  return <Box bg="bg-blue-200" />;
};

export default App;
```

---
_Source: https://npm.io/package/@halcyonapps/davai-react · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
