import React from 'react' import Svg, { Path } from 'react-native-svg' type Props = { size?: number; color?: string } export default function IconMenu({ size = 22, color = '#5A5A68' }: Props) { return ( ) }