mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-06 02:15:35 +08:00
64b905e9bd
* update icons deps * update all icon ref * fix lint * update snapshot
34 lines
585 B
Markdown
34 lines
585 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 带有图标的
|
|
en-US: With an Icon
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
图标放在文字前面。
|
|
|
|
## en-US
|
|
|
|
The icon should be placed in front of the text.
|
|
|
|
```jsx
|
|
import { Breadcrumb } from 'antd';
|
|
import { HomeOutlined, UserOutlined } from '@ant-design/icons';
|
|
|
|
ReactDOM.render(
|
|
<Breadcrumb>
|
|
<Breadcrumb.Item href="">
|
|
<HomeOutlined />
|
|
</Breadcrumb.Item>
|
|
<Breadcrumb.Item href="">
|
|
<UserOutlined />
|
|
<span>Application List</span>
|
|
</Breadcrumb.Item>
|
|
<Breadcrumb.Item>Application</Breadcrumb.Item>
|
|
</Breadcrumb>,
|
|
mountNode,
|
|
);
|
|
```
|