Textarea
Displays a textarea field.
Usage
Textarea
div(class: "grid w-full max-w-sm items-center gap-1.5") do Textarea(placeholder: "Textarea") end
Copied!
Copy failed!
Disabled
div(class: "grid w-full max-w-sm items-center gap-1.5") do Textarea(disabled: true, placeholder: "Disabled") end
Copied!
Copy failed!
With formfield
This is a textarea
div(class: "grid w-full max-w-sm items-center gap-1.5") do FormField do FormFieldLabel(for: "textarea") { "Textarea" } FormFieldHint { "This is a textarea" } Textarea(placeholder: "Textarea", id: "textarea") FormFieldError() end end
Copied!
Copy failed!
Components
Component | Built using | Source |
---|---|---|
FormField | Phlex | |
FormFieldError | Phlex | |
FormFieldHint | Phlex | |
FormFieldLabel | Phlex | |
Textarea | Phlex |
Component | Built using | Source |
---|---|---|
Textarea | Phlex |