Creates a rounded border text field style.
Defines the shape of a rounded rectangle's corners.
This rectangular corner style has two options:
1. ``RoundedCornerStyle/circular``: The corners are quarter circles or ovals
2. ``RoundedCornerStyle/continuous``: The corners are smooth
These styles have subtle but noticeable differences:
```
struct ContentView: View {
var body: some View {
VStack(spacing: 20) {
RoundedRectangle(cornerRadius: 50, style: [Link])
.frame(width: 250, height: 150)
RoundedRectangle(cornerRadius: 50, style:
[Link])
.frame(width: 250, height: 150)
}
}
}
```
