# @easyguide/stepper

> Components stepper ui

Latest version **0.9.12** (published 2019-06-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install @easyguide/stepper
pnpm add @easyguide/stepper
yarn add @easyguide/stepper
bun add @easyguide/stepper
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.9.12 |
| Published | 2019-06-17 |
| First published | 2018-09-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=8 |
| Dependencies | 2 |
| Unpacked size | 13 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | iamtchelo |
| Maintainers | celso-henrique, danicastilho, guilhermegregio, iacono, iamtchelo, rafaellucio, wellyal |

## Links

- npm: https://www.npmjs.com/package/@easyguide/stepper
- Repository: https://github.com/easynvest/easyguide
- Homepage: https://github.com/easynvest/easyguide#readme
- Issues: https://github.com/easynvest/easyguide/issues
- npm.io page: https://npm.io/package/@easyguide/stepper

## Dependencies (2)

- [lodash](https://npm.io/package/lodash.md) ^4.17.11
- [history](https://npm.io/package/history.md) ^4.7.2

## Recent versions

- 0.9.12 (latest) — 2019-06-17
- 0.9.11 — 2019-06-07
- 0.9.7 — 2019-02-08
- 0.9.6 — 2019-02-08
- 0.9.5 — 2019-02-08
- 0.9.4 — 2019-02-08
- 0.9.1 — 2019-01-03
- 0.8.2 — 2018-11-22
- 0.8.1 — 2018-11-21
- 0.8.0 — 2018-11-13
- 0.7.0 — 2018-11-12
- 0.6.0 — 2018-10-30
- 0.5.0 — 2018-10-26
- 0.4.2 — 2018-10-22
- 0.4.0 — 2018-10-15
- … 2 more at https://npm.io/package/@easyguide/stepper/versions

## README

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

- [@easyguide/stepper](#easyguidestepper)
  - [Install](#install)
  - [Usage](#usage)
  - [License](#license)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

# @easyguide/stepper

> Camponents stepper ui

[![NPM](https://img.shields.io/npm/v/@easyguide/stepper.svg)](https://www.npmjs.com/package/@easyguide/stepper) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save @easyguide/stepper
```

## Usage

```jsx
import React, {Component} from 'react'

import Stepper, {withStep} from '@easyguide/stepper'

const Step = withStep(({ previous, next, activeStep }) => (
  <section data-testid="step">
    <h1>{activeStep}</h1>
    <p>description</p>
    <button onClick={previous} data-testid="step-previous-button">
      previous
    </button>
    <button onClick={next} data-testid="step-next-button">
      next
    </button>
  </section>
))

class Example extends Component {
  render() {
    return (
      <Stepper>
        <Step stepName="step 1" />
        <Step stepName="step 2" />
      </Stepper>
    )
  }
}
```

## License

MIT © [iamtchelo](https://github.com/iamtchelo)

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