mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
- Changed the todo repeat icon
This commit is contained in:
20
assets/svgs/TodoRepeatIcon.tsx
Normal file
20
assets/svgs/TodoRepeatIcon.tsx
Normal file
@ -0,0 +1,20 @@
|
||||
import * as React from "react"
|
||||
import Svg, { SvgProps, Path } from "react-native-svg"
|
||||
const TodoRepeatIcon = (props: SvgProps) => (
|
||||
<Svg
|
||||
width={props.width || 30}
|
||||
height={props.height || 30}
|
||||
viewBox="-1 -3 19 19"
|
||||
fill="none"
|
||||
{...props}
|
||||
>
|
||||
<Path
|
||||
stroke={props.color || "#858585"}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.455}
|
||||
d="M1.158 7.197a5.42 5.42 0 0 1 9.58-4.103m0 0V1.099m0 1.995v.037H8.705m3.21 2.71a5.42 5.42 0 0 1-9.444 4.263m0 .001v-.198h2.033m-2.033.198v1.835"
|
||||
/>
|
||||
</Svg>
|
||||
)
|
||||
export default TodoRepeatIcon
|
||||
@ -22,10 +22,10 @@ import {IToDo} from "@/hooks/firebase/types/todoData";
|
||||
import AssigneesDisplay from "@/components/shared/AssigneesDisplay";
|
||||
import {useGetFamilyMembers} from "@/hooks/firebase/useGetFamilyMembers";
|
||||
import CalendarIcon from "@/assets/svgs/CalendarIcon";
|
||||
import ClockOIcon from "@/assets/svgs/ClockOIcon";
|
||||
import ProfileIcon from "@/assets/svgs/ProfileIcon";
|
||||
import RepeatFreq from "./RepeatFreq";
|
||||
import {useAuthContext} from "@/contexts/AuthContext";
|
||||
import TodoRepeatIcon from "@/assets/svgs/TodoRepeatIcon";
|
||||
|
||||
interface IAddChoreDialog {
|
||||
isVisible: boolean;
|
||||
@ -210,7 +210,7 @@ const AddChoreDialog = (addChoreDialogProps: IAddChoreDialog) => {
|
||||
)}
|
||||
</View>
|
||||
<View row centerV>
|
||||
<ClockOIcon/>
|
||||
<TodoRepeatIcon />
|
||||
<Picker
|
||||
marginL-12
|
||||
placeholder="Select Repeat Type"
|
||||
|
||||
Reference in New Issue
Block a user