> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 단계 막대

<Frame>
  <img src="https://mintcdn.com/twenty/JIRRbviz5phT8G2L/images/user-guide/api/api.png?fit=max&auto=format&n=JIRRbviz5phT8G2L&q=85&s=ee5516c73ff3a67329a76b0cab916d3c" alt="헤더" width="1440" height="680" data-path="images/user-guide/api/api.png" />
</Frame>

활성 단계가 강조 표시되어 있는 다단계 진행 상황을 표시합니다. 각각의 `Step` 구성 요소로 표현되는 단계를 포함하는 컨테이너를 렌더링합니다.

<Tabs>
  <Tab title="사용법">
    ```jsx theme={null}
    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>
      );
    };
    ```
  </Tab>

  <Tab title="프로퍼티">
    | 프로퍼티       | 유형 | 설명                                                  |
    | ---------- | -- | --------------------------------------------------- |
    | activeStep | 숫자 | 현재 활성 단계의 인덱스입니다. 어느 단계가 시각적으로 강조 표시되어야 하는지를 결정합니다. |
  </Tab>
</Tabs>
