ComponentsForm
Textarea
Multi-line text input for longer content
Examples
Basic Textarea
{
"type": "textarea",
"placeholder": "Enter your message..."
}With Label
{
"type": "textarea",
"label": "Description",
"placeholder": "Describe your issue...",
"rows": 5
}Schema
interface TextareaSchema {
type: 'textarea';
name?: string;
label?: string;
placeholder?: string;
rows?: number;
required?: boolean;
disabled?: boolean;
}