({ className, ...props }: SelectPrimitive.Value.Props)
| 25 | } |
| 26 | |
| 27 | function SelectValue({ className, ...props }: SelectPrimitive.Value.Props) { |
| 28 | return ( |
| 29 | <SelectPrimitive.Value |
| 30 | data-slot="select-value" |
| 31 | className={cn("flex flex-1 text-left", className)} |
| 32 | {...props} |
| 33 | /> |
| 34 | ); |
| 35 | } |
| 36 | |
| 37 | function SelectTrigger({ |
| 38 | className, |