mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 15:33:26 +00:00
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' }]} />;
|
|
}
|