A rectangular shape with sharp corners.
Rectangle(): Shape;
Rectangle()
.fill(Color("red"))
.frame({ width: 200, height: 100 })
Rectangle()
.stroke({ style: Color("black"), lineWidth: 2 })
.frame({ width: 150, height: 75 })
Rectangle()
.fill(Color("purple"))
.cornerRadius(10)
.frame({ width: 120, height: 80 })