UNPKG

@transkripid/flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork

17 lines (16 loc) 615 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../types'; import type { FlowbiteTimelineContentTheme } from './TimelineContent'; import type { FlowbiteTimelinePointTheme } from './TimelinePoint'; export interface FlowbiteTimelineItemTheme { root: { horizontal: string; vertical: string; }; content: FlowbiteTimelineContentTheme; point: FlowbiteTimelinePointTheme; } export interface TimelineItemProps extends ComponentProps<'li'> { theme?: DeepPartial<FlowbiteTimelineItemTheme>; } export declare const TimelineItem: FC<TimelineItemProps>;