Textarea
Displays a form textarea or a component that looks like a textarea.
Installation
uvx shadcn_django@latest add textarea
Usage
<c-textarea placeholder='Type your message here.' />
Examples
Disabled
<c-textarea placeholder='Type your message here.' disabled />
With Label
<div class='grid w-full gap-1.5'>
<c-label for='message'>Your Message</c-label>
<c-textarea id='message' placeholder='Type your message here.' />
</div>
With Button
<div class='grid w-full gap-2'>
<c-textarea placeholder='Type your message here.' />
<c-button type='submit'>Send message</c-button>
</div>