UNPKG

@uiw/react-native

Version:
11 lines (10 loc) 277 B
import React from 'react'; import { TextProps as RNTextProps } from 'react-native'; export interface BaseTextProps extends RNTextProps { color?: string; } declare const Text: { (props: BaseTextProps): React.JSX.Element; displayName: string; }; export default Text;