"use client" import * as React from "react" import { Select as SelectPrimitive } from "@base-ui/react/select" import { ChevronDown, Check } from "lucide-react" import { cn } from "../core/cn" function Select({ ...props }: SelectPrimitive.Root.Props) { return } function SelectValue({ ...props }: SelectPrimitive.Value.Props) { return } function SelectTrigger({ className, children, ...props }: SelectPrimitive.Trigger.Props) { return ( span]:line-clamp-1", className )} {...props} > {children} ) } function SelectPortal({ ...props }: SelectPrimitive.Portal.Props) { return } function SelectContent({ className, children, ...props }: SelectPrimitive.Positioner.Props) { return ( {children} ) } function SelectGroup({ ...props }: SelectPrimitive.Group.Props) { return } function SelectGroupLabel({ className, ...props }: SelectPrimitive.GroupLabel.Props) { return } function SelectItem({ className, children, ...props }: SelectPrimitive.Item.Props) { return ( {children} ) } function SelectSeparator({ className, ...props }: React.ComponentProps<"div">) { return
} export { Select, SelectContent, SelectGroup, SelectGroupLabel, SelectItem, SelectPortal, SelectSeparator, SelectTrigger, SelectValue }