SwiftUI: Menu icon will missing if increase preferred text size

iOS simulator version 18.0+

I have a demo like this:

Menu {
        Button {
        } label: {
             Text("Option 1")
              Image(systemName: "star")
        }
        Button {   
        } label: {
              Text("Option 2")
              Image(systemName: "star")
         }
} label: {
     Text("Menu")
}

And I used the tool Accessibility Inspector to modify the text size. Case 1:

We could see the option title and the star icon.

Case 2: But we could not see the icon, only the option title here

Is this by design from Apple? Or does this need to be fixed? Does anyone know about my question?

SwiftUI: Menu icon will missing if increase preferred text size
 
 
Q