How to do settings icon for menu in SwiftUI?

Hi everyone. Can you help me with my settings icon design. I`m trying to create circular setting button using Menu. My code here:

struct MenuView: View {
    var body: some View {
        Menu {
            Text("Hello")
            Text("How are you")
        } label: {
            Image(systemName: "gearshape.fill")
                .clipShape(Circle())
        }
        .clipShape(Circle())
        .padding(.top, 10)
        .padding(.leading, 20)
    }
}

You can see my try, this one looks wrong.

It should be like this:

Just Circle with setting image inside. Thank you an advance 😭🙏🛐

Replied here https://developer.apple.com/forums/thread/814902

Albert Pascual
  Worldwide Developer Relations.

How to do settings icon for menu in SwiftUI?
 
 
Q