(props: TextProps)
| 3 | import { Text, TextProps } from './Themed'; |
| 4 | |
| 5 | export function MonoText(props: TextProps) { |
| 6 | return <Text {...props} style={[props.style, { fontFamily: 'space-mono' }]} />; |
| 7 | } |
nothing calls this directly
no outgoing calls
no test coverage detected