mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
429 B
429 B
order | title | ||||
---|---|---|---|---|---|
99 |
|
zh-CN
相邻组件分隔符。
en-US
Crowded components split.
import { Space, Typography, Divider } from 'antd';
const App = () => (
<Space split={<Divider type="vertical" />}>
<Typography.Link>Link</Typography.Link>
<Typography.Link>Link</Typography.Link>
<Typography.Link>Link</Typography.Link>
</Space>
);
export default App;