Function
SelectLabel
({
className,
...props
}: SelectPrimitive.GroupLabel.Props)
Source from the content-addressed store, hash-verified
| 108 | } |
| 109 | |
| 110 | function SelectLabel({ |
| 111 | className, |
| 112 | ...props |
| 113 | }: SelectPrimitive.GroupLabel.Props) { |
| 114 | return ( |
| 115 | <SelectPrimitive.GroupLabel |
| 116 | data-slot="select-label" |
| 117 | className={cn("text-muted-foreground px-2 py-2 text-xs", className)} |
| 118 | {...props} |
| 119 | /> |
| 120 | ); |
| 121 | } |
| 122 | |
| 123 | function SelectItem({ |
| 124 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected