New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stepper-component

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stepper-component

A simple react component to show to number of steps and current step the user is in. Very easy to use and simple to integrate

0.1.4
latest
Source
npm
Version published
Maintainers
1
Created
Source

#React Stepper Component

A simple react component to show to number of steps and current step the user is in. Very easy to use and simple to integrate

IN ACTION

import React, { Component } from 'react';
import Stepper from 'stepper-component'

class App extends Component {
  render() {
    return (
      <div>
        <Stepper steps={4} 
			currentStep={3}/>
      </div>
    );
  }
}
export default App;

PROPS

The following is a list of optional props that stepper-component accepts

NameDescriptionExample
stepsnumber of stepssteps={3}
currentStepcurrent stepcurrentSteps={3}
pxcontainer horizontal padding (in px)px={16}
pycontainer vertical padding (in px)py={12}
sizeeach circle size ( height & width ) (in px)size={20}
lineWidthhorizontal line's width (in px)px={16}

###Usescase

<Stepper 
	steps={4} 
	currentStep={3} 
	px={16} 
	py={12} 
	size={20} 
	lineWidth={30}/>

Keywords

stepper

FAQs

Package last updated on 02 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts