InfiniTime.git

ref: 3e23ee7c782904debabe3eb76ceba05f1e903be4

src/displayapp/screens/NotificationIcon.cpp


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#include "displayapp/screens/NotificationIcon.h"
#include "displayapp/screens/Symbols.h"
using namespace Pinetime::Applications::Screens;

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