import { type TextareaHTMLAttributes, forwardRef } from 'react' import { cn } from '@/shared/lib/cn' export const Textarea = forwardRef>( ({ className, ...props }, ref) => ( ), ) Textarea.displayName = 'Textarea'