UNPKG

swgs

Version:

swgs is a compatiblity layer between svg and react-native-svg

9 lines (7 loc) 226 B
import React from 'react'; import { Text } from 'react-native'; export class MonoText extends React.Component { render() { return <Text {...this.props} style={[this.props.style, { fontFamily: 'space-mono' }]} />; } }