MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / InputGroupInput

Function InputGroupInput

packages/web/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 h-10 px-3 py-2 text-base md:text-sm rounded-none border-0 bg-transparent shadow-none focus-visible:ring-0 focus-visible:ring-offset-0 dark:bg-transparent placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",
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