---
title: Step Bar
---
Displays progress through a sequence of numbered steps by highlighting the active step. It renders a container with steps, each represented by the `Step` component.
```jsx
import { StepBar } from "@/ui/navigation/step-bar/components/StepBar";
export const MyComponent = () => {
return (
Step 1
Step 2
Step 3
);
};
```
| Props | Type | Description |
|-------|------|-------------|
| activeStep | number | The index of the currently active step. This determines which step should be visually highlighted |