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

7 lines
214 B
Ruby

module SvgHelper
def solid_svg_tag(width, height, fill, **options)
tag.svg :width => width, :height => height, **options do
tag.rect :width => "100%", :height => "100%", :fill => fill
end
end
end