UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

24 lines (23 loc) 826 B
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#L1632) * ## Props * @prop steps = ["Step 1", "Step 2", "Step 3", "Step 4", "Step 5"] * @prop currentStep = $bindable(1) * @prop size = $bindable("md") * @prop color = $bindable("primary") * @prop glow = false * @prop hideLabel = false * @prop clickable = true * @prop completedCustom = "" * @prop currentCustom = "" * @prop onStepClick * @prop class: className * @prop classes * @prop ...restProps */ declare const StepIndicator: import("svelte").Component<StepIndicatorProps, {}, "color" | "size" | "currentStep">; type StepIndicator = ReturnType<typeof StepIndicator>; export default StepIndicator;