import * as React from "react"; import { cn } from "@/lib/utils"; export interface TextareaProps extends React.TextareaHTMLAttributes {} const Textarea = ( { ref, className, ...props }: TextareaProps & { ref: React.RefObject; } ) => { return (