我使用这个对象作为 React.js 组件道具。但发送后,FontAwsome 找不到通过的图标
{
key: 'editButton',
title: 'Edit',
icon: 'faEdit',
function: null,
type: 'default ',
},
{
key: 'deleteButton',
title: 'Delete',
icon: 'faTrash',
type: 'danger',
function: null,
},
我的组件:
<FontAwesomeIcon icon={item.icon} />
错误:
index.js:1 Could not find icon {prefix: "fas", iconName: "faEdit"}