Skip to content

Commit 1c02f35

Browse files
ethanpalmclaude
andcommitted
Update Steps component page
- Add clear introduction explaining the Steps component - Improve language clarity and consistency - Remove unnecessary periods from prop descriptions - Add Oxford comma for better readability - Make description more action-oriented 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 988ea18 commit 1c02f35

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

components/steps.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'Sequence content using the Steps component'
44
icon: 'list-todo'
55
---
66

7-
Steps are the best way to display a series of actions of events to your users. You can add as many steps as desired.
7+
The `<Steps>` component displays a series of sequential actions or events. You can add as many steps as needed for your workflow.
88

99
<Steps>
1010
<Step title="First Step">
@@ -39,17 +39,17 @@ Steps are the best way to display a series of actions of events to your users. Y
3939
## Steps Props
4040

4141
<ResponseField name="children" type="ReactElement<StepProps>[]" required>
42-
A list of `Step` components.
42+
A list of `Step` components
4343
</ResponseField>
4444

4545
<ResponseField name="titleSize" type="string" default="p">
46-
The size of the step titles. One of `p`, `h2` and `h3`.
46+
The size of the step titles. One of `p`, `h2`, and `h3`
4747
</ResponseField>
4848

4949
## Individual Step Props
5050

5151
<ResponseField name="children" type="string | ReactNode" required>
52-
The content of a step either as plain text, or components.
52+
The content of a step either as plain text or components
5353
</ResponseField>
5454

5555
<ResponseField name="icon" type="string or svg">
@@ -61,13 +61,13 @@ Steps are the best way to display a series of actions of events to your users. Y
6161
</ResponseField>
6262

6363
<ResponseField name="title" type="string">
64-
The title is the primary text for the step and shows up next to the indicator.
64+
The title is the primary text for the step and shows up next to the indicator
6565
</ResponseField>
6666

6767
<ResponseField name="stepNumber" type="number">
68-
The number of the step.
68+
The number of the step
6969
</ResponseField>
7070

7171
<ResponseField name="titleSize" type="string" default="p">
72-
The size of the step titles. One of `p`, `h2` and `h3`.
72+
The size of the step titles. One of `p`, `h2`, and `h3`
7373
</ResponseField>

0 commit comments

Comments
 (0)