import * as Ariakit from '@ariakit/react'; import { getClassNames } from '@websolutespa/bom-core'; import React, { forwardRef } from 'react'; import { Label } from '../label/label'; type LabelProps = React.ComponentProps; export type ComboboxLabelProps = Omit & LabelProps; export const ComboboxLabel = forwardRef( function ComboboxLabel({ store, className, ...props }: ComboboxLabelProps, ref) { const context = Ariakit.useComboboxContext(); const classNames = getClassNames('combobox__label', className); return ( } > ); });