2021-10-13 16:08:35 -04:00
|
|
|
#include "displayapp/screens/NotificationIcon.h"
|
|
|
|
#include "displayapp/screens/Symbols.h"
|
2020-10-20 14:57:39 -04:00
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
|
|
|
const char* NotificationIcon::GetIcon(bool newNotificationAvailable) {
|
2021-04-18 13:28:14 -04:00
|
|
|
if (newNotificationAvailable)
|
|
|
|
return Symbols::info;
|
|
|
|
else
|
|
|
|
return "";
|
2020-10-20 14:57:39 -04:00
|
|
|
}
|