UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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