MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / InputGroupTextarea

Function InputGroupTextarea

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

Source from the content-addressed store, hash-verified

145}
146
147function InputGroupTextarea({
148 className,
149 ...props
150}: React.ComponentProps<"textarea">) {
151 return (
152 <Textarea
153 data-slot="input-group-control"
154 className={cn(
155 "flex-1 resize-none rounded-none border-0 bg-transparent py-3 shadow-none focus-visible:ring-0 dark:bg-transparent",
156 className
157 )}
158 {...props}
159 />
160 )
161}
162
163export {
164 InputGroup,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected