I have installed @fortawesome/angular-fontawesome - from here - https://www.npmjs.com/package/@fortawesome/angular-fontawesome into my Angular 7 application.
I can use the icon using but i cannot find a way to add them through CSS.
I am trying to add ico CSS Pseudo-elements like this:
.test:before {
font-family: "Font Awesome 5 Free";
content: "\f75b";
display: inline-block;
padding-right: 3px;
vertical-align: middle;
font-weight: 900;
}
This is not working. All im seeing is a empty square. Anyone figured out how to use icons through CSS Pseudo-elements?