I'm using primeng tree toggler
for a grid in angular application.
For tree toggler
icon, primeicons
are used.
https://www.primefaces.org/primeng/showcase/#/icons
Using below CSS for toggler
icon.
.pi-chevron-right:before {
content: '\e905' !important;
vertical-align: middle !important;
font-size: 25px;
}
But image is getting differently compared to original icons.
Expected toggler icon:
Existing toggler icon:
I want to get icon as shown in Expected toggler icon but getting the wrong icon, Existing toggler icon.
How to avoid that.
Update 1:
I'm able to get toggler icon as expected, if I remove below highlighted styles .
I tried in chrome developer tools.It worked.
But I'm not getting how to remove them from angular/javascript code. Kindly suggest.