Created
November 16, 2018 04:48
-
-
Save thrixton/e3a01071ab13a753baba4fb0667ccb07 to your computer and use it in GitHub Desktop.
app.component.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In app.component or relevant component requiring icon | |
import { faGoogle } from '@fortawesome/free-brands-svg-icons'; | |
/*...*/ | |
constructor( | |
_iconService: IconService | |
) { | |
_iconService.addSvg(faGoogle); // add icon to library | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment