shellphone.app/app/components/StyledText.tsx

8 lines
206 B
TypeScript
Raw Normal View History

2021-06-01 21:13:51 +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" }]} />;
}