mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 01:11:26 +08:00
473 B
473 B
order | title | ||||
---|---|---|---|---|---|
11 |
|
zh-CN
带步骤的进度条。
en-US
A progress bar with steps.
import { Progress } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Progress percent={50} steps={3} />
<br />
<Progress percent={30} steps={5} />
<br />
<Progress percent={100} steps={5} size="small" strokeColor="#52c41a" />
</>
);
export default App;