Files
cally/assets/svgs/DrawerIcon.tsx
2024-11-20 00:27:43 +01:00

20 lines
414 B
TypeScript

import * as React from "react"
import Svg, { SvgProps, Path } from "react-native-svg"
const DrawerIcon = (props: SvgProps) => (
<Svg
width={27}
height={18}
fill="none"
{...props}
>
<Path
stroke="#83807F"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2.7}
d="M2 1.995h22.667M2 9.14h14.167M2 16.285h7.083"
/>
</Svg>
)
export default DrawerIcon