@bolttech/atoms-stepper-horizontal
v0.7.0
Published
This is a React component package designed for creating horizontal steppers with progress bar.
Downloads
459
Maintainers
Keywords
Readme
@bolttech/atoms-stepper-horizontal
This is a React component package designed for creating horizontal steppers with progress bar.
Installation
You can install this package via npm:
npm install @bolttech/atoms-stepper-horizontal
Example:
import React from 'react';
import { StepperHorizontal } from '@bolttech/atoms-stepper-horizontal';
function MyComponent() {
return (
<div>
<StepperHorizontal
current={2}
description="Step 2/4"
limit={4}
status="default"
dataTestId="my-stepper"
/>
</div>
);
}
export default MyComponent;