Displays progress through a sequence of numbered steps by highlighting the active step. It renders a container with steps, each represented by the Step
component.
import { StepBar } from "@/ui/navigation/step-bar/components/StepBar"; export const MyComponent = () => { return ( <StepBar activeStep={2}> <StepBar.Step>Step 1</StepBar.Step> <StepBar.Step>Step 2</StepBar.Step> <StepBar.Step>Step 3</StepBar.Step> </StepBar> ); };
As an open-source company, we welcome contributions through Github. Help us keep it up-to-date, accurate, and easy to understand by getting involved and sharing your ideas!