A styled multi-line text input component.
Standard textarea attributes including placeholder, rows, etc.
A styled textarea element
Textarea is a styled wrapper around the native HTML textarea element. Supports all standard textarea attributes including rows and cols.
// Basic textarea<Textarea placeholder="Enter your message..." />// With specific row count<Textarea rows={5} placeholder="Write your content..." /> Copy
// Basic textarea<Textarea placeholder="Enter your message..." />// With specific row count<Textarea rows={5} placeholder="Write your content..." />
A styled multi-line text input component.