import * as React from "react"; import Svg, { Path, SvgProps } from "react-native-svg"; interface MenuIconProps extends SvgProps { color?: string; } const MenuIcon: React.FC = (props) => ( ); export default MenuIcon;