From fe21cc5c65e4789375abbe9e9273ec08a84d1863 Mon Sep 17 00:00:00 2001 From: typist Date: Tue, 28 Oct 2025 03:31:45 +0800 Subject: [PATCH 1/5] feat: add Textarea component - Introduced a new Textarea component for enhanced text input functionality. - Utilized utility functions for styling and accessibility features. --- src/components/ui/textarea.tsx | 18 ++++++++++++++++++ 1 file changed, 18 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..7f21b5e --- /dev/null +++ b/src/components/ui/textarea.tsx @@ -0,0 +1,18 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +function Textarea({ className, ...props }: React.ComponentProps<"textarea">) { + return ( +