flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
8 lines (7 loc) • 345 B
TypeScript
/// <reference types="react" />
import type { FlowbiteTimelineItemTheme } from "./TimelineItem";
export type TimelineItemContext = {
theme: FlowbiteTimelineItemTheme;
};
export declare const TimelineItemContext: import("react").Context<TimelineItemContext | undefined>;
export declare function useTimelineItemContext(): TimelineItemContext;