UNPKG

hoda-react

Version:

<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <

49 lines (48 loc) 1.37 kB
import type { FC, PropsWithChildren } from 'react'; export interface FlowbiteTimelineTheme { direction: { horizontal: string; vertical: string; }; item: { base: { horizontal: string; vertical: string; }; point: { base: { horizontal: string; vertical: string; }; marker: { base: { horizontal: string; vertical: string; }; icon: { wrapper: string; base: string; }; }; line: string; }; content: { base: string; time: string; title: string; body: string; }; }; } export type TimelineProps = PropsWithChildren<{ className?: string; horizontal?: boolean; }>; export declare const Timeline: FC<TimelineProps> & { Item: FC<import("./TimelineItem").TimelineItemProps>; Point: FC<import("./TimelinePoint").TimelnePointProps>; Content: FC<import("./TimelineContent").TimelineContentProps>; Time: FC<import("./TimelineTime").TimelineTimeProps>; Title: FC<import("./TimelineTitle").TimelineTitleProps>; Body: FC<import("./TimelineBody").TimelineBodyProps>; };