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