Function
SelectLabel
({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.Label>)
Source from the content-addressed store, hash-verified
| 84 | } |
| 85 | |
| 86 | function SelectLabel({ |
| 87 | className, |
| 88 | ...props |
| 89 | }: React.ComponentProps<typeof SelectPrimitive.Label>) { |
| 90 | return ( |
| 91 | <SelectPrimitive.Label |
| 92 | data-slot="select-label" |
| 93 | className={cn("text-muted-foreground px-2 py-1.5 text-xs", className)} |
| 94 | {...props} |
| 95 | /> |
| 96 | ) |
| 97 | } |
| 98 | |
| 99 | function SelectItem({ |
| 100 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected