mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
476 B
476 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 11 |
|
zh-CN
带步骤的进度条。
en-US
A progress bar with steps.
import { Progress } from 'antd';
ReactDOM.render(
<div>
<Progress percent={50} steps={3} strokeColor="#1890ff" />
<br />
<Progress percent={30} steps={5} strokeColor="#1890ff" />
<br />
<Progress percent={100} steps={5} size="small" strokeColor="#1890ff" />
</div>,
mountNode,
);