import React from 'react'; import Svg, {Path} from 'react-native-svg'; import {SvgIconProps} from './types'; const SvgIcon = ({stroke, d, width, height, fill, viewBox}: SvgIconProps) => { return ( ); }; export default SvgIcon;