import { ReactNode } from 'react';
import { TextProps as RNTextProps } from 'react-native';

export interface TextProps extends RNTextProps {
  children?: ReactNode;
  theme?:
    | 'standard'
    | 'primary'
    | 'success'
    | 'danger'
    | 'warning'
    | 'muted'
    | 'weak'
    | 'white'
    | 'black'
    | 'gray';
  size?: '11' | '12' | '14' | '15' | '16' | '17' | '18' | '24' | '32';
  weight?: '400' | '500' | '600' | '700';
}
