import { FC } from 'react' import { type ImageStyle, Image as NativeImage } from 'react-native' import { useColorMode } from '../../../../hooks/native' import { ImageProps } from './types' const Image: FC = ({ source, darkSource, lightSource, width, height, style, ...props }) => { const mode = useColorMode() const dimensionsStyles: ImageStyle = width && height ? { width, height } : {} if (lightSource && darkSource) { return ( ) } return } export default Image