Icon on left of Text in Label inside of Menu

Inside an iOS Menu the icons display to the far right of the Text. Which is different than a Label outside of a Menu(). I'm wondering why - and why I cannot change that with a custom LabelStyle?

struct IconFirstLabelStyle: LabelStyle {
    func makeBody(configuration: Configuration) -> some View {
        HStack {
            configuration.icon
            configuration.title
        }
    }
}

That custom style does not work in iOS15. Is there another way to create the effect in the Menu that is displayed in the Human Interface Guidelines: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/system-icons/ Icons on the left - text follows.

For what is worth, I am also having this issue with iOS 16 as well.

same

Icon on left of Text in Label inside of Menu
 
 
Q