Skip to content
Documentation
Packages
nextra-theme-docs
Writing Content
Steps

Steps

Show a series of steps in a process

Step Component

A built-in component of the Docs Theme to turn a numbered list into a visual representation of steps.

Example
Permalink for this section

This is the first step
Permalink for this section

This is the first step description.

This is the second step
Permalink for this section

This is the second step description.

This is the third step
Permalink for this section

This is the third step description.

Usage
Permalink for this section

Wrap a set of markdown h3 headings with the Steps component to turn them into visual steps.

Step 1
Permalink for this section

Content for step 1.

Step 2
Permalink for this section

Contents for step 2.


import { Steps } from "@visulima/nextra-theme-docs/components";
<Steps>
### Step 1
Contents for step 1.
### Step 2
Contents for step 2.
</Steps>

Or to use the component without a title, use the noTitle prop.

Content for step 1.

Contents for step 2.


import { Steps } from "@visulima/nextra-theme-docs/components";
<Steps noTitle>
Contents for step 1.
Contents for step 2.
</Steps>

API
Permalink for this section

The Steps component takes the following props:

noTitle (optional)
Permalink for this section

The type of the Callout.

  • Type: boolean
  • Default: 'false'