<p align="center">
  <a href="https://app.fogito.com" rel="noopener noreferrer nofollow" target="blank">
   <img width="200" src="https://app.fogito.com/assets/images/logos/logo.svg" alt="Fogito Core UI">
  </a>
</p>

<h1 align="center">Fogito Core UI</h1>

## ✨ Features

- 🌈 Enterprise-class UI designed for web applications.
- 📦 A set of high-quality React components out of the box.
- 🛡 Written in TypeScript with predictable static types.
- ⚙️ Whole package of design resources and development tools.

## 📦 Installation

```bash
npm install fogito-core-ui
```

## 🔨 Usage

```javascript
import { TextArea } from "fogito-core-ui";

const App = () => {
  const [text, setText] = React.useState("");
  return <TextArea value={text} onChange={(e) => setText(e.target.value)} />;
};
```

And add style link manually:

```html
<link rel="stylesheet" href="https://app.fogito.com/assets/css/style.min.css" />
```

### TypeScript

`fogito-core-ui` is written in TypeScript with complete definitions.

## 🤝 Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## 🌍 License

[ISC](https://www.isc.org/licenses/)
