TextArea
The TextArea component is a multiline input field that allows users to enter large amounts of text. Unlike a standard input field, which is typically single-line, the TextArea is designed for scenarios where users need to provide detailed information or lengthy responses. It's commonly used in forms, comment sections, and messaging interfaces where users may need to write paragraphs of text. The TextArea can be configured with features like character limits, resizable edges, and placeholder text, making it a flexible tool for capturing user input in applications like feedback forms, content creation platforms, or customer support interfaces.
Code
import TextArea from "@lumina-design/core/TextArea"; //theme: light/dark <TextArea rows={6} cols={60} placeholder="Enter your feedback..." theme="dark" containerClass="feedback-textarea" resizable={true} onChange={(value) => console.log(value)} />