UNPKG

react-native-animateable-text

Version:

A fork of React Native's `<Text/> component that supports Reanimated Shared Values as text!

7 lines 279 B
import React from 'react'; import type { TextProps as NativeTextProps, Text as IText } from 'react-native'; export type AnimateableTextProps = Omit<NativeTextProps, 'children'> & { forwardedRef?: React.Ref<IText>; text?: string; }; //# sourceMappingURL=TextProps.d.ts.map