import * as React from 'react' import Svg, { Path } from 'react-native-svg' import { ColorValue } from 'src/styles/colors' interface Props { color: ColorValue } const QuickActionsReceive = ({ color }: Props) => ( ) export default React.memo(QuickActionsReceive)