All Projects → feathericon → Feathericon

feathericon / Feathericon

Licence: mit
simply generic vector icon collection - including sketch file, svg files, and font files.

Projects that are alternatives of or similar to Feathericon

Vectorlogozone
3,000+ gorgeous SVG logos, perfect for your README or credits page
Stars: ✭ 239 (+34.27%)
Mutual labels:  vector, svg, icons, svg-icons
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+918.54%)
Mutual labels:  svg-sprites, svg, icons, svg-icons
Teenyicons
Tiny minimal 1px icons designed to fit in the smallest places.
Stars: ✭ 1,631 (+816.29%)
Mutual labels:  svg-sprites, svg, npm-package, icons
Svgsprit.es
Public endpoint to generate SVG Sprites
Stars: ✭ 73 (-58.99%)
Mutual labels:  svg-sprites, svg, icons, svg-icons
File Icon Vectors
A collection of file type icons in SVG format
Stars: ✭ 171 (-3.93%)
Mutual labels:  svg, npm-package, icons, svg-icons
Svgeez
A Ruby gem for automatically generating an SVG sprite from a folder of SVG icons.
Stars: ✭ 69 (-61.24%)
Mutual labels:  svg-sprites, svg, svg-icons
Materialdesign
✒6200+ Material Design Icons from the Community
Stars: ✭ 9,669 (+5332.02%)
Mutual labels:  svg, icons, webfonts
Phosphor React
A flexible icon family for React
Stars: ✭ 97 (-45.51%)
Mutual labels:  svg, icons, svg-icons
Tabler Icons
A set of over 1400 free MIT-licensed high-quality SVG icons for you to use in your web projects.
Stars: ✭ 10,858 (+6000%)
Mutual labels:  svg, icons, svg-icons
Boxicons
High Quality web friendly icons
Stars: ✭ 1,104 (+520.22%)
Mutual labels:  svg, icons, svg-icons
Icons
The premium icon font for @uiwjs Component Library. https://uiwjs.github.io/icons
Stars: ✭ 99 (-44.38%)
Mutual labels:  svg, icons, svg-icons
Aegis Icons
Unofficial 2FA entry icons for open source Android authenticator Aegis
Stars: ✭ 153 (-14.04%)
Mutual labels:  vector, svg, icons
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (-64.04%)
Mutual labels:  svg, icons, webfonts
Phosphor Icons
A flexible icon family for the web
Stars: ✭ 56 (-68.54%)
Mutual labels:  svg, icons, svg-icons
Svgiconimagelist
Three engines to render SVG (GDI+, Direct2D or Cairo) and four components to simplify use of SVG images (resize, fixedcolor, grayscale...): TSVGIconImage, TSVGIconImageCollection, TSVGIconVirtualImageList and TSVGIconImageList (for VCL and FMX).
Stars: ✭ 127 (-28.65%)
Mutual labels:  svg, icons, svg-icons
Svg Icon
👻 A lightweight library that makes it easier to use SVG icons in your Angular Application
Stars: ✭ 112 (-37.08%)
Mutual labels:  svg, icons, svg-icons
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+6692.13%)
Mutual labels:  svg, icons, svg-icons
Materialdesign Svg
@mdi/svg Dist for Material Design Icons.
Stars: ✭ 166 (-6.74%)
Mutual labels:  svg, icons, svg-icons
Unicons
1000+ Pixel-perfect vector icons and Iconfont for your next project.
Stars: ✭ 911 (+411.8%)
Mutual labels:  icons, svg-icons, webfonts
React Icomoon
It allows you to simply view the icons in the selection.json file provided by Icomoon.
Stars: ✭ 48 (-73.03%)
Mutual labels:  svg, icons, svg-icons

feathericon

feathericon

Build Status npm version npm downloads jsDeliver

feathericon is simply generic vector icon collection. The vectors for all the icons are stored in a Sketch file.
Website: https://feathericon.github.io/feathericon/

Getting Started

feathericon contains Sketch file, svg files, css / scss files and font files.

Basic

  1. Download ZIP folder from here.
  2. Copy the css/ and fonts/ directory to your project.
  3. In the <head> of your html, reference the location to your feathericon.min.css.
<link rel="stylesheet" href="path/to/css/feathericon.min.css">
  1. Place feathicon with <i> tag in your html like this. fe class is required to use our icons correctly. Check out our website to start using icons!
<i class="fe fe-heart"></i>

You can use feathericon with CDN files on jsdeliver.

Using SVG sprite

  1. Download ZIP folder from here.
  2. Copy the svg/sprite/sprite.feathericon.svg to your project.
  3. In your html, place like this. You can set specify any width, height, and fill with HTML attributes or CSS. Make sure put the icon name with hash after .svg extension.
<svg width="16px" height="16px" fill="#0099cc" class="icon">
  <use xlink:href="/<path-to-your>/sprite.feathericon.svg#heart"></use>
</svg>
  .icon {
    width: 16px;
    height: 16px;
    fill: #0099cc;
  }

For developers

Node.js projects

  1. Install via npm or yarn.
$ npm install feathericon --save
or
$ yarn add feathericon
  1. Copy fonts/ directory to your project.
$ cp -r node_modules/feathericon/build/fonts/ path/to/fonts
  1. You can simply point your Sass (SCSS) include-path at your node_modules/ directory. This case is using gulp-sass.
gulp.task('sass', function () {
  return gulp.src('path/to/*.scss')
    .pipe(.sass({
      loadPath     : 'node_modules/feathericon/build/scss/',
      outputStyle  : 'compressed'
    }).on('error', $.sass.logError))
    .pipe(gulp.dest('path/to/css/'));
});

Then you can import it in your scss(sass) file.

@import "feathericon";

Ruby on Rails projects

You can install via RubyGems.

Repositories:

Customize feathericon

1. Edit Sketch document

Sketch document

Open the Sketch document in src/feathericons.sketch. Each icon exists as an artboard within the Sketch document. If you’re adding an icon, duplicate one of the artboards and add your shapes to it. Be sure to give your artboard a name that makes sense.

2. Update data.json

If you've added a new icon, you'll need to add a new entry and keywords for it in the data.json.

3. Build icons

Requires

  • Node.js
  • npm

You can download from the Node.js download page, or install via package managers. Node.js comes with npm (See more).

  1. Open the feathericon/ directory in Terminal.
  2. Run this command to install dependencies for building icons.
$ npm run setup
  1. Run this command. Running the gulp task will generate the font, css, scss and SVGs, placing them in the build/ directory.
$ npm run webfont

FontCustom

If you want to tweak font settings, edit fontcustom.yml. feathericon is using FontCustom to build fonts, stylesheets such as feathericon.css and _feathericon.scss. If you need more information for FontCustom, visit their GitHub Repository.

Bugs, Ideas, Pull Requests

If you have any ideas or find bugs, please send me Pull Requests or let me know with GitHub Issues :)

License

MIT (C) 2018 Megumi Hano

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