import * as React from 'react'; import { Animated, TextStyle, I18nManager, StyleProp } from 'react-native'; import { withTheme } from '../../core/theming'; type Props = React.ComponentPropsWithRef & { style?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }; /** * Text component which follows styles from the theme. * * @extends Text props https://facebook.github.io/react-native/docs/text.html#props */ function AnimatedText({ style, theme, ...rest }: Props) { const writingDirection = I18nManager.isRTL ? 'rtl' : 'ltr'; return ( //@ts-ignore ); } export default withTheme(AnimatedText);