unioil-loyalty-rn-app/app/components/text/AdjustableText.js

12 lines
272 B
JavaScript

import { Text, TextProps } from 'react-native'
import React from 'react'
const AdjustableText = (props: TextProps) => {
return (
<Text adjustsFontSizeToFit={true} numberOfLines={1} {...props} >
{props.children}
</Text>
)
}
export default AdjustableText