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

Interactive preview
Open preview
9:41 100%
devsnips.dev/library/tailwind/components/progress/step-progress/
fluid · no fixed width 100%
No dependencies Responsive

Install

Add to your project

terminal
npx devsnips add Tailwind/Components/Progress/step-progress
registry path: Tailwind/Components/Progress/step-progress

Source

Implementation

code.html
<!--
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>
56 lines UTF-8 · LF · Spaces: 2

AI-ready

Available to your agent.

This component is reachable through the DevSnips CLI, MCP server and Skills integrations — one registry, one resource path.

Resource path

devsnips://components/progress/step-progress

Continue browsing

View all