Recently I installed the npm packages version 0.8 for an Angular 11 project using free brands svg icons, regular svg icons and solid svg icons provided by the installer, it didn't show font based icons option for installing. However, besides of using these icons as module, I would like to have them also in the standard way, such as: <span class="fas fa-chevron-left"></span>
to use in telerik components such as:
export const items = {
parents: [
{
text: 'Seguridad',
icon: 'fa fa-shield',
expanded: false,
children: true,
selected: false
},
The only css file installed with fortawesome is styles.css under fontawesome-svg-core folder which doesn't contain the icons.
As a workaround I also installed fontawesome in this way:
npm install font-awesome –save
then, I added scss references into styles.scss file, but this duplicate the library.
How can I achieve that with fortawesome?
thanks