Blocks

Textarea

A styled <textarea>. Plays with field-sizing so it grows with content in modern browsers.

Usage

live_example do
  sui.textarea name: "bio", placeholder: "Tell us about yourself…", class: "max-w-md"
end
live_example do
  sui.textarea name: "notes", class: "max-w-md" do
    Prefilled content lives inside the textarea body.
  end
end