# Textarea

A styled multi-line text input field, ideal for longer form content like comments or descriptions.

## Props

*   All standard HTML `<textarea>` attributes are supported (e.g., `placeholder`, `value`, `onChange`, `rows`, `disabled`).
*   `className` (string, optional): Additional CSS classes for custom styling.

## Usage

```tsx
import { Textarea } from './src/components';

<Textarea
  placeholder="Enter your comments here..."
  rows={4}
/>
```
