struct ContentView: View {
   var body: some View {
      VStack {
         ConcentricRectangle()
            .padding(40)
            .foregroundStyle(.white)
      }
      .frame(height: 200)
      .background(.gray)
      .containerShape(.rect(cornerRadius: 60))
      .padding()
   }
}