diff --git a/AppImage/components/ui/textarea.tsx b/AppImage/components/ui/textarea.tsx new file mode 100644 index 00000000..9f9a6dc5 --- /dev/null +++ b/AppImage/components/ui/textarea.tsx @@ -0,0 +1,24 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +export interface TextareaProps + extends React.TextareaHTMLAttributes {} + +const Textarea = React.forwardRef( + ({ className, ...props }, ref) => { + return ( +