Sha256: e0999c0374285727ea64a0a6802f25308f89001f939b13b90cbf73c23748a225
Contents?: true
Size: 399 Bytes
Versions: 14
Compression:
Stored size: 399 Bytes
Contents
require_relative 'text_field' module Voom module Presenters module DSL module Components class TextArea < TextField attr_reader :rows def initialize(**attribs_, &block) super(type: :text_area, **attribs_, &block) @rows = attribs.delete(:rows) || 3 expand! end end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems