From 1479d2255265502f2aee5f27ed2c899e93b0e771 Mon Sep 17 00:00:00 2001 From: G Date: Thu, 25 Apr 2024 16:44:23 +0000 Subject: [PATCH] Notification icon component --- src/components/NotificationIconButton.tsx | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/components/NotificationIconButton.tsx diff --git a/src/components/NotificationIconButton.tsx b/src/components/NotificationIconButton.tsx new file mode 100644 index 0000000..7a49a63 --- /dev/null +++ b/src/components/NotificationIconButton.tsx @@ -0,0 +1,34 @@ +import Box from "@components/bases/Box"; +import { Ionicons } from "@expo/vector-icons"; +const NotificationIconButton = () => { + return ( + + + + + + + ); +}; + +export default NotificationIconButton; -- libgit2 0.27.1