@ino-labs/ino-icons
Version:
A collection of icons for Web
38 lines (30 loc) • 1.15 kB
Markdown
# INO icons
<!-- BEGIN_LOGO -->
<img src="/.github/logo.svg" width="128" align="right" />
<!-- END_LOGO -->
<!-- BEGIN_OVERVIEW -->
INO icons: Search, edit and download high-quality icons made in Figma. Customize easily and download quickly and efficiently!
- Over 200 free icons and counting
- Created in 24px by 24px
- Made entirely in Figma
- Customize the SVG for download or use Font Icons
Find out more on our website [inoicons.com](https://inoicons.com).
<!-- END_OVERVIEW -->
## Web
Get the icon font assets [here](https://github.com/ino-labs/ino-icons/releases/).
- **It's very simple to use** – You just need to call the css and use the respective class in the tag as in the example below using `<i/>`:
```html
<html>
<head>
<script src="https://unpkg.com/@ino-labs/ino-icons@1.0.3"></script>
</head>
<body>
<i class="ino ino-heart"></i>
<i class="ino ino-login" style="color: red"></i>
<i class="ino ino-mail"></i>
<i class="ino">activity</i> <!-- ligature -->
<i class="ino">adjustments-horizontal</i> <!-- ligature -->
</body>
</html>
```