UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 414 B
import type { ItemProps, ItemState } from '@zag-js/combobox'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface ComboboxItemProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement, ItemState>, ItemProps> { } declare const ComboboxItem: import("svelte").Component<ComboboxItemProps, {}, "ref">; type ComboboxItem = ReturnType<typeof ComboboxItem>; export default ComboboxItem;