You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
310 B

  1. # Font Awesome Helper
  2. module IconHelper
  3. def icon(name = :home, classname = nil, options = {}, style: :regular)
  4. clazz = "fa-#{style.to_s.dasherize} fa-#{name.to_s.dasherize}"
  5. clazz += " #{options[:class]}" if options[:class]
  6. clazz += " #{classname}" if classname
  7. tag.i(class: clazz)
  8. end
  9. end