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="", html_options={})
  content_class = "fa fa-#{icon}"
  content_class << " #{html_options[:class]}" if html_options.key?(:class)
  html_options[:class] = content_class

  html = (:i, nil, html_options)
  html << " #{text}" unless text.blank?
  html.html_safe
end