UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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