Files
App_nagakaws/components/StyledText.tsx

8 lines
207 B
TypeScript
Raw Normal View History

2021-03-29 10:09:41 +07: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' }]} />;
}