import React, { Component } from 'react-native'; import Svg, { Text } from 'react-native-art-svg'; class TextExample extends Component{ static title = 'Text'; render() { return I love SVG! ; } } class TextRotate extends Component{ static title = 'Transform the text'; render() { return I love SVG I love SVG I love SVG ; } } // TODO: wait for official done class TextPath extends Component{ static title = 'Transform the text'; render() { return We go up, then we go down, then up again ; } } const icon = ; const samples = [TextExample, TextRotate]; export { icon, samples }