@uiw/react-native
Version:
UIW for React Native
22 lines (21 loc) • 690 B
TypeScript
import React from 'react';
import { TextProps as RNTextProps, TextStyle, Animated, StyleProp } from 'react-native';
export type RnTextProps = RNTextProps & {
type?: 'header' | 'title' | 'label' | 'subLabel';
label?: string;
color?: string;
center?: boolean;
uppercase?: boolean;
animated?: boolean;
highlightText?: string;
highlightTextStyle?: TextStyle;
backgroundColor?: any;
tooltipProps?: {
number?: number;
content?: string;
};
children?: React.ReactNode;
style?: StyleProp<TextStyle | Animated.AnimatedProps<TextStyle>>;
};
declare const _default: (props: RnTextProps) => React.JSX.Element;
export default _default;