Blocks

Textarea

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

Installation

bin/rails g shadcnrb:component textarea

Usage

<!-- placeholder -->
<%= sui.textarea name: "bio", placeholder: "Tell us about yourself…", class: "max-w-md" %>
<!-- block form (prefilled) -->
<%= sui.textarea name: "notes", class: "max-w-md" do %>
  Prefilled content lives inside the textarea body.
<% end %>