可以这么写 import React from "react"; import * as Icon from '@ant-design/icons'; var iconType = 'MessageOutlined'; export default function App() { return ( <div > { React.createElement( Icon[iconType], { style:{ fontSize: '16px', color: '#08c' } } ) } </div> ); }
可以这么写