flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 339 B
TypeScript
/// <reference types="react" />
import type { FlowbiteTimelineTheme } from "./Timeline";
export type TimelineContext = {
theme: FlowbiteTimelineTheme;
horizontal?: boolean;
};
export declare const TimelineContext: import("react").Context<TimelineContext | undefined>;
export declare function useTimelineContext(): TimelineContext;