Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use material icons as mouse cursor image

I have a scenario in which i have to use a specific material icon as cursor pointer for a mat-button. I don't have any idea how to achieve this. Any help will be appreciated.

 <button mat-button>
 <button>
like image 295
dockerrrr Avatar asked Sep 11 '25 03:09

dockerrrr


1 Answers

There is no way to do it using Material. You need to update the CSS by adding:

you-mat-element {
   cursor: pointer;
}

I forked the original Angular example and I made the change to have a live Demo: https://stackblitz.com/edit/angular-eynqmo

like image 149
Ala Eddine JEBALI Avatar answered Sep 13 '25 17:09

Ala Eddine JEBALI