()
| 41 | }; |
| 42 | |
| 43 | render() { |
| 44 | const { angle, radius, offset, ...restProps } = this.props; |
| 45 | const path = makeSectorPath( |
| 46 | offset.left || 0, |
| 47 | offset.top || 0, |
| 48 | angle, |
| 49 | radius |
| 50 | ); |
| 51 | return <Path d={path} {...restProps} />; |
| 52 | } |
| 53 | } |
nothing calls this directly
no test coverage detected