Go to file
dependabot[bot] 433eab8e90
build(deps): bump tar from 6.2.0 to 6.2.1 in /examples/react-native (#427)
Bumps [tar](https://github.com/isaacs/node-tar) from 6.2.0 to 6.2.1.
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](https://github.com/isaacs/node-tar/compare/v6.2.0...v6.2.1)

---
updated-dependencies:
- dependency-name: tar
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-11 18:32:38 +02:00
.github Update all dependencies (#389) 2023-12-17 15:20:25 +01:00
.vscode Update all dependencies (#389) 2023-12-17 15:20:25 +01:00
bin Fix CSS class names for solid icons (#375) 2023-11-09 19:58:13 +01:00
css Update build artifacts 2024-04-06 06:52:33 +00:00
docs Naming convention & few website enhancements 2023-10-29 14:33:17 +01:00
examples build(deps): bump tar from 6.2.0 to 6.2.1 in /examples/react-native (#427) 2024-04-11 18:32:38 +02:00
iconoir.com add: 8 new icons 2024-04-06 08:47:22 +02:00
icons fix: remove clip-path 2024-04-06 08:51:50 +02:00
packages Release Version v7.6.0 2024-04-06 06:55:16 +00:00
.eslintignore chore: fix lint setup 2023-11-21 22:38:48 +01:00
.eslintrc.cjs chore: fix lint setup 2023-11-21 22:38:48 +01:00
.gitignore Split variants (#368) 2023-10-29 00:33:17 +02:00
.prettierignore Split variants (#368) 2023-10-29 00:33:17 +02:00
.prettierrc.json Split variants (#368) 2023-10-29 00:33:17 +02:00
analysis_options.yaml feat(flutter): create package (#173) 2022-07-05 10:24:49 -04:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2021-05-23 09:55:20 +02:00
CONTRIBUTING.md chore: rename master to main 2022-08-28 14:16:41 -04:00
FUNDING.yml Update FUNDING.yml 2022-07-18 09:34:29 +02:00
LICENSE Create LICENSE 2021-05-06 10:29:07 +02:00
NAMING_CONVENTION.md Twitter -> X 2023-10-29 14:39:22 +01:00
package.json Release Version v7.6.0 2024-04-06 06:55:16 +00:00
pnpm-lock.yaml build(deps-dev): bump vite from 5.0.10 to 5.0.13 (#424) 2024-04-03 19:15:47 +02:00
pnpm-workspace.yaml Add react-native example 2023-10-29 01:41:05 +02:00
README.md fix: removed bottom license url from README 2024-02-20 11:13:04 +01:00

Iconoir

Version Project Stars React Library License Discord

What is Iconoir?

Iconoir is an open-source library with 1500+ unique SVG icons, designed on a 24x24 pixels grid.

Browse at iconoir.com →

Basic Usage

You can download any icon of the pack directly from https://iconoir.com or get them from this repository.

The icons are also available via the iconoir NPM package:

npm Yarn pnpm Bun
npm i iconoir yarn add iconoir pnpm add iconoir bun add iconoir

Example usage:

import Iconoir from 'iconoir/icons/iconoir.svg';

React

A React library is available under the name iconoir-react.

For more details, see the package README.

React Native

A React Native library is available under the name iconoir-react-native.

For more details, see the package README.

Vue

A Vue library is available under the name @iconoir/vue.

For more details, see the package README.

Flutter

A Flutter library is available under the name iconoir_flutter.

For more details, see the package README.

Framer

Iconoir is happily part of Framer.

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

Import the CSS file:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css"
/>

Here is an example in HTML:

<i class="iconoir-hand-brake"></i>

The class must always be "iconoir-" and then the name of the icon. You can find the names of the icons here.

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).

Figma

The library is available in the Figma community here.

Swift Package

To add Iconoir-swift to your Xcode project, follow these steps:

  1. In Xcode, open your project and navigate to File > Swift Packages > Add Package Dependency...
  2. Enter the repository URL: https://github.com/iconoir-icons/iconoir-swift.git
  3. Choose the branch or version you want to add, and click Next.
  4. Select the target where you want to use the package, then click Finish.

UIKit

import UIKit
import Iconoir

let imageView = UIImageView(image: Iconoir.bell.asUIImage)

SwiftUI

import SwiftUI
import Iconoir

struct ContentView: View {
    var body: some View {
        Iconoir.bell.asImage
            .foregroundColor(.blue)
            .font(.system(size: 24))
    }
}

License

MIT License.