import type { ImageBackgroundProps } from 'react-native' import { ImageBackground as RNImageBackground } from 'react-native' import { copyComponentProperties } from '../utils' import { generateDataSet } from './generateDataSet' import { toRNWClassName } from './rnw' import { useUniwindAccent } from './useUniwindAccent' export const ImageBackground = copyComponentProperties(RNImageBackground, (props: ImageBackgroundProps) => { const tintColor = useUniwindAccent(props.tintColorClassName) return ( ) }) export default ImageBackground