UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

15 lines (14 loc) 461 B
import type { TimelineProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [TimelineProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1801) * ## Props * @prop children * @prop order = "default" * @prop class: className * @prop ...restProps */ declare const Timeline: import("svelte").Component<TimelineProps, {}, "">; type Timeline = ReturnType<typeof Timeline>; export default Timeline;