3

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

enter image description here

to

enter image description here

Antikhippe
  • 6,316
  • 2
  • 28
  • 43
michael
  • 147
  • 3
  • 11

1 Answers1

3

Add the following CSS to your component:

::ng-deep .fa-caret-right::before {
  content: "\F067";
}

::ng-deep .fa-caret-down::before {
  content: "\F068";
}

Plunker example

Stephen Pham
  • 1,329
  • 18
  • 23