# MynaUI Icons React

Beautifully crafted open source icons from Myna UI.

## Install

```sh
npm i @mynaui/icons-react
```

or

```sh
bun i @mynaui/icons-react
```

or

```sh
yarn add @mynaui/icons-react
```

or download the package from [here](https://github.com/praveenjuge/mynaui-icons/releases).

## Usage

```jsx
import { Heart } from "@mynaui/icons-react";

const App = () => {
  return <Heart color="green" />;
};
```

### Props

| name     | type   | default      |
| -------- | ------ | ------------ |
| `size`   | Number | 24           |
| `stroke` | Number | 1.5          |
| `color`  | String | currentColor |

## License

[MIT License](https://github.com/praveenjuge/mynaui-icons/blob/master/LICENSE).
