How to remove the checked span in menuItem?

Yes, I don’t want the checked span to be rendered in the dom, because it adds an unnecessary space that I don’t want.
greetings.

Maybe this?

vaadin-context-menu-item::part(checkmark)::before {
    width: 0;
}

mmmm nope,

image

image

maybe ?

vaadin-menu-bar-item::part(checkmark)::before {
    display: none;
}

/* some indent for the content */
vaadin-menu-bar-item {
    padding-left: var(--lumo-space-s);
}

image