UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 342 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteTimelineTimeTheme { base: string; } export interface TimelineTimeProps extends ComponentProps<'time'> { theme?: DeepPartial<FlowbiteTimelineTimeTheme>; } export declare const TimelineTime: FC<TimelineTimeProps>;