ant-design/components/space/demo/base.md

38 lines
669 B
Markdown
Raw Normal View History

---
order: 0
title:
zh-CN: 基本用法
en-US: Basic Usage
---
## zh-CN
相邻组件水平间距。
## en-US
Crowded components horizontal spacing.
```tsx
import { UploadOutlined } from '@ant-design/icons';
2022-05-21 22:14:15 +08:00
import { Button, Popconfirm, Space, Upload } from 'antd';
import React from 'react';
const App: React.FC = () => (
2022-04-28 20:54:19 +08:00
<Space>
Space
<Button type="primary">Button</Button>
<Upload>
<Button>
<UploadOutlined /> Click to Upload
</Button>
</Upload>
<Popconfirm title="Are you sure delete this task?" okText="Yes" cancelText="No">
<Button>Confirm</Button>
</Popconfirm>
</Space>
);
2022-04-28 20:54:19 +08:00
export default App;
```