openstreetmap-website/app/helpers/svg_helper.rb
2023-12-19 17:00:24 +03:00

8 lines
316 B
Ruby

module SvgHelper
def solid_svg_image_tag(width, height, fill, **options)
svg = "<svg xmlns='http://www.w3.org/2000/svg' width='#{width}' height='#{height}'>" \
"<rect width='100%' height='100%' fill='#{fill}' />" \
"</svg>"
image_tag "data:image/svg+xml,#{u(svg)}", **options
end
end