We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<FontAwesomeIcon icon={['fab', 'twitter']} />
does not work, but
import { faTwitter } from '@fortawesome/free-brands-svg-icons'; ... <FontAwesomeIcon icon={ faTwitter } />
does.
The text was updated successfully, but these errors were encountered:
@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?
Sorry, something went wrong.
No branches or pull requests
does not work, but
does.
The text was updated successfully, but these errors were encountered: