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.
ExamplePermalink for this section
This is the first stepPermalink for this section
This is the first step description.
This is the second stepPermalink for this section
This is the second step description.
This is the third stepPermalink for this section
This is the third step description.
UsagePermalink for this section
Wrap a set of markdown h3 headings with the Steps
component to turn them into
visual steps.
Step 1Permalink for this section
Content for step 1.
Step 2Permalink for this section
Contents for step 2.
import { Steps } from "@visulima/nextra-theme-docs/components";<Steps>### Step 1Contents for step 1.### Step 2Contents 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>
APIPermalink 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'