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

76 lines
1.4 KiB
Markdown
Raw Normal View History

---
order: 9
title:
zh-CN: 迷你版点状步骤条
en-US: Dot Style Size Small
debug: true
---
## 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';
const App: React.FC = () => (
<>
<Steps
progressDot
current={1}
size="small"
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"
size="small"
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.',
},
]}
/>
</>
);
export default App;
```