If you just want to hide it, then I think you can use this (in common-CSS of theme or theme component):
.topic-map__contents .topic-map__stats .fk-d-menu__trigger {
display: none;
}
If you want to do it for specific category:
.category-[your-category-slug] {
.topic-map__contents .topic-map__stats .fk-d-menu__trigger {
display: none;
}
}
…and yes, I pretty much did what @NateDhaliwal said above to get that. The link he posted above tells you how to make those kind of modifications.