Function
InputGroupInput
({
className,
...props
}: React.ComponentProps<"input">)
Source from the content-addressed store, hash-verified
| 129 | } |
| 130 | |
| 131 | function 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 | |
| 147 | function InputGroupTextarea({ |
| 148 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected