UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 358 B
import type { HtmlIngredientProps } from '../types.js'; export interface SelectItemIndicatorProps extends HtmlIngredientProps<'span', HTMLSpanElement> { } declare const SelectItemIndicator: import("svelte").Component<SelectItemIndicatorProps, {}, "ref">; type SelectItemIndicator = ReturnType<typeof SelectItemIndicator>; export default SelectItemIndicator;