struct ContentView: View {
   var body: some View {
      Image("spot1")
         .resizable()
         .scaledToFit()
         .frame(width: 150, height: 200)
         .clipShape(Circle())
         .overlay {
            Circle().stroke(Color.blue, lineWidth: 10)
         }
   }
}