mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
451 B
451 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
使用 type="vertical"
设置为行内的垂直分割线。
en-US
Use type="vertical"
make it vertical.
import { Divider } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
Text
<Divider type="vertical" />
<a href="#">Link</a>
<Divider type="vertical" />
<a href="#">Link</a>
</>
);
export default App;