ant-design/components/steps/demo/progress-dot.md

73 lines
1.3 KiB
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: 点状步骤条
en-US: Dot Style
---
## zh-CN
包含步骤点的进度条。
## en-US
Steps with progress dot style.
```tsx
2022-05-23 14:37:16 +08:00
import { Divider, Steps } from 'antd';
import React from 'react';
2018-06-27 15:55:04 +08:00
const App: React.FC = () => (
<>
<Steps
progressDot
current={1}
items={[
{
title: 'Finished',
description: 'This is a description.',
},
{
title: 'In Progress',
description: 'This is a description.',
},
{
title: 'Waiting',
description: 'This is a description.',
},
]}
/>
<Divider />
<Steps
progressDot
current={1}
direction="vertical"
items={[
{
title: 'Finished',
description: 'This is a description. This is a description.',
},
{
title: 'Finished',
description: 'This is a description. This is a description.',
},
{
title: 'In Progress',
description: 'This is a description. This is a description.',
},
{
title: 'Waiting',
description: 'This is a description.',
},
{
title: 'Waiting',
description: 'This is a description.',
},
]}
/>
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```