module Primer::Forms::Button::ButtonAttributeGenerator

def content_tag(_name, _content, options)

of returning a string so it can be merged into the hash of options we pass to the Primer::ButtonComponent.
FormTagHelper#button_tag ultimately calls the #content_tag method. We return the options hash here instead
def content_tag(_name, _content, options)
  options
end

def tag(_name, options)

of returning a string so it can be merged into the hash of options we pass to the Primer::ButtonComponent.
FormTagHelper#submit_tag ultimately calls the #tag method. We return the options hash here instead
def tag(_name, options)
  options
end