Reputation: 147
I'm using the tree component from PrimeNG. Does anyone knows how I can change the expand and collapse icons ? My target is to get a plus and minus instead of the fa-caret-down
and fa-caret-right
.
So from
to
Upvotes: 3
Views: 5416
Reputation: 1607
Add the following CSS to your component:
::ng-deep .fa-caret-right::before {
content: "\F067";
}
::ng-deep .fa-caret-down::before {
content: "\F068";
}
Upvotes: 3