Textarea

Multi-line text input field for longer user input.

import { TextArea } from "ui-lab-components";
 
export function Example() {
  return (
    <TextArea
      placeholder="Enter your text here..."
      rows={4}
    />
  );
}

Basic TextArea

A simple multi-line text input field. Use this for collecting longer text input like comments or descriptions.

import React from 'react';
import { TextArea } from 'ui-lab-components';
 
export default function Example() {
  return (
    <TextArea
      placeholder="Enter your comments here..."
      rows={4}
    />
  );
}
UI Lab