import {Text as RNText} from 'react-native' type UITextViewProps = React.ComponentProps & { dataSet?: Record uiTextView?: boolean } export function UITextView({ children, dataSet, uiTextView: _uiTextView, ...rest }: UITextViewProps) { const textProps = dataSet ? ({...rest, dataSet} as UITextViewProps) : rest return {children} }