import React from 'react'; import { SvgProps } from 'react-native-svg'; interface IIconSvgViewProps { icon: React.FC; size: number; fill: string; [key: string]: any; } export default function IconSvgView({ icon, size, fill, ...props }: IIconSvgViewProps): React.JSX.Element; export {};