@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
55 lines (37 loc) • 1.73 kB
Markdown
"center">
<a href="https://uiastra.com" target="_blank">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/uiastra/astraicons/HEAD/.github/dark.jpg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/uiastra/astraicons/HEAD/.github/light.jpg">
<img alt="AstraIcons" style="max-width: 100%" src="https://raw.githubusercontent.com/uiastra/astraicons/HEAD/.github/light.jpg">
</picture>
</a>
</p>
Begin by installing `@astraicons/react` from npm:
```sh
npm install @astraicons/react
```
Then import each icon individually as a React component:
```js
import { GlobalIcon } from "@astraicons/react/linear";
function MyComponent() {
return (
<div>
<GlobalIcon className="size-6 text-blue-500" />
<p>...</p>
</div>
);
}
```
The 24x24 linear icons can be imported from `@astraicons/react/linear`, the 24x24 bold icons from `@astraicons/react/bold`, and the 24x24 brand icons from `@astraicons/react/brand`.
Icons are named using upper camel case and always end with `Icon`.
[ ](https://unpkg.com/browse/@astraicons/react/linear/)
While we welcome contributions to enhance the project, our current focus is on resolving issues like incorrect TypeScript types or improperly exported icons.
**Please note that we are not accepting contributions for new icons.**
This project uses parts from the [HeroIcons](https://github.com/tailwindlabs/heroicons) library from [TailwindLabs](https://github.com/tailwindlabs).
This library is released under the MIT license.
<p align=