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