Last active
March 27, 2017 08:21
-
-
Save Lukom/b052d352fddf060cf822e0ccbea27274 to your computer and use it in GitHub Desktop.
Social Share buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module SvgHelper | |
def svg_ico(name, options = {}) | |
content_tag :svg, options do | |
tag :use, 'xlink:href': "#{asset_path('icons.svg')}##{name}" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment