No commit activity in last 3 years
No release in over 3 years
Easily fetch the list of all font awesome icons via there class or unicode
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Font Awesome Icons List

Ever Felt need of listing down all the font awesome icons in your Rails App?

This gem lists down all the font awesome icons via classes or there unicode version in your Rails views!

It is based on Font Awesome Cheat Sheet which is The complete Font Awesome 4.0.3 icon reference 👍

Your friend for easy listing of icons 🤘

A Example Screenshot of listing from my Application 💂‍♂️

ScreenShot

The Gem comes with 2 helper methods

  1. To get all icons via the class name

    font_awesome_icons_via_class

The above will list down all the classes.

Sample Usage

- font_awesome_icons_via_class.each do |class|
  = content_tag(:i,nil,class: "fa #{class}")
  1. To get all icons via there Unicode

    font_awesome_icons_via_unicode

The above will list down all the unicodes.

Sample Usage

- font_awesome_icons_via_unicode.each do |unicode_char|
  = content_tag(:i,unicode_char,class: :fa)

The gem itself is released under the MIT license

🙏