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