You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
554 B

---
order: 1
title:
zh-CN: 迷你版
en-US: Mini version
---
10 years ago
## zh-CN
9 years ago
迷你版的步骤条,通过设置 `<Steps size="small">` 启用.
10 years ago
## en-US
By setting like this: `<Steps size="small">`, you can get a mini version.
```tsx
import { Steps } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Steps
size="small"
current={1}
items={[
{
title: 'Finished',
},
{
title: 'In Progress',
},
{
title: 'Waiting',
},
]}
/>
);
export default App;
```