UNPKG

expo-gradient-text

Version:

A beautiful and customizable gradient text component for React Native Expo applications

18 lines 495 B
import React from 'react'; import { TextProps, StyleProp, TextStyle } from 'react-native'; export interface GradientTextProps extends Omit<TextProps, 'style'> { children: React.ReactNode; colors?: string[]; start?: { x: number; y: number; }; end?: { x: number; y: number; }; style?: StyleProp<TextStyle>; } declare const GradientText: React.FC<GradientTextProps>; export default GradientText; //# sourceMappingURL=GradientText.d.ts.map