import { cn } from '@/lib/utils' export interface TextareaProps extends React.TextareaHTMLAttributes { error?: string } export function Textarea({ className, error, id, ...props }: TextareaProps) { return (