I would like to add a font awesome icon to my input field without having to use a link tag since I've already had it installed as a dependency in my angular app
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<input id="searchHymn"
class="form-control" type="text"
placeholder=" Filter"
[(ngModel)]='listFilter'>
Having to add this link tag to font awesome is my problem since i already have font awesome on my app.module.ts
file.
I'll be glad if answers relating to using @imports
is not given since it is basically the same as using link tag. Thanks.