Component Library
Browse and explore components
Timeline
A Timeline is a UI component used to display a sequence of events in chronological order.
Default Timeline
Application UI code in Tailwind CSS
Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.Marketing UI design in Figma
All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.E-Commerce UI code in Tailwind CSS
Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
Component Code
Copy Code
import {
Timeline,
Button,
TimelineBody,
TimelineContent,
TimelineItem,
TimelinePoint,
TimelineTime,
TimelineTitle,
} from 'flowbite-react'
import { HiArrowNarrowRight } from 'react-icons/hi'
const DefaultTimelineCode = () => {
return (
<>
<div>
<Timeline>
<TimelineItem>
<TimelinePoint />
<TimelineContent>
<TimelineTime>February 2022</TimelineTime>
<TimelineTitle>Application UI code in Tailwind CSS</TimelineTitle>
<TimelineBody>
Get access to over 20+ pages including a dashboard layout,
charts, kanban board, calendar, and pre-order E-commerce &
Marketing pages.
</TimelineBody>
<Button color='primary'>
Learn More
<HiArrowNarrowRight className='ml-2 h-3 w-3' />
</Button>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelinePoint />
<TimelineContent>
<TimelineTime>March 2022</TimelineTime>
<TimelineTitle>Marketing UI design in Figma</TimelineTitle>
<TimelineBody>
All of the pages and components are first designed in Figma and
we keep a parity between the two versions even as we update the
project.
</TimelineBody>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelinePoint />
<TimelineContent>
<TimelineTime>April 2022</TimelineTime>
<TimelineTitle>E-Commerce UI code in Tailwind CSS</TimelineTitle>
<TimelineBody>
Get started with dozens of web components and interactive
elements built on top of Tailwind CSS.
</TimelineBody>
</TimelineContent>
</TimelineItem>
</Timeline>
</div>
</>
)
}
export default DefaultTimelineCode
Vertical timeline
Application UI code in Tailwind CSS
Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.Marketing UI design in Figma
All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.E-Commerce UI code in Tailwind CSS
Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
Component Code
Copy Code
'use client'
import {
Timeline,
Button,
TimelineBody,
TimelineContent,
TimelineItem,
TimelinePoint,
TimelineTime,
TimelineTitle,
} from 'flowbite-react'
import { HiArrowNarrowRight, HiCalendar } from 'react-icons/hi'
const VerticalTimelineCode = () => {
return (
<>
<Timeline>
<TimelineItem>
<TimelinePoint icon={HiCalendar} />
<TimelineContent>
<TimelineTime>February 2022</TimelineTime>
<TimelineTitle>Application UI code in Tailwind CSS</TimelineTitle>
<TimelineBody>
Get access to over 20+ pages including a dashboard layout, charts,
kanban board, calendar, and pre-order E-commerce & Marketing
pages.
</TimelineBody>
<Button color='primary'>
Learn More
<HiArrowNarrowRight className='ml-2 h-3 w-3' />
</Button>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelinePoint icon={HiCalendar} />
<TimelineContent>
<TimelineTime>March 2022</TimelineTime>
<TimelineTitle>Marketing UI design in Figma</TimelineTitle>
<TimelineBody>
All of the pages and components are first designed in Figma and we
keep a parity between the two versions even as we update the
project.
</TimelineBody>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelinePoint icon={HiCalendar} />
<TimelineContent>
<TimelineTime>April 2022</TimelineTime>
<TimelineTitle>E-Commerce UI code in Tailwind CSS</TimelineTitle>
<TimelineBody>
Get started with dozens of web components and interactive elements
built on top of Tailwind CSS.
</TimelineBody>
</TimelineContent>
</TimelineItem>
</Timeline>
</>
)
}
export default VerticalTimelineCode
Horizontal Timeline
Application UI code in Tailwind CSS
Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.Marketing UI design in Figma
All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.E-Commerce UI code in Tailwind CSS
Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
Component Code
Copy Code
'use client'
import {
Timeline,
Button,
TimelineBody,
TimelineContent,
TimelineItem,
TimelinePoint,
TimelineTime,
TimelineTitle,
} from 'flowbite-react'
import { HiArrowNarrowRight, HiCalendar } from 'react-icons/hi'
const HorizontalTimelineCode = () => {
return (
<>
<Timeline horizontal>
<TimelineItem>
<TimelinePoint icon={HiCalendar} />
<TimelineContent>
<TimelineTime>February 2022</TimelineTime>
<TimelineTitle>Application UI code in Tailwind CSS</TimelineTitle>
<TimelineBody>
Get access to over 20+ pages including a dashboard layout, charts,
kanban board, calendar, and pre-order E-commerce & Marketing
pages.
</TimelineBody>
<Button color='primary'>
Learn More
<HiArrowNarrowRight className='ml-2 h-3 w-3' />
</Button>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelinePoint icon={HiCalendar} />
<TimelineContent>
<TimelineTime>March 2022</TimelineTime>
<TimelineTitle>Marketing UI design in Figma</TimelineTitle>
<TimelineBody>
All of the pages and components are first designed in Figma and we
keep a parity between the two versions even as we update the
project.
</TimelineBody>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelinePoint icon={HiCalendar} />
<TimelineContent>
<TimelineTime>April 2022</TimelineTime>
<TimelineTitle>E-Commerce UI code in Tailwind CSS</TimelineTitle>
<TimelineBody>
Get started with dozens of web components and interactive elements
built on top of Tailwind CSS.
</TimelineBody>
</TimelineContent>
</TimelineItem>
</Timeline>
</>
)
}
export default HorizontalTimelineCode
API ( Timeline )
| Prop | Description | Type | Default |
|---|---|---|---|
horizontal | Arranges the timeline items in a horizontal layout. | boolean | false |