后臺數(shù)據(jù)庫存的icon type是antd v4的icon
前端頁面應(yīng)該如何使用顯示icon呢
解決辦法如下
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>
);
}