()
| 52 | } |
| 53 | |
| 54 | render() { |
| 55 | let {object} = this.props; |
| 56 | let fill = (object.closed ? object.fill |
| 57 | : "transparent"); |
| 58 | return ( |
| 59 | <path style={this.getStyle(object)} |
| 60 | {...this.getObjectAttributes()} |
| 61 | d={this.buildPath(object)} |
| 62 | fill={fill} /> |
| 63 | ); |
| 64 | } |
| 65 | } |
nothing calls this directly
no test coverage detected