From d08a4a162bd0272398df2d615f130fb525b0d726 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:49 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/textarea.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/ui/textarea.tsx diff --git a/src/components/ui/textarea.tsx b/src/components/ui/textarea.tsx new file mode 100644 index 0000000..29330b6 --- /dev/null +++ b/src/components/ui/textarea.tsx @@ -0,0 +1,21 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +const Textarea = React.forwardRef>( + ({ className, ...props }, ref) => { + return ( +