From 4a406957b5430d3c6c8d6cc67ecab7f898a4a8d4 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Wed, 11 Oct 2023 20:05:01 +0800 Subject: [PATCH] Added conversation icon --- .../DrawerSettings/CustomDrawerContent.tsx | 3 +- src/icons/MessageIcon/MessageIcon.tsx | 29 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 src/icons/MessageIcon/MessageIcon.tsx diff --git a/src/components/DrawerSettings/CustomDrawerContent.tsx b/src/components/DrawerSettings/CustomDrawerContent.tsx index f3eb5b8..48c31e2 100644 --- a/src/components/DrawerSettings/CustomDrawerContent.tsx +++ b/src/components/DrawerSettings/CustomDrawerContent.tsx @@ -24,6 +24,7 @@ import SubjectIcon from "../../icons/SubjectIcon/SubjectIcon"; import { useMutation, useQueryClient } from "@tanstack/react-query"; import { PatchStudentStatus } from "../Api/Api"; import { useToast } from "react-native-toast-notifications"; +import MessageIcon from "../../icons/MessageIcon/MessageIcon"; export default function CustomDrawerContent(props: {}) { const debug = false; @@ -136,7 +137,7 @@ export default function CustomDrawerContent(props: {}) { navigation.navigate("Conversation"); }} > - + Conversation + + + + + + + + + + ); +}