Package Exports
- react-stepper-js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-stepper-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-stepper-js
Stepper component for react
Install
npm install --save react-stepper-js
Usage
import React, { Component } from 'react'
import Steeper from 'react-stepper-js'
import 'react-stepper-js/dist/index.css'
class Example extends Component {
render() {
return <Steeper
color="#23b561"
fontSize="20px"
steps={[
{ label: "step 1" },
{ label: "step 2" },
{ label: "step 3" },
{ label: "step 4" }
]}
currentStep={4}
/>
}
}
License
MIT © [Ori Deri] (https://github.com/Orid19)