GT2/Ejectable/components/StyledText.tsx

8 lines
207 B
TypeScript
Raw Normal View History

2021-08-16 07:50:50 +00:00
import * as React from 'react';
import { Text, TextProps } from './Themed';
export function MonoText(props: TextProps) {
return <Text {...props} style={[props.style, { fontFamily: 'space-mono' }]} />;
}