flowbite-svelte
Version:
Flowbite components for Svelte
22 lines (21 loc) • 716 B
TypeScript
import type { StepIndicatorProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [StepIndicatorProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1561)
* ## Props
* @prop steps = ["Step 1", "Step 2", "Step 3", "Step 4", "Step 5"]
* @prop currentStep = 1
* @prop size = "md"
* @prop color = "primary"
* @prop glow = false
* @prop hideLabel = false
* @prop completedCustom = ""
* @prop currentCustom = ""
* @prop class: className
* @prop classes
* @prop ...restProps
*/
declare const StepIndicator: import("svelte").Component<StepIndicatorProps, {}, "">;
type StepIndicator = ReturnType<typeof StepIndicator>;
export default StepIndicator;