import React, { Component } from 'react-native'; import Svg, { Polyline } from 'react-native-art-svg'; class PolylineExample extends Component{ static title = 'The element is used to create any shape that consists of only straight lines'; render() { return ; } } class StraightLines extends Component{ static title = 'Another example with only straight lines'; render() { return ; } } class PolylineFill extends Component{ static title = 'Fill Polyline'; render() { return ; } } const icon = ; const samples = [PolylineExample, StraightLines, PolylineFill]; export { icon, samples }