ant-design/components/breadcrumb/demo/withIcon.md
2016-07-21 11:48:56 +08:00

546 B

order title
1
zh-CN en-US
带有图标的 With an Icon

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" />
      <span>Application List</span>
    </Breadcrumb.Item>
    <Breadcrumb.Item>
      Application
    </Breadcrumb.Item>
  </Breadcrumb>
, mountNode);