import type { TouchableHighlightProps } from 'react-native' import { TouchableHighlight as RNTouchableHighlight } from 'react-native' import { copyComponentProperties } from '../utils' import { generateDataSet } from './generateDataSet' import { toRNWClassName } from './rnw' import { useUniwindAccent } from './useUniwindAccent' export const TouchableHighlight = copyComponentProperties(RNTouchableHighlight, (props: TouchableHighlightProps) => { const underlayColor = useUniwindAccent(props.underlayColorClassName) return ( ) }) export default TouchableHighlight