UNPKG

@td-design/react-native

Version:

react-native UI组件库

8 lines 471 B
import React, { PropsWithChildren } from 'react'; import { TextProps as RNTextProps } from 'react-native'; import { TextProps } from '@shopify/restyle'; import { Theme } from '../theme'; type Props = TextProps<Theme> & Omit<RNTextProps, 'onLongPress' | 'onPress' | 'onPressIn' | 'onPressOut'>; declare const Text: React.MemoExoticComponent<({ children, style, ...props }: PropsWithChildren<Props>) => JSX.Element>; export default Text; //# sourceMappingURL=index.d.ts.map