ant-design/components/tabs/demo/icon.md

23 lines
425 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 图标
---
2015-06-15 16:11:28 +08:00
2015-06-17 20:28:02 +08:00
有图标的标签。
2015-06-15 16:11:28 +08:00
````jsx
import { Tabs, Icon } from 'antd';
const TabPane = Tabs.TabPane;
2015-06-15 16:11:28 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-08-06 16:47:01 +08:00
<Tabs defaultActiveKey="2">
2016-05-18 11:04:25 +08:00
<TabPane tab={<span><Icon type="apple" />选项卡一</span>} key="1">
选项卡一
</TabPane>
<TabPane tab={<span><Icon type="android" />选项卡二</span>} key="2">
选项卡二
</TabPane>
2015-06-15 19:56:58 +08:00
</Tabs>
, mountNode);
2015-06-15 16:11:28 +08:00
````