import React from "react"; import { Text, type TextProps } from "react-native"; import { cn } from "heroui-native"; export interface NTextProps extends TextProps { className?: string; children: string | React.ReactNode; } export const NText = React.memo(({ children, className, ...props }) => { return ( {children} ); }); NText.displayName = "NText";