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