In the PrimeNg Turbotable I use loadingIcon to display the spinner while loading data. I am not able to increase the size of primeIcon pi-spinner.
HTML Code:
<p-table #resdt exportFilename="RecordChange" [value]="recordList"
[(selection)]="selectedRecord" [loadingIcon]="loadingIcon"
[loading]="loading" sortField="recordCURD" sortMode="single"
[autoLayout]="true" scrollable="true" scrollHeight="550px">
....
</p-table>
TypeScript Code:
this.loadingIcon = 'pi pi-spin pi-spinner';
you just need to update the wrapper class for the loading element like this
style.css
or as we can set the icon class ,so this can be simply done by create a new class to increase the font size
template
demo