TriloopTem_App/components/StyledText.tsx
zhoujie ed8682a1e2 Initial commit
Generated by create-expo-app 4.0.0.
2026-06-06 21:30:22 +08:00

6 lines
173 B
TypeScript

import { Text, TextProps } from './Themed';
export function MonoText(props: TextProps) {
return <Text {...props} style={[props.style, { fontFamily: 'SpaceMono' }]} />;
}