summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/NotificationIcon.cpp
blob: d8792f9d217af8c83332f23df2cd15f6cccb2916 (plain)
1
2
3
4
5
6
7
8
9
10
#include "NotificationIcon.h"
#include "Symbols.h"
using namespace Pinetime::Applications::Screens;

const char* NotificationIcon::GetIcon(bool newNotificationAvailable) {
  if (newNotificationAvailable)
    return Symbols::info;
  else
    return "";
}