import React from 'react'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; import { Text as RNText } from 'react-native'; import { textStyle } from './styles'; type ITextProps = React.ComponentProps & VariantProps; const Text = React.forwardRef, ITextProps>( ( { className, isTruncated, bold, underline, strikeThrough, size = 'md', sub, italic, highlight, ...props }, ref ) => { return ( ); } ); Text.displayName = 'Text'; export { Text };