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
9 lines
310 B
# Font Awesome Helper
|
|
module IconHelper
|
|
def icon(name = :home, classname = nil, options = {}, style: :regular)
|
|
clazz = "fa-#{style.to_s.dasherize} fa-#{name.to_s.dasherize}"
|
|
clazz += " #{options[:class]}" if options[:class]
|
|
clazz += " #{classname}" if classname
|
|
tag.i(class: clazz)
|
|
end
|
|
end
|