
Company News
Socket Joins the OpenJS Foundation
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.
@availity/mui-stepper
Advanced tools
Availity MUI Stepper Component - part of the @availity/element design system
Availity MUI Stepper component to be used with @availity/element design system.
This package extends the MUI Stepper component: MUI Stepper Docs
Live demo and documentation in our Storybook
Availity standards for design and usage can be found in the Availity Design Guide
npm install @availity/element
yarn add @availity/element
This package has a few peer dependencies. Add @mui/material & @emotion/react to your project if not already installed.
npm install @availity/mui-stepper
yarn add @availity/mui-stepper
import { Stepper } from '@availity/element';
import { Stepper } from '@availity/mui-stepper';
import { useState } from 'react';
import { Stepper, Step, StepLabel } from '@availity/element';
const steps = ['Step 1', 'Step 2', 'Step 3'];
const Example = () => {
const [activeStep, setActiveStep] = useState(0);
const handleBack = () => {
setActiveStep((prevActiveStep) => prevActiveStep - 1);
};
const handleNext = () => {
setActiveStep((prevActiveStep) => prevActiveStep + 1);
};
return (
<>
<Stepper activeStep={0}>
{steps.map((label, index) => {
return (
<Step key={label}>
<StepLabel>{label}</StepLabel>
</Step>
);
})}
</Stepper>
<Button color="secondary" disabled={activeStep === 0} onClick={handleBack} sx={{ mr: 1 }}>
Back
</Button>
<Button color={activeStep === steps.length - 1 ? 'primary' : 'secondary'} onClick={handleNext}>
{activeStep === steps.length - 1 ? 'Finish' : 'Next'}
</Button>
</>
);
};
FAQs
Availity MUI Stepper Component - part of the @availity/element design system
We found that @availity/mui-stepper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?

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.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.

Security News
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.