master
 1import React, { Component } from 'react';
 2import Svg, { Circle, Ellipse, G, LinearGradient, RadialGradient, Line, Path, Polygon, Polyline, Rect, Symbol, Text, Use, Defs, Stop } from 'react-native-svg';
 3
 4export default class Letter extends Component {
 5  render() {
 6    return (
 7      <Svg height="50" width="50">
 8        <Text fill="none" stroke="blue" fontSize="25" fontWeight="bold" x="10" y="10" textAnchor="middle" >{this.props.letter}</Text>
 9      </Svg>
10    );
11  }
12}