import { forwardRef, type ComponentPropsWithoutRef, type ComponentRef } from 'react'; import { Text as RNText } from 'react-native'; import { cn } from '@cdx-ui/utils'; import { textStyle, TextVariantProps } from './styles'; export type TextProps = TextVariantProps & ComponentPropsWithoutRef & { className?: string }; export const Text = forwardRef, TextProps>(function Text( { className, size = 'md', ...props }, ref, ) { return ; }); Text.displayName = 'Text';