StyledText.js 158 B

123456
  1. import * as React from 'react';
  2. import { Text } from 'react-native';
  3. export function MonoText(props) {
  4. return <Text {...props} style={[props.style]} />;
  5. }