pnpm dlx shadcn@latest add https://ui.saturation.io/r/step-timeline.jsonimport { StepTimeline } from "@/components/ui/step-timeline"const steps = [
{
id: "1",
title: "Planning",
description: "Define scope and requirements",
status: "completed",
},
{
id: "2",
title: "Development",
description: "Build the feature",
status: "in-progress",
},
{
id: "3",
title: "Review",
status: "pending",
},
]
<StepTimeline steps={steps} />| Prop | Type | Default | Description |
|---|---|---|---|
steps | Step[] | — | Array of step objects. |
className | string | — | Additional CSS classes. |
interface Step {
id: string
title: string
description?: string
status: "completed" | "in-progress" | "pending"
icon?: LucideIcon
details?: string
}On This Page
3 files uploaded
Analyzing documents...
Waiting for processing