struct ContentView: View {
   var body: some View {
      RoundedRectangle(cornerRadius: 25)
         .fill(Color.red)
         .frame(width: 100, height: 100)
   }
}