-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4f1119
commit b8e196d
Showing
11 changed files
with
145 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## 顺序反转 @en{Reverse Order} | ||
|
||
#### 9 | ||
|
||
```js | ||
import { Steps } from '@arco-design/mobile-react'; | ||
|
||
export default function StepsDemo() { | ||
return ( | ||
<div> | ||
<Steps reverseOrder current={1}> | ||
<Steps.Step title="Start" description="Details" /> | ||
<Steps.Step title="Step 2" description="Details" /> | ||
<Steps.Step title="Step 3" description="Details" /> | ||
<Steps.Step title="Finish" description="Details" /> | ||
</Steps> | ||
<div className="divide" /> | ||
<Steps reverseOrder current={1} direction="vertical" iconType="dot"> | ||
<Steps.Step title="Start" description="Details" /> | ||
<Steps.Step title="Step 2" description="Details" /> | ||
<Steps.Step title="Step 3" description="Details" /> | ||
<Steps.Step title="Finish" description="Details" /> | ||
</Steps> | ||
</div> | ||
); | ||
} | ||
``` | ||
|
||
```less | ||
.divide { | ||
.rem(height, 8); | ||
.use-var(background, card-background-color); | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters