import type { TextInputProps } from 'react-native' import { TextInput as RNTextInput } from 'react-native' import { copyComponentProperties } from '../utils' import { generateDataSet } from './generateDataSet' import { toRNWClassName } from './rnw' import { useUniwindAccent } from './useUniwindAccent' export const TextInput = copyComponentProperties(RNTextInput, (props: TextInputProps) => { const placeholderTextColor = useUniwindAccent(props.placeholderTextColorClassName) return ( ) }) export default TextInput