Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

295
Views
Getting error on React JS while using fontawesome 5 Error: Could not find icon ObjecticonName: "faHeart"prefix: "fas"

I am trying to add fontawesome icon on my react js project but getting an error.

npm version: 8.1.4
node version: 17.2.0

├─┬ @fortawesome/react-fontawesome@0.1.16
│ └── react@17.0.2 deduped
├─┬ @testing-library/react@11.2.7
│ └── react@17.0.2 deduped
├─┬ react-dom@17.0.2
│ └── react@17.0.2 deduped
├─┬ react-icons@4.3.1
│ └── react@17.0.2 deduped
├─┬ react-scripts@4.0.3
│ └── react@17.0.2 deduped
└── react@17.0.2

I want to add two heart icons on my project. One is solid and one is regular. The code is for the heart icons are:

<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>

On my react.js project, a class component I have declared named Like, and the code is shown below:

import React from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faHeart } from '@fortawesome/free-regular-svg-icons';

class Like extends React.Component {
  render() {
    return <FontAwesomeIcon icon={['fas', 'faHeart']}></FontAwesomeIcon>;
  }
}

export default Like;

I get this error: Could not find icon {prefix: 'fas', iconName: 'faHeart'}

If I use return <FontAwesomeIcon icon={faHeart}></FontAwesomeIcon>; then it solved but I need to add the two icon ones prefix is fas and ones is fas.

How can I do that? Please help me. I am new to React.js.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!