--- order: 2 title: zh-CN: 图标 en-US: Icon --- ## zh-CN 有图标的标签。 ## en-US The Tab with Icon. ```tsx import { AndroidOutlined, AppleOutlined } from '@ant-design/icons'; import { Tabs } from 'antd'; import React from 'react'; const App: React.FC = () => ( { const id = String(i + 1); return { label: ( Tab {id} ), key: id, children: `Tab ${id}`, }; })} /> ); export default App; ```