MCPcopy
hub / github.com/pezzolabs/pezzo / TextareaProps

Interface TextareaProps

libs/ui/src/components/ui/textarea.tsx:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { cn } from "@pezzo/ui/utils";
4
5export interface TextareaProps
6 extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
7 disableAutoComplete?: boolean;
8}
9
10const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
11 ({ className, disableAutoComplete, ...props }, ref) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected