import * as React from "react"; import {cn} from "@/lib/utilities"; import styles from "./textarea.module.css"; /** * Props for the shared textarea wrapper. */ interface TextareaProps extends React.ComponentPropsWithoutRef<"textarea"> { /** Additional CSS classes merged with the textarea styles. @default undefined */ className?: string; } /** * Renders a multi-line text area for longer free-form text input. * * @remarks * - Renders a `