import React, { Component } from 'react-native'; import Svg, { Path, Rect, G, Defs, Stop, RadialGradient, Polyline, ClipPath, Circle, Text } from 'react-native-svg'; class StrokeExample extends Component{ static title = 'The stroke property defines the color of a line, text or outline of an element'; render() { return ; } } class StrokeLinecap extends Component{ static title = 'The strokeLinecap property defines different types of endings to an open path'; render() { return ; } } class StrokeDasharray extends Component{ static title = 'strokeDasharray'; render() { return ; } } class StrokeDashoffset extends Component{ static title = 'the strokeDashoffset attribute specifies the distance into the dash pattern to start the dash.'; render() { return STROKE ; } } class StrokePattern extends Component{ static title = 'Advanced stroke example.'; render() { return ; } } const icon = ; const samples = [StrokeExample, StrokeLinecap, StrokeDasharray, StrokeDashoffset, StrokePattern]; export { icon, samples }