Function
InputGroupText
({ className, ...props }: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 115 | } |
| 116 | |
| 117 | function InputGroupText({ className, ...props }: React.ComponentProps<"span">) { |
| 118 | return ( |
| 119 | <span |
| 120 | className={cn( |
| 121 | "flex items-center gap-2 text-sm text-muted-foreground [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4", |
| 122 | className |
| 123 | )} |
| 124 | {...props} |
| 125 | /> |
| 126 | ) |
| 127 | } |
| 128 | |
| 129 | function InputGroupInput({ |
| 130 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected