"use client" import * as React from "react" import { Combobox as BaseCombobox } from "@base-ui/react/combobox" import { cn } from "@/lib/utils" export type ComboboxCollectionProps = React.ComponentPropsWithoutRef & { className?: string } const BaseComboboxCollection = BaseCombobox.Collection as React.ElementType export const ComboboxCollection = React.forwardRef( ({ className, ...props }, ref) => ( ), ) ComboboxCollection.displayName = "ComboboxCollection"