import { Text } from 'react-native'; import type { ITextProps } from './Text.types'; import { styles } from './TextStyles'; const TextComponent = ( props: ITextProps & React.ComponentProps ) => { const { text, style, shadowEnabled, shadowColor, fontFamily, fontSize, textAlign, textColor, letterSpacing, marginTop, marginBottom, ...otherProps } = props; return ( {text} ); }; export default TextComponent;