mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
20 lines
869 B
TypeScript
20 lines
869 B
TypeScript
import * as React from "react"
|
|
import Svg, { Path, SvgProps } from "react-native-svg"
|
|
const NavCalendarIcon: React.FC<SvgProps> = (props) => (
|
|
<Svg
|
|
width={28}
|
|
height={28}
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke="#07B8C7"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2.124}
|
|
d="M1.825 10.075h25.043m-5.565 5.567L7.39 15.64m4.638 5.566H7.39m0-19.478V4.51m13.913-2.782V4.51M6.277 26.77h16.139c1.558 0 2.337 0 2.933-.303.523-.267.949-.692 1.216-1.216.303-.595.303-1.375.303-2.933V8.962c0-1.558 0-2.337-.303-2.933a2.782 2.782 0 0 0-1.216-1.216c-.596-.303-1.375-.303-2.933-.303H6.277c-1.558 0-2.337 0-2.933.303-.523.267-.949.693-1.216 1.216-.303.596-.303 1.375-.303 2.933v13.356c0 1.558 0 2.338.303 2.933.267.523.693.95 1.216 1.216.596.303 1.375.303 2.933.303Z"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default NavCalendarIcon
|