class InlineSvg::TransformPipeline::Transformations::StyleAttribute

def transform(doc)

def transform(doc)
  with_svg(doc) do |svg|
    styles = svg["style"].to_s.split(";")
    styles << value
    svg["style"] = styles.join(";")
  end
end