Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 17 lines 433 B view raw
1import {Text as RNText} from 'react-native' 2 3type UITextViewProps = React.ComponentProps<typeof RNText> & { 4 dataSet?: Record<string, string | number | undefined> 5 uiTextView?: boolean 6} 7 8export function UITextView({ 9 children, 10 dataSet, 11 uiTextView: _uiTextView, 12 ...rest 13}: UITextViewProps) { 14 const textProps = dataSet ? ({...rest, dataSet} as UITextViewProps) : rest 15 16 return <RNText {...textProps}>{children}</RNText> 17}