MCPcopy
hub / github.com/PromtEngineer/localGPT / Textarea

Function Textarea

src/components/ui/textarea.tsx:5–16  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"textarea">)

Source from the content-addressed store, hash-verified

3import { cn } from "@/lib/utils"
4
5function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
6 return (
7 <textarea
8 data-slot="textarea"
9 className={cn(
10 "border-input placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 flex field-sizing-content min-h-16 w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
11 className
12 )}
13 {...props}
14 />
15 )
16}
17
18export { Textarea }

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected