File size: 174 Bytes
0924f9b
 
 
 
 
1
2
3
4
5
6
import { Text, TextProps } from './Themed';

export function MonoText(props: TextProps) {
  return <Text {...props} style={[props.style, { fontFamily: 'space-mono' }]} />;
}