All Projects → Make-Lemonade → iconicicons

Make-Lemonade / iconicicons

Licence: other
Free “do wtf you want with” pixel-perfect icons.

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects

Projects that are alternatives of or similar to iconicicons

Paymentfont
A sleek webfont featuring your favourite payment methods
Stars: ✭ 1,586 (+456.49%)
Mutual labels:  icon-pack
Flat Color Icons
Free Flat Color Icons
Stars: ✭ 2,014 (+606.67%)
Mutual labels:  icon-pack
neu
Free icon set to the world
Stars: ✭ 26 (-90.88%)
Mutual labels:  icon-pack
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (-51.23%)
Mutual labels:  icon-pack
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (+642.46%)
Mutual labels:  icon-pack
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (-34.04%)
Mutual labels:  icon-pack
Plane Icon Theme
Is a modern icon theme for gnome linux versions.
Stars: ✭ 117 (-58.95%)
Mutual labels:  icon-pack
akar-icons-app
The homepage repo for Akar Icons. A perfectly rounded icon library made for designers, developers, and pretty much everyone.
Stars: ✭ 59 (-79.3%)
Mutual labels:  icon-pack
Os Folder Icons
A collection of custom folder icons for (Mac, Linux and Windows)
Stars: ✭ 161 (-43.51%)
Mutual labels:  icon-pack
Ionicons
Premium hand-crafted icons built by Ionic, for Ionic apps and web apps everywhere 🌎
Stars: ✭ 15,802 (+5444.56%)
Mutual labels:  icon-pack
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+536.14%)
Mutual labels:  icon-pack
Terminal Icons
Beautiful icons for your favourite terminal apps like Hyper and iTerm2
Stars: ✭ 149 (-47.72%)
Mutual labels:  icon-pack
Iconshowcase Dashboard
A full-of-features, easy-to-customize, free and open source, Material Design dashboard for icon packs.
Stars: ✭ 197 (-30.88%)
Mutual labels:  icon-pack
Android
Delta Icon Pack for Android
Stars: ✭ 137 (-51.93%)
Mutual labels:  icon-pack
pixeden-stroke-7-icon
A series of iOS 7 inspired vector icons in a custom @font-face icon font that can be styled dynamically using CSS.
Stars: ✭ 81 (-71.58%)
Mutual labels:  icon-pack
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+4142.11%)
Mutual labels:  icon-pack
Akar Icons
A perfectly rounded icon library made for designers, developers, and pretty much everyone.
Stars: ✭ 184 (-35.44%)
Mutual labels:  icon-pack
s60-icon-pack
Nokia Series60 Icon Pack For Android
Stars: ✭ 38 (-86.67%)
Mutual labels:  icon-pack
phosphor-android
An elegant and sophisticated line icon pack to declutter your home screen.
Stars: ✭ 27 (-90.53%)
Mutual labels:  icon-pack
React Native Vector Icons
Customizable Icons for React Native with support for image source and full styling.
Stars: ✭ 15,414 (+5308.42%)
Mutual labels:  icon-pack

Iconic Icons

Iconic is a free “do wtf you want with” set of pixel-perfect icons.
Available as basic SVG icons and via first-party React and Vue libraries.

Browse at iconic.app →

Basic Usage

The quickest way to use these icons is to simply copy the source for the icon you need from iconic.app and inline it directly into your HTML:

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M13.75 6.75L19.25 12L13.75 17.25" stroke="#141414" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
    <path d="M19 12H4.75" stroke="#141414" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>

React

First, install @iconicicons/react from npm:

npm install @iconicicons/react

Now each icon can be imported individually as a React component:

import { BatteryIcon } from '@iconicicons/react'

function MyComponent() {
  return (
    <div>
      <BatteryIcon />
      <p>...</p>
    </div>
  )
}

Icons use an upper camel case naming convention and are always suffixed with the word Icon.

Vue

First, install @iconicicons/vue or @iconicicons/vue3 from npm:

npm install @iconicicons/vue // for Vue 2
npm install @iconicicons/vue3 // for Vue 3

Now each icon can be imported individually as a Vue component:

<template>
  <div>
    <BatteryIcon />
    <p>...</p>
  </div>
</template>

<script>
import { BatteryIcon } from '@iconicicons/vue'

export default {
  components: { BatteryIcon }
}
</script>

Icons use an upper camel case naming convention and are always suffixed with the word Icon.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].