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