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