--- order: 1 title: zh-CN: 带有图标的 en-US: With an Icon --- ## zh-CN 图标放在文字前面。 ## en-US The icon should be placed in front of the text. ```tsx import { HomeOutlined, UserOutlined } from '@ant-design/icons'; import { Breadcrumb } from 'antd'; import React from 'react'; const App: React.FC = () => ( Application List Application ); export default App; ```