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

Function InputGroupInput

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

Source from the content-addressed store, hash-verified

129}
130
131function InputGroupInput({
132 className,
133 ...props
134}: React.ComponentProps<"input">) {
135 return (
136 <Input
137 data-slot="input-group-control"
138 className={cn(
139 "flex-1 rounded-none border-0 bg-transparent shadow-none focus-visible:ring-0 dark:bg-transparent",
140 className
141 )}
142 {...props}
143 />
144 )
145}
146
147function InputGroupTextarea({
148 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected