I using this object as React.js component props. but after sent it, FontAwsome could not find passed icon
{
key: 'editButton',
title: 'Edit',
icon: 'faEdit',
function: null,
type: 'default ',
},
{
key: 'deleteButton',
title: 'Delete',
icon: 'faTrash',
type: 'danger',
function: null,
},
my component:
<FontAwesomeIcon icon={item.icon} />
error:
index.js:1 Could not find icon {prefix: "fas", iconName: "faEdit"}