blob: 24c7b9b57af883176ed316165b707d4a0c9cd8bd (
plain)
1
2
3
4
5
6
7
8
|
import React from 'react';
import { Text } from 'react-native';
export class MonoText extends React.Component {
render() {
return <Text {...this.props} style={[this.props.style, { fontFamily: 'space-mono' }]} />;
}
}
|