MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / InputGroupTextarea

Function InputGroupTextarea

components/ui/input-group.tsx:134–148  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<"textarea">)

Source from the content-addressed store, hash-verified

132}
133
134function InputGroupTextarea({
135 className,
136 ...props
137}: React.ComponentProps<"textarea">) {
138 return (
139 <Textarea
140 data-slot="input-group-control"
141 className={cn(
142 "rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent flex-1 resize-none",
143 className
144 )}
145 {...props}
146 />
147 );
148}
149
150export {
151 InputGroup,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected