UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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