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