lib/inline_svg/transform_pipeline/transformations/aria_hidden_attribute.rb



module InlineSvg::TransformPipeline::Transformations
  class AriaHiddenAttribute < Transformation
    def transform(doc)
      with_svg(doc) do |svg|
        svg["aria-hidden"] = self.value
      end
    end
  end
end