mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
19 lines
716 B
TypeScript
19 lines
716 B
TypeScript
import * as React from "react"
|
|
import Svg, { Path, SvgProps } from "react-native-svg"
|
|
const NavToDosIcon: React.FC<SvgProps> = (props) => (
|
|
<Svg
|
|
width={30}
|
|
height={30}
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
fill="#8005EB"
|
|
stroke="#8005EB"
|
|
strokeWidth={0.5}
|
|
d="M15.038 29.649c-7.953 0-14.4-6.447-14.4-14.4s6.447-14.4 14.4-14.4 14.4 6.447 14.4 14.4-6.447 14.4-14.4 14.4Zm0-1.44c7.157 0 12.96-5.802 12.96-12.96 0-7.158-5.803-12.96-12.96-12.96-7.158 0-12.96 5.802-12.96 12.96 0 7.158 5.802 12.96 12.96 12.96Zm4.53-17.07a.72.72 0 1 1 1.019 1.019l-7.2 7.2a.72.72 0 0 1-1.018 0l-2.88-2.88a.72.72 0 1 1 1.018-1.018l2.37 2.37 6.692-6.69Z"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default NavToDosIcon
|