import { FC } from 'react' import Svg, { Path } from 'react-native-svg' import { useTheme } from '../../../../providers/native' import { SvgIconProps } from '../types' const ImageIcon: FC = ({ isActive = false, color, width = '33', height = '33', ...props }) => { const { colors } = useTheme() const defaultColor = color ?? colors.object.high const svgColor = isActive ? colors.primary.high : defaultColor return ( ) } export default ImageIcon