flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 409 B
text/typescript
import { type ComponentProps } from "react";
import type { ThemingProps } from "../../types";
export interface TimelineBodyTheme {
base: string;
}
export interface TimelineBodyProps extends ComponentProps<"p">, ThemingProps<TimelineBodyTheme> {
}
export declare const TimelineBody: import("react").ForwardRefExoticComponent<Omit<TimelineBodyProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;