class Playbook::PbButton::Button

def options

def options
  options = {
    class: classname,
    disabled: disabled,
    id: id,
    role: "button",
    tabindex: 0,
    type: type,
    value: value,
    form: form,
  }.compact
  combined_html_options.merge!(options) if combined_html_options.present?
end