mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
534 B
534 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
图标放在文字前面。
en-US
The icon should be placed in front of the text.
import { Breadcrumb, Icon } from 'antd';
ReactDOM.render(
<Breadcrumb>
<Breadcrumb.Item href="">
<Icon type="home" />
</Breadcrumb.Item>
<Breadcrumb.Item href="">
<Icon type="user" />
Application List
</Breadcrumb.Item>
<Breadcrumb.Item>
Application
</Breadcrumb.Item>
</Breadcrumb>
, mountNode);