Module: FontAwesome::Sass::Rails::ViewHelpers
- Defined in:
- lib/font_awesome/sass/rails/helpers.rb
Instance Method Summary collapse
Instance Method Details
#icon(icon, text = "", html_options = {}) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/font_awesome/sass/rails/helpers.rb', line 5 def icon(icon, text="", ={}) content_class = "fa fa-#{icon}" content_class << " #{[:class]}" if .key?(:class) [:class] = content_class html = content_tag(:i, nil, ) html << " #{text}" unless text.blank? html.html_safe end |