UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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