# frozen_string_literal: true module Maquina module Application module Components class TextAreaComponent < ComponentBase def template div(**control_html) do @form.label attribute_name, class: "label #{label_css_class}" div(class: "mt-1") do @form.text_area attribute_name, **input_html help_template error_template end end end end end end end