Solution 1 :

Search here for that icon https://material.io/resources/icons/?search=dot&style=baseline.
enter image description here

And here you have some examples of creating this type of menu https://material.angular.io/components/menu/examples

Solution 2 :

I guess this is what you’re looking for, here is my code that works

   <button mat-icon-button [matMenuTriggerFor]="menu" aria-label="Example icon button with a horizontal three dot icon">
                                      <mat-icon>more_horiz</mat-icon>
                                    </button>
                                    <mat-menu #menu="matMenu">
                                        <button mat-menu-item>Edit</button>
                                        <button mat-menu-item>View</button>
                                        <button mat-menu-item>Delete</button>
                                    </mat-menu>

To change the three dot to be vertical, simple change this
more_horiz
to
more_vert

Problem :

I want to search the Angular component name for this widget which is three dots, and when we click it then something like a context-menu appears:

enter image description here

How is it called?

Comments

Comment posted by Andrei

it is a button with three dots as icon inside of it

By