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

Function InputGroupInput

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

Source from the content-addressed store, hash-verified

116}
117
118function InputGroupInput({
119 className,
120 ...props
121}: React.ComponentProps<"input">) {
122 return (
123 <Input
124 data-slot="input-group-control"
125 className={cn(
126 "rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent flex-1",
127 className
128 )}
129 {...props}
130 />
131 );
132}
133
134function InputGroupTextarea({
135 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected