import React from "react"; type CustomTextareaProps = React.TextareaHTMLAttributes; const CustomTextarea = React.forwardRef< HTMLTextAreaElement, CustomTextareaProps >(({ className, ...props }, ref) => { return (