# @igloo-ui/stepper

> The Stepper component provides a visual representation of a multi-step process.

Latest version **0.7.0** (published 2026-03-24) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @igloo-ui/stepper
pnpm add @igloo-ui/stepper
yarn add @igloo-ui/stepper
bun add @igloo-ui/stepper
```

## Health

**Score 55/100 (C)** — status: active.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.7.0 |
| Published | 2026-03-24 |
| First published | 2023-05-24 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 5 |
| Unpacked size | 24.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 23 |
| Author | Officevibe Inc. |
| Maintainers | infra.admin, alexasselin008 |

## Links

- npm: https://www.npmjs.com/package/@igloo-ui/stepper
- Repository: https://github.com/workleap/ov-igloo-ui
- Homepage: https://github.com/workleap/ov-igloo-ui#readme
- Issues: https://github.com/workleap/ov-igloo-ui/issues
- npm.io page: https://npm.io/package/@igloo-ui/stepper

## Dependencies (5)

- [classnames](https://npm.io/package/classnames.md) ^2.3.2
- [react-aria](https://npm.io/package/react-aria.md) ^3.32.1
- [@igloo-ui/tokens](https://npm.io/package/@igloo-ui/tokens.md) ^2.1.0
- [@hopper-ui/tokens](https://npm.io/package/@hopper-ui/tokens.md) ^5.0.0
- [@igloo-ui/tooltip](https://npm.io/package/@igloo-ui/tooltip.md) ^4.1.0

## Recent versions

- 0.7.0 (latest) — 2026-03-24
- 0.6.1 — 2026-03-11
- 0.6.0 — 2025-07-22
- 0.5.1 — 2025-01-23
- 0.5.0 — 2024-09-23
- 0.4.2 — 2024-09-18
- 0.4.1 — 2024-08-01
- 0.4.0 — 2024-05-27
- 0.3.4 — 2024-05-17
- 0.3.3 — 2024-05-02
- 0.3.2 — 2024-04-10
- 0.3.1 — 2024-02-23
- 0.3.0 — 2024-01-23
- 0.2.4 — 2024-01-10
- 0.2.3 — 2023-12-19
- … 7 more at https://npm.io/package/@igloo-ui/stepper/versions

## README

# Stepper

The Stepper component provides a visual representation of a multi-step process.

<Example is="custom" />

<ReferenceLinks is="custom" />

## Installation

To install `@igloo-ui/stepper` in your project, you will need to run the following command using [npm](https://www.npmjs.com/):

```bash
npm install @igloo-ui/stepper
```

If you prefer [Yarn](https://classic.yarnpkg.com/en/), use the following command instead:

```bash
yarn add @igloo-ui/stepper
```

## Usage

Then to use the component in your code just import it!

```jsx
import Button from '@igloo-ui/button';
import Stepper from '@igloo-ui/stepper';

const [currentStep, setCurrentStep] = React.useState(0);
const exampleSteps = [
  { title: 'Step 1', onClick: (index) => setCurrentStep(index) },
  { title: 'Step 2', onClick: (index) => setCurrentStep(index) },
  { title: 'Step 3', onClick: (index) => setCurrentStep(index) },
];

<Stepper
  currentStep={currentStep}
  style={{ flex: '1 1 auto' }}
  steps={exampleSteps}
/>
<Button
  onClick={() => setCurrentStep((prevCurrentStep) => prevCurrentStep + 1)}
  disabled={currentStep === exampleSteps.length - 1}
>
  Continue
</Button>;
```

---
_Source: https://npm.io/package/@igloo-ui/stepper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
