I have installed fontawesome with npm using npm install --save font-awesome
Then I added the css to my angular.json like this:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/font-awesome/css/font-awesome.min.css",
"src/styles.css"
],
Then I added this to my html file:
<button type="button" class="btn btn-outline-primary">
<i class="fa fa-arrow-left"></i>
</button>
On my webpage it's showing an empty button, what am I doing wrong?