> ## 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` コンポーネントによって表されるステップを含むコンテナをレンダリングします。 各 `Step` コンポーネントによって表されるステップを含むコンテナをレンダリングします。 アクティブなステップをハイライトして、一連の番号付きステップの進行状況を表示します。 各 `Step` コンポーネントによって表されるステップを含むコンテナをレンダリングします。 各 `Step` コンポーネントによって表されるステップを含むコンテナをレンダリングします。 各 `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="プロパティ">
    | プロパティ     | タイプ | 説明                                                    |
    | --------- | --- | ----------------------------------------------------- |
    | アクティブステップ | 数   | 現在アクティブなステップのインデックス。 これにより、どのステップを視覚的にハイライトするかが決まります。 |
  </Tab>
</Tabs>
