@olleemilsson/flowbite-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"> <
46 lines (45 loc) • 1.28 kB
TypeScript
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: string;
icon: {
wrapper: string;
base: string;
};
};
line: string;
};
content: {
base: string;
time: string;
title: string;
body: string;
};
};
}
export declare 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>;
};