Function
SelectGroup
({ className, ...props }: SelectPrimitive.Group.Props)
Source from the content-addressed store, hash-verified
| 15 | const Select = SelectPrimitive.Root; |
| 16 | |
| 17 | function SelectGroup({ className, ...props }: SelectPrimitive.Group.Props) { |
| 18 | return ( |
| 19 | <SelectPrimitive.Group |
| 20 | data-slot="select-group" |
| 21 | className={cn("scroll-my-1", className)} |
| 22 | {...props} |
| 23 | /> |
| 24 | ); |
| 25 | } |
| 26 | |
| 27 | function SelectValue({ className, ...props }: SelectPrimitive.Value.Props) { |
| 28 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected