struct ContentView: View {
   var body: some View {
      Path { path in
         path.move(to: CGPoint(x: 100, y: 150))
         path.addLine(to: CGPoint(x: 200, y: 150))
         path.addArc(center: CGPoint(x: 200, y: 170), radius: 20, startAngle: .degrees(270), endAngle: .degrees(90), clockwise: false)
         path.addLine(to: CGPoint(x: 100, y: 190))
      }.stroke(Color.blue, lineWidth: 5)
   }
}