UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 438 B
import type { IndicatorProps } from '@zag-js/carousel'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface CarouselIndicatorProps extends Assign<HtmlIngredientProps<'button', HTMLButtonElement>, IndicatorProps> { } declare const CarouselIndicator: import("svelte").Component<CarouselIndicatorProps, {}, "ref">; type CarouselIndicator = ReturnType<typeof CarouselIndicator>; export default CarouselIndicator;