flowbite-svelte
Version:
Flowbite components for Svelte
17 lines (16 loc) • 514 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#L425)
* ## Props
* @prop children
* @prop activeClass
* @prop inactiveClass
* @prop position = "bottom"
* @prop class: className
* @prop ...restProps
*/
declare const Indicators: import("svelte").Component<IndicatorsProps, {}, "">;
type Indicators = ReturnType<typeof Indicators>;
export default Indicators;