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