I have created a MenuItem component in Angular, which consists of an icon and an a-tag:
<a routerLinkActive="active">
<my-icon name="{{ iconName }}"></my-icon>
<a routerLink="{{ routerLink }}">{{ title }}</a>
</a>
It works fine, but when hovering over the menu item, a tooltip pops up, which shows the title of the a-tag. I am assuming this is the default behavior of the a-tag. Is it possible to shut off this tooltip though?