10 lines
253 B
C++
10 lines
253 B
C++
#include "NotificationIcon.h"
|
|
#include "Symbols.h"
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
const char* NotificationIcon::GetIcon(bool newNotificationAvailable) {
|
|
if (newNotificationAvailable)
|
|
return Symbols::info;
|
|
else
|
|
return "";
|
|
} |