Circle
Circle
```
struct ExampleView: View {
var body: some View {
Circle()
.path(in: CGRect(x: 0, y: 0, width: 100, height: 100))
}
}
```
```
struct ExampleView: View {
var body: some View {
Circle()
}
}
```
When you create a custom view, Swift infers this type from your
implementation of the required `body` property.