UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

15 lines (14 loc) 698 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; import type { FlowbiteTimelineBodyTheme } from './TimelineBody'; import type { FlowbiteTimelineTimeTheme } from './TimelineTime'; import type { FlowbiteTimelineTitleTheme } from './TimelineTitle'; export interface FlowbiteTimelineContentTheme extends FlowbiteTimelineBodyTheme, FlowbiteTimelineTimeTheme, FlowbiteTimelineTitleTheme { root: { base: string; }; } export interface TimelineContentProps extends PropsWithChildren, ComponentProps<'div'> { theme?: DeepPartial<FlowbiteTimelineContentTheme>; } export declare const TimelineContent: FC<TimelineContentProps>;