UNPKG

react-native-baidumap-sdk-fg

Version:
14 lines (12 loc) 426 B
import { ColorPropType, requireNativeComponent, ViewPropTypes } from 'react-native' import PropTypes from 'prop-types' import { LatLngPropType } from '../prop-types' export default requireNativeComponent('BaiduMapPolygon', { propTypes: { ...ViewPropTypes, points: PropTypes.arrayOf(LatLngPropType).isRequired, strokeWidth: PropTypes.number, strokeColor: ColorPropType, fillColor: ColorPropType, }, })