import * as React from 'react' import Svg, { Path } from 'react-native-svg' interface Props { color?: string size?: number } const Discover = ({ color, size }: Props) => ( ) export default Discover