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 SelectLabelProps = Omit & Omit; export const SelectLabel = forwardRef( function SelectLabel({ store, className, ...props }: SelectLabelProps, ref) { const context = Ariakit.useSelectContext(); const classNames = getClassNames('select__label', className); return ( } > ); });