From b72121ca940851a3c17264197cbed3eabab9c4a3 Mon Sep 17 00:00:00 2001 From: G Date: Wed, 11 Sep 2024 09:51:15 +0000 Subject: [PATCH] component to show the beasy icon and a notification icon --- src/components/BarWithBeasyAndNotificationsIcon.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/BarWithBeasyAndNotificationsIcon.tsx diff --git a/src/components/BarWithBeasyAndNotificationsIcon.tsx b/src/components/BarWithBeasyAndNotificationsIcon.tsx new file mode 100644 index 0000000..63ad568 --- /dev/null +++ b/src/components/BarWithBeasyAndNotificationsIcon.tsx @@ -0,0 +1,15 @@ +import {} from "react-native"; +import BeasyLogoIcon from "./BeasyLogoIcon"; +import NotificationIconButton from "./NotificationIconButton"; +import Box from "./bases/Box"; + +const BarWithBeasyAndNotificationsIcon = () => { + return ( + + + + + ); +}; + +export default BarWithBeasyAndNotificationsIcon; -- libgit2 0.27.1