blob: 64898c2cfadd515b7ab07e118c1e005d37a97e37 (
plain)
1
2
3
4
5
6
7
8
|
#include "NotificationIcon.h"
#include "Symbols.h"
using namespace Pinetime::Applications::Screens;
const char* NotificationIcon::GetIcon(bool newNotificationAvailable) {
if(newNotificationAvailable) return Symbols::info;
else return "";
}
|