ant-design/components/steps/demo/small-size.md

40 lines
554 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
2016-07-21 10:07:30 +08:00
title:
zh-CN: 迷你版
en-US: Mini version
2016-03-31 09:40:55 +08:00
---
2015-06-25 16:01:04 +08:00
2016-07-21 10:07:30 +08:00
## zh-CN
2015-09-01 17:43:08 +08:00
迷你版的步骤条,通过设置 `<Steps size="small">` 启用.
2015-06-25 18:12:42 +08:00
2016-07-21 10:07:30 +08:00
## en-US
By setting like this: `<Steps size="small">`, you can get a mini version.
```tsx
import { Steps } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2018-06-27 15:55:04 +08:00
const App: React.FC = () => (
<Steps
size="small"
current={1}
items={[
{
title: 'Finished',
},
{
title: 'In Progress',
},
{
title: 'Waiting',
},
]}
/>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```