git-subtree-dir: apps/mobile git-subtree-mainline:86f8987dffgit-subtree-split:5fa30f365f
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
import { Text, TextProps } from './Themed';
|
|
|
|
export function MonoText(props: TextProps) {
|
|
return <Text {...props} style={[props.style, { fontFamily: 'SpaceMono' }]} />;
|
|
}
|