Function
SelectLabel
({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.Label>)
Source from the content-addressed store, hash-verified
| 102 | } |
| 103 | |
| 104 | function SelectLabel({ |
| 105 | className, |
| 106 | ...props |
| 107 | }: React.ComponentProps<typeof SelectPrimitive.Label>) { |
| 108 | return ( |
| 109 | <SelectPrimitive.Label |
| 110 | data-slot="select-label" |
| 111 | className={cn("px-2 py-1.5 text-xs text-[var(--color-text-weak)]", className)} |
| 112 | {...props} |
| 113 | /> |
| 114 | ) |
| 115 | } |
| 116 | |
| 117 | function SelectItem({ |
| 118 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected