import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors from 'src/styles/colors' interface Props { size?: number color?: string } export function Envelope({ color, size }: Props) { return ( ) } Envelope.defaultProps = { color: Colors.contentPrimary, size: 24, } export default React.memo(Envelope)