UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 449 B
import { ItemProps } from '@zag-js/combobox'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ComboboxItemBaseProps extends ItemProps, PolymorphicProps { } export interface ComboboxItemProps extends HTMLProps<'div'>, ComboboxItemBaseProps { } export declare const ComboboxItem: ForwardRefExoticComponent<ComboboxItemProps & RefAttributes<HTMLDivElement>>;