--- 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 { TabPane } = Tabs; const App: React.FC = () => ( Tab 1 } key="1" > Tab 1 Tab 2 } key="2" > Tab 2 ); export default App; ```