flowbite-svelte
Version:
Flowbite components for Svelte
32 lines (31 loc) • 926 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import Indicator from '../indicators/Indicator.svelte';
declare const __propDef: {
props: {
[x: string]: any;
activeClass?: string | undefined;
inactiveClass?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
Indicator: typeof Indicator;
selected: any;
index: any;
};
};
};
export type IndicatorsProps = typeof __propDef.props;
export type IndicatorsEvents = typeof __propDef.events;
export type IndicatorsSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let activeClass = 'opacity-100';
* @prop export let inactiveClass = 'opacity-60';
*/
export default class Indicators extends SvelteComponentTyped<IndicatorsProps, IndicatorsEvents, IndicatorsSlots> {
}
export {};