import React from 'react'; import { Svg } from 'react-native-svg'; type IconProps = { path: string; size: number; } const Icon = (props: IconProps) => { return ( ); }; export default Icon;