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