Go to file
2023-09-26 00:21:30 +02:00
.github chore: switch to pnpm v8 and consolidate workflow setup (#353) 2023-09-24 17:14:43 +02:00
assets fix: 2nd cover update 2022-09-12 14:11:59 +02:00
bin chore: update listr2 (#356) 2023-09-24 21:53:53 +02:00
css Update build artifacts 2023-08-02 11:56:13 +00:00
docs feat: add iconoir.com and React contexts (#185) 2022-08-28 14:12:09 -04:00
iconoir.com chore: active nav item state, fix footer on mobile (#359) 2023-09-26 00:21:30 +02:00
icons add: 12 new icons 2023-08-02 14:54:55 +03:00
packages chore: update svgr and adapt iconoir-react-native (#355) 2023-09-24 21:13:56 +02:00
.eslintrc.cjs chore: update website dependencies (#357) 2023-09-25 00:31:45 +02:00
.gitignore Introduce iconoir-react-native package, unify build script 2021-06-15 10:26:23 +02:00
.prettierrc.json Introduce iconoir-react-native package, unify build script 2021-06-15 10:26:23 +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
constants.js chore: update svgr and adapt iconoir-react-native (#355) 2023-09-24 21:13:56 +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
meta-data.json Update build artifacts 2023-08-02 11:56:13 +00:00
package.json chore: update listr2 (#356) 2023-09-24 21:53:53 +02:00
pnpm-lock.yaml chore: active nav item state, fix footer on mobile (#359) 2023-09-26 00:21:30 +02:00
pnpm-workspace.yaml feat: add iconoir.com and React contexts (#185) 2022-08-28 14:12:09 -04:00
README.md feat: add vue icons (#294) 2023-05-03 08:19:37 -04:00

Iconoir

What is Iconoir?

Iconoir is an open-source library with 1300+ unique SVG icons, designed on a 24x24 pixels grid. No premium icons, no email sign-up, no newsletters.

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.

Additionally, the icons are available via the iconoir NPM package:

yarn add iconoir
# or
npm i iconoir

Example usage:

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

React

A React library is available to install under the name iconoir-react. For more details, see the package README.

React Native

A React Native library is available to install under the name iconoir-react-native. For more details, see the package README.

Vue

A Vue library is available to install under the name @iconoir/vue. For more details, see the package README.

Flutter

A Flutter library is available to install under the name iconoir_flutter. For more details, see the package README.

Framer

Iconoir is happily part of Framer 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

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