
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@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
The npm package @availity/mui-stepper receives a total of 307 weekly downloads. As such, @availity/mui-stepper popularity was classified as not popular.
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 won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.