class Primer::Forms::Select

def options

def options
  @options ||= @input.options.map do |option|
    [option.label, option.value, option.system_arguments]
  end
end