"use client" import * as React from "react" import { cn } from "@/lib/utils" export interface TextareaProps extends React.TextareaHTMLAttributes { error?: boolean } const Textarea = React.forwardRef(({ className, error, ...props }, ref) => { return (