Hi Shobhana Suara,
Thank you for posting our forum.
The following steps to display MS-Excel icon.
1) Installation
npm install @igniteui/material-icons-extended
2) Register a single icon in our component (*.ts)
——————————————————————–
import { msExcel } from "@igniteui/material-icons-extended";
constructor(private iconService: IgxIconService) {}
ngOnInit() {
this.iconService.addSvgIconFromText(msExcel.name, msExcel.value, "imx-icons");
}
——————————————————————–
3) Use the icons in your component template (*.html)
——————————————————————–
<igx-icon fontSet="imx-icons" name="msExcel"></igx-icon>
——————————————————————–
Material Icons Extended
https://es.infragistics.com/products/ignite-ui-angular/angular/components/material-icons-extended
I attached an sample, I hope this helps you.
SampleIcon.zip