Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Fontawesome doesn't have free-brands-svg-icons, so cant show the social media icons

Is there anyway i can use social media icons on my React Webpage?

import { library } from '@fortawesome/fontawesome-svg-core'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { fas, faHome, faMapMarker } from '@fortawesome/free-solid-svg-icons';

tried to import

import { fab } from '@fortawesome/free-brands-svg-icons';

library.add( fab, fas, faHome, faMapMarker)

Tried to use it as both examples

<FontAwesomeIcon icon="fab facebook-f" />/<FontAwesomeIcon icon={['fab','facebook-f']} />

says fab cant be found on the fortawesome folder and throws an error

"Module not found: Can't resolve '@fortawesome/free-brands-svg-icons' in 'C:\Users\User\Desktop\tourism\src'"

like image 718
user7389132 Avatar asked Dec 24 '22 01:12

user7389132


2 Answers

As @fard said: npm i --save @fortawesome/free-brands-svg-icons

like image 60
user7389132 Avatar answered Dec 25 '22 14:12

user7389132


import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faFacebook } from "@fortawesome/free-brands-svg-icons"

then past the following line 
<FontAwesomeIcon icon={faFacebookF} /> 
like image 33
Ali Hamza Yaseen Avatar answered Dec 25 '22 14:12

Ali Hamza Yaseen