class Primer::Forms::Dsl::SelectInput

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

def initialize(name:, label:, **system_arguments)
  @name = name
  @label = label
  @options = []
  @select_arguments = {}.tap do |select_args|
    SELECT_ARGUMENTS.each do |select_arg|
      select_args[select_arg] = system_arguments.delete(select_arg)
    end
  end
  super(**system_arguments)
  yield(self) if block_given?
end