import React, { Component } from 'react-native'; import Svg, { Defs, Use, G, Rect, Circle, Polyline } from 'react-native-svg'; class UseExample extends Component{ static title = 'Reuse svg code'; render() { return ; }; } class UseShapes extends Component{ static title = 'Using Shapes Outside of a Defs Element'; render() { return ; }; } const icon = ; const samples = [UseExample, UseShapes]; export { icon, samples }