"use client"; import { Trigger, ScrollUpButton, ScrollDownButton, Icon, Portal, Content, Viewport, Label, ItemIndicator, ItemText, Item, Separator, } from "@radix-ui/react-select"; import { Check, ChevronDown, ChevronUp } from "lucide-react"; import type { ComponentProps } from "react"; import { cn } from "../../lib/utils"; export { Root as Select, Group as SelectGroup, Value as SelectValue, } from "@radix-ui/react-select"; export const SelectTrigger = ({ className, children, ...props }: ComponentProps) => ( span]:line-clamp-1", className, )} {...props} > {children} ); export const SelectScrollUpButton = ({ className, ...props }: ComponentProps) => ( ); export const SelectScrollDownButton = ({ className, ...props }: ComponentProps) => ( ); export const SelectContent = ({ className, children, position = "popper", ...props }: ComponentProps) => ( {children} ); export const SelectLabel = ({ className, ...props }: ComponentProps) => (