| import * as React from 'react'; | |
| import { cn } from '@/lib/utils'; | |
| const Textarea = React.forwardRef<HTMLTextAreaElement, React.TextareaHTMLAttributes<HTMLTextAreaElement>>( | |
| ({ className, ...props }, ref) => { | |
| return ( | |
| <textarea | |
| className={cn( | |
| 'flex min-h-[80px] w-full rounded-xl border border-zinc-200 bg-white px-3 py-2 text-sm ring-offset-white placeholder:text-zinc-400 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-emerald-500 focus-visible:ring-offset-0 focus-visible:border-emerald-500 disabled:cursor-not-allowed disabled:opacity-50 transition-all dark:border-zinc-700 dark:bg-zinc-900', | |
| className | |
| )} | |
| ref={ref} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| ); | |
| Textarea.displayName = 'Textarea'; | |
| export { Textarea }; | |