import { type TextareaHTMLAttributes, forwardRef } from "react";
import { cn } from "../../lib/utils.ts";
const Textarea = forwardRef<
HTMLTextAreaElement,
TextareaHTMLAttributes
>(({ className, ...props }, ref) => (
));
Textarea.displayName = "Textarea";
export { Textarea };