2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 2
|
2017-02-04 01:13:35 +08:00
|
|
|
title:
|
2016-08-23 14:15:34 +08:00
|
|
|
zh-CN: 图标
|
|
|
|
en-US: Icon
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-15 16:11:28 +08:00
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-06-17 20:28:02 +08:00
|
|
|
有图标的标签。
|
2015-06-15 16:11:28 +08:00
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
The Tab with Icon.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2022-05-23 14:37:16 +08:00
|
|
|
import { AndroidOutlined, AppleOutlined } from '@ant-design/icons';
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Tabs } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React from 'react';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2022-08-05 10:49:08 +08:00
|
|
|
<Tabs
|
|
|
|
defaultActiveKey="2"
|
|
|
|
items={[AppleOutlined, AndroidOutlined].map((Icon, i) => {
|
|
|
|
const id = String(i + 1);
|
|
|
|
|
|
|
|
return {
|
|
|
|
label: (
|
|
|
|
<span>
|
|
|
|
<Icon />
|
|
|
|
Tab {id}
|
|
|
|
</span>
|
|
|
|
),
|
|
|
|
key: id,
|
|
|
|
children: `Tab ${id}`,
|
|
|
|
};
|
|
|
|
})}
|
|
|
|
/>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|