mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
20 lines
414 B
TypeScript
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
|