summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/NotificationIcon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/screens/NotificationIcon.cpp')
-rw-r--r--src/displayapp/screens/NotificationIcon.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/displayapp/screens/NotificationIcon.cpp b/src/displayapp/screens/NotificationIcon.cpp
new file mode 100644
index 00000000..64898c2c
--- /dev/null
+++ b/src/displayapp/screens/NotificationIcon.cpp
@@ -0,0 +1,8 @@
+#include "NotificationIcon.h"
+#include "Symbols.h"
+using namespace Pinetime::Applications::Screens;
+
+const char* NotificationIcon::GetIcon(bool newNotificationAvailable) {
+ if(newNotificationAvailable) return Symbols::info;
+ else return "";
+} \ No newline at end of file