mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 432 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { DeepPartial, FlowbiteHeadingLevel } from '../../';
export interface FlowbiteTimelineTitleTheme {
title: string;
}
export interface TimelineTitleProps extends PropsWithChildren, ComponentProps<'h1'> {
as?: FlowbiteHeadingLevel;
theme?: DeepPartial<FlowbiteTimelineTitleTheme>;
}
export declare const TimelineTitle: FC<TimelineTitleProps>;