iconoir/README.md

90 lines
3 KiB
Markdown
Raw Normal View History

<div align="center">
2022-09-12 14:05:17 +02:00
<img src="assets/cover.png" alt="Iconoir" />
</div>
2021-05-04 12:55:15 +02:00
<div align="center">
2022-04-25 11:49:58 +02:00
Iconoir is an open-source library with 1000+ unique SVG icons, designed on a 24x24 pixels grid. No premium icons, no email sign-up, no newsletters.
</div>
2021-05-04 12:55:15 +02:00
<div align="center">
2021-05-04 12:55:15 +02:00
<a href="https://iconoir.com"><strong>Browse at iconoir.com &rarr;</strong></a>
</div>
2021-05-04 12:55:15 +02:00
<div align="center">
2021-07-05 17:46:14 +02:00
<a href="https://github.com/lucaburgio/iconoir/releases">
<img src="https://img.shields.io/github/v/release/lucaburgio/iconoir?style=flat-square" alt="Version" />
2021-06-14 11:41:47 +02:00
</a>
<a href="https://github.com/lucaburgio/iconoir">
<img src="https://img.shields.io/github/stars/lucaburgio/iconoir?style=flat-square" alt="Project Stars" />
2021-06-14 11:41:47 +02:00
</a>
2022-04-02 11:17:51 +02:00
<a href="https://www.npmjs.com/package/iconoir-react">
<img src="https://img.shields.io/npm/dm/iconoir-react?color=98E8F3&label=react&style=flat-square" alt="React Library" />
2022-04-02 11:17:51 +02:00
</a>
<a href="https://github.com/lucaburgio/iconoir/blob/main/LICENSE">
<img src="https://img.shields.io/github/license/lucaburgio/iconoir?style=flat-square" alt="License" />
2021-06-14 11:41:47 +02:00
</a>
2023-03-05 10:35:05 +01:00
<a href="https://discord.gg/txXcKCAmKW">
<img src="https://img.shields.io/discord/998909400234348615?color=5865f2&label=Discord&style=flat-square" alt="Discord" />
</a>
</div>
2021-05-04 12:55:15 +02:00
2023-03-05 10:35:05 +01:00
2021-05-04 12:55:15 +02:00
## Basic Usage
You can download any icon of the pack directly from https://iconoir.com or get them from this repository.
Additionally, the icons are available via the `iconoir` NPM package:
```bash
yarn add iconoir
# or
npm i iconoir
```
Example usage:
```js
import Iconoir from 'iconoir/icons/iconoir.svg'
```
2021-05-04 12:55:15 +02:00
2021-06-27 12:26:06 +02:00
## React
A React library is available to install under the name `iconoir-react`. For more details, see the package [README](./packages/iconoir-react).
## React Native
A React Native library is available to install under the name `iconoir-react-native`. For more details, see the package [README](./packages/iconoir-react-native).
2022-07-05 18:26:51 +02:00
## Flutter
A Flutter library is available to install under the name `iconoir_flutter`. For more details, see the package [README](./packages/iconoir-flutter).
2021-06-27 12:26:06 +02:00
## Framer
Iconoir is happily part of [Framer](https://framer.com) now. To start using the icons: On the top menu, `Insert` > `Graphics` > `Iconoir`.
You can switch between icons from the right sidebar in the editor.
## CSS
2021-05-16 09:58:53 +02:00
Import the CSS File:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css">
```
2021-05-16 09:58:53 +02:00
Here is an example in HTML:
2021-05-04 12:55:15 +02:00
```html
<i class="iconoir-hand-brake"></i>
2021-05-16 09:58:53 +02:00
```
2021-06-26 16:44:02 +02:00
The class must always be "iconoir-" and then the name of the icon. You can find the names of the icons [here](https://iconoir.com).
The icons are `display: inline-block` and default to the current font size. You can control this
by adjusting the `::before` styles of the element (which is where the icons are added as a mask).
2021-06-06 08:19:33 +02:00
## Figma
The library is available in the Figma community [here](https://www.figma.com/community/file/983248991460488027/Iconoir-Pack).
2021-05-04 12:55:15 +02:00
## License
2021-05-06 14:22:47 +02:00
MIT License