From 526466ba3be02cb3c0c36cc1175aa769a745f75c Mon Sep 17 00:00:00 2001 From: itschip Date: Sun, 9 Oct 2022 22:24:51 +0200 Subject: [PATCH] feat(config): add notification icon --- icon.tsx | 8 ++++++-- npwd.config.ts | 3 ++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/icon.tsx b/icon.tsx index bfd17fd..c43fbe8 100644 --- a/icon.tsx +++ b/icon.tsx @@ -2,5 +2,9 @@ import React from 'react'; import CurrencyBitcoinIcon from '@mui/icons-material/CurrencyBitcoin'; export const AppIcon = () => { - return -} + return ; +}; + +export const NotificationIcon = () => { + return ; +}; diff --git a/npwd.config.ts b/npwd.config.ts index e218b74..b56c3e3 100644 --- a/npwd.config.ts +++ b/npwd.config.ts @@ -1,5 +1,5 @@ import App from './src/App'; -import { AppIcon } from './icon'; +import { AppIcon, NotificationIcon } from './icon'; const defaultLanguage = 'en'; const localizedAppName = { @@ -17,5 +17,6 @@ export default (settings: Settings) => ({ backgroundColor: '#ff7300', path: '/crypto', icon: AppIcon, + notificationIcon: NotificationIcon, app: App, });