FortAwesome / react-fontawesome

Font Awesome React component
https://fontawesome.com
MIT License
3.67k stars 262 forks source link

React FontAwesomeIcon only works when icons are explicitly imported #546

Open rwb196884 opened 1 year ago

rwb196884 commented 1 year ago
<FontAwesomeIcon icon={['fab', 'twitter']} />

does not work, but

import { faTwitter } from '@fortawesome/free-brands-svg-icons';
...
<FontAwesomeIcon icon={ faTwitter } />

does.

reinrl commented 7 months ago

@rwb196884 Per the official documentation, you need to either use dynamic icon importing or add individual icons explicitly (what your second example above illustrates). Without one of these two options, I don't see how your initial example could work?