Sha256: 376c4d912f517a2aa1fd037ab6a86d196b0ef659a417299234d72b14cfcd6dc2
Contents?: true
Size: 555 Bytes
Versions: 176
Compression:
Stored size: 555 Bytes
Contents
# frozen_string_literal: true module Primer module Forms module Dsl # :nodoc: class TextAreaInput < Input attr_reader :name, :label def initialize(name:, label:, **system_arguments) @name = name @label = label super(**system_arguments) end def to_component TextArea.new(input: self) end def type :text_area end # :nocov: def focusable? true end # :nocov: end end end end
Version data entries
176 entries across 176 versions & 2 rubygems