Step List
Ordered list component for displaying sequential steps
Quick Preview
- 1
Sign Up
Create your free account in seconds
- 2
Configure
Set up your project settings and preferences
- 3
Deploy
Launch your application to the world
Installation
// Copy the StepList component fromsrc/components/common/StepList.tsx
Usage
import { StepList } from '@/components/common/StepList'const steps = [{title: "Sign Up",description: "Create your free account"},{title: "Configure",description: "Set up your project"},{title: "Deploy",description: "Launch your application"}]export default function MyComponent() {return <StepList steps={steps} />}
Examples
Basic Steps
Simple 3-step process
- 1
Sign Up
Create your free account in seconds
- 2
Configure
Set up your project settings and preferences
- 3
Deploy
Launch your application to the world
Extended Steps
More detailed process with 5 steps
- 1
Sign Up
Create your free account in seconds
- 2
Configure
Set up your project settings and preferences
- 3
Deploy
Launch your application to the world
- 4
Monitor
Track your application performance
- 5
Scale
Grow your infrastructure as needed
Prompt Preview
Copy a prompt that recreates this UI
Paste this into your AI coding assistant to generate code that closely matches the reference, including color, size, shape, typography, spacing, and polish.
Copy-ready AI prompt
Starts from the current visual reference and project constraints.
Tweak only product-specific copy or data after the first generation pass.
Props
| Prop | Type | Default | Description |
|---|---|---|---|
steps* | StepItem[] | - | Array of steps with title and description |
StepItem Type
interface StepItem {title: stringdescription: string}
Features
- โCircular step numbers with teal background
- โBold step titles
- โDescription text
- โClean vertical layout