import React from 'react'; import {Defs, Stop, Svg, Text, LinearGradient} from 'react-native-svg'; import {GradientStrokeTextProps} from '../constants/types'; const GradientText = ({ text = '', height = 100, width = 300, gradientColors = ['#810955', '#533483'], borderColors = ['#b429f9', '#26c5f3'], locations = {x: 150, y: 80}, start = {x: 0, y: 0}, end = {x: 1, y: 1}, isGradientFill = false, fillColor = '#FFFFFF', isGradientStroke = false, strokeColor = '#000000', strokeWidth = 0, fontSize = 18, fontFamily = 'Avenir Next', fontWeight = 900, style = {}, }: GradientStrokeTextProps) => { return ( {text} ); }; export default GradientText;