Component
Step Progress Timeline
Vertical milestone timeline showing ordered stages with status dots (completed green check, current blue pulse with ring, pending muted), timestamps, and descriptions. Ideal for order tracking, deployment logs, and onboarding.
- Component
- Tailwind
- HTML
- MIT
Preview
Live component
9:41 100%
devsnips.dev/library/tailwind/components/progress/step-progress/ fluid · no fixed width 100%
Install
Add to your project
npx devsnips add Tailwind/Components/Progress/step-progress Tailwind/Components/Progress/step-progress <!--
Snippet Name: Step Progress Timeline
Description: Vertical milestone timeline showing ordered stages with status dots (completed/current/pending), timestamps, and descriptions.
Author: DevSnips Contributors
Usage Example: Drop into order tracking, deployment logs, or onboarding flows.
-->
<ol class="relative" data-timeline>
<!-- Completed milestone -->
<li class="relative flex gap-4 pb-8 last:pb-0">
<div class="flex flex-col items-center">
<span class="flex h-9 w-9 items-center justify-center rounded-full border-2 border-green-500 bg-green-500 text-white">
<svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
</span>
<span class="mt-1 w-px flex-1 bg-gray-200"></span>
</div>
<div class="min-w-0 flex-1">
<div class="flex items-center gap-2">
<p class="text-sm font-semibold text-gray-900">Order placed</p>
<span class="text-xs text-gray-400">Aug 2, 09:14</span>
</div>
<p class="mt-1 text-sm text-gray-500">We received your order and confirmed payment.</p>
</div>
</li>
<!-- Current milestone -->
<li class="relative flex gap-4 pb-8 last:pb-0">
<div class="flex flex-col items-center">
<span class="flex h-9 w-9 items-center justify-center rounded-full border-2 border-blue-600 bg-white text-blue-600 ring-4 ring-blue-100">
<span class="h-2.5 w-2.5 rounded-full bg-blue-600"></span>
</span>
<span class="mt-1 w-px flex-1 bg-gray-200"></span>
</div>
<div class="min-w-0 flex-1">
<div class="flex items-center gap-2">
<p class="text-sm font-semibold text-gray-900">Out for delivery</p>
<span class="text-xs text-blue-600">In progress</span>
</div>
<p class="mt-1 text-sm text-gray-500">Your package is on the truck and should arrive today.</p>
</div>
</li>
<!-- Pending milestone -->
<li class="relative flex gap-4">
<div class="flex flex-col items-center">
<span class="flex h-9 w-9 items-center justify-center rounded-full border-2 border-gray-200 bg-white text-gray-300">
<svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
</span>
</div>
<div class="min-w-0 flex-1">
<div class="flex items-center gap-2">
<p class="text-sm font-semibold text-gray-400">Delivered</p>
</div>
<p class="mt-1 text-sm text-gray-400">Estimated Aug 5 by end of day.</p>
</div>
</li>
</ol> # Step Progress
Step-based progress indicator.
## Usage
```bash
npx devsnips add Tailwind/Components/Progress/step-progress
```
Copy from `code.html`.
## File Structure
`code.html` · `preview.html` · `metadata.json` · `README.md` 56 lines UTF-8 · LF · Spaces: 2
Continue browsing