UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

19 lines (18 loc) 574 B
import type { StepperProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [StepperProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1658) * ## Props * @prop steps = [] * @prop class: className * @prop classes * @prop current = $bindable(1) * @prop clickable = true * @prop showCheckmarkForCompleted = true * @prop onStepClick * @prop ...restProps */ declare const Stepper: import("svelte").Component<StepperProps, {}, "current">; type Stepper = ReturnType<typeof Stepper>; export default Stepper;