Files
cally/assets/svgs/MenuIcon.tsx
2024-10-05 23:41:44 +02:00

26 lines
508 B
TypeScript

import * as React from "react";
import Svg, { Path, SvgProps } from "react-native-svg";
interface MenuIconProps extends SvgProps {
color?: string;
}
const MenuIcon: React.FC<MenuIconProps> = (props) => (
<Svg
width={24}
height={16}
fill="none"
{...props}
>
<Path
stroke={props.color || "#919191"}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2.222}
d="M2 8h15.556M2 1.333h20M2 14.667h11.111"
/>
</Svg>
);
export default MenuIcon;