import React, {Component, PropTypes} from 'react'; import Path from './Path'; import {pathProps} from '../lib/props'; class Polygon extends Component{ static displayName = 'Polygon'; static propTypes = { ...pathProps, points: PropTypes.oneOfType([PropTypes.string, PropTypes.array]) }; render() { return ; } } export default Polygon;