import SwiftUI
struct ContentView: View {
var body: some View {
Circle()
.inset(by: 5)
.stroke(lineWidth: 10)
.foregroundColor(.green)
.background(
Circle()
.foregroundColor(.yellow)
)
}
}