I don't see the icons of the buttons within the primeng Text Editor that I use in the Angular project. enter image description here
I added to the module: import { EditorModule } from 'primeng/editor';
in HTML below:
<p-editor class="fa fa-xxx" [(ngModel)]="text1" [style]="{'height':'320px'}"></p-editor>
<p>Value: {{text1||'empty'}}</p>
<button pButton type="button" label="Clear" icon="fa-close" (click)="text1=null"></button>
<hr style="border-top:0px;border-color:#dde3e6">