UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

17 lines (16 loc) 542 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#L1655) * ## Props * @prop children * @prop steps = [] * @prop class: className * @prop classes * @prop contentClass * @prop ...restProps */ declare const TimelineStepper: import("svelte").Component<TimelineStepperProps, {}, "">; type TimelineStepper = ReturnType<typeof TimelineStepper>; export default TimelineStepper;