diff --git a/apps/client/app/components/ui/textarea.tsx b/apps/client/app/components/ui/textarea.tsx new file mode 100644 index 0000000..e5aa0b1 --- /dev/null +++ b/apps/client/app/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 ( +