Function
InputGroupText
({ className, ...props }: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 104 | } |
| 105 | |
| 106 | function InputGroupText({ className, ...props }: React.ComponentProps<"span">) { |
| 107 | return ( |
| 108 | <span |
| 109 | className={cn( |
| 110 | "text-muted-foreground gap-2 text-xs [&_svg:not([class*='size-'])]:size-4 flex items-center [&_svg]:pointer-events-none", |
| 111 | className |
| 112 | )} |
| 113 | {...props} |
| 114 | /> |
| 115 | ); |
| 116 | } |
| 117 | |
| 118 | function InputGroupInput({ |
| 119 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected