import React, { Component } from 'react-native'; import Svg, { Polygon, Group } from 'react-native-art-svg'; class PolygonExample extends Component{ static title = 'The following example creates a polygon with three sides'; render() { return ; } } class FourSidePolygon extends Component{ static title = 'The following example creates a polygon with four sides'; render() { return ; } } class StrarPolygon extends Component{ static title = 'Use the element to create a star'; render() { return ; } } const icon = ; const samples = [PolygonExample, FourSidePolygon, StrarPolygon]; export { icon, samples }