Module: Partystreusel::Helpers::IconHelper
- Defined in:
- lib/partystreusel/helpers/icon_helper.rb
Instance Method Summary collapse
Instance Method Details
#streusel_icon(name, classes = '') ⇒ Object
3 4 5 6 7 |
# File 'lib/partystreusel/helpers/icon_helper.rb', line 3 def streusel_icon(name, classes = '') haml_tag :svg, xmlns: 'http://www.w3.org/2000/svg', title: "#{name}", class: "icon icon--#{name} #{classes}" do haml_tag :use, 'xlink:href' => "#icon--#{name}" end end |