flowbite-svelte
Version:
Flowbite components for Svelte
17 lines (16 loc) • 546 B
TypeScript
import { type IndicatorsProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [IndicatorsProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L389)
* ## Props
* @prop children
* @prop activeClass
* @prop inactiveClass
* @prop position = "bottom"
* @prop class: className
* @prop ...restProps
*/
declare const CarouselIndicators: import("svelte").Component<IndicatorsProps, {}, "">;
type CarouselIndicators = ReturnType<typeof CarouselIndicators>;
export default CarouselIndicators;