ger
ger

Reputation: 414

icon is not displayed with fontAwsome

I have the following code on my html page with angular 7.x and fontAwesome version 5.7.1

<i class = "fa fa-pencil"> </ i>

All the other icons and buttons are displayed well showing trash can and others but the pencil does not show it? what can happen?

Upvotes: 1

Views: 1468

Answers (1)

A. Meshu
A. Meshu

Reputation: 4148

Just change it to:

<i class="fas fa-pencil-alt"></i>

This icon name replaced version 4 "fa-pencil".

here you can find more help: https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4

Upvotes: 3

Related Questions