()
| 19 | }; |
| 20 | |
| 21 | render() { |
| 22 | let {object, index} = this.props; |
| 23 | return ( |
| 24 | <ellipse style={this.getStyle()} |
| 25 | {...this.getObjectAttributes()} |
| 26 | rx={object.width / 2} |
| 27 | ry={object.height / 2} |
| 28 | cx={object.x + object.width / 2} |
| 29 | cy={object.y + object.height / 2} /> |
| 30 | ); |
| 31 | } |
| 32 | } |
nothing calls this directly
no test coverage detected