|
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 |