@ReactProp(name = "strokeWidth", defaultFloat = 1f)
 public void setStrokeWidth(AirMapCircle view, float widthInPoints) {
   float widthInScreenPx = metrics.density * widthInPoints; // done for parity with iOS
   view.setStrokeWidth(widthInScreenPx);
 }