import { ForwardRefExoticComponent } from 'react'; import { SvgProps } from 'react-native-svg'; import * as reactNativeSvg from 'react-native-svg'; export { reactNativeSvg as NativeSvg }; interface IconProps extends SvgProps { size?: string | number; strokeWidth?: string | number; title?: string; } type Icon = ForwardRefExoticComponent; export type { Icon, IconProps };