There are a few ways of adding icons to a React project. Choose the option that works for your project, and then add icons in your UI using the FontAwesomeIcon element.
Advertisement
Remove ads with a Pro plan!
A subscription to a Pro-level plan will remove all third-party advertisements on fontawesome.com.
And of course Pro-level plans come with…
All 26,233 icons in Font Awesome
5 Classic styles of every icon
3 Sharp styles of every icon
A Perpetual License to use Pro
Services and tools to make easy work of using icons
There are a few ways to add icons when using React. The easiest way is to use Dynamic Icon Importing which automatically imports the icons you're using - and only the icons you're using. But you can choose other methods that allow you to explicitly add individual icons or add icons to a global library.
Font Awesome Sharp requires Pro and specific versions!
Dynamic Icon Importing eliminates the need to declare individual icons, saving you time adding icons and tracking down unused icons. This work is based on javascripter's babel macro plugin(opens new window)
Install the Babel Macros
First, you'll install the babel macros using npm or yarn:
npminstall babel-plugin-macros
yarnadd babel-plugin-macros
Set Up the Babel Configs
Advertisement
Remove ads with a Pro plan!
A subscription to a Pro-level plan will remove all third-party advertisements on fontawesome.com.
And of course Pro-level plans come with…
All 26,233 icons in Font Awesome
5 Classic styles of every icon
3 Sharp styles of every icon
A Perpetual License to use Pro
Services and tools to make easy work of using icons
Then, create a babel-plugin-macros.config.js and add the fontawesome-svg-core settings. You can set the license to either free or pro depending on the icons you are planning to use. (Learn more about setting babel macros(opens new window))
Use the syntax below wherever you want them to appear in your project.
import{ icon }from'@fortawesome/fontawesome-svg-core/import.macro'// Specify all properties: name, family, styleicon({name:'user',family:'classic',style:'solid'})icon({name:'user',family:'classic',style:'regular'})icon({name:'twitter',family:'classic',style:'brands'})// 'classic' is the default family, you can leave that officon({name:'user',style:'solid'})icon({name:'user',style:'regular'})icon({name:'twitter',style:'brands'})// 'solid' is the default style, you can leave that officon({name:'user'})
import{ icon }from'@fortawesome/fontawesome-svg-core/import.macro'// Specify all properties: name, family, styleicon({name:'user',family:'classic',style:'solid'})icon({name:'user',family:'classic',style:'regular'})icon({name:'user',family:'classic',style:'light'})icon({name:'user',family:'classic',style:'thin'})icon({name:'user',family:'duotone',style:'solid'})icon({name:'user',family:'sharp',style:'solid'})icon({name:'user',family:'sharp',style:'regular'})icon({name:'user',family:'sharp',style:'light'})icon({name:'twitter',family:'classic',style:'brands'})// 'classic' is the default family, you can leave that officon({name:'user',style:'solid'})icon({name:'user',style:'regular'})icon({name:'user',style:'light'})icon({name:'user',style:'thin'})// 'solid' is the default style, you can leave that officon({name:'user'})
Seeing it in context makes more sense.
import{ FontAwesomeIcon }from'@fortawesome/react-fontawesome'import{ icon }from'@fortawesome/fontawesome-svg-core/import.macro'<FontAwesomeIconicon={icon({name:'user-secret'})}/>// Defaults to the Classic family, Solid style<FontAwesomeIconicon={icon({name:'coffee',style:'regular'})}/>// Defaults to Classic family<FontAwesomeIconicon={icon({name:'coffee',family:'sharp',style:'solid'})}/>// Setting both family and style<FontAwesomeIconicon={icon({name:'twitter',style:'brands'})}/>// A brand icon
import{ FontAwesomeIcon }from'@fortawesome/react-fontawesome'import{ solid, regular, light, thin, duotone, icon }from'@fortawesome/fontawesome-svg-core/import.macro'// <-- import styles to be used<FontAwesomeIconicon={icon({name:'user-secret'})}/>// Defaults to the Classic family, Solid style<FontAwesomeIconicon={icon({name:'coffee',style:'regular'})}/>// Defaults to Classic family<FontAwesomeIconicon={icon({name:'coffee',family:'classic',style:'light'})}/>// Setting both family and style<FontAwesomeIconicon={icon({name:'coffee',family:'classic',style:'thin'})}/>// Thin<FontAwesomeIconicon={icon({name:'coffee',family:'duotone',style:'solid'})}/>// Duotone<FontAwesomeIconicon={icon({name:'user-secret',family:'sharp',style:'solid'})}/>// Sharp Solid<FontAwesomeIconicon={icon({name:'plate-utensils',family:'sharp',style:'regular'})}/>// Sharp Regular<FontAwesomeIconicon={icon({name:'starship',family:'sharp',style:'light'})}/>// Sharp Light<FontAwesomeIconicon={icon({name:'twitter',style:'brands'})}/>// A brand icon
Older import macros solid(), regular(), light(), thin(), duotone(),
and brands() are still supported for backward-compatibility. But we recommend
you switch to the newer icon() function
Add Some Style
Now that you have some icons on the page, add some pieces of flair! Check out all the styling options you can use with Font Awesome and React.
If you can't dynamically import icons, we have a couple of other options available. Here's a handy table comparing the ways you can add icons with React:
Automatically includes just the icons you're using in your components, optimizing your final bundle. Only the icons you use are included in the bundle.
Individually import icons just once in an init module - there's no need to import the icons into each component once they’ve been added to the library.
You may be including files that won't be used and could impact performance.
Add Individual Icons Explicitly
If you can't or don't want to use the Dynamic Icon Importing method, you can explicitly add individual icons to each component. Here's a simple example:
Notice that the faEnvelope icon is imported from @fortawesome/free-solid-svg-icons as an object and then provided to the icon prop as an object.
Add Icons Globally
We like to travel light so we don't recommend this method unless you know what you're doing. Globally importing icons can increase the size of your bundle with icons you aren't using. It also couples your components to another module that manages your icons. But here's how you do it if you can't use dynamic icon importing or global is how you like to roll.
First, you'll import the icons you want to use via a “library” in the initializing module of your React application, like App.js. Here's an example of that:
fas: which represents all of the icons in @fortawesome/free-solid-svg-icons. (Be careful importing whole styles - it can be a LOT of icons!) So any of the icons in that package may be referenced by icon name as a string anywhere else in our app. For example: coffee, check-square, or spinner.
faTwitter, faFontAwesome, faHatCowboy, faHatChef, and faPlateUtensils: Adding each of these icons individually allows us to refer to them throughout our app by their icon string names, twitter, font-awesome, hat-cowboy, hat-chef, and plate-utensils.
You can then use any of those icons anywhere in your app without needing to re-import into each component. So if you used icons in a couple of components, that would end up looking something like this:
import React from'react'import{ FontAwesomeIcon }from'@fortawesome/react-fontawesome'exportconstMailroom=()=>(<div><FontAwesomeIcon icon="fa-solid fa-check-square"/>
Your <FontAwesomeIcon icon="fa-regular fa-coffee"/> is hot!
Compliments of the <FontAwesomeIcon icon="fa-sharp fa-solid fa-hat-chef"/>!</div>)
import React from'react'import{ FontAwesomeIcon }from'@fortawesome/react-fontawesome'exportconstShowcase=()=>(<div><FontAwesomeIcon icon="fa-brands fa-twitter"/><FontAwesomeIcon icon="fa-brands fa-font-awesome"/><FontAwesomeIcon icon="fa-regular fa-mug-hot"/>
The coffee is ready at these companies!
Be careful not to spill any your <FontAwesomeIcon icon="fa-thin fa-hat-cowboy"/>!</div>)
You'll notice we were able use the imported brand icons without explicitly importing them in the component. And we used the square-check, and envelope icons without explicitly importing them anywhere. But, our bundle now has over 1000 solid icons plus the two brand icons we added, which is more than we're using - a good reason to avoid importing a whole style.
Same icons, Different Styles
Advertisement
Remove ads with a Pro plan!
A subscription to a Pro-level plan will remove all third-party advertisements on fontawesome.com.
And of course Pro-level plans come with…
All 26,233 icons in Font Awesome
5 Classic styles of every icon
3 Sharp styles of every icon
A Perpetual License to use Pro
Services and tools to make easy work of using icons