()
| 167 | } |
| 168 | |
| 169 | render() { |
| 170 | const {strokeColor = '#000', strokeWidth = 1} = this.props; |
| 171 | const AIRMapPolygon = this.getNativeComponent(); |
| 172 | return ( |
| 173 | <AIRMapPolygon |
| 174 | {...this.props} |
| 175 | strokeColor={strokeColor} |
| 176 | strokeWidth={strokeWidth} |
| 177 | ref={this.polygon} |
| 178 | /> |
| 179 | ); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | export default decorateMapComponent(MapPolygon, 'Polygon', { |
nothing calls this directly
no outgoing calls
no test coverage detected