import React, { Component } from 'react-native'; import Svg, { Path } from 'react-native-art-svg'; class PathExample extends Component{ static title = 'Path'; render() { return ; } } class UnclosedPath extends Component{ static title = 'Unclosed paths'; render() { return ; } } const icon = ; const samples = [PathExample, UnclosedPath]; export { icon, samples }