diff --git a/app/components/ui/textarea.tsx b/app/components/ui/textarea.tsx new file mode 100644 index 00000000..fbac271e --- /dev/null +++ b/app/components/ui/textarea.tsx @@ -0,0 +1,23 @@ +import * as React from 'react' + +import { cn } from 'utils/cn' + +export type TextareaProps = React.TextareaHTMLAttributes + +const Textarea = React.forwardRef( + ({ className, ...props }, ref) => { + return ( +