import { forwardRef } from 'react' import { cn } from '@/lib/utils' import type { TextareaHTMLAttributes } from 'react' type Props = TextareaHTMLAttributes & { invalid?: boolean } export default forwardRef ( ({ className, invalid = false, ...props }, ref) => (