text-brush / app /components /StyledText.tsx
Iliya Zhechev
App initial commit with bare bones app
0924f9b
raw
history blame contribute delete
174 Bytes
import { Text, TextProps } from './Themed';
export function MonoText(props: TextProps) {
return <Text {...props} style={[props.style, { fontFamily: 'space-mono' }]} />;
}