mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
17 lines (16 loc) • 648 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { DeepPartial } from '../../';
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 PropsWithChildren, ComponentProps<'li'> {
theme?: DeepPartial<FlowbiteTimelineItemTheme>;
}
export declare const TimelineItem: FC<TimelineItemProps>;