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