How to make icon for menu item bigger?

Hi,
Here in this part of my code, I put an icon for my menu bar, but the icon looks very small. How do I make it look bigger?

final MenuBar settings = new MenuBar();
settingsItem = settings.addItem(“Eingeloggter User”, new ThemeResource(ThemeConstants.ICON_PATH_LOGO), null);

regards
Jan

I’ve got this one also by myself. For those who are interested:

img.v-icon {
@if is-dark-color($valo-menu-background-color) {
width: 150px;
height: 150px;
border-radius: 100px;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
display: block;
margin: 0 auto 0.3em;
border: 1px solid #c5c5c5;

  }
}

regards
Jan