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