stepsIntermediate
Stepper Indicator
A multi-step progress indicator with completed / current / upcoming states.
Claude prompt
Drop this into Claude Code, claude.ai, or your AI tool of choice to regenerate or remix this component from scratch.
Build a horizontal stepper with Tailwind: 4-5 numbered circles connected by a line, with a label below each. Completed steps get a checkmark and a filled background; the current step is filled but with a number instead of a check; upcoming steps are outlined with a muted number.
Code
html
<!--
Source: Mark Mead (HyperUI)
https://github.com/markmead/hyperui/blob/d09f638255d00e91e95f3cabea4f1d385356dd70/public/examples/application/steps/1.html
License: MIT
Surfaced via https://vibedex.io/components/hyperui-app-steps
-->
<div class="bg-white text-gray-900 min-h-screen flex items-center justify-center">
<div class="mx-auto max-w-3xl p-6 w-full">
<div>
<h2 class="sr-only">Steps</h2>
<div>
<div class="overflow-hidden rounded-full bg-gray-200">
<div class="h-2 w-1/2 rounded-full bg-blue-500"></div>
</div>
<ol class="mt-4 grid grid-cols-3 text-sm font-medium text-gray-600">
<li class="flex items-center justify-start text-blue-500 sm:gap-1.5">
<span class="hidden sm:inline"> Details </span>
<svg
class="size-6 sm:size-5"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M10 6H5a2 2 0 00-2 2v9a2 2 0 002 2h14a2 2 0 002-2V8a2 2 0 00-2-2h-5m-4 0V5a2 2 0 114 0v1m-4 0a2 2 0 104 0m-5 8a2 2 0 100-4 2 2 0 000 4zm0 0c1.306 0 2.417.835 2.83 2M9 14a3.001 3.001 0 00-2.83 2M15 11h3m-3 4h2"
/>
</svg>
</li>
<li class="flex items-center justify-center text-blue-500 sm:gap-1.5">
<span class="hidden sm:inline"> Address </span>
<svg
class="size-6 sm:size-5"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"
/>
</svg>
</li>
<li class="flex items-center justify-end sm:gap-1.5">
<span class="hidden sm:inline"> Payment </span>
<svg
class="size-6 sm:size-5"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"
/>
</svg>
</li>
</ol>
</div>
</div>
</div>
</div>