0.0.11 • Published 7 years ago

react-progress-steps-peacock v0.0.11

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

react-progress-steps

react-progress-steps

Quick Start

npm install react-progress-steps --save
<ProgressSteps steps={5} current={1} />

npm.io

You can disable the custom styling and use your own css. This will render divs with appropriate classes but no styling at all.

<ProgressSteps steps={5} current={1} styling={false} />
.ProgressSteps {
  &-Step {
    /* ... */

    &-activated {
      /* ... */
    }

    &-deactivated {
      /* ... */
    }

    &-current {
      /* ... */
    }  
  }

  &-Line {
    /* ... */

    &-activated {
      /* ... */
    }

    &-deactivated {
      /* ... */
    }
  }
}