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;