class Primer::Forms::Dsl::ButtonInput

:nodoc:

def initialize(name:, label:, **system_arguments, &block)

def initialize(name:, label:, **system_arguments, &block)
  @name = name
  @label = label
  @block = block
  super(**system_arguments)
end

def to_component

def to_component
  Button.new(input: self)
end

def type

:nocov:
def type
  :button
end